I am loading a large number of tables from SQL Server to Oracle. A good percentage of tables are empty and I would like to not include them in the tMSSQLTableList.
Is there any other way besides the where clause (that is available for tMSSQLtableist) to provide tMSSQLTableList with the list of tables that are needed (or excluding empty tables).
The empty table list is long - if I was to use the where clause - it will be a very long where clause.
Can I use a variable? or store table name in a table in SQL Server and use that table are source to feed tMSSQLTableList for table I want to either include or exclude from making it to the tMSSQLTableList?