2015-01-21 121 views
-3

我怎麼能知道用他們的名字創建的表的總數!!!在SQL oracle命令?? 這樣我可以刪除不必要的表......數據庫oracle

+0

'用他們的名字創建的表'你能澄清這部分? – 2015-01-21 03:41:54

+0

問好。 '顯示錶格'也許...... – 2015-01-21 03:43:07

+0

你能重新設定問題,以便可以更好地理解它。 – 2015-01-21 03:49:32

回答

0

這個問題/答案應該給你你需要的細節: Get list of all tables in Oracle?

但在總結...

-- If you have access 
SELECT owner, table_name 
    FROM dba_tables 

-- Will show what your user has access to 
SELECT owner, table_name 
    FROM all_tables 
0
SHOW TABLES IN `db`; 

其中db是數據庫的名稱。