1、建立表空間(注釋--)
creat tablespace "表名"
datafile '虛擬機器所在目錄' (字尾一定是.bdf)
size 100m 初始大小100兆
autoextend on 自動擴充套件大小
next 10 ; 每次擴充套件10m
2、刪除表空間
drop tablespace "表名";
3、建立使用者
create user "使用者名稱"
identified by "密碼" 身份
default tablespace "表"; 預設表名
4、給使用者授權
4.1、常用角色
connect -- 連線角色,基本角色
resource --開發者角色
dba --超級管理員角色
4.2、給使用者授權超級管理員角色
grant dba to "使用者名稱";
oracle 資料庫常用語句
1 oracle分頁 1 select from select a.rownum rn from select from tabel order by xx a where rownum 5 where rn 2 注 在oracle中用rownum來記錄資料的順序,這個語句的意思是,按某個字段排序並...
Oracle資料庫常用語句
建表語句 create table test1 id varchar2 20 not null primary key 增加乙個表字段 alter table test1 add name varchar2 20 default null not null 增加多個表字段 alter table t...
Oracle資料庫的常用語句
1 查詢使用者連線 select username,machine,program,status,count machine as 連線數量 from v session where type background group by username,machine,program,status o...