Skip to content

Commit ab36d56

Browse files
authored
Fix: Filter default system schema (#2910)
1 parent 38e376c commit ab36d56

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

sql/engines/oracle.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,20 @@ def _get_all_schemas(self):
150150
"DIP",
151151
"OJVMSYS",
152152
"LBACSYS",
153+
"AUDSYS",
154+
"DBSFWUSER",
155+
"DVF",
156+
"DVSYS",
157+
"GGSYS",
158+
"GSMADMIN_INTERNAL",
159+
"GSMCATUSER",
160+
"GSMUSER",
161+
"REMOTE_SCHEDULER_AGENT",
162+
"SYS$UMF",
163+
"SYSBACKUP",
164+
"SYSDG",
165+
"SYSKM",
166+
"SYSRAC",
153167
)
154168
schema_list = [row[0] for row in result.rows if row[0] not in sysschema]
155169
result.rows = schema_list

0 commit comments

Comments
 (0)