Trying to drop all tables from my schema with no rows?

The error is being raised by ORACLE_LOADER. I suspect your loop is finding an external table, which has a problem with its definition - the KUP-01008 is complaining about a keyword "DELIMETED", but the external table syntax includes the keyword "DELIMITED If you don't intend to drop the external tables, perhaps you need to omit them from the query, e.g. : CURSOR emp_cur IS SELECT table_name FROM user_tables MINUS SELECT table_name FROM user_external_tables.

The error is being raised by ORACLE_LOADER. I suspect your loop is finding an external table, which has a problem with its definition - the KUP-01008 is complaining about a keyword "DELIMETED", but the external table syntax includes the keyword "DELIMITED". If you don't intend to drop the external tables, perhaps you need to omit them from the query, e.g. : CURSOR emp_cur IS SELECT table_name FROM user_tables MINUS SELECT table_name FROM user_external_tables.

Thnx Jeffrey,its working fine now! – Vineet May 8 '10 at 12:39.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions