Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
How can I check is a table object exist ?
Message
De
04/10/2001 00:17:33
Wilfred Chan
Bnp Paribas Hong Kong Branch
Hong Kong, Hong Kong
 
 
À
03/10/2001 14:35:56
Sergio Ortiz
Tek Services Group, Llc
Hollywood, Floride, États-Unis
Information générale
Forum:
Oracle
Catégorie:
PL/SQL
Divers
Thread ID:
00563779
Message ID:
00563978
Vues:
22
You can try this:
..

Cursor delete_table IS
select object_name from user_objects
where object_name="xxxxx"
and object_type="TABLE"
...

Fetch delete_table INTO to_be_del;
IF to_be_del%NOTFOUND THEN
EXIT
...
...
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform