databases Online Quiz - 90
Description: databases Online Quiz - 90 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: databases |
Which of the below commands is used to find more information about the SQL Server installed such as edition, product level etc. ?
What is ACID property?
Which of the following are different locks in SQL SERVER?
Which of the following statements about subqueries are true? (Choose 3)
A UNION of two or more queries is valid provided the queries meet which of the following conditions? (Choose 3)
Choose the correct statements about the union clause in ASE (Choose 2)
Which T-SQL elements can be used in a stored procedure? (Choose 2)
Which ASE table contains the source code of a stored procedure?
What is the maximum number of characters that can be passed to a stored procedure through a single char or varchar parameter without being truncated?
The following trigger exists: create trigger trig on t for insert, update, delete as begin print 'This is 'trig' ' end The following command is now executed: create trigger trig on t for insert as begin print 'This is 'trig' ' end After executing this command, for which DML actions on table 't' will a trigger be fired?
Creation of which DB objects will cause a DDL trigger to fire?
What part of a DB trigger determines the number of times a trigger body executes?