oracle关于用户表数目,表大小,视图数目及表空间等查询增加修改删除等操作讲解

        查看当前用户的缺省表空间

  sql>select username,default_tablespace fromuser_users;

  查看当前用户的角色

  sql>select * from user_role_privs;

  查看当前用户的权限和表级权限

  sql>select * from user_sys_privs;

  sql>select * from user_tab_privs;

  查看用户下所有的表

  sql>select * from user_tables;

  1、用户

  查看当前用户的缺省表空间

  sql>select username,default_tablespace fromuser_users;

  查看当前用户的角色

  sql>select * from user_role_privs;

  查看当前用户的系统权限和表级权限

  sql>select * from user_sys_privs;

  sql>select * from user_tab_privs;

  显示当前会话所具有的权限

  sql>select * from session_privs;

  显示指定用户所具有的系统权限

  sql>select * from dba_sys_privs wheregrantee=’game’;

  2、表

  查看用户下所有的表

  sql>select * from user_tables;

  查看名称包含log字符的表

  sql>select object_name,object_id from user_objects

  where instr(object_name,’log’)>0;

  查看某表的创建时间

  sql>select object_name,created from user_objectswhere object_name=upper(‘&table_name’);

  查看某表的大小

  sql>select sum(bytes)/(1024*1024) as”size(m)” from user_segments

  where segment_name=upper(‘&table_name’);

  查看放在oracle的内存区里的表

  sql>select table_name,cache from user_tables whereinstr(cache,’y’)>0;

  3、索引

  查看索引个数和类别

  sql>select index_name,index_type,table_name fromuser_indexes order by table_name;

  查看索引被索引的字段

  sql>select * from user_ind_columns whereindex_name=upper(‘&index_name’);

  查看索引的大小

  sql>select sum(bytes)/(1024*1024) as”size(m)” from user_segments

  where segment_name=upper(‘&index_name’);

  4、序列号

  查看序列号,last_number是当前值

  sql>select * from user_sequences;

  5、视图

  查看视图的名称

  sql>select view_name from user_views;

  查看创建视图的select语句

  sql>set view_name,text_length from user_views;

  sql>set long 2000; 说明:可以根据视图的text_length值设定set long 的大小

  sql>select text from user_views whereview_name=upper(‘&view_name’);

  6、同义词

  查看同义词的名称

  sql>select * from user_synonyms;

  7、约束条件

  查看某表的约束条件

  sql>select constraint_name,constraint_type,search_condition, r_constraint_name

  from user_constraints where table_name =upper(‘&table_name’);

  sql>select c.constraint_name,c.constraint_type,cc.column_name

  from user_constraints c,user_cons_columns cc

  where c.owner = upper(‘&table_owner’) andc.table_name = upper(‘&table_name’)

  and c.owner = cc.owner and c.constraint_name =cc.constraint_name

  order by cc.position;

  8、存储函数和过程

  查看函数和过程的状态

  sql>select object_name,status from user_objectswhere object_type=’function’;

  sql>select object_name,status from user_objectswhere object_type=’procedure’;

  查看函数和过程的源代码

  sql>select text from all_source where owner=userand name=upper(‘&plsql_name’);

————————————————————————————————————————————-

oracle:

—-常用数据字典

user_

记录用户对象的信息,如user_tables包含用户创建的所有表; user_views,user_constraints等;

all_

记录用户对象的信息及被授权访问的对象信息;

dba_

记录实例的所有对象的信息,如dba_users包含数据库实例中

所有用户的信息,dba的信息包含user和all的信息;

v$ 当前实例的动态视图,包含系统管理和优化使用的视图;

gv_ 分布环境下所有实例的动态视图,包含系统管理和优化使用的视图, 这里的gv表示 global v$的意思;

如当前分布环境下启动多个实例:

set line 160 (每行显示160个字符)

select inst_id,sid,lmode from gv$lock where inst_id = 1 or inst_id=2;

oracle常用数据字典,oracle10增加了不少数据字典10gr1 有1713个,r2有1870个:

1 基本的数据字典:

dba_tables 所有用户的所有表的信息;

dba_tab_columns 所有用户的表的列(字段)信息;

dba_views 所有用户的所有视图信息;

dba_synonyms 所有用户同义词信息;

dba_sequences 所有用户序列信息;

dba_constraints 所有用户的表约束信息;

dba_indexes 所有用户索引的简要信息;

dba_ind_columns 所有用户索引的列信息;

dba_triggers 所有用户触发器信息 ;

dba_source所有用户存储过程源代码信息;

dba_procedus 所有用户存储过程;

dba_segments 所有用户段(表,索引,cluster)使用空间信息;

dba_extents 所有用户段的扩展段信息;

dba_objects 所有用户对象的基本信息(包括素引,表,视图,序列等);

cat 当前用户可以访问的所有的基表 ;

tab 当前用户创建的所有基表,视图,同义词等;

dict 构成数据字典的所有表的信息;

2 与数据库相关的数据字典:

数据库:

v$database 同义词 v_$database,记录系统的运行情况;

表空间:

dba_tablespaces 记录系统表空间的基本信息;

dba_data_files 记录系统数据文件及表空间的基本信息;

dba_free_space 记录系统表空间的剩余空间的信息;

控制文件:

v$controlfile 记录系统控制文件的路径信息;

v$parameter 记录系统各参数的基本信息;

v$controlfile_record_section 记录系统控制运行的基本信息;

数据文件:

dba_data_files 记录系统数据文件及表空间的基本信息;

v$datafile 记录来自控制文件的数据文件信息;

v$filestat 记录数据文件读写的基本信息 ;

–查看vga信息:

show sga;

select * from v$sgastat;

–可以通过以下几个动态性能视图查看信息:

v$sysstat 系统统计信息

v$sesstat 用户会话统计信息

v$pgastat 显示内存使用统计信息

v$sql_workarea sql游标所用工作区的信息

v$ sql_workarea_active 当前系统工作区的信息

–在v$process动态性能视图中可以查询到每个oracle进程的pga分配的内存和已使用的内存情况,

–其中pga_used_mem表示已使用的,pag_alloc_mem表示已分配的,pga_max_men表示pga的最大值。

sql> select pid,pga_used_mem,pga_alloc_mem,pga_max_mem from v$process;

–查看后台进程:

select * from v$bgprocess where paddr <> ’00’;

–查看所有的表空间;

sql> select tablespace_name from dba_data_files order by tablespace_name;

–查看表空间的名字及大小:

sql> select t.tablespace_name, round(sum(bytes/(1024*1024)),0) ts_size

from dba_tablespaces t, dba_data_files d where t.tablespace_name =d.tablespace_name

group by t.tablespace_name;

–创建表空间的语法是:

create tablespace tablespacename

datafile ‘filename’ [size integer [k|m]]

[autoextend [off|on]];

–创建有多个数据文件的表空间:

sql> create tablespace sales

datafile ‘d:/sales/sales_data01.dbf’ size 10m autoextend on next 10m maxsize100m,

‘d:/sales/sales_data02.dbf’ size 10m autoextend on next 10m maxsize

unlimited,’d:/sales/sales_data03.dbf’ size 10m;

–查看表空间的大小;

sql> select tablespace_name,sum(bytes)/1024/1024 mb from dba_free_spacegroup by tablespace_name;

–查看表空间中数据文件存放的路径:

sql> select tablespace_name, bytes/1024/1024 file_size_mb, file_name fromdba_data_files;

删除表空间:

sql> drop tablespace worktbs including contents;

表空间已丢弃。

再次查询表空间会发现已经没有worktbs表空间了。

如果我们再次删除表空间会出现什么后果?

删除一个不存在的表空间:

sql> drop tablespace worktbs including contents;

drop tablespace worktbs including contents

*

error 位于第 1 行:

ora-00959: 表空间’worktbs’不存在

o 为表空间增加数据文件

sql> alter tablespace sales add datafile’d:/oracle/oradata/test/testtablespace/

sales_data04.dbf’ size 10m autoextend on next 10m maxsize 100m,

‘c:/oracle/oradata/test/testtablespace/sales_data05.dbf’ size 10m autoextend onnext 10m maxsize unlimited,’c:/oracle/oradata/test/testtablespace/sales_data06.dbf’ size 10m;

表空间已更改。

 修改数据文件的大小

 在数据文件中的可用空间未使用完时,允许对数据文件进行压缩,当压缩空间大小超过未使用空间大小时,将会产生错误。

sql> alter database datafile’c:/oracle/oradata/test/testtablespace/sales_data04.dbf’ resize 30m;

数据库已更改。

 关闭表空间数据文件的自动扩展属性

 alter database

 datafile ‘c:/sales_data04.dbf’ ,

 ‘c:/sales_data05.dbf’,

 ‘c:/sales_data06.dbf’

 autoextend off;

 打开表空间数据文件的自动扩展属性

 alter database

 datafile ‘c:/sales_data04.dbf’ ,

 ‘c:/sales_data05.dbf’,

 ‘c:/sales_data06.dbf’

 autoextend on;

 修改表空间属性(离线)

 alter tablespace sales offline;

 修改表空间属性(在线)

 alter tablespace sales online;

 修改表空间属性(只读)

 alter tablespace sales read only;

 修改表空间属性(读写)

 alter tablespace sales read write;

 如下系统表空间不得设置为 offline 或者 readonly

 system , temp,undo ,undotbs

 移动表空间的数据文件

 1. 使表空间脱机(系统表空间不得脱机,故不得移动)

 2. 修改数据文件的名称

 3. 执行 alter tablespace rename datafile 命令

 4. 使表空间联机

 第一步:alter tablespace sales offline;

 第二步:物理移动数据文件到目的地(可以是表空间的

 部分数据文件,可以修改数据文件的名称)

 第三步: 逻辑移动,修改控制文件的内容

 alter tablespace sales rename

 datafile ‘c:/sales01.dbf’ to ‘d:/sales02.dbf’

 –可以有多个数据文件,但是源文件要在to的左边,目的文件要在to 右边,文件名称之间逗号分割.

 第四步: 将表空间联机

 alter tablespace sales online;

 第五步:查询dba_data_files确认

 创建用户,指定默认表空间,磁盘配额

 create user rose identified by rose default

 tablespace sales quota 10m on sales;

 给用户授权

 grant connect,resource,dba to rose;

 用户登录

 connect rose/rose

 创建表

 create table emp(eid number)

 该表默认放在表空间 sales 中

 查询用户的存储限额dba_ts_quotas

 删除表空间(如果该表空间为空)

 drop tablespace sales ;

 删除表空间的同时删除数据文件(不为空)

 drop tablespace sales including contents and datafiles;

 创建表的同时指定该表的存储位置

 create table mytab(tid int ) tablespace sales;

 删除表空间(如果该表空间为空)

 drop tablespace sales ;

 删除表空间的同时删除数据文件(不为空)

 drop tablespace sales including contents and datafiles;

 创建表的同时指定该表的存储位置

 create table mytab(tid int ) tablespace sales;

 查看当前用户每个表占用空间的大小:

 select segment_name,sum(bytes)/1024/1024 from user_extents group bysegment_name

 查看每个表空间占用空间的大小:

 select tablespace_name,sum(bytes)/1024/1024 from dba_segments group bytablespace_name

只有用合法的用户帐号才能访问oracle数据库

oracle 有几个默认的数据库用户

scott/tiger

创建一个名称为 martin 的用户,其密码为martinpwd

create user martin identified by martinpwd

default tablespace users

temporary tablespace temp;

grant 命令可用于为用户分配权限或角色;

connect角色允许用户连接至数据库,并创建数据库对象。

grant connect to martin;

resource角色允许用户使用数据库中的存储空间。

grant resource to martin;

此系统权限允许用户在当前模式中创建序列,此权限包含在connect角色中。

grant create sequence to martin;

grant create session to martin;

grant create table to martin;

grant create view to martin;

grant create sequence to martin;

授予用户 martin 操作emp表对象的权限 :

允许用户查询 test 表的记录

grant select on emp to martin;

允许用户更新 test 表中的记录

grant update on test to martin;

允许用户插入、删除、更新和查询 test 表中的记录

grant all on test to martin;

alter user 命令可用于更改口令:

修改 martin 用户的密码:

alter user martin identified by martinpass;

drop user 命令用于删除用户:

删除 martin 用户模式:

drop user martin cascade;

alter session set nls_date_format=’yyyy-mm-dd’;

1开始创建数据库:

—————-使用工具创建 (步骤省略)

2登陆新数据库

run/sqlplus sys/sys@accp

(此时如果登陆老数据库使用 sqlplus sys/sys@orac9i)

2创建表空间:sales (用来保存accp数据库的数据)

create tablespace testtbs datafile ‘d:/sales/sales001.dbf’ size 10m autoextendon next 10m maxsize 30m,’d:/sales/sales002.dbf’ size 10m autoextend on next 10mmaxsize 30m

3创建用户accp并授予权限

create user accp identified by accp default tablespace testtbs;

grant connect to accp;

grant resource to accp;

4以accp用户身份登陆accp数据库

create table person(pid number(5),pname varchar2(20)) tablespace testtbs;

insert into person values(1001,’tom’);

commit;

select table_name,tablespace_name from user_tables;

select * from person;

(0)
上一篇 2022年3月22日
下一篇 2022年3月22日

相关推荐