SELECT a.tablespace_name "表空间名",total "表空间大小",free "表空间剩余大小",(total - free) "表空间使用大小",total / (1024 * 1024 * 1024) "表空间大小(G)",free / (1024 * 1024 * 10 ...
分类:
数据库 时间:
2019-12-23 16:39:16
阅读次数:
100
-- 数据库查询表空间使用情况SELECT Upper(F.TABLESPACE_NAME) "表空间名", D.TOT_GROOTTE_MB/1024 "表空间大小(G)", (D.TOT_GROOTTE_MB - F.TOTAL_BYTES)/1024 "已使用空间(G)", To_char(R ...
分类:
数据库 时间:
2019-12-20 18:49:18
阅读次数:
207
Windows:用户 create temporary tablespace SP_MINES_TMP tempfile 'E:\Oracle\oradata\orcl\SP_MINES_TMP.dbf' size 50m autoextend on next 50 maxsize 2048m ex ...
分类:
数据库 时间:
2019-12-18 16:24:13
阅读次数:
90
脚本: 数据库备份: backup database format='/u01/app/oracle/oradata/Backup/oradb_%d_%s.bak'; 表空间备份:backup tablespace EXAMPLE format='/u01/app/oracle/oradata/Ba ...
分类:
数据库 时间:
2019-12-17 16:42:33
阅读次数:
142
SELECTF.TABLESPACE_NAME,(T.TOTAL_SPACE-F.FREE_SPACE)"USED(MB)",F.FREE_SPACE"FREE(MB)",T.TOTAL_SPACE"TOTAL(MB)",(ROUND((F.FREE_SPACE/T.TOTAL_SPACE)100))||‘%‘PER_FR
分类:
数据库 时间:
2019-12-09 19:15:12
阅读次数:
187
创建表空间create tablespace TBS_DATA datafile '/u01/oradata/tbs_data01.dbf' size 16G autoextend off;create tablespace TBS_DATA_IDX datafile '/u01/oradata/t... ...
分类:
数据库 时间:
2019-12-09 13:59:47
阅读次数:
106
APPLIES TO: Oracle Database - Enterprise Edition - Version 10.2.0.1 to 10.2.0.4 [Release 10.2]Oracle Database - Enterprise Edition - Version 10.2.0.5 ...
分类:
数据库 时间:
2019-12-08 23:25:39
阅读次数:
164
How to recover a skipped tablespace after an incomplete recovery? (Doc ID 1561645.1) APPLIES TO: Oracle Database - Enterprise Edition - Version 11.2.0 ...
分类:
其他好文 时间:
2019-12-08 10:55:11
阅读次数:
87
环境: OS: Centos 7 DB:12.2.0.1 数据库必须在归档模式 1.创建表空间12c pdb下创建表空间create tablespace tps_dataloggingdatafile '/u01/app/oracle/oradata/ora12c/ora12cpdb1/tps_d ...
分类:
其他好文 时间:
2019-12-06 19:14:14
阅读次数:
130
SQL>CREATE BIGFILE TABLESPACE 表名datafile 'd:\ndo\ddo\表名.DBF‘SIZE 500M AUTOEXTEND ON; SQL>Create Bigfile tablespace bf_images_xpdatafile 'e:\datacenter ...
分类:
数据库 时间:
2019-11-08 10:46:33
阅读次数:
110