1.创建表空间SQL> create tablespace rc_data datafile '/orcl_backup/rc_dbf/rc_data01.dbf' size 50M;2.创建一个用户,SQL> create user rc_admin identified by rc_admin ...
分类:
其他好文 时间:
2014-12-30 11:37:24
阅读次数:
151
批量热备脚本: select 'alter tablespace '||tablespace_name||' begin backup;'||chr(10)|| 'host cp'||file_name||'/backup'||chr(10)||'alter tablespace'||' ...
分类:
其他好文 时间:
2014-12-29 16:46:34
阅读次数:
143
非关键性数据文件丢失(可以脱机数据文件的丢失):
run{
sql 'alter database datafile
restore datafile
recover datafile
slq 'alter database datafile
}
除了system、undo_tablespace参数后值对应的表空间都可以采用以上的办法恢复。
[oracle@oracle ~...
分类:
其他好文 时间:
2014-12-27 19:01:55
阅读次数:
176
**1,oracle有时候导入表dmp文件时,是存在于某个表空间中,若导入到的新数据库中没有该表空间,则会出错所以每次导入时,先检查表空间是否存在,否则自己创建create tablespace dp_dataloggingdatafile 'D:\oracle\product\10.2.0\orc...
分类:
数据库 时间:
2014-12-27 15:08:51
阅读次数:
207
/* 说明:若已经存在相应的用户和表空间,则需要先删除相应的用户和表空间 然后再全部重新建立*/--删除用户drop user USERNAME cascade;--删除表空间drop tablespace DATA_TEMP including contents and dat...
分类:
数据库 时间:
2014-12-26 12:37:01
阅读次数:
228
前言:
以前都是用oracle的工具生成表空间的,今天看到一种更方便、快速的方法---使用数据库脚本。
/*分为四步 */
/*第1步:创建临时表空间 */
create temporary tablespace airforce34
tempfile 'D:\date\airforce34.dbf'
size 100m autoextend on ;
--删除临时表空间...
分类:
数据库 时间:
2014-12-26 11:18:35
阅读次数:
231
参考整理自:http://docs.oracle.com/cd/B19306_01/network.102/b14266/admusers.htm#i1006856
只挑干货讲!!!
一 用户管理
1、创建用户
create user dylan
identified by 123
default tablespace users --指定表空间
quota 100m on use...
分类:
数据库 时间:
2014-12-26 01:02:57
阅读次数:
295
The current time is 12:00 noon. You want to recover the USERS tablespace
from a failure that occurred at 11:50 a.m. You discover that
the only member of an unarchived redo log group containing inf...
分类:
数据库 时间:
2014-12-25 10:01:47
阅读次数:
264
You executed the following command to perform a backup of the
USERStablespace:
RMAN > BACKUP TABLESPACE USERS;
Which type of backup would this command perform?
A. backup set
B. image co...
分类:
数据库 时间:
2014-12-24 11:48:09
阅读次数:
162
执行表空间或数据文件恢复时,数据库既可以是MOUNT状态,也可以是OPEN状态。1、恢复表空间在执行恢复之前,如果被操作的表空间未处理OFFLINE状态,必须首先通过ALTER TABLESPACE…OFFLINE语句将其置为脱机。然后再RESTORE-->RECOVER--->ONLINE即可。R...
分类:
数据库 时间:
2014-12-23 00:06:46
阅读次数:
336