-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[b/352469041] Add dtl-index-type, update other SQLs with a snapshot t…
…ime range (#465) - add dtl-index-type - limit the time range of snapshot to last 30 days
- Loading branch information
Showing
8 changed files
with
59 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
dumper/app/src/main/resources/oracle-stats/native/db-info.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
-- Copyright 2022-2024 Google LLC | ||
-- Copyright 2013-2021 CompilerWorks | ||
-- | ||
-- Licensed under the Apache License, Version 2.0 (the "License"); | ||
-- you may not use this file except in compliance with the License. | ||
-- You may obtain a copy of the License at | ||
-- | ||
-- http://www.apache.org/licenses/LICENSE-2.0 | ||
-- | ||
-- Unless required by applicable law or agreed to in writing, software | ||
-- distributed under the License is distributed on an "AS IS" BASIS, | ||
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
-- See the License for the specific language governing permissions and | ||
-- limitations under the License. | ||
SELECT | ||
A.dbid "DbId", | ||
A.name "Name", | ||
A.db_unique_name "DbUniqueName", | ||
A.con_id "ConId", | ||
A.con_dbid "ConDbId", | ||
A.cdb "Cdb", | ||
A.database_role "DatabaseRole" | ||
FROM v$database A |
29 changes: 29 additions & 0 deletions
29
dumper/app/src/main/resources/oracle-stats/native/dtl-index-type.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
-- Copyright 2022-2024 Google LLC | ||
-- Copyright 2013-2021 CompilerWorks | ||
-- | ||
-- Licensed under the Apache License, Version 2.0 (the "License"); | ||
-- you may not use this file except in compliance with the License. | ||
-- You may obtain a copy of the License at | ||
-- | ||
-- http://www.apache.org/licenses/LICENSE-2.0 | ||
-- | ||
-- Unless required by applicable law or agreed to in writing, software | ||
-- distributed under the License is distributed on an "AS IS" BASIS, | ||
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
-- See the License for the specific language governing permissions and | ||
-- limitations under the License. | ||
SELECT | ||
A.con_id "ConId", | ||
A.owner "Owner", | ||
A.index_type "IndexType", | ||
A.uniqueness "Uniqueness", | ||
A.compression "Compression", | ||
A.partitioned "Partitioned", | ||
A.temporary "Temporary", | ||
A.secondary "Secondary", | ||
A.join_index "JoinIndex", | ||
CASE WHEN A.ityp_owner IS NOT NULL THEN 'Y' ELSE 'N' END "CustomIndexType", | ||
A.table_name "TableName", | ||
A.index_name "IndexName" | ||
FROM cdb_indexes A | ||
WHERE A.owner NOT LIKE '%SYS' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters