Is there a way to filter out table(s) from a schema?
I still want some of the tables from that schema.
Comments: In the mean time, Edit the function ReadSchema(), Add a line __before__: if(lastTable != tableName || table == null) approx line: 1596. Add something like: ``` if (tableName == "sometable" && schema == "myschema") continue; ``` You could even use a list if you have a few.
I still want some of the tables from that schema.
Comments: In the mean time, Edit the function ReadSchema(), Add a line __before__: if(lastTable != tableName || table == null) approx line: 1596. Add something like: ``` if (tableName == "sometable" && schema == "myschema") continue; ``` You could even use a list if you have a few.