1Z0-061 Exam Questions
318 real 1Z0-061 exam questions with expert-verified answers and explanations. Page 2 of 7.
- Question #51
You issue the following command to alter the country column in the departments table: Which statement is true?
- Question #52
Which two statements are true regarding constraints?
- Question #53
Which statement adds a column called salary to the employees table having 100 rows, which cannot contain null?
- Question #54
Which two statements are true regarding single row functions?
- Question #55
Which two statements are true regarding the count function?
- Question #56
Evaluate the following SQL statement: Which statement is true regarding the outcome of the above query?
- Question #57
View the Exhibit and examine the structure of the product, component, and PDT_COMP tables. In product table, PDTNO is the primary key. In component table, COMPNO is the primary key...
- Question #58
View the Exhibit for the structure of the student and faculty tables. You need to display the faculty name followed by the number of students handled by the faculty at the base loc...
- Question #59
View the Exhibits and examine products and sales tables. You issue the following query to display product name and the number of times the product has been sold: What happens when...
- Question #60
You want to create a table employees in which the values of columns EMPLOYEES_ID and LOGIN_ID must be unique and not null. Which two SQL statements would create the required table?
- Question #61
View the Exhibit and examine the structure of the products table. Using the products table, you issue the following query to generate the names, current list price, and discounted...
- Question #62
Examine the structure proposed for the transactions table: Which two statements are true regarding the creation and storage of data in the above table structure?
- Question #63
Which three SQL statements would display the value 1890.55 as $1, 890.55?
- Question #64
You want to display 5 percent of the employees with the highest salaries in the EMPLOYEES table. Which query will generate the required result?
- Question #65
In the customers table, the CUST_CITY column contains the value 'Paris' for the CUST_FIRST_NAME 'Abigail'. Evaluate the following query: What would be the outcome?
- Question #66
View the Exhibit and evaluate the structure and data in the CUST_STATUS table. You issue the following SQL statement: Which statement is true regarding the execution of the above q...
- Question #67
Which normal form is a table in if it has no multi-valued attributes and no partial dependencies?
- Question #68
Examine the types and examples of relationships that follow: 1. One-to-one a) Teacher to students 2. One-to-many b) Employees to Manager 3. Many-to-one c) Person to SSN 4. Many-to-...
- Question #69
You execute the following commands: For which substitution variables are you prompted for the input?
- Question #70
You need to list the employees in DEPARTMENT_ID 30 in a single row, ordered by HIRE_DATE. Examine the sample output: Which query will provide the required output?
- Question #71
Which create table statement is valid?
- Question #72
Which two statements are true regarding constraints?
- Question #73
In which three situations does a transaction complete?
- Question #74
Examine the structure of the orders table: You want to find the total value of all the orders for each year and issue the following command: Which statement is true regarding the o...
- Question #75
View the Exhibit and examine the structure of the products table. All products have a list price. You issue the following command to display the total price of each product after a...
- Question #76
The following parameter are set for your Oracle 12c database instance: OPTIMIZER_CAPTURE_SQL_PLAN_BASELINES=FALSE OPTIMIZER_USE_SQL_PLAN_BASELINES=TRUE You want to manage the SQL p...
- Question #77
On your Oracle 12c database, you invoked SQL *Loader to load data into the EMPLOYEES table in the HR schema by issuing the following command: $> sqlldr hr/hr@pdb table=employees Wh...
- Question #78
You notice a performance change in your production Oracle 12c database. You want to know which change caused this performance difference. Which method or feature should you use?
- Question #79
Which two partitioned table maintenance operations support asynchronous Global Index Maintenance in Oracle database 12c?
- Question #80
Which statement is true about Enterprise Manager (EM) express in Oracle Database 12c?
- Question #81
Evaluate the SQL statement: TRUNCATE TABLE DEPT; Which three are true about the SQL statement? (Choose three.)
- Question #82
You need to design a student registration database that contains several tables storing academic information. The STUDENTS table stores information about a student. The STUDENT_GRA...
- Question #83
Which two statements are true regarding savepoints? (Choose two.)
- Question #84
See the Exhibit and examine the structure and data in the INVOICE table: Which two SQL statements would executes successfully? (Choose two.)
- Question #85
Which three statements are true regarding sub queries? (Choose three.)
- Question #86
Evaluate these two SQL statements: SELECT last_name, salary, hire_date FROM EMPLOYEES ORDER BY salary DESC; SELECT last_name, salary, hire_date FROM EMPLOYEES ORDER BY 2 DESC; What...
- Question #87
Where can sub queries be used? (Choose all that apply)
- Question #88
Which statement correctly describes SQL and /SQL*Plus?
- Question #89
Which four are types of functions available in SQL? (Choose 4)
- Question #90
Examine the structure of the EMPLOYEES and NEW_EMPLOYEES tables: Which MERGE statement is valid?
- Question #91
Which view should a user query to display the columns associated with the constraints on a table owned by the user?
- Question #92
The COMMISSION column shows the monthly commission earned by the employee. Which two tasks would require sub queries or joins in order to be performed in a single step? (Choose two...
- Question #93
Examine the structure of the STUDENTS table: You need to create a report of the 10 students who achieved the highest ranking in the course INT SQL and who completed the course in t...
- Question #94
Evaluate the following SQL statements: The above command fails when executed. What could be the reason?
- Question #95
Evaluate the following SQL statements: DELETE FROM sales; There are no other uncommitted transactions on the SALES table. Which statement is true about the DELETE statement?
- Question #96
Examine the structure of the EMPLOYEES table: You want to create a SQL script file that contains an INSERT statement. When the script is run, the INSERT statement should insert a r...
- Question #97
Which two statements are true about sequences created in a single instance database? (Choose two.)
- Question #98
The ORDERS TABLE belongs to the user OE. OE has granted the SELECT privilege on the ORDERS table to the user HR. Which statement would create a synonym ORD so that HR can execute t...
- Question #99
Evaluate this SQL statement: SELECT e.emp_name, d.dept_name FROM employees e JOIN departments d USING (department_id) WHERE d.department_id NOT IN (10, 40) ORDER BY dept_name; The...
- Question #100
Examine the statement: Create synonym emp for hr.employees; What happens when you issue the statement?