You must create a tablespace of nonstandard block size in a new file system and plan to use this command: CREATE TABLESPACE ns_tbs DATAFILE '/u02/oracle/data/nstbs_f01.dbf' SIZE 100G BLOCKSIZE 32K; The standard block size is 8K, but other nonstandard block sizes will also be used. Which two are requirements for this command to succeed?
Correct Answer: B,E
A .False. No such restriction exists; DB_32K_CACHE_SIZE is independent of DB_CACHE_SIZE. B .True. A nonstandard block size (32K) requires a corresponding cache (DB_32K_CACHE_SIZE) set to a non-zero value within SGA limits. C .False. OS block size is irrelevant; Oracle manages its own block sizes. D .False. No requirement for it to exceed DB_CACHE_SIZE. E .True. The file system must have 100G available for the datafile.
1Z0-182 Exam Question 12
Which statement is true about database links?
Correct Answer: C
Database links enable cross-database queries in Oracle. Let's analyze each option with extensive detail: A . A public database link can be created only by SYS. False. Any user with the CREATE PUBLIC DATABASE LINK privilege (not just SYS) can create a public link (e.g., CREATE PUBLIC DATABASE LINK remote_db CONNECT TO scott IDENTIFIED BY tiger USING 'orcl'). While SYS typically has this privilege, it's not exclusive to SYS. Mechanics:Privilege is granted via GRANT CREATE PUBLIC DATABASE LINK TO user;. Public links are accessible to all users in the local DB. Why Incorrect:Overly restrictive; Oracle's security model allows delegation. B . A database link can be created only between two Oracle databases. False. Database links can connect to non-Oracle databases using Oracle Heterogeneous Services or gateways (e.g., ODBC or JDBC drivers), such as linking to SQL Server. Example: CREATE DATABASE LINK mssql_link USING 'hsodbc';. Mechanics:Requires configuration of hs_ parameters in init.ora and a gateway listener. Historical Note:Heterogeneous links were introduced in 8i, expanded in 23ai for cloud integration. C . A database link created in a database allows a connection from that database's instance to the target database's instance, but not vice versa. True. A database link is unidirectional; it enables queries from the local instance to the remote instance (e.g., SELECT * FROM emp@remote_db), but the remote instance can't use it to query back unless a separate link is created there. Mechanics:Stored in DBA_DB_LINKS, the link defines a one-way connection via a TNS alias or connect string. Practical Use:Ensures controlled access; bidirectional access requires explicit configuration. Edge Case:Loops are prevented unless explicitly designed with mutual links. D . A public database link can be used by a user connected to the local database instance to connect to any schema in the remote database instance. False. Public links allow all local users to use them, but access to remote schemas depends on the link's credentials (e.g., CONNECT TO scott) and the user's remote privileges. "Any schema" overstates it; access is limited to what the link's user can see. Why Incorrect:Misrepresents privilege scope; remote schema access isn't universal. E . Private database link creation requires the same user to exist in both the local and the remote databases. False. A private link (e.g., CREATE DATABASE LINK my_linkCONNECT TO scott IDENTIFIED BY tiger USING 'orcl') requires the remote user (scott) to exist, but the local creator (e.g., HR) need not match. The link is owned locally and authenticated remotely. Mechanics:Only the CREATE DATABASE LINK privilege is needed locally.
1Z0-182 Exam Question 13
Which three tasks are part of the predefined Automated Maintenance Tasks?
Correct Answer: B,D,F
A .False. Backups are via RMAN, not AMTs. B .True. Stats collection is an AMT. C .False. Error logging isn't an AMT. D .True. SPM tasks are included. E .False. Notifications aren't AMTs. F .True. Segment Advisor is an AMT.
1Z0-182 Exam Question 14
Which two statements are true about the configuration and use of UNDO?
Correct Answer: A,E
A .True. Active (in-use) UNDO is never overwritten. B .False. Unexpired UNDO can be reused if space is needed. C .False. Applies to unexpired, not expired UNDO. D .False. Only unexpired UNDO is targeted. E .True. UNDO_RETENTION sets the retention goal for unexpired UNDO.
1Z0-182 Exam Question 15
Which of the following is true about the status of a PDB that has been unplugged from a CDB?
Correct Answer: A
A .True. After ALTER PLUGGABLE DATABASE ... UNPLUG, CDB_PDBS.STATUS shows UNPLUGGED. B .False. UNAVAILABLE isn't a valid status here. C .False. REMOVED isn't used; UNPLUGGED persists until dropped. D .False. DISABLED isn't a PDB state in this context.