//1.建表空間
sql**
create tablespace osdb datafile 'f:\oracle\oradata\glsqjz\osdb.ora'
size 100m reuse default storage(initial 500k next 500k pctincrease 20);
2.建使用者
sql**
create
user osuser identified by osuser
;//identified by 後面的是密碼,前面的是使用者名稱
3.使用者授權
sql**
grant resource, connect ,recovery_catalog_owner to osuser ;
grant
create
table
to osuser ;
alter
user osuser quota unlimited on osdb;
alter
user osuser default tablespace osdb;
4.刪除表空間
sql**
drop tablespace tablespacename including contents and datafiles;
5.刪除使用者
sql**
drop
user user_name cascade
6.刪除表的注意事項
在刪除乙個表中的全部資料時,須使用
sql**
truncate
table 表名
建立表空間 使用者 授權 建表
用sys賬號登陸sql plus 1 在 儲存 表空間 下建立乙個表空間yangbctablespace2,確保c 下無yangbctablespace2.ora這個檔案,然後執行命令,注意引號要用單引號 sql create tablespace yangbctablespace2 2 dataf...
oracle新建使用者,授權,建表空間語句
oracle建立表空間,建立使用者 關鍵字 oracle 表空間 使用者 建立臨時表空間 create temporary tablespace test temp tempfile e oracle product 10.2.0 oradata testserver test temp01.dbf...
Oracle新建使用者 角色,授權,建表空間
oracle資料庫的許可權系統分為系統許可權與物件許可權。系統許可權 database system privilege 可以讓使用者執行特定的命令集。例如,create table許可權允許使用者建立表,grant any privilege 許可權允許使用者授予任何系統許可權。物件許可權 dat...