http://blog.tanelpoder.com/2008/09/02/oracle-hidden-costs-revealed-part2-using-dtrace-to-find-why-writes-in-system-tablespace-are-slower-than-in-other ...
分类:
数据库 时间:
2017-04-04 15:48:55
阅读次数:
277
MOVE降低高水位 HWM--创建实验表空间SQL> create tablespace andy03 datafile '/home/oracle/app/oradata/orcl/andy03.dbf' size 10M autoextend on next 30M; --创建实验数据SQL> ...
分类:
其他好文 时间:
2017-04-02 10:26:41
阅读次数:
181
selecta.tablespace_name"tbsname",100-round((nvl(b.bytes_free,0)/a.bytes_alloc)*100,2)"ratio",round(a.bytes_alloc/1024/1024,2)"size(M)",round(nvl(b.bytes_free,0)/1024/1024,2)"free(M)",round((a.bytes_alloc-nvl(b.bytes_free,0))/1024/1024,2)"usedM)",to_char(s..
分类:
数据库 时间:
2017-04-01 22:24:25
阅读次数:
213
--删除空的表空间,但是不包含物理文件drop tablespace tablespace_name;--删除非空表空间,但是不包含物理文件drop tablespace tablespace_name including contents;--删除空表空间,包含物理文件drop tablespac... ...
分类:
其他好文 时间:
2017-04-01 16:59:04
阅读次数:
151
建立表空间及用户 create temporary tablespace nhgl_temp tempfile 'E:\oracledata\nhgl\nhgl_temp.dbf' size 50m autoextend on next 50m extent management local; cr ...
分类:
数据库 时间:
2017-03-30 11:30:39
阅读次数:
262
一、oracle用户: 二、权限 1.系统权限: sys登陆创建c##test用户后,给用户c##test授权,并且带有传播性: SQL> create user c##test identified by 123456 default tablespace users; SQL> create u ...
分类:
数据库 时间:
2017-03-30 00:10:11
阅读次数:
279
这篇文章主要介绍了PostgreSQL教程(十五):系统表详解,本文讲解了pg_class、pg_attribute、pg_attrdef、pg_authid、pg_auth_members、pg_constraint、pg_tablespace、pg_namespace、pg_database等表 ...
分类:
数据库 时间:
2017-03-28 16:18:01
阅读次数:
324
-- 1 向数据库导入数据时报了ORA-01653: unable to extend table错误,网上查了下原因是由于表空间不足引起的; 查询表空间使用情况语句 select a.tablespace_name,a.bytes/1024/1024 total, (a.bytes-b.bytes ...
分类:
数据库 时间:
2017-03-23 14:49:32
阅读次数:
196
You can use theTransportable Tablespaces feature to copy a set of tablespaces from one OracleDatabase to another. --可以使用TTS 特性将表空间从一个数据库copy 到另一个数据库。 ...
分类:
数据库 时间:
2017-03-23 14:37:56
阅读次数:
209
这个错误是由于索引失效造成的,重建索引后,问题就解决了。 我们看到,当使用类似 alter table xxxxxx move tablespace xxxxxxx 命令后,索引就会失效。 当然,作为测试,也可以直接使用alter index idxt unusable;命令使索引失效,例如:SQL ...
分类:
其他好文 时间:
2017-03-23 14:35:59
阅读次数:
138