1樓:千鋒教育
select * from all_tables
all_tables是所有能訪問,包括其它使用者的,如果要檢視當前使用者用user_tables
2樓:超級喵公主
覺得你應該先弄清楚oracle的常規資料字典的結構,像9i裡的常規資料字典中物件名稱就有以user,all,dba為字首的物件。
以user為例,我們查該物件下有些什麼表,就應該執行下列的語句:
sql>select table_name from user_tables;
類似的,你可以進行替換。:)
如果你想查資料庫中所有的表的話,可以查詢
select * from dba_tables
如果你想查詢資料庫中某個使用者下的表的話,也可以登入這個使用者,再查詢:
select * from user_tables
要想匯入外部sql語句可以用命令
sql >@e:\檔名.sql
如你想儲存 select * from tablename;語句的結果,可以在sql*plus 裡面這樣:
spool c:\test.sql //這是儲存檔案的位置
select * from tablename;
spool off
如何檢視sql server資料庫表
3樓:學神it科技
(1)顯示所有資料庫
show database;
(2)顯示所有表
show tables;
(3)顯示錶結構
desc 表名;
3.sqlserver
查詢所有表:
select * from sysobjects where xtype=“u”
如何檢視oracle資料庫中的所有表
4樓:千鋒教育
參考以下方法:
select * from all_tables;系統裡有許可權的表select * from dba_tables; 系統表select * from user_tables; 當前使用者下的表
5樓:
1、查有幾張表
select * from tab;
select * from cat;
select * from user_tables;
select table_name from user_tables;
2、一個一個的查
desc table1;
desc table2;
3、查包含欄位name的所有表
select table_name , column_name,data_type from user_tab_cols where column_name = 'name';
6樓:我tm不管
select * from dba_tables
如何檢視oracle資料庫中的所有表
7樓:千鋒教育
1、查詢使用者建立的所有表:
select * from user_tables;
2、 查詢所有表,包括系統的:
select * from all_all_tables;
如何檢視oracle資料庫中的所有表
8樓:千鋒教育
你指所有的表嗎?
如果你想查資料庫中所有的表的話,可以查詢
select * from dba_tables如果你想查詢資料庫中某個使用者下的表的話,也可以登入這個使用者,再查詢:
select * from user_tables
oracle怎麼檢視本地資料庫
9樓:千鋒教育
通過baioracle net configuration assistant(oracle網路配置助手),配置本地du網路服務名,從zhi
而實現連線oracle資料庫dao
工具/原料
plsql
win 8
方法內/步驟
按windows徽標鍵,進容入開始介面,找到net configuration assistant,單擊執行之
進入oracle net configuration assistant配置嚮導,勾選本地網路服務名配置,單擊下一步;
在網路服務名配置中,勾選新增,單擊下一步
輸入服務名:dbname(oracle資料庫的服務名通常是全域性資料庫名,即輸入建立的資料庫名稱)
選擇訪問資料庫的協議:tcp,單擊下一步;
輸入資料庫所在的計算機主機名:dream(也可以輸入主機ip地址),勾選使用標準埠1521,單擊下一步
測試,進行連線資料庫的測試,勾選是,進行測試,單擊下一步,
選擇更改登入,輸入資料庫的使用者名稱、口令,單擊確定,顯示正在連線,測試成功
配置網路服務名,單擊下一步;
是否配置另一個網路服務名,勾選否,單擊下一步,顯示網路服務名配置完畢,單擊下一步,單擊完成
7執行plsql,輸入使用者名稱、口令,選擇資料庫,連線
oracle資料庫,oracle資料庫價格
oracle是一種適用於大型 中型和微型計算機的關聯式資料庫管理系統,它使用sql structured guery language 作為它的資料庫語言。sql主要包括資料定義 資料操縱 包括查詢 和資料控制等三方面功能。sql是一種非過程化程度很高的語言,使用者只需說明 幹什麼 而無需具體說明 怎麼...
怎麼檢視oracle資料庫表單,如何檢視oracle資料庫中的所有表
例如想要查出資料庫 abc 中的所有資料表,可以直接用這條語句查然後匯出在excel中檢視 select from all tab comments t where t.owner abc win r 輸入cmd 開啟命令 執行 sqlplus 登陸賬號密碼 select from tab 怎麼檢視...
怎麼檢視oracle資料庫資料量大小
思科網俠 檢視方法 1 檢視所有表空間及表空間大小 select tablespace name sum bytes 1024 1024 as mb from dba data files group by tablespace name 2 檢視所有表空間對應的資料檔案 select tables...