最新回答 / 慕圣9176123
select table_name,tablespace_name from user_tables where tablename='你想要查詢的表名'; 看你創(chuàng)建表的用戶是在什么樣的用戶,如果屬于system,就用dba_tables表來查,否則就用user_tables
2019-04-02
最贊回答 / 系統(tǒng)程序設計
一、delete1、delete是DML,執(zhí)行delete操作時,每次從表中刪除一行,并且同時將該行的的刪除操作記錄在redo和undo表空間中以便進行回滾(rollback)和重做操作,但要注意表空間要足夠大,需要手動提交(commit)操作才能生效,可以通過rollback撤消操作。2、delete可根據(jù)條件刪除表中滿足條件的數(shù)據(jù),如果不指定where子句,那么刪除表中所有記錄。3、delete語句不影響表所占用的extent,高水線(high watermark)保持原位置不變。二、truncate...
2019-03-12
最贊回答 / qq_星_20
使用最高權限的sys用戶登錄數(shù)據(jù)庫:conn sys/密碼 as sysdba;創(chuàng)建數(shù)據(jù)庫用戶,例如此處創(chuàng)建一個test用戶,登錄密碼自定義:create user ?test identified by ?密碼;授權,授予test用戶連接數(shù)據(jù)庫的權限:grant create session to test;授權,給test用戶授操作表空間的權限:grant ?unlimited tablespace to ?test;
2019-03-09