⟩ Arrange the follwoing in a chronological orderA.Kheda Satyagraha B.Dandi March C.NOn-Cooperation Movement D.Civil Disobedience Movement1.A,B,C,D 2.A,C,D,B 3.D,C,A,B 4.A,C,B,D
4.A,C,B,D
4.A,C,B,D
Explain Which two statements are true regarding views? (Choose two.) A. A subquery that defines a view cannot include the GROUP BY clause B. A view is created with the subquery having the DISTINCT keyword can be updated C. A view that is created with the subquery having the pseudo column ROWNUM keyword cannot be updated D. A Data Manipulation Language (DML) operation can be performed on a view that is created with the subquery having all the NOT NULL columns of a table
Explain Which statements are correct regarding indexes? (Choose all that apply.) A. When a table is dropped, the corresponding indexes are automatically dropped B. A FOREIGN KEY constraint on a column in a table automatically creates a nonunique key C. A nondeferrable PRIMARY KEY or UNIQUE KEY constraint in a table automatically creates a unique index D. For each data manipulation language operation performed, the corresponding indexes are automatically updated
Explain Which two statements are true about sequences created in a single instance database? (Choose two.) A. The numbers generated by a sequence can be used only for one table B. DELETE <sequencename> would remove a sequence from the database C. CURRVAL is used to refer to the last sequence number that has been generated D. When the MAXVALUE limit for a sequence for reached, you can increase the MAXVALUE limit by using the ALTER SEQUENCE statement E. When a database instance shuts down abnormally, the sequence numbers that have been cached but not used would be available once again when the database instance is restarted
Explain Which two statements are true regarding constraints? (Choose two.) A. A foreign key cannot contain NULL values B. A columns with the UNIQUE constraint can contain NULL values C. A constraint is enforced only for the INSERT operation on a table D. A constraint can be disabled even if the constraint column contains data E. All constraints can be defined at the column level as well as the table level
Explain What are the benefits of system-managed locally managed tablespace?
Explain Which three statements/commands would cause a transaction to end? (Choose three.) A. COMMIT B. SELECT C. CREATE D. ROLLBACK E. SAVEPOINT
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? A. It would not remove the rows if the table has a primary key B. It removes all the rows as well as the structure of the table C. It removes all the rows in the table and deleted rows can be rolled back D. It removes all the rows in the table and deleted rows cannot be rolled back
Explain Which two statements are true regarding single row functions? (Choose two.) A. They accept only a single argument B. They can be nested only to two levels C. Arguments can only be column values or constant D. They always return a single result row for every row of a queried table E. They can return a data type value different from the one that is reference
Explain What is the use of PARALLEL_ADAPTIVE_MULTI_USER initialization parameter?
What is row chaining and row migration?