Hi,
i have written a piece of sql to query an oracle database from a dts package:
SELECT 'select count(*) from' + TABLE_NAME +';'
FROM USER_TABLES
Now, i want the output of this sql to execute in as straightforward a way as possible.
Could someone advise the best way to do this please.
thanks alot
i have written a piece of sql to query an oracle database from a dts package:
SELECT 'select count(*) from' + TABLE_NAME +';'
FROM USER_TABLES
Now, i want the output of this sql to execute in as straightforward a way as possible.
Could someone advise the best way to do this please.
thanks alot