Hello, I would like to know which reg expr can extract relevant schema and table from the following query:
"--select * from vfde-project.schema1.table1
select *
from vfde-project.schema2.table2;
--select * from vfde-project.schema3.table3
--select * from vfde-project.schema4.table4
select * from INFORMATION_SCHEMA.JOBS_TIMELINE"
Schemas in lines which are commented out (starting with '--') and Schemas='INFORMATION_SCHEMA' are not relevant and should be excluded from the result.
Thank you very much!