Oracle連線 建立 修改等

2021-08-30 22:52:12 字數 857 閱讀 3950

連線資料庫

conn 使用者名稱/密碼

建立表空間

create tablespace 表空間名稱

datafile '/oracle/oradata/db/data01.dbf' size 50m

刪除表空間

drop tablespace 表空間名稱 including contents and datafiles;

建立臨時表空間

create temporary tablespace 臨時表空間名稱

tempfile '/oracle/oradata/db/temp_data.dbf' size 50m

新建使用者

create user 使用者名稱 identified by 密碼 default tablespace 表空間名稱;

使用者授權

grant connect, resource to 使用者名稱;

修改使用者密碼

alter user 使用者名稱 identified by 密碼

修改使用者預設表空間

alter user 使用者名稱 default tablespace 表空間名稱 temporary tablespace 臨時表空間名稱

修改使用者使用表空間配額

alter user 使用者名稱 quota 10m on 表空間名稱 quota 128k on temp

鎖定,解鎖使用者

alter user 使用者名稱 account lock/unlock

刪除使用者

drop user 使用者名稱 cascade;

增加列alter table 表名 add(列名 型別);

修改列alter table 表名 modify (列名 型別);

Oracle 建立 修改 刪除表等常規操作

建立表 create table test01 id int not null,name varchar 8 not null,gender varchar2 2 not null,age int not null,address varchar2 20 default 位址不詳 not null,...

oracle建立表 修改表 獲取表等使用命令

建立表 create table test01 id int not null,name varchar 8 not null,gender varchar2 2 not null,age int not null,address varchar2 20 default 位址不詳 not null,...

連線oracle後操作命令等

一 建立資料庫 2.建立資料庫 一般用途或事務處理 資料庫名 ssh office 所有密碼統一管理 剩下的下一步即可!3.配置listener和tnsnames檔案 二 建立使用者 1.建立使用者 create user username identified by password 例如 cre...