Oracle 1Z0 053 Exam
Exam Number/Code : 1Z0-053
Exam Name : Oracle Database 11g: Administration II
Questions and Answers : 167 Q&As
Update Time: 2010-05-15
1. You are not sure if Flashback Database is enabled. What database column and view can you query to
see if the flashback logs are being created in the flash recovery area?
A. Query the initialization parameter FLASHBACK_DATABASE in VJINSTANCE.
B. Query the FLASHBACK_ENABLED column in VJDATABASE.
C. Query the FLASHBACK column in VJDATABASE..
D. Query the FLASHBACK_ON column in VJDATABASE.
Answer: D
Explanation:
To enable Flashback Database, you use the command ALTER DATABASE FLASHBACK ON.
Your database must be in ARCHIVELOG mode, you must have the flash recovery area configured, and
you must have DB_FLASHBACK_RETENTION_TARGET set to an appropriate value. A, B, and C are
incorrect because they all specify columns that do not exist.
2. What dynamic performance view can you query to list the supported platforms for transportable
tablespaces?
A. V$TRANSPORTABLE_PLATFORM
B. V$TRANSPORTABLE_TABLESPACE
C. V$SUPPORTED_PLATFORMS
D. V$DATABASE PLATFORM
Answer:A
Explanation:
You use the PLATFORM_NAME and ENDIAN_FORMAT columns to determine the supported endian
formats for all supported platforms.
B, C, and D are incorrect because none of these views exist.
3. You issue the following command to enable block change tracking:
SQL> ALTER DATABASE ENABLE BLOCK CHANGE TRACKING;
However, you receive an error message, and the tracking file is not created. What is a possible reason for
the error message?
A. The parameter DB_RECOVERY_FILE_DEST is not set.
B. You must use ALTER SYSTEM instead. )
C. Your database must be in the MOUNT state to create the block change tracking file.
D. The parameter DB_CREATE_FILE_DEST is not set.
Answer: D
Explanation:
Unless you explicitly specify a location for the block change tracking file using the USING FILE clause, the
file is created using Oracle Managed Files (OMF), w
相关文档:
oracle9i卸载
1,在服务中停止oracle的所有服务
2,在程序了卸装所有Oracle产品,(但Universal Installer本身不能被删除)
3,删除注册表:
(1)运行regedit选择HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE,删除这个项
(2)选择HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Oracle,删除这个项.
(3),选择HKEY_LOCAL_MACHI ......
oracle实例名,服务名等概念区别与联系
一、数据库名ITPUB个人空间v{7x6lo\
什么是数据库名?ITPUB个人空间*s*R5LVBXZ2w$I
数据库名就是一个数据库的标识,就像人的身份证号一样。他用参数DB_NAME表示,如果一台机器上装了多全数据库,那么每一个数据库都有一个数据库名。在数据库安装或创建完成之后,参 ......
数据库之间的链接建立在DATABASE LINK上。要创建一个DB LINK,必须先在每个数据库服务器上设置链接字符串。
1、 配置TNS , $ORACLE_HOME/NETWORK/ADMIN/tnsname.ora
10gstandby =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = HFCC-KF-3068)(PORT = ......
1.安装时要执行两个脚本,root.sh是其中一个。
需要用root用户执行root.sh去生成/etc/oratab文件。————1.dbca中不会有删除选项(因为运行时需要/etc/oratab)
& ......
1import java.sql.*;
2import java.util.logging.Level;
3import java.util.logging.Logger;
4
5/** *//**
6 * Title: JDBC连接数据库
7 * Description: 本实例演示如何使用JDBC连接Oracle数据库,并演示添加数据和查询数据.
8 */
9public class JDBCExampl ......