May 8, 2002 #1 wuxapian Programmer Jun 13, 2001 52 GB I know this is more of an SQL problem but can anyone tell me how to display a list of tables in the current or a specified database (using SQL). TIA Wuxapian...
I know this is more of an SQL problem but can anyone tell me how to display a list of tables in the current or a specified database (using SQL). TIA Wuxapian...
May 8, 2002 #2 lewisp Programmer Aug 5, 2001 1,238 GB select table_name,owner from all_tables; or select table_name from user_tables; for your own. Upvote 0 Downvote
May 8, 2002 #3 spenglerr IS-IT--Management Feb 15, 2002 154 DE A good way is to use select * from tab This is not so overcrowded with informations if you only need the names of tables and views. Upvote 0 Downvote
A good way is to use select * from tab This is not so overcrowded with informations if you only need the names of tables and views.