Ok.
For dynamic table creation you have to create a view.
In the script do like this -
sql ('datastorename', 'drop view abc');
sql('datastorename','create view abc select * from table_name');
Arun
Ok.
For dynamic table creation you have to create a view.
In the script do like this -
sql ('datastorename', 'drop view abc');
sql('datastorename','create view abc select * from table_name');
Arun