datahub version : v0.12.0
datahub cli version : 0.9.6.4
Hi Team
During ingestion from oracle source a query is used to get tables owned by the specified schema:
SELECT table_name FROM dba_tables WHERE nvl(tablespace_name, 'no tablespace') NOT IN ('SYSTEM', 'SYSAUX') AND OWNER = '<myschema>' AND IOT_NAME IS NULL;
In our case above query returns 0 rows. Is there a way to allow SYSTEM and SYSAUX tablespaces in this query. Any recipe parameters that will allow SYSTEM and SYSAUX tablespaces.