表空间的作用:1.决定数据库实体的空间分配2.设置数据库用户的空间份额3.控制我们数据库部分数据的可用性4.备份和恢复数据如何创建表空间 对应的数据库的文件,语法如下:create tablespace 表空间名称datafile 路径名称size 大小(默认值)autoextend on next...
分类:
数据库 时间:
2015-10-06 14:01:07
阅读次数:
320
QUESTION NO: 113
What RMAN command is used to execute a tablespace point-in-time recovery?
A. recover
B. duplicate
C. restore
D. copy
E. None of the above
Answer: A什么 RMAN 命令是用来执行表空间时间点恢复A. rec...
分类:
其他好文 时间:
2015-10-05 13:06:47
阅读次数:
156
QUESTION NO: 107
Your database is running In ARCIIIVELOG mode. One of the data files, USBRDATAOI. DBF, in the users
tablespace is damaged and you need to recover the file until the point of failure....
分类:
其他好文 时间:
2015-10-05 11:43:27
阅读次数:
130
QUESTION NO: 79
You have lost datafiles 1 and 3 from your database, and the database has crashed. In what order should
you perform the following steps to recover your database?
1. Take the datafile...
分类:
其他好文 时间:
2015-10-03 09:33:04
阅读次数:
109
用 vim中二进制文件的编辑是先通过外部程序xxd来把文件dump成其二进制的文本形式,然后就可以按通常的编辑方式对文件进行编辑,编辑完成后再用xxd 转化为原来的形式即可。可分如下几步进行:(1) 首先以二进制方式编辑这个文件:vim-b datafile(2) 现在用 xxd 把这个文件转换成十...
分类:
系统相关 时间:
2015-09-30 22:05:28
阅读次数:
341
原帖由qingyun于 2010-6-21 15:44 发表在写pl/sql的时候,有个很重要的注意点;比如:beginupdate某个sqlserver的表@dblink名字 .....;update 某个oracle的表...;end;这段pl/sql执行会报错:错误信息是:----------...
分类:
数据库 时间:
2015-09-23 17:01:50
阅读次数:
271
在做异地恢复数据库试验的时候,报错ORA38856,具体情况如下:源库为ORACLERAC,2节点数据库版本11.2.0.4目标库为单实例ORACLE,版本11.2.0.4源库Rman备份为0级全备在restore成功以后,recover不成功,需要用到原来的onlinelog,重建控制文件,然后alterdatabaseopenresetlogs..
分类:
编程语言 时间:
2015-09-22 14:42:50
阅读次数:
195
一、快照太老例子: 1、创建一个很小的undo表空间,并且不自动扩展。 create undo tablespace undo_small datafile '/u01/app/oracle/oradata/prod/undo_small01.dbf' size 2m autoextend off;...
分类:
数据库 时间:
2015-09-20 21:57:59
阅读次数:
181
--选择进入高级系权限system用户,默认数据库orcl。CREATE USER lcs IDENTIFIED BY lcs;--创建用户和密码GRANT RESOURCE,DBA TO lcs;--赋权限CREATE TABLESPACE li_cs_data datafile 'G:\ORAC...
分类:
数据库 时间:
2015-09-20 17:49:03
阅读次数:
237
http://developer.android.com/guide/topics/resources/runtime-changes.html Retaining an Object During a Configuration Change If restarting your activity requires that you recover large sets of data, ...
分类:
移动开发 时间:
2015-09-16 06:28:28
阅读次数:
249