Questions
ayuda
option
My Daypo

ERASED TEST, YOU MAY BE INTERESTED ON01

COMMENTS STATISTICS RECORDS
TAKE THE TEST
Title of test:
01

Description:
This exam is a test for practice

Author:
Barto
(Other tests from this author)

Creation Date:
30/03/2024

Category:
Others

Number of questions: 20
Share the Test:
Facebook
Twitter
Whatsapp
Share the Test:
Facebook
Twitter
Whatsapp
Last comments
No comments about this test.
Content:
You execute this command: Sufficient storage is available in filesystem /u01. Which two statements are true about the BIG_TBS tablespace? (Choose two.) AUTOEXTEND is possible for the datafile It must be bigger than the largest SMALLFILE tablespace Additional data files may not be added It will be a dictionary-managed tablespace by default It will always have a 32K blocksize.
Which statement is true about the INTERSECT operator used in compound queries? Multiple INTERSECT operators are not possible in the same SQL statement It processes NULLs in the selected columns INTERSECT is of lower precedence than UNION or UNION ALL It ignores NULLs.
Which three statements are true about advanced connection options supported by Oracle Net for connection to Oracle Database instances? (Choose three.) Connect Time Failover requires the use of Transparent Application Failover (TAF) Source Routing requires the use of a name server Source Routing enables the use of Connection Manager (CMAN) which enables network traffic to be routed through a firewall Load Balancing can balance the number of connections to dispatchers when using a Shared Server configuration Load Balancing requires the use of a name server Connect Time Failover requires the connect string to have two or more listener addresses configured.
Which two statements are true about date/time functions in a session where NLS_DATE_FORMAT is set to DD-MON-YYYY HH24:MI:SS? (Choose two.) CURRENT_TIMESTAMP returns the same date and time as SYSDATE with additional details of fractional seconds SYSDATE can be queried only from the DUAL table CURRENT_DATE returns the current date and time as per the session time zone SYSDATE can be used in expressions only if the default date format is DD-MON-RR SYSDATE and CURRENT_DATE return the current date and time set for the operating system of the database server CURRENT_TIMESTAMP returns the same date as CURRENT_DATE.
A database is configured to use automatic undo management with temporary undo enabled. An UPDATE is executed on a temporary table. Where is the UNDO stored? in the undo tablespace in the SYSAUX tablespace in the SGA in the PGA in the temporary tablespace.
You have been tasked to create a table for a banking application. One of the columns must meet three requirements: 1. Be stored in a format supporting date arithmetic without using conversion functions 2. Store a loan period of up to 10 years 3. Be used for calculating interest for the number of days the loan remains unpaid Which data type should you use? INTERVAL YEAR TO MONTH INTERVAL DAY TO SECOND TIMESTAMP WITH LOCAL TIMEZONE TIMESTAMP TIMESTAMP WITH TIMEZONE.
In the spfile of a single instance database, LOCAL_LISTENER is set to LISTENER_1. The TNSNAMES.ORA file in $ORACLE_HOME/network/admin in the database home contains: Which statement is true? Dynamic service registration cannot be used for this database instance The LREG process registers services dynamically with the LISTENER_1 listener LISTENER_1 must also be defined in the LISTENER.ORA file to enable dynamic service registration There are two listeners named LISTENER and LISTENER_1 running simultaneously using port 1521 on the same host as the database instances The definition for LISTENER_1 requires a CONNECT_DATA section to enable dynamic service registration.
Which three statements are true concerning logical and physical database structures? (Choose three.) All tablespaces may have one or more data files The extents of a segment must always reside in the same datafile A smallfile tablespace might be bigger than a bigfile tablespace A segment can span multiple data files in some tablespaces A segment's blocks can be of different sizes A segment might have only one extent Segments can span multiple tablespaces.
Which two statements are true regarding a SAVEPOINT? (Choose two.) Rolling back to a SAVEPOINT can undo a CREATE INDEX statement Rolling back to a SAVEPOINT can undo a TRUNCATE statement Only one SAVEPOINT may be issued in a transaction A SAVEPOINT does not issue a COMMIT Rolling back to a SAVEPOINT can undo a DELETE statement.
Which three functions are performed by dispatchers in a shared server configuration? (Choose three.) writing inbound request to the common request queue from all shared server connections checking for outbound shared server responses on the common outbound response queue receiving inbound requests from processes using shared server connections sending each connection input request to the appropriate shared server input queue broadcasting shared server session responses back to requesters on all connections sending shared server session responses back to requesters on the appropriate connection.
Which two statements are true about the SET VERIFY ON command? (Choose two.) It can be used only in SQL*Plus It displays values for variables used only in the WHERE clause of a query It can be used in SQL Developer and SQL*Plus It displays values for variables created by the DEFINE command It displays values for variables prefixed with &&.
Which three statements are true about a self-join? (Choose three.) The ON clause must be used The query must use two different aliases for the table It must be an equijoin It must be an inner join The ON clause can be used It can be an outer join.
You want to write a query that prompts for two column names and the WHERE condition each time it is executed in a session but only prompts for the table name the first time it is executed. The variables used in your query are never undefined in your session. Which query can be used? SELECT &&col1, &&col2 FROM &table WHERE &&condition = &&cond; SELECT &col1, &col2 FROM &&table WHERE &condition; SELECT &col1, &col2 FROM ג€&tableג€ WHERE &condition; SELECT '&&col1', '&&col2' FROM &table WHERE '&&condition' = '&cond'; SELECT &&col1, &&col2 FROM &table WHERE &&condition;.
Examine the description of the CUSTOMERS table: You want to display details of all customers who reside in cities starting with the letter D followed by at least two charact ers. Which query can be used? SELECT * FROM customers WHERE city LIKE 'D %'; SELECT * FROM customers WHERE city = '%D_'; SELECT * FROM customers WHERE city LIKE 'D_'; SELECT * FROM customers WHERE city = 'D_%';.
Examine this command: Which two statements are true? (Choose two.) DML may be performed on tables with one or more extents in this data file during the execution of this command. The tablespace containing SALES1.DBF must be altered READ ONLY before executing the command. The tablespace containing SALES1.DBF must be altered OFFLINE before executing the command. If Oracle Managed Files (OMF) is used, then the file is renamed but moved to DB_CREATE_FILE_DEST. The file is renamed and stored in the same location.
Which three statements are true about dropping and unused columns in an Oracle database? (Choose three.) A primary key column referenced by another column as a foreign key can be dropped if using the CASCADE option. An UNUSED column's space is reclaimed automatically when the block containing that column is next queried. An UNUSED column's space is reclaimed automatically when the row containing that column is next queried. Partition key columns cannot be dropped. A DROP COLUMN command can be rolled back A column that is set to UNUSED still counts towards the limit of 1000 columns per table.
Which two statements are true regarding Oracle database space management within blocks managed by Automatic Segment Space Management (ASSM)? (Choose two.) PCTFREE defaults to 10% for all blocks in all segments for all compression methods ASSM assigns blocks to one of four fullness categories based on what percentage of the block is allocated for rows Update operations always attempt to find blocks with free space appropriate to the length of the row being updated Insert operations always attempt to find blocks with free space appropriate to the length of the row being inserted .A block will always be eligible for inserts if the row is short enough to fit into the block.
Evaluate these commands which execute successfully: Which two statements are true about the ORD_ITEMS table and the ORD_SEQ sequence? (Choose two.) If sequence ORD_SEQ is dropped then the default value for column ORD_NO will be NULL for rows inserted into ORD_ITEMS Any user inserting rows into table ORD_ITEMS must have been granted access to sequence ORD_SEQ Column ORD_NO gets the next number from sequence ORD_SEQ whenever a row is inserted into ORD_ITEMS and no explicit value is given for ORD_NO Sequence ORD_SEQ cycles back to 1 after every 5000 numbers and can cycle 20 times Sequence ORD_SEQ is guaranteed not to generate duplicate numbers.
Which three instance situations are possible with the Oracle Database server without multi-tenant? (Choose three.) two or more instances on separate servers all associated with one database one instance on one server associated with one database one instance on one server associated with two or more databases on the same server one instance on one server not associated with any database one instance on one server associated with two or more databases on separate servers.
Which two statements are true about the ORDER BY clause when used with a SQL statement containing a SET operator such as UNION? (Choose two.) Column positions must be used in the ORDER BY clause Only column names from the first SELECT statement in the compound query are recognized The first column in the first SELECT of the compound query with the UNION operator is used by default to sort output in the absence of an ORDER BY clause Each SELECT statement in the compound query must have its own ORDER BY clause Each SELECT statement in the compound query can have its own ORDER BY clause.
Report abuse Consent Terms of use