码迷,mamicode.com
首页 > 数据库 > 详细

oracle数据库的使用

时间:2016-07-04 10:03:55      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:

【oracel创建表空间的方法】
--创建永久表空间--
create tablespace 表空间名(如:table_1)
datafile ‘文件路径及文件名(如:F:\java\Oracle表空间.dbf)‘注意:后缀为bdf
size 表空间大小(如:100M)
autoextend on next 每次自动扩展大小(如:50m);

--创建临时表空间--
create temporary tablespace 表空间名(如:table_1)
tempfile ‘文件路径及文件名(如:F:\java\Oracle表空间.dbf)‘注意:后缀为bdf
size 表空间大小(如:100M)
例如:
create temporary tablespace table_1
Tempfile F:\java\Oracle表空间\A.dbf
size 100M

--查看表空间名称、id、文件存储位置、初始大小
select tablespace_name,file_id,file_name
bytes
from dba_data_files
order by file_id;


【oracel创建用户的方法】
角色权限:
connect
resource

设置用户权限:
在sql窗口
create user usename
identified by password;

grant connect to usename;
grant resource to usename;
grant create session to usename;
grant create any index to usename;
grant create any view to usename;
grant select any table to usename;
grant update any table to usename;
grant delete any table to usename;

--授权DBA权限给用户
grant dba to usename;

oracle数据库的使用

标签:

原文地址:http://www.cnblogs.com/yan0802/p/5639540.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!