建立使用者建立表空間 授予使用者許可權
執行命令列視窗 win+r
輸入 sqlplus
輸入 sqlplus
輸入管理員 使用者名稱:
輸入管理員密碼:
連線成功
依次輸入(myspace為表空間名稱;datafile為表空間所在位置)
create tablespace myspace
datafile 『e:myspace』
size 1024m
autoextend on;
出現表空間已建立
1.create user ***x identified by sssss
2.acccount unlock
3.default tablespace myspace
出現 使用者一建立
grant connect,resource to newuser; --表示把 connect,resource許可權授予news使用者
grant dba to newuser; --表示把 dba許可權授予給newuser使用者
oracle 使用pl sql建立使用者和表空間
分為四步,複製全部並儲存為.sql格式的文件,在pl sql中間操作區右鍵 開啟 sql指令碼進行執行即可建立 第1步 建立臨時表空間nhdj temp create temporary tablespace nhdj temp size 50m autoextend on next 50m max...
oracle 給 scott 使用者授權 建立表空間
使用sys使用者登陸 授權 grant dba to scott 建立好後收回許可權 revoke dba from scott 建立表空間命令 create tablespace xx logging datafile d oracle oradata orcl xx.dbf size 1024m...
oracle 給 scott 使用者授權 建立表空間
使用sys使用者登陸 授權 grant dba to scott 建立好後收回許可權 revoke dba from scott 建立表空間命令 create tablespace xx logging datafile d oracle oradata orcl xx.dbf size 1024m...