ORA-00604 ORA-00376 Unable to Drop a tablespace in GoldenGate...
分类:
其他好文 时间:
2015-02-22 12:18:23
阅读次数:
195
在os上的datafile已经不存在的情况下 将该tablespace里删除...
分类:
其他好文 时间:
2015-02-22 12:17:59
阅读次数:
121
rman target / nocatalogLIST命令用于列出数据的备份信息 1.列出数据文件的备份集 list backupset of datafile '数据文件的名字' 2.列出表空间的备份信息 list backup of tablespace '表空间的名字' 3.列出整个数据库的备...
分类:
其他好文 时间:
2015-02-21 10:53:21
阅读次数:
140
从tablespace中 删除空的datafile时报ora-03262...
分类:
其他好文 时间:
2015-02-20 20:54:47
阅读次数:
226
1、用户创建SQL> CREATE USER rusking 2 IDENTIFIED BY rusking 3 DEFAULT TABLESPACE USERS --指定默认表空间为users。如果使用系统默认的表空间,其实可以不用指定。 4 QUOTA 10M ON USERS ...
分类:
数据库 时间:
2015-02-15 18:03:28
阅读次数:
254
--1、创建表空间DROP TABLESPACE flhis INCLUDING CONTENTS AND DATAFILES;CREATE TABLESPACE flhis DATAFILE 'F:\app\oracle\oradata\orcl\flhis.dbf' SIZE 200M AUT....
分类:
数据库 时间:
2015-02-14 13:44:58
阅读次数:
139
if exists ( select * from dbo.sysobjects where id = object_id(N'[dbo].[TableSpace]') and objectproperty(id, N'IsUserTable') = 1 ) drop table [dbo].[T....
分类:
数据库 时间:
2015-02-13 16:13:47
阅读次数:
181
1、连接数据库
# su - oracle
$ conn / as sysdba
2、创建表空间
SQL> create tablespace doiido datafile '/main/oracle/oradata/doiido.dbf' size 1024M autoextend on next 1024M maxsize 10240M extent management...
分类:
数据库 时间:
2015-02-13 14:48:52
阅读次数:
167
create tablespace ldcounterloggingdatafile 'D:\user_data.dbf'size 50mautoextend onnext 50m maxsize 20480m
分类:
数据库 时间:
2015-02-12 17:57:09
阅读次数:
139
BIGFILE | SMALLFILEUse this clause to determine whether the tablespace is a bigfile or smallfile tablespace. This clause overrides any default tablesp...
分类:
数据库 时间:
2015-02-11 12:35:03
阅读次数:
319