使用者相關操作
--建立使用者
create user scottuser identified by scottuser;
--給使用者分配許可權
grant connect,resource to scottuser;
grant create view to scottuser;
grant create synonym to scottuser;
--撤銷使用者許可權
revoke connect,resource from scottuser;
revoke create view from scottuser;
revoke create synonym from scottuser;
drop user scottuser cascade;
--修改使用者密碼
alter user scottuser identified by 123456;
--連線使用者
conn scottuser/123456;
--鎖定使用者
alter user us account lock;
--解鎖使用者
alter user us account unlock;12345678910111213141516171819201234567891011121314151617181920
表空間相關操作
--建立表空間
--指定表空間資料檔案
--允許自動擴充套件,每次增長10MB,最大5GB
CREATE TABLESPACE DATE_CMIS DATAFILE "D:/cmis/DATE_CMIS.dbf" SIZE 100M AUTOEXTEND ON NEXT 10M MAXSIZE 5G;
--擴充套件表空間
alter tablespace myspace add datafile "D:mysp.ora" size 10M;
--為ORACLE物件指定表空間
create user cmis identified by cmis default tablespace DATE_CMIS;
--建立表、索引也可以指定表空間;一旦指定,表空間無法修改。
--使用者授權
grant dba to cmis;
drop tablespace zfmi including contents and datafiles cascade onstraints;
使用者相關操作
--建立使用者
create user scottuser identified by scottuser;
--給使用者分配許可權
grant connect,resource to scottuser;
grant create view to scottuser;
grant create synonym to scottuser;
--撤銷使用者許可權
revoke connect,resource from scottuser;
revoke create view from scottuser;
revoke create synonym from scottuser;
drop user scottuser cascade;
--修改使用者密碼
alter user scottuser identified by 123456;
--連線使用者
conn scottuser/123456;
--鎖定使用者
alter user us account lock;
--解鎖使用者
alter user us account unlock;12345678910111213141516171819201234567891011121314151617181920
表空間相關操作
--建立表空間
--指定表空間資料檔案
--允許自動擴充套件,每次增長10MB,最大5GB
CREATE TABLESPACE DATE_CMIS DATAFILE "D:/cmis/DATE_CMIS.dbf" SIZE 100M AUTOEXTEND ON NEXT 10M MAXSIZE 5G;
--擴充套件表空間
alter tablespace myspace add datafile "D:mysp.ora" size 10M;
--為ORACLE物件指定表空間
create user cmis identified by cmis default tablespace DATE_CMIS;
--建立表、索引也可以指定表空間;一旦指定,表空間無法修改。
--使用者授權
grant dba to cmis;
drop tablespace zfmi including contents and datafiles cascade onstraints;