1Z0-071 Exam Questions
419 real 1Z0-071 exam questions with expert-verified answers and explanations. Page 8 of 9.
- Question #367
Examine the description of the MEMBERS table: Examine the partial query: SELECT city, last_name LNAME FROM members ...; You want to display all cities that contain the string AN. T...
- Question #368
You execute this command: ALTER TABLE employees SET UNUSED (department_id) Which two are true? (Choose two.)
- Question #369
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...
- Question #370Using Conversion Functions and Conditional Expressions
The ORDERS table has a column ORDER_DATE of data type DATE. The default display format for a date is DD-MON-RR. Which two WHERE conditions demonstrate the correct usage of conversi...
TO_CHARTO_DATEdate conversion functionsWHERE clause filtering - Question #371
Examine the description of the PROMOTIONS table: You want to display the unique promotion costs in each promotion category. Which two queries can be used? (Choose two.)
- Question #372Reporting Aggregated Data Using the Group Functions
Table ORDER_ITEMS contains columns ORDER_TO, UNIT_PRICE and QUANTITY, of data type NUMBER. Examine these SQL statements: Statement 1: Statement 2: Which two statements are true? (C...
aggregate functionsNULL propagationGROUP BYsingle vs multi-row output - Question #373
Examine the description of the EMPLOYEES table: Examine this query: Which line produces an error?
- Question #374Manipulating Data
Which two are true about savepoints? (Choose two.)
savepointsROLLBACK TO SAVEPOINTtransaction controlpartial rollback - Question #375
Examine the data in the EMPLOYEES table. Which statement will compute the total annual compensation for each employee?
- Question #376Reporting Aggregated Data Using the Group Functions
Examine the description of the ORDER_ITEMS table: Examine this incomplete query: Which two can replace <clause> so the query completes successfully? (Choose two.)
GROUP BY clauseHAVING clauseaggregate expressionscolumn alias - Question #377
Examine the data in the PRODUCTS table: Examine these queries: Which queries generate the same output?
- Question #379Using Conversion Functions and Conditional Expressions
The SYSDATE function displays the current Oracle Server date as: 21-MAY-19 You wish to display the date as: MONDAY, 21 MAY, 2019 Which statement will do this?
TO_CHARdate format modelDAY format elementFM modifier - Question #380Fundamental SQL and Queries
Which two are SQL features? (Choose two.)
SQL featurestransaction controlset-based processingSQL basics - Question #381
Examine this statement which returns the name of each employee and their manager: You want to extend the query to include employees with no manager. What must you add before JOIN t...
- Question #384
Which two are true about scalar subquery expressions? (Choose two.)
- Question #385
Examine this partial statement: Which is true?
- Question #386Creating Other Schema Objects
You have the privileges to create any type of synonym. Which statement will create a synonym called EMP for the HCM.EMPLOYEE_RECORDS table that is accessible to all users?
PUBLIC synonymCREATE SYNONYM syntaxschema objectssynonym scope - Question #387
Examine this data in the EMPLOYEES table: Which statement will execute successfully?
- Question #389
Examine the description of the EMPLOYEES table: Which two statements will run successfully? (Choose two.)
- Question #390Using Conversion Functions and Conditional Expressions
A session's NLS_DATE_FORMAT is set to DD Mon YYYY. Which two queries return the value 1 Jan 2019?
TO_DATEDATE literalNLS_DATE_FORMATdate display format - Question #391Manipulating Data
No-user-defined locks are used in your database. Which three are true about Transaction Control Language (TCL)?
COMMITROLLBACKsavepointsTCL behavior - Question #392
Examine the description of the ORDERS table: Examine the description of the INVOICES table: Examine this query: Which three rows will it return? (Choose three.)
- Question #393Fundamental SQL and Queries
Which three are key components of an Entity Relationship Model? (Choose three.)
ER modelentitiesrelationshipsattributes - Question #394
Which two are true about external tables that use the ORACLE_DATAPUMP access driver? (Choose two.)
- Question #395Restricting and Sorting Data
Examine the description of the CUSTOMERS table: Which two SELECT statements will return these results (Choose two.):
LIKE operatorwildcard charactersUPPER functionpattern matching - Question #396Manipulating Data
Which statement is true about TRUNCATE and DELETE?
TRUNCATEDELETEreferential integrityDDL vs DML - Question #397Managing Schema Objects
Which three statements are true about external tables? (Choose three.)
external tablesDML restrictionsmetadata storagequery capabilities - Question #398Controlling User Access
Which three are true about privileges? (Choose three.)
object privilegessystem privilegesGRANT ANY PRIVILEGEschema owner grants - Question #399
Examine these statements and results: How many rows are retrieved by the last query?
- Question #400Controlling User Access
Which three statements about roles are true? (Choose three.)
rolesGRANT statementrole assignmentprivilege management - Question #401
Which two statements are true about an Oracle database? (Choose two.)
- Question #402
Table HR.EMPLOYEES contains a row where the EMPLOYEE_ID is 109. User ALICE has no privileges to access HR.EMPLOYEES. User ALICE starts a session. User HR starts a session and succe...
- Question #403Managing Objects with Data Dictionary Views
Which two statements are true about the data dictionary? (Choose two.)
data dictionaryALL_ viewsDBA_ viewsmetadata access - Question #404
Which two will execute successfully? (Choose two.)
- Question #405
User HR has CREATE SESSION, CREATE ANY TABLE and UNLIMITED TABLESPACE privileges. User SCOTT has CREATE SESSION, CREATE TABLE and UNLIMITED TABLESPACE privileges. HR successfully e...
- Question #406
Examine these statements: Which two are true? (Choose two.)
- Question #407Creating Other Schema Objects
Which two statements are true about dropping views? (Choose two.)
DROP VIEWDROP ANY VIEW privilegeCASCADE CONSTRAINTSview dependencies - Question #408
You need to allow user ANDREW to: 1. Modify the TITLE and ADDRESS columns of your CUSTOMERS table. 2. GRANT that permission to other users. Which statement will do this?
- Question #409
Which two are true about using constraints? (Choose two.)
- Question #410Using Single-Row Functions to Customize Output
Which two are true? (Choose two.)
ADD_MONTHSCEIL functionLAST_DAY functiondate and numeric functions - Question #411
Which three statements are true about Oracle synonyms? (Choose three.)
- Question #412
Which two are true? (Choose two.)
- Question #413
Which two statements are true about TRUNCATE and DELETE? (Choose two.)
- Question #414
The STORES table has a column START_DATE of data type DATE, containing the date the row was inserted. You only want to display details of rows where START_DATE is within the last 2...
- Question #415Retrieving Data Using Subqueries
Which three are true about scalar subquery expressions? (Choose three.)
scalar subqueriesNULL handlingINSERT VALUES clauseGROUP BY restrictions - Question #416Using DDL Statements to Create and Manage Tables
You own table DEPARTMENTS, referenced by views, indexes, and synonyms. Examine this command which executes successfully: DROP TABLE departments PURGE; Which three statements are tr...
DROP TABLEPURGE clausecascade effectsindex removal - Question #417
Which is true about the ROUND, TRUNC and MOD functions?
- Question #418
Which two are true about transactions in the Oracle Database? (Choose two.)
- Question #419Managing Schema Objects
Which two are true about unused columns? (Choose two.)
SET UNUSEDunused columnsprimary key constraintDESCRIBE command - Question #420
Which two are true about the precedence of operators and conditions? (Choose two.)