oracle資料庫如何刪除資料庫

2022-07-03 18:56:52 字數 2776 閱讀 8279

1樓:糖糖寳寳

操作步驟如下:

第一步:用超級管理員登陸oracle「conn / as sysdbaconn / as sysdba」

第二步:刪除指定的使用者「drop user username cascade」

第三步:重新建立此使用者 「create user username identified by password;

第四步:給使用者授權"grant dba to username "

第五步:登陸指定使用者」conn username /password「

2樓:擅長資料庫育兒

在你安裝完oracle之後,所有程式裡面有這樣乙個目錄:oracle-oradb10g_home1,選擇其目錄下的配置和移植工具/database configuration assistant,調出對應的資料庫管理應用程式,根據步驟可以建立、刪除等操作。或者使用sysdba身份登入,drop database shop即可。

嘗試看看,應該兩種方法都可以刪除的。

3樓:匿名使用者

可以用database configuration assistant刪除。

4樓:匿名使用者

你使用oem控制台 進行刪除還簡單

oracle資料庫中怎樣刪除乙個表的重複資料?

5樓:

這個問題就是要刪除表中重複的記錄,查詢的sql語句如下:

select id,name from (select id,name,row_numer() over(partition by id,name order by id,name) rn from tablea)

where rn>1;

刪除的sql語句如下:

delete tablea where rownum = (select rownum

from (select id,name,row_number() over(partition by id,name order by id,name) rn

from tablea )

where rn > 1);

怎麼用sql刪除oracle裡表的資料

6樓:

你是想用sql語句刪除表中資料,還是在sql server中操作oracle。

如果是前者,語句是:

delete from tablenametruncate table tablename如果是後者:

在sql裡操作oracle的東西需要建立鏈結伺服器,在建立鏈結伺服器的時候,填寫oracle的位址,使用者名稱,密碼等,然後在sql server中使用sql語句操作,但是操作物件要是用完整路徑。

7樓:

1.保留表,只刪除資料:

truncate table mytable;

或者:delete from mytable where 1 = 1 ;

commit;

2.刪除表本身:

drop table mytable;

如果要永久性刪除,不準備在恢復:

drop table mytable purge;

不明的可以hi我。

8樓:匿名使用者

兩種方法

delete from table

只刪除資料,不釋放表空間,不刪除表結構

truncate table

既刪除,又釋放表空間,但不刪除表結構.

oracle 資料庫中怎麼刪除表內容?

9樓:

刪除表內容的兩種方法

truncate table 表名;

delete from 表名 where 條件;

兩種方法的區別:

truncate,意思為截斷表,能夠不占用資源的全部刪除表,優點是速度快,缺點是刪除不能恢復,不能按條件刪除。

delete,意思為刪除,此操作占用redolog,優點能夠快速恢復和選擇刪除,缺點是刪除慢,大批量的刪除不建議使用。

10樓:

truncate 刪除表內容 保留表結構

11樓:匿名使用者

truncate table 表名

或者delete from 表名

oracle資料庫刪除命令

12樓:小周愛嘮叨

刪除表中的資料:

delete from 表名;truncate table 表名;

刪除表:

drop table 表名;

刪除資料庫:

drop database 資料庫名;

甲骨文股份****(nasdaq:orcl,oracle)是全球大型資料庫軟體公司。總部位於美國加州紅木城的紅木岸(redwood shores),現時首席執行官為公司創辦人勞倫斯·埃里森(lawrence j.

ellison)。

13樓:

delete from 表名

where

字段=「特殊字段」

14樓:匿名使用者

truncate table 表名

或者是delete from 表名

15樓:匿名使用者

delete from 表名

在oracle資料庫中怎麼刪除表

刪除無任何資料物件的表空間 首先使用pl sql介面化工具回,或者使用oracle自帶的答sql plus工具,連線需要刪除的表空間的oracle資料局庫。確認當前使用者是否有刪除表空間的許可權,如果沒有 drop tablespace,請先用更高階的使用者 如sys 給予授權或者直接用更高階的使用...

oracle資料庫面試題,ORACLE資料庫面試題

1 update t set logdate 2003 01 01 where logdate 2001 02 11 2 select from t where rowid not in select max rowid from t group by id,name,address,phone,l...

如何用sql查詢oracle資料庫

查詢你 當前使用者下,有哪些表 select from user tables 查詢你 當前使用者下,可以 訪問哪些表 也就是訪問自專己 和 其他使用者的 select from all tables 查詢當屬前資料庫所有的表,需要你有 dba 的許可權select from dba tables ...