Oracle新建用户,授权,建表空间
程序员文章站
2022-03-17 11:19:50
...
这段时间在学oracle,终于把公司的数据库成功导入到我自己的数据库里了。
create用户
sql 代码
1.
grant privilege
sql 代码
1.
create tablespace
sql 代码
import后就可以用了。
//
建立用户到用户建表的步骤:
Server
建立:create user 用户名 identified by "密码";
授权:grant create session to 用户名;
grant create table to 用户名;
grant create tablespace to 用户名;
grant create view to 用户名;
Client:
建立表空间(一般建N个存数据的表空间和一个索引空间):
create tablespace 表空间名
datafile ' 路径(要先建好路径)\***.dbf ' size *M
tempfile ' 路径\***.dbf ' size *M
autoextend on --自动增长
--还有一些定义大小的命令,看需要
default storage(
initial 100K,
next 100k,
);
Server:
授予用户使用表空间的权限:
alter user 用户名 quota unlimited on 表空间;
或 alter user 用户名 quota *M on 表空间;
自此,才大功告成可以随意建表,运行SQL脚本!
//1.建表空间
2.建用户
3.用户授权
4.删除表空间
5.删除用户
6.删除表的注意事项
在删除一个表中的全部数据时,须使用
create用户
sql 代码
1.
SQL> create user visiontv identified by visiontv default tablespace visiontv quota 10m on users;
grant privilege
sql 代码
1.
SQL> grant connect,resource to visiontv;
create tablespace
sql 代码
1. SQL> create tablespace visiontv datafile 'D:\DBServer\oracle\oradata\oradb01\vis 2. iontv.ora' size 100m reuse default storage(initial 500k next 500k pctincrease 20 3. );
import后就可以用了。
//
建立用户到用户建表的步骤:
Server
建立:create user 用户名 identified by "密码";
授权:grant create session to 用户名;
grant create table to 用户名;
grant create tablespace to 用户名;
grant create view to 用户名;
Client:
建立表空间(一般建N个存数据的表空间和一个索引空间):
create tablespace 表空间名
datafile ' 路径(要先建好路径)\***.dbf ' size *M
tempfile ' 路径\***.dbf ' size *M
autoextend on --自动增长
--还有一些定义大小的命令,看需要
default storage(
initial 100K,
next 100k,
);
Server:
授予用户使用表空间的权限:
alter user 用户名 quota unlimited on 表空间;
或 alter user 用户名 quota *M on 表空间;
自此,才大功告成可以随意建表,运行SQL脚本!
//1.建表空间
create tablespace OSDB datafile 'F:\oracle\oradata\glsqjz\OSDB.ora' size 100m reuse default storage(initial 500k next 500k pctincrease 20);
2.建用户
create user OSUSER identified by OSUSER;//identified by 后面的是密码,前面的是用户名
3.用户授权
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.删除表空间
DROP TABLESPACE TableSpaceName INCLUDING CONTENTS AND DATAFILES;
5.删除用户
DROP USER User_Name CASCADE
6.删除表的注意事项
在删除一个表中的全部数据时,须使用
TRUNCATE TABLE 表名;因为用DROP TABLE,DELETE * FROM 表名时,TABLESPACE表空间该表的占用空间并未释放,反复几次DROP,DELETE操作后,该TABLESPACE上百兆的空间就被耗光了。