Exam Code: 1Z0-053 (Practice Exam Latest Test Questions VCE PDF)
Exam Name: Oracle Database 11g: Administration II
Certification Provider: Oracle
Free Today! Guaranteed Training- Pass 1Z0-053 Exam.
Oracle 1Z0-053 Free Dumps Questions Online, Read and Test Now.
NEW QUESTION 1
Which statements are true regarding the system-defined moving window baseline in Oracle Database 11g? (Choose all that apply.)
Answer: BC
Explanation:
A moving window baseline corresponds to all AWR data that exists within the AWR retention period. This is useful when using adaptive thresholds because the database can use AWR data in the entire AWR retention period to compute metric threshold values. Oracle Database automatically maintains a system-defined moving window baseline. The
default window size for the system-defined moving window baseline is the current AWR retention period, which by default is 8 days. If you are planning to use adaptive thresholds, consider using a larger moving window—such as 30 days—to accurately compute threshold values. You can resize the moving window baseline by changing the number of days in the moving window to a value that is equal to or less than the number of days in the AWR retention period. Therefore, to increase the size of a moving window, you must first increase the AWR retention period accordingly.
NEW QUESTION 2
You execute the following RMAN command to perform the backup operation:
RMAN> RUN
{
ALLOCATE CHANNEL c1 DEVICE TYPE disk MAXOPENFILES 8; BACKUP DATABASE FILESPERSET 4;
}
What is the multiplexing level in the preceding backup process?
Answer: A
NEW QUESTION 3
You are performing incomplete recovery using RMAN. You execute the following RUN block:
RUN
{
SET UNTIL SCN 1107600; RESTORE DATABASE; RECOVER DATABASE;
}
Which statement is true about the result?
Answer: B
NEW QUESTION 4
Which statement describes the effect of table redefinition on the triggers attached to the table?
Answer: A
NEW QUESTION 5
Using the LIST command in Recovery Manager (RMAN), which two pieces of information in the RMAN repository can be listed? (Choose two.)
Answer: AD
Explanation:
About the LIST command
The primary purpose of the LIST command is to list backup and copies. For example, you can list:
✑ Backups and proxy copies of a database, tablespace, data file, archived redo log, or control file
✑ Backups that have expired
✑ Backups restricted by time, path name, device type, tag, or recoverability
✑ Archived redo log files and disk copies
Besides backups and copies, RMAN can list other types of data. For example, you can list:
✑ Backup sets and proxy copies
✑ Image copies
✑ Archived redo log files
✑ Database incarnations
✑ Databases in a Data Guard environment
✑ Backups and copies for a primary or standby database in a Data Guard environment
✑ Restore points
✑ Names of stored scripts
✑ Failures for use with Data Recovery Advisor
NEW QUESTION 6
The INV_HISTORY table is created using the command:
The following data has been inserted into the INV_HISTORY table:
You would like to store the data belonging to the year 2006 in a single partition and issue the command:
SQL> ALTER TABLE inv_history MERGE PARTITIONS
FOR(TO_DATE('15-feb-2006','dd-mon-yyyy')), FOR(TO_DATE('15-apr-2006'))
INTO PARTITION sys_py;
What would be the outcome of this command?
Answer: C
NEW QUESTION 7
Which of the following are valid program types for a lightweight job? (Choose all that apply.)
Answer: AD
Explanation:
Job_type
Job action type ('PLSQL_BLOCK', 'STORED_PROCEDURE', 'EXECUTABLE', or 'CHAIN')
NEW QUESTION 8
Your database initialization parameter file has the following entry: SEC_MAX_FAILED_LOGIN_ATTEMPTS=3
Which statement is true regarding this setting?
Answer: A
NEW QUESTION 9
What methods of point-in-time recovery are available? (Choose all that apply.)
Answer: ABCD
NEW QUESTION 10
A database is running In ARCHIVELOG mode. It has two online redo log groups and each group has one member.
A LGWR Input/output (I/O) fells due to permanent media failure that has resulted In the loss of redo log file and the LWGR terminates causing the instance to crash. The steps to recover from the loss of a current redo log group member in the random order are as follow.
1) Restore the corrupted redo log group.
2) Restore from a whole database backup.
3) Perform incomplete recovery.
4) Relocate by renaming the member of the damaged online redo log group to a new location.
5) Open the database with the RESETLOGS option.
6) Restart the database instance.
7) Issue a checkpoint and clear the log.
Identify the option with the correct sequential steps to accomplish the task efficiently.
Answer: C
Explanation:
Recovering After Losing All Members of an Online Redo Log Group
If a media failure damages all members of an online redo log group, then different scenarios can occur depending on the type of online redo log group affected by the failure
and the archiving mode of the database.
If the damaged online redo log group is current and active, then it is needed for crash recovery; otherwise, it is not. Table 30-4 outlines the various recovery scenarios.
C:UsersalboDesktop1-1.jpg
NEW QUESTION 11
You discover that your Recycle Bin contains two tables with the same name, MY_TABLE.
You also have a table named MY_TABLE in your schema. You execute the following statement:
FLASHBACK TABLE my_table TO BEFORE DROP RENAME TO my_table2; What will be the result of executing this statement?
Answer: B
NEW QUESTION 12
During recovery, you need to know if log sequence 11 is in the online redo logs, and if so, you need to know the names of the online redo logs so you can apply them during recovery. Which view or views would you use to determine this information? (Choose all that apply.)
Answer: AE
NEW QUESTION 13
Which is the correct command to back up the database, back up the archived redo logs, and then remove the backed-up archived redo logs?
Answer: D
NEW QUESTION 14
Which of the following most closely represents an image copy?
Answer: D
NEW QUESTION 15
In your database, the RESULT_CACHE_MODE parameter has been set to MANUAL in the initialization parameter file. You issued the following command:
SQL>SELECT /*+ RESULT_CACHE */ sale_category, sum(sale_amt) FROM sales GROUP BY sale_category;
Where would the result of this query be stored?
Answer: B
NEW QUESTION 16
While Monitoring the space usage in your database that is in ARCHIVELOG mode you observed that the flash recovery area does not have enough free space to accommodate any more files and you do not have necessary permissions to add more space to it.
Identify the two events that can occur in the event of a log switch? (Choose two.)
Answer: BC
NEW QUESTION 17
While deploying a new application module, the software vendor ships the application software along with appropriate SQL plan baselines for the new SQLs being introduced. Which two statements describe the consequences? (Choose two.)
Answer: AC
Explanation:
Purpose of SQL Plan Baselines
Common scenarios where SQL plan management can improve or preserve SQL performance include:
A database upgrade that installs a new optimizer version usually results in plan changes for a small percentage of SQL statements. Most of these plan changes result in either no performance change or improvement. However, some plan changes may cause performance regressions. SQL plan baselines significantly minimize potential regressions resulting from an upgrade.
Ongoing system and data changes can impact plans for some SQL statements, potentially causing performance regressions. SQL plan baselines help minimize performance regressions and stabilize SQL performance.
Deployment of new application modules means introducing new SQL statements into the database. The application software may use appropriate SQL execution plans developed in a standard test configuration for the new statements. If the system configuration is significantly different from the test configuration, then the database can evolve SQL plan baselines over time to produce better performance.
NEW QUESTION 18
Which three statements are true about windows? (Choose three.)
Answer: ACE
NEW QUESTION 19
Globalization support is implemented through the text- and character-processing functions provided by which Oracle feature?
Answer: B
Explanation:
NLSRTL: NLS Runtime Type Library.
NEW QUESTION 20
Which of the following statements are true regarding the Recycle Bin? (Choose all that apply.)
Answer: BD
NEW QUESTION 21
The following databases are registered in the base recovery catalog: PROD1, PROD2, and PROD3.The database user CATOWNER owns the base recovery catalog. You want a new user VPC1 to have access to only the PROD1 database and create a virtual private catalog.
The RVPC user can do which of the following? (Choose all that apply.)
Answer: AC
NEW QUESTION 22
Every Sunday the Unix system administrator has a job that executes a full backup of the entire Unix system your database is on. Is this backup usable for backup and recovery of your database?
Answer: C
NEW QUESTION 23
Which command do you use to generate a report of database incarnations?
Answer: A
Explanation:
LIST INCARNATION OF DATABASE prod3;
NEW QUESTION 24
Which are the two prerequisites before setting up Flashback Data Archive? (Choose two.)
Answer: DE
NEW QUESTION 25
For Oracle 11g, Oracle strongly recommends that you configure your database to use which of the following memory management features?
Answer: D
NEW QUESTION 26
What is the correct order of steps to perform an online database backup?
a: alter database begin backup; b: alter database end backup;
c: Back up the database datafiles. d: Back up the archive log files.
e: alter system switch logfile;
Answer: E
Explanation:
(link)
To back up online read/write tablespaces in an open database:
1. Use the DBA_DATA_FILES data dictionary view to identify all of the data files in the tablespace.
2. ALTER TABLESPACE users BEGIN BACKUP;
3. Back up the online data files of the online tablespace with operating system commands.
4. ALTER TABLESPACE users END BACKUP;
5. ALTER SYSTEM ARCHIVE LOG CURRENT; Archive the unarchived redo logs so that the redo required to recover the tablespace backup is archived.
NEW QUESTION 27
......
Recommend!! Get the Full 1Z0-053 dumps in VCE and PDF From Certshared, Welcome to Download: https://www.certshared.com/exam/1Z0-053/ (New 698 Q&As Version)