LINUX下ORACLE表空间及用户创建

记录详细过程以备使用(https://www.cnblogs.com/csyd/p/10370544.html)

Connected to Oracle Database 11g Enterprise Edition Release 11.2.0.1.0
Connected as sys@ip:port/sid AS SYSDBA

管理员用户登录oracle数据库

1、创建临时表空间

select name from v$tempfile;查出当前数据库临时表空间,下面创建临时表空间会使用里面的存放路径;

SQL> select name from v$tempfile;

NAME


/home/oracle/app/oracle/oradata/helowin/temp01.dbf

创建临时表空间:使用上面查询到的临时表空间路径
SQL> create temporary tablespace ccsotest_temp tempfile ‘/home/oracle/app/oracle/oradata/helowin/ccsotest_temp.dbf’ size 100m reuse autoextend on next 20m maxsize unlimited;

Tablespace created

2、创建表空间

select name from v$datafile;查询出当前数据库表空间,下面创建表空间会使用里面的路径

SQL> select name from v$datafile;

NAME


/home/oracle/app/oracle/oradata/helowin/system01.dbf

/home/oracle/app/oracle/oradata/helowin/sysaux01.dbf

/home/oracle/app/oracle/oradata/helowin/undotbs01.dbf

/home/oracle/app/oracle/oradata/helowin/users01.dbf

/home/oracle/app/oracle/oradata/helowin/example01.dbf

创建表空间:使用上面查询到的表空间路径

SQL> create tablespace ccsotest datafile ‘/home/oracle/app/oracle/oradata/helowin/ccsotest.dbf’
size 100M reuse autoextend on next 40M maxsize unlimited default storage(initial 128k next 128k minextents 2 maxextents unlimited);

Tablespace created

3、创建用户并指定表空间

SQL> create user ccsotest_new identified by ccsotest_new default tablespace ccsotest temporary tablespace ccsotest_temp;

User created

4、赋予用户权限

SQL> grant dba to ccsotest_new;

Grant succeeded

其他sql

select * from all_tab_comments – 查询所有用户的表,视图等。

select * from user_tab_comments – 查询本用户的表,视图等。

select * from all_col_comments --查询所有用户的表的列名和注释。

select * from user_col_comments – 查询本用户的表的列名和注释。

select * from all_tab_columns --查询所有用户的表的列名等信息。

select * from user_tab_columns --查询本用户的表的列名等信息。

扩展资料

ORACLE下有三个视图

DBA_TABLES 拥有DBA角色的用户可以查看系统中的所有表

USER_TABLES 登录数据库的当前用户拥有的所有表

ALL_TABLES 登录数据库的当前用户有权限查看的所有表

5、设置ORACLE11g登录名和密码不区分大小写

oracle 11g 以前的版本的用户名和密码是不区分大小写的;
oracle 11g 用户名和密码默认区分大小写,

可更改alter system set sec_case_sensitive_logon=false; 设置改为不区分大小写,

用DBA用户登录执行就好了,修改后立即生效,不用重启数据库实例。

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐