oracle 之 基礎操作

2022-06-10 15:21:13 字數 853 閱讀 6279

//刪除存在的表空間及資料

drop tablespace ts_yygl including contents and datafiles

若是出現了提示 錯誤 導致無法全部刪除,那麼就執行以下語句可以得到那些表有主鍵相關,再執行就可以

select

'alter table

'||owner||'

.'||table_name||'

drop constraint

'||constraint_name||';'

from

dba_constraints

where constraint_type in ('

u', 'p'

)and (index_owner, index_name) in(

select

owner, segment_name

from

dba_segments

where tablespace_name = '

ts_yygl');

'altertable

'||owner||'

.'||table_name||'

dropconstraint

'||constraint_name||'

;'

1。「匯出查詢結果」 可以匯出各種形式,包括了excel

2.「匯出查詢結果」 --「複製到剪貼簿」 將資訊 複製到 命令視窗中,這樣比複製到sql執行視窗方便,主要是 set define off

//給存在的使用者賦予表空間

alter user username  default tablespace userspace;

oracle基礎操作

資料匯出 1 將資料庫test完全匯出,使用者名稱system 密碼manager 匯出到d daochu.dmp中 exp system manager test file d daochu.dmp full y 2 將資料庫中system使用者與sys使用者的表匯出 exp system man...

Oracle基礎操作

一 sys使用者和system使用者 oracle安裝會自動的生成sys使用者和system使用者 1 sys使用者是超級使用者,具有最高許可權,具有sysdba角色,有create database的許可權,該使用者預設的密碼是change on install 2 system使用者是管理操作員...

oracle印象之基礎

create table student stu no varchar2 7 not null primary key,學號 stu name varchar2 20 not null,姓名 stu gender varchar2 200 not null,性別 stu age number 2 n...