1Z0-055 | how many questions of 1Z0-055 dumps?


Q171. The SQL Tuning Advisor has been configured with default configurations in your database instance. Which recommendation is automatically implemented without the DBA's intervention after the SQL Tuning Advisor is run as part of the AUTOTASK framework? 

A. statistics recommendations 

B. SQL profile recommendations 

C. index-related recommendations 

D. restructuring of SQL recommendations 

Answer:

Q172. You have a range-partitioned table in your database. Each partition in the table contains the sales data for a quarter. The partition related to the current quarter is modified frequently and other partitions undergo fewer data manipulations. The preferences for the table are set to their default values. You collect statistics for the table using the following command in regular intervals: 

SQL> EXECUTE DBMS_STATS.GATHER_TABLE_STATS('SH','SALES',GRANULARITY=>'GLOBAL'); 

You need statistics to be collected more quickly. What can you do to achieve this? 

A. Set DYNAMIC_SAMPLING to level 4. 

B. Set the STATISTICS_LEVEL parameter to BASIC. 

C. Set the INCREMENTAL value to TRUE for the partition table. 

D. Increase the value of STALE_PERCENT for the partition table. 

Answer:

Q173. Evaluate the following block of code: 

BEGIN 

DBMS_NETWORK_ACL_ADMIN.CREATE_ACL ( 

acl => 'mycompany-com-permissions.xml', 

principal => 'ACCT_MGR', 

is_grant => TRUE, 

privilege => 'connect'); 

DBMS_NETWORK_ACL_ADMIN.ASSIGN_ACL (

 acl => 'mycompany-com-permissions.xml',

 host => '*.mycompany.com'); 

END; 

What is the outcome of the above code? 

A. It produces an error because a fully qualified host name needs to be specified. 

B. It produces an error because the range of ports associated with the hosts has not been specified. 

C. It creates an access control list (ACL) with the user ACCT_MGR who gets the CONNECT and RESOLVE privileges. 

D. It creates an access control list (ACL) with the user ACCT_MGR who gets the CONNECT privilege but not the RESOLVE privilege. 

Answer:

Q174. Which three statements are true regarding persistent lightweight jobs? (Choose three.) 

A. The user cannot set privileges on persistent lightweight jobs. 

B. The use of a template is mandatory to create persistent lightweight jobs. 

C. Persistent lightweight jobs modify several tables in the data dictionary to generate a lot of redo. 

D. Persistent lightweight jobs are useful when users need to create a large number of jobs in a short time. 

E. Persistent lightweight jobs are useful when users need to create a small number of jobs that run infrequently. 

Answer: A,B,D 

Q175. When executing a SQL workload, you choose to generate execution plans only, without collecting execution statistics. Which two statements describe the implications of this? (Choose two.) 

A. It produces less accurate results of the comparison analysis. 

B. It automatically calls the SQL Tuning Advisor for recommendations. 

C. It shortens the time of execution and reduces the impact on system resources. 

D. Only the changes in the execution plan, and not performance regression, are detected. 

Answer: A,C 

Q176. View the Exhibits exhibit1 and exhibit2. 

Both the processes use PROG_1 as the job template that is already available. The time taken by the jobs are recorded in the TEST_LOG table. While comparing the time taken to create the jobs, the process in exhibit1 takes less time than the process in exhibit2. 

What is the reason for this? 

A. It creates less metadata for the jobs. 

B. It creates jobs temporarily in memory only. 

C. It writes the job metadata to disk in compressed format. 

D. It updates several tables in the SYSTEM tablespace instead of creating new tables. 

Answer:

Q177. Evaluate the following command: 

SQL>ALTER SYSTEM SET db_securefile = 'IGNORE' 

What is the impact of this setting on the usage of SecureFiles? 

A. It forces BasicFiles to be created even if the SECUREFILE option is specified to create the LOB. 

B. It forces SecureFiles to be created even if the BASICFILE option is specified to create the LOB. 

C. It does not allow the creation of SecureFiles and generates an error if the SECUREFILE option is specified to create the LOB. 

D. It ignores the SECUREFILE option only if a Manual Segment Space Management tablespace is used and creates a BasicFile. 

Answer:

Q178. You executed the following commands: 

SQL> ALTER SESSION SET OPTIMIZER_USE_PENDING_STATISTICS = false; 

SQL> EXECUTE DBMS_STATS.SET_TABLE_PREFS('SH', 'CUSTOMERS', 'PUBLISH','false'); 

SQL> EXECUTE DBMS_STATS.GATHER_TABLE_STATS('SH', 'CUSTOMERS'); 

Which statement is correct regarding the above statistics collection on the SH.CUSTOMERS table in the above session? 

A. The statistics are stored in the pending statistics table in the data dictionary. 

B. The statistics are treated as the current statistics by the optimizer for all sessions. 

C. The statistics are treated as the current statistics by the optimizer for the current sessions only. 

D. The statistics are temporary and used by the optimizer for all sessions until this session terminates. 

Answer: