幾條最基本的 sqlplus命令

2021-08-31 22:52:36 字數 886 閱讀 1910

sqlplus登入伺服器:

sqlplus sys/[email protected]:1521/orcl as sysdba

建立表空間:

create tablespace tspace1 datafile 'tspace1.dat' size 100m autoextend on next 50m maxsize unlimited;

建立使用者: 

create user user1 identified by user1 default tablespace tspace1;

授權:grant connect,resource ,dba to user1;

刪除表空間和資料庫檔案

drop tablespace tspace1 including contents and datafiles cascade constraints;

刪除使用者:

drop user user1 cascade;

以dba使用者匯出表:

exp 'sys/[email protected]:1521/orcl as sysdba'  file=d:\backup.dmp tables=(table1,table1)

以表空間所有者使用者匯出表:

exp  user1/[email protected]:1521/orcl    file=d:\backup.dmp tables=(mytable1,mytable1)

(使用者只能匯出自己的表)

以dba使用者匯入表

imp 'sys/[email protected]:1521/orcl as sysdba'  file=d:\mdm.dmp fromuser=user1  touser=user2 tables=(table1,table2)

一 基本sqlplus命令

1 sqlplus scott tiger 簡化連線資料庫 2 show user 想知道當前登陸的使用者是哪一位 3 conn 使用者名稱 密碼 as sysdba 切換使用的使用者 如果使用超級管理員使用者sys必須追加 as sysdba conn sys passwd as sysdba 切...

c mysql命令 最基本的mysql命令

在windows95 98 me上啟動mysql服務 c mysql bin mysql 在windwosnt 2000 xp上啟動 安裝myslq服務 c mysql bin mysql instal 啟動mysql服務 c mysql bin net start mysql 連線mysql my...

linux 最基本的命令(一)

linux 啟動順序 load bios read mbr 硬碟的主引導記錄,包括三個部分mbr 硬碟分割槽表dpt和硬碟有效標誌 find out the os load the os init process starts 執行etc目錄下的檔案 execute run level script...