Skip to content

Commit

Permalink
Add profiler queries for oracle
Browse files Browse the repository at this point in the history
  • Loading branch information
ayush-shah committed Aug 5, 2024
1 parent e34ba2e commit 36487b3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ def compute(self):
Column("object_name").label("table_name"),
Column("created"),
],
self._build_table("all_objects", None),
self._build_table("DBA_OBJECTS", None),
[
func.lower(Column("owner")) == self.schema_name.lower(),
func.lower(Column("object_name")) == self.table_name.lower(),
Expand All @@ -209,7 +209,7 @@ def compute(self):
Column("table_name"),
Column("NUM_ROWS"),
],
self._build_table("all_tables", None),
self._build_table("DBA_TABLES", None),
[
func.lower(Column("owner")) == self.schema_name.lower(),
func.lower(Column("table_name")) == self.table_name.lower(),
Expand Down

0 comments on commit 36487b3

Please sign in to comment.