連線本地oracel資料庫
sqlplus sys/123456@orcl37 as sysdba
建立乙個名為ahsso、口令為ah123456的使用者,並指向名為ahsso的表空間。
create user ahsso profile default identified by "ah123456" default tablespace ahsso temporary tablespace temp account unlock;
給名為ahsso的使用者授權(部分許可權)
grant connect to ahsso;
grant dba to ahsso;
建立乙個名為ahfileimage、口令為ah123456的使用者,並指向名為ahfileimage的表空間。
create user ahfileimage profile default identified by "ah123456" default tablespace ahfileimage temporary tablespace temp account unlock;
給名為ahfileimage的使用者授權(部分許可權)
grant connect to ahfileimage;
grant dba to ahfileimage;
建立乙個名為ahgeodisaster、口令為ah123456的使用者,並指向名為ahgeodisaster的表空間。
create user ahgeodisaster profile default identified by "ah123456" default tablespace ahgeodisaster temporary tablespace temp account unlock;
給名為ahgeodisaster的使用者授權(部分許可權)
grant connect to ahgeodisaster;
grant dba to ahgeodisaster;
建立乙個名為ahjcyj、口令為ah123456的使用者,並指向名為ahjcyj的表空間。
create user ahjcyj profile default identified by "ah123456" default tablespace ahjcyj temporary tablespace temp account unlock;
給名為ahjcyj的使用者授權(部分許可權)
grant connect to ahjcyj;
grant dba to ahjcyj;
建立乙個名為ahqxyb、口令為ah123456的使用者,並指向名為ahqxyb的表空間。
create user ahqxyb profile default identified by "ah123456" default tablespace ahqxyb temporary tablespace temp account unlock;
給名為ahqxyb的使用者授權(部分許可權)
grant connect to ahqxyb;
grant dba to ahqxyb;
建立乙個名為ahyjzh、口令為ah123456的使用者,並指向名為ahyjzh的表空間。
create user ahyjzh profile default identified by "ah123456" default tablespace ahyjzh temporary tablespace temp account unlock;
給名為ahyjzh的使用者授權(部分許可權)
grant connect to ahyjzh;
grant dba to ahyjzh;
建立乙個名為ahdmcj、口令為ah123456的使用者,並指向名為ahdmcj的表空間。
create user ahdmcj profile default identified by "ah123456" default tablespace ahdmcj temporary tablespace temp account unlock;
給名為ahdmcj的使用者授權(部分許可權)
grant connect to ahdmcj;
grant dba to ahdmcj;
建立乙個名為ahgroundwater、口令為ah123456的使用者,並指向名為ahgroundwater的表空間。
create user ahgroundwater profile default identified by "ah123456" default tablespace ahgroundwater temporary tablespace temp account unlock;
給名為ahgroundwater的使用者授權(部分許可權)
grant connect to ahgroundwater;
grant dba to ahgroundwater;
建立乙個名為ahmine、口令為ah123456的使用者,並指向名為ahmine的表空間。
create user ahmine profile default identified by "ah123456" default tablespace ahmine temporary tablespace temp account unlock;
給名為ahmine的使用者授權(部分許可權)
grant connect to ahmine;
grant dba to ahmine;
建立乙個名為ahdzyj、口令為ah123456的使用者,並指向名為ahdzyj的表空間。
create user ahdzyj profile default identified by "ah123456" default tablespace ahdzyj temporary tablespace temp account unlock;
給名為ahdzyj的使用者授權(部分許可權)
grant connect to ahdzyj;
grant dba to ahdzyj;
建立乙個名為ahdrill、口令為ah123456的使用者,並指向名為ahdrill的表空間。
create user ahdrill profile default identified by "ah123456" default tablespace ahdrill temporary tablespace temp account unlock;
給名為ahdrill的使用者授權(部分許可權)
grant connect to ahdrill;
grant dba to ahdrill;
建立乙個名為ahmetadc、口令為ah123456的使用者,並指向名為ahmetadc的表空間。
create user ahmetadc profile default identified by "ah123456" default tablespace ahmetadc temporary tablespace temp account unlock;
給名為ahmetadc的使用者授權(部分許可權)
grant connect to ahmetadc;
grant dba to ahmetadc;
oracle命令建立表空間
使用oracle10g建立資料庫後,向資料庫中匯入了部分資料,第二天繼續向資料庫中匯入資料表時發生錯誤 查了很多資料發現原來是oracle表空間限制,導致無法繼續匯入資料的原因。如果在建立資料庫時沒有設定,oracle 預設的表空間大小為400m,當資料庫中資料量達到這個值,再向資料庫中匯入資料就會...
Oracle建立表空間
建立表空間 create tablespace estate db datafile e estate db.ora size 10m autoextend on 建立臨時表空間 create temporary tablespace estate temp db tempfile e estate...
ORACLE建立表空間
因此,在建立物件之前,首先要分配儲存空間 分配儲存,就要建立表空間 建立表空間示例如下 create tablespace sample logging datafile d oracle oradata ora92 luntan.ora size 5m extent management loca...