ALTER DATABASE DATAFILE 'C:\ORACLEXE\APP\ORACLE\ORADATA\XE\SYSTEM.DBF' resize 4096M; SELECT USED.TABLESPACE_NAME, USED.USED_BYTES...
分类:
数据库 时间:
2015-07-21 16:39:01
阅读次数:
264
482.USER_DATA is a nonencrypted tablespace that contains a set of tables with data. You want to
convert all existing data in the USER_DATA tablespace and the new data into the encrypted format.
Whic...
分类:
其他好文 时间:
2015-07-20 19:32:25
阅读次数:
82
RMAN命令 1、独立命令 RMAN>shutdown immediate RMAN>startup RMAN>backup format 'd:\backup\%d_%s.bak' tablespace users;2、作业命令 RMAN>run { backup format 'd:\backu...
分类:
其他好文 时间:
2015-07-20 18:16:59
阅读次数:
146
--1、查看表空间的名称及大小 SELECT t.tablespace_name, round(SUM(bytes / (1024 * 1024)), 0) ts_size FROM dba_tablespaces t, dba_data_files d WHERE t.tablespace_na....
分类:
数据库 时间:
2015-07-17 11:48:21
阅读次数:
177
创建表空间
/*分为四步 */
/*第1步:创建临时表空间 */
create temporary tablespace user_temp
tempfile 'D:\oracle\oradata\Oracle9i\user_temp.dbf'
size 50m
autoextend on
next 50m maxsize 20480m //如果最大值没有...
分类:
数据库 时间:
2015-07-16 09:53:00
阅读次数:
237
SELECT UPPER(F.TABLESPACE_NAME) "表空间名", D.TOT_GROOTTE_MB "表空间大小(M)", D.TOT_GROOTTE_MB - F.TOTAL_BYTES "已使用空间(M)", TO_CHAR(ROUND((D.TOT_GROOTTE_MB -...
分类:
数据库 时间:
2015-07-15 20:33:43
阅读次数:
129
500.You opened the encryption wallet and then issued the following command:
SQL>CREATE TABLESPACE securespace
DATAFILE '/home/user/oradata/secure01.dbf'
SIZE 150M
ENCRYPTION USING '3DES168'
DEFAU...
分类:
其他好文 时间:
2015-07-14 13:40:29
阅读次数:
124
案列: 由于生产库impdp导入一个分区表,期间出了问题,终止了导入,但是undo tablespace增长飞快增长到300G了,且经过两天才降下来,但是undo tablespace如果是自动扩展,只会扩展,当事务都结束了它自己也不会收缩的,所以只能手工去收缩。 于是创建一组新的undo ...
分类:
其他好文 时间:
2015-07-13 18:27:17
阅读次数:
173
425.Which of the following are included in a transportable tablespace set? (Choose all that apply.)
A. The datafiles that make up a self-contained group of tablespaces required for copy
B. The syste...
分类:
其他好文 时间:
2015-07-13 14:04:57
阅读次数:
144
1.删除了表空间后,系统空间不释放drop tablespace tbs includingcontents and datafile;答:从网上查的让重启系统,实际操作是重启数据库就行了。2.查看数据库小版本升级记录set pages 100 lines 120 col action format...
分类:
数据库 时间:
2015-07-13 10:03:19
阅读次数:
288