What will be the output of the following SQL query? SET SHOWPLAN_TEXT ON GO SELECT * FROM abcsite.abctable GO
Correct Answer:
It will show the query plan and the estimated cost of running
Note: This Question is unanswered, help us to find answer for this one
Which of the following "insert queries" will be inserted in the XML field?
The creation query of the table is:
CREATE TABLE Branches(recordID int, description XML)
Correct Answer:
INSERT Into Branches(recordID, description) VALUES(1, '<log><application>Sales</application><description>The connection timed out.</description></log>')
Note: This Question is unanswered, help us to find answer for this one
Consider the following tables:
Customers
- - - - - - - -
Customerid
Customername
Address
Orders
- - - - -
Orderid
Customerid
Orderdate
Comments
What will be the query to fetch Customername and 1st Orderdate for order placed by each customer?
Correct Answer:
Select Customers.Customername,(Select Min(Orderdate) From Orders Where Customers.Customerid=Orders.Customerid) From Customers
Note: This Question is unanswered, help us to find answer for this one
Which of the following commands will be used to see the structure of the table named 'salary'?
Correct Answer:
sp_help salary
Note: This Question is unanswered, help us to find answer for this one
We are creating Stored Procedure in Database and using "sp_" prefix in its name. Which of the following statements is correct in accordance with the performance of the Stored Procedure execution?
Correct Answer:
The prefix will slow down the execution as the prefix is reserved for system stored procedures
Note: This Question is unanswered, help us to find answer for this one
The commands GRANT and REVOKE are examples of :
Correct Answer:
DCL (Data Control Language)
Note: This Question is unanswered, help us to find answer for this one
What exactly is the Full-Text Catalog?
Correct Answer:
The Full-Text catalog is an index for searching specific keywords
Note: This Question is unanswered, help us to find answer for this one
Consider the following table "Students":
Students
- - - - - -
Name Hobbies
John Driving
Miller Fishing
David Writing
Robert Singing
What will be the output of the following query?
Select Substring(Hobbies,3) From students Where name= "john"
Correct Answer:
It will give an error
Note: This Question is unanswered, help us to find answer for this one
Why are Joins generally better than the Correlated sub-query?
Correct Answer:
The Correlated sub-query creates a nested loop
Note: This Question is unanswered, help us to find answer for this one
Starting from the slowest, arrange the following operators in the order in which they produce results in "SQL WHERE" query.
1. >, >=, <, <=
2. <>
3. =
4. LIKE
Correct Answer:
4,1,2,3
Note: This Question is unanswered, help us to find answer for this one
Which one of the following statements is correct?
Correct Answer:
Both a and b are correct
Note: This Question is unanswered, help us to find answer for this one
State whether True or False.
Triggers can be created in Assemblies.
Correct Answer:
True
Note: This Question is unanswered, help us to find answer for this one
What exactly is a Super key?
Correct Answer:
A Super key is a column or a set of columns that uniquely identifies rows in a table
Note: This Question is unanswered, help us to find answer for this one
__________ is a container that holds tables, views, procedures, functions and so on.
Correct Answer:
Schema
Note: This Question is unanswered, help us to find answer for this one
Which one of the following statements about Indexes is wrong?
Correct Answer:
Indexes can only be implemented on integer datatypes
Note: This Question is unanswered, help us to find answer for this one
Which of the following mechanisms is used by "ENCRYPTION by passphrase" to encrypt the data in the SQL SERVER 2005?
Correct Answer:
DES (Data Encryption Standard)
Note: This Question is unanswered, help us to find answer for this one
Which command is used to create User defined Data Type in the SQL SERVER 2005?
Correct Answer:
sp_addtype
Create Type
Note: This question has more than 1 correct answers
Note: This Question is unanswered, help us to find answer for this one
Which of the following is not a Data type in the SQL SERVER 2005?
Correct Answer:
nsmallmoney
Note: This Question is unanswered, help us to find answer for this one
Which is the best method to handle errors and deadlocks?
Correct Answer:
Errors and deadlocks can be handled by using Try and Catch constructs
Note: This Question is unanswered, help us to find answer for this one
Columns are called _____________ of a table in a relational model.
Correct Answer:
Attributes
Note: This Question is unanswered, help us to find answer for this one
What is the maximum storage capacity of XML data type in SQL SERVER 2005?
Correct Answer:
2GB
Note: This Question is unanswered, help us to find answer for this one
Consider the following table:
Order
- - - - -
Orderid
Customerid
Orderdate
Comments
Select ISNULL (Comments, 'No comments') AS comments From Order
What will be the output of the above query?
Correct Answer:
The output will be "No comments", when the database entry is Null
Note: This Question is unanswered, help us to find answer for this one
The table Comments has an auto incremented column called "Commentid" and a "UserComments" column, both of which store the comments of the users visiting the site. What will be the correct query to display the latest comments first?
Correct Answer:
Select usercomments From Comments Order by commentid desc
Note: This Question is unanswered, help us to find answer for this one
Which of the following statements is wrong?
Correct Answer:
Truncate retains the identity of the table
Note: This Question is unanswered, help us to find answer for this one
We have a table named "Customer" which has a column named "Customerid" having datatype Integer. We need to fetch the output with column title: 'Customer id is (value of customerid from the table)'. What will be the query?
Correct Answer:
Select 'Customer id is' + CAST(customerid AS varchar) From Customer
Note: This Question is unanswered, help us to find answer for this one
Which of the following are correct?
Correct Answer:
With DDL, you can create and remove tables, schemas, domains, indexes and views
Note: This Question is unanswered, help us to find answer for this one
You have a table "engineers" with the following table structure:
enggid int(4)
deptname varchar(50)
salary int(4)
You want to display the minimum and maximum salaries of the individual departments. Which of the following queries will fetch the desired results?
Correct Answer:
select deptname, min(salary) as Minimum, max(salary) as Maximum from engineers group by deptname
Note: This Question is unanswered, help us to find answer for this one
The - (Negative) and ~(Bitwise NOT) are examples of the _________ type of operators.
Correct Answer:
unary
Note: This Question is unanswered, help us to find answer for this one
What will the following query do?
Delete Orders
Correct Answer:
It will remove all rows from the Orders Table
Note: This Question is unanswered, help us to find answer for this one
Which one of the following statements regarding "views" is incorrect?
Correct Answer:
A view cannot be derived from another view
Note: This Question is unanswered, help us to find answer for this one
A table of employees has the following values for its salary field:
10000, 11000, 12000, 10000, 14000, 12000, 13000, 10000, 14000, 10000
What will the following query return?
Select distinct (salary) from employees
Correct Answer:
10000, 11000, 12000, 14000, 13000
Note: This Question is unanswered, help us to find answer for this one
Which of the following statements regarding Trigger and Stored Procedures is correct?
Correct Answer:
Triggers can call Stored Procedures but Stored Procedures cannot call Triggers
Note: This Question is unanswered, help us to find answer for this one
What exactly is a Foreign key?
Correct Answer:
A Foreign key is used to match columns in other tables
Note: This Question is unanswered, help us to find answer for this one
State whether True or False.
The 'Having' clause can not be used when there is a 'Where' clause in the statement already.
Correct Answer:
False
Note: This Question is unanswered, help us to find answer for this one
State whether True or False.
You can send emails through the Database engine.
Correct Answer:
True
Note: This Question is unanswered, help us to find answer for this one
State whether True or False.
Many-to-One is a type of relationship in RDBMS.
Correct Answer:
True
Note: This Question is unanswered, help us to find answer for this one
Consider the following table structure of employees:
empid int(4)
deptname varchar(50)
salary int(4)
Which query will be used to display the Department (deptname) that is giving the maximum salary?
Correct Answer:
select deptname from employees where salary =(select max(salary) from employees)
Note: This Question is unanswered, help us to find answer for this one
State whether True or False.
While using the Select query, the IN clause is a better choice than the EXIST clause.
Correct Answer:
False
Note: This Question is unanswered, help us to find answer for this one
Which edition of the SQL SERVER 2005 will best meet the following scenario?
A company has an online shopping website named www.shoppingxyz.com. It also has to handle its line of business portion. Its main server supports 4 CPUs and a multi-core processor.
Correct Answer:
SQL SERVER 2005 Workgroup Edition
Note: This Question is unanswered, help us to find answer for this one
You have a table named "employees" with the following table structure:
empid int(4)
deptname varchar(50)
salary int(4)
The following select query is executed on this table:
SELECT * FROM employees ORDER BY deptname DESC, salary DESC
What will be the output of the above query?
Correct Answer:
Records will be shown with the deptname field and the salary field in the descending order
Note: This Question is unanswered, help us to find answer for this one
Which functions does the following SQL QUERY perform?
DBCC CHECKIDENT ('table_name', RESEED, new_reseed_value)
Correct Answer:
It checks the current identity field value of the specified table
Note: This Question is unanswered, help us to find answer for this one
Which of the following are not Database Models?
Correct Answer:
Composite model
Note: This Question is unanswered, help us to find answer for this one
Examine the data in the EMPLOYEES table given below:
LAST_NAME DEPARTMENT_ID SALARY
Allen 10 3000
Miller 20 1500
King 20 2200
Davis 30 5000
Which of the following sub-queries work?
Correct Answer:
SELECT * FROM employees where salary > (SELECT MIN(salary) FROM employees GROUP BY department_id)
Note: This Question is unanswered, help us to find answer for this one
You have a table named 'employees', having the following structure.
empid int(4)
deptname varchar(50)
salary int(4)
And a view is created as follows:
create view viemployees as select * from employees
You want to insert a new row into the table having the following values:
empid=1010, deptname=HR, salary=10000.
Which of the following are the correct insert SQL queries?
Correct Answer:
insert into employees values (1010, 'HR', 10000)
Note: This Question is unanswered, help us to find answer for this one
Which of the following statements regarding "views" are incorrect?
Correct Answer:
Data can be inserted into the table using its own view
Note: This Question is unanswered, help us to find answer for this one
Which of the following operators perform pattern matching?
Correct Answer:
%
Note: This Question is unanswered, help us to find answer for this one
Which of the following are the SQL Transaction statements?
Correct Answer:
ROLLBACK STATEMENT
Note: This Question is unanswered, help us to find answer for this one
SQL SERVER 2005 provides a new feature to enable partitioning of the data in the database. But only those database objects can be partitioned which store data in the database. In accordance with the above statement, which of the following database objects can be partitioned?
Correct Answer:
Table
Note: This Question is unanswered, help us to find answer for this one
You have a table "engineers" with the following table structure:
enggid int(4)
name varchar(50)
salary int(4)
You want to select the top 2 engineers in the decreasing order of their salaries, starting with the maximum salary. Which of the following SQL queries will fetch this data?
Correct Answer:
SELECT TOP 2 * FROM engineers ORDER BY salary DESC
Note: This Question is unanswered, help us to find answer for this one
What is the function of "DBCC CHECKDB" command?
Correct Answer:
It checks the allocation of all the objects in the specified database
Note: This Question is unanswered, help us to find answer for this one
Which of the following statements is correct?
Correct Answer:
Modifications made in a table will be slower if the number of indexes is more
Note: This Question is unanswered, help us to find answer for this one
State whether True or False.
A User Defined Function 'findsum' is to be created as follows:
Create function findsum(@x int, @y int)
As
Begin
Return(@x+@y)
End
But the SQL SERVER is unable to create the desired function and gives an error. The error can be removed by specifying the return type of the function
Correct Answer:
True
Note: This Question is unanswered, help us to find answer for this one
Which of the following is a database object?
Correct Answer:
All of the above
Note: This Question is unanswered, help us to find answer for this one
Which of the following statements is/are wrong?
Correct Answer:
Both Primary key and Unique key don't allow NULL values
Note: This Question is unanswered, help us to find answer for this one
Which of the following methods is used to backup the Transaction log on to a secondary database in order to backup and recover data in a synchronized manner?
Correct Answer:
Using Log Shipping
Note: This Question is unanswered, help us to find answer for this one
Which data type in the SQL SERVER 2005 converts itself into the type of data that is inserted into it?
Correct Answer:
sql_variant
Note: This Question is unanswered, help us to find answer for this one
Which query will be used for a particular column of a table, if 'Reading' is to be replaced by 'Writing'?
Correct Answer:
Update [Table Name] set [Field Name]= (replace([Field Name],'Reading','Writing'))
Note: This Question is unanswered, help us to find answer for this one
You want to select a row using cursors in the table 'qlist'. Which of the following statements DECLARES a cursor 'qselect' to perform the desired operation?
Correct Answer:
DECLARE qselect CURSOR FOR SELECT * FROM qlist
Note: This Question is unanswered, help us to find answer for this one
Consider the following query:
Select name from employees where name like "%_n_"
Which names will be displayed?
Correct Answer:
Names containing n as the second last letter
Note: This Question is unanswered, help us to find answer for this one
Which of the following is not an Aggregate function?
Correct Answer:
LEN()
Note: This Question is unanswered, help us to find answer for this one
Which level of data abstraction describes the data that is stored in the database and their corresponding relationships?
Correct Answer:
Logical Level
Note: This Question is unanswered, help us to find answer for this one
Which of the following SQL queries correctly selects the rows from the table "employees" that have NULL value in the "salary" column?
Correct Answer:
SELECT * FROM employees WHERE salary is null
Note: This Question is unanswered, help us to find answer for this one
Which of the following is the new sample database in the SQL SERVER 2005?
Correct Answer:
AdventureWorks
Note: This Question is unanswered, help us to find answer for this one
State whether True or False.
The plus (+) and minus (-) operators cannot be used to perform increment/decrement operations on datetime and smalldatetime values.
Correct Answer:
False
Note: This Question is unanswered, help us to find answer for this one
You have two tables emp_1 and emp_2, having the following data:
Table emp_1
Name Date
Robert 1/5/2008
John 1/6/2008
Michael 1/7/2008
Rachael 1/10/2008
Joey 1/10/2008
Table emp_2
Name Date
Lewis 1/05/2008
David 1/07/2008
George 1/11/2008
Jerry 1/12/2008
Monica 1/12/2008
The following query is run in the Query Analyzer:
SELECT Date FROM emp_1
EXCEPT
SELECT Date FROM emp_2
What will be the result of the query?
Correct Answer:
1/6/2008, 1/10/2008
Note: This Question is unanswered, help us to find answer for this one
Which among the following are the new datatypes introduced in the SQL Server 2005?
Correct Answer:
varchar (max)
Note: This Question is unanswered, help us to find answer for this one
Which clause will be used to extract data from Tables A and B having a similar structure but no relation between themselves?
Correct Answer:
Union All
Note: This Question is unanswered, help us to find answer for this one
Which of the following is not a type of Database backup in the SQL SERVER 2005?
Correct Answer:
Partial backup
Note: This Question is unanswered, help us to find answer for this one
State whether True or False.
The "text" and "ntext" data type can store character based data. These data types can be used in joins
Correct Answer:
False
Note: This Question is unanswered, help us to find answer for this one
Which of the following operators will be evaluated first in the following statement?
Select (salary+40^2*30/5) from employees
Correct Answer:
^
Note: This Question is unanswered, help us to find answer for this one
Suppose e1 and e2 denote two decimal expressions with precisions p1 and p2 and scales s1 and s2, respectively. What is the result precision of the following operation on the two expressions?
Correct Answer:
p1 - s1 + s2 + max(6, s1 + p2 + 1)
Note: This Question is unanswered, help us to find answer for this one
In which of the following statements can TOP clause be used in SQL Server 2008?
Correct Answer:
Only SELECT, INSERT, UPDATE, MERGE, DELETE
Note: This Question is unanswered, help us to find answer for this one
Which of the following commands is used to start the Resource Governor in SQL Server 2008?
Correct Answer:
ALTER Resource Governor Reconfigure
Note: This Question is unanswered, help us to find answer for this one
Analyze the following code snippet for creating a stored procedure in SQL Server 2008:
CREATE PROCEDURE Person.GetEmployees
@LastName nvarchar(50),
@FirstName nvarchar(50)
AS
SET NOCOUNT ON
SELECT FirstName, LastName, JobTitle, Department
FROM Person.EmployeeDepartment
WHERE FirstName = @FirstName AND LastName = @LastName
GO
Which of the following is a valid code to execute the GetEmployees stored procedure?
Correct Answer:
All of the above
Note: This Question is unanswered, help us to find answer for this one
Analyze the following permissions:
1.ALTER permission on the database.
2.CONTROL permission in the database.
3.ALTER ANY SCHEMA permission and CREATE XML SCHEMA COLLECTION permission in the database.
Which of the above permissions is/are required to create an XML SCHEMA COLLECTION?
Correct Answer:
1 or 2 or 3
Note: This Question is unanswered, help us to find answer for this one
A local temporary stored procedure name can contain a maximum of __________ characters
Correct Answer:
116
Note: This Question is unanswered, help us to find answer for this one
FILESTREAM storage is best used when the BLOB file sizes average 1MB or higher.
Correct Answer:
CREATE VIEW permission in database
Note: This Question is unanswered, help us to find answer for this one
Which of the following statements using GROUP BY clause are allowed in SQL Server 2008?
Correct Answer:
SELECT Column1 + Column2 FROM Table GROUP BY Column1, Column2
Note: This Question is unanswered, help us to find answer for this one
Which of the following is used to comment a portion of an SQL Server 2008 script?
Correct Answer:
Double dash (--)
Note: This Question is unanswered, help us to find answer for this one
Which of the following is the correct precedence order of the data types in SQL Server 2008?
1.xml
2.text
3.bigint
4.image
5.float
6.datetime
Correct Answer:
1,6,5,3,2,4
Note: This Question is unanswered, help us to find answer for this one
Which of the following queries is used to rename a database in SQL Server 2008?
Correct Answer:
sp_renamedb oldname,newname
Note: This Question is unanswered, help us to find answer for this one
The output of a Transact SQL query using the GROUPING function of SQL Server 2008 is of __________ return type.
Correct Answer:
tinyint
Note: This Question is unanswered, help us to find answer for this one
What should a computed column be marked as so that SQL Server Database Engine can physically store values in a table?
Correct Answer:
PERSISTED
Note: This Question is unanswered, help us to find answer for this one
Which of the following is a valid code to remove the key used to encrypt a database using Transparent Data Encryption algorithm?
Correct Answer:
DROP DATABASE ENCRYPTION KEY
DROP DATABASE ENCRYPTION KEY
Note: This question has more than 1 correct answers
Note: This Question is unanswered, help us to find answer for this one
Analyze the following data types and schemas:
1.The SQL Server system data type.
2.The default schema of the current user in the current database.
3.The dbo schema in the current database.
In which order does the SQL Server Database Engine refer to type_name when a type_schema_name is NOT specified while creating a table in SQL Server 2008?
Correct Answer:
2,3,1
Note: This Question is unanswered, help us to find answer for this one
Which of the following code snippets causes only partition number 1 to be rebuilt while changing the compression of a partitioned table?
Correct Answer:
ALTER TABLE Table1 REBUILD PARTITION = 1 WITH (DATA_COMPRESSION = NONE) GO
Note: This Question is unanswered, help us to find answer for this one
What happens to the audit records if a failure to write the Audit event does NOT trigger the SQL Server instance to shut down?
Correct Answer:
Audit events are buffered in memory until they can be flushed to the target.
Note: This Question is unanswered, help us to find answer for this one
Which of the following namespaces is used to manage the audit configuration programmatically in SQL Server 2008?
Correct Answer:
Microsoft.SqlServer.Management.Smo
Note: This Question is unanswered, help us to find answer for this one
Which of the following default passwords is used by sqlcmd if -P option is used at the end of the command prompt without a password?
Correct Answer:
NULL
Note: This Question is unanswered, help us to find answer for this one
The login timeout when you try to connect to a server must be a number between __________.
Correct Answer:
0 and 65534
Note: This Question is unanswered, help us to find answer for this one
Which of the following permissions is required to drop a stored procedure in SQL Server 2008?
Correct Answer:
Either b or c
Note: This Question is unanswered, help us to find answer for this one
What is the default precision of the TIME data type in SQL Server 2008?
Correct Answer:
7 digits
Note: This Question is unanswered, help us to find answer for this one
Which of the following commands is used to run a Transact-SQL script file by using sqlcmd?
Correct Answer:
sqlcmd -S myServer\instanceName -i C:\newScript.sql
Note: This Question is unanswered, help us to find answer for this one
Which of the following commands is used to connect to a named instance of SQL Server using the sqlcmd utility of SQL Server?
Correct Answer:
sqlcmd -S myServer\instanceName
Note: This Question is unanswered, help us to find answer for this one
Which of the following is the correct order of steps to be followed while using the Transparent Data Encryption security feature of SQL Server 2008?
Correct Answer:
1. Create a master key. 2. Create or obtain a certificate protected by the master key. 3. Create a database encryption key and protect it by the certificate. 4. Set the database to use encryption.
Note: This Question is unanswered, help us to find answer for this one
Which of the following values specifies that each instance of the XML data type in column_name can contain multiple top-level elements?
Correct Answer:
CONTENT
Note: This Question is unanswered, help us to find answer for this one
What is the maximum number of columns that can be combined into a single composite index key?
Correct Answer:
16
Note: This Question is unanswered, help us to find answer for this one
Which of the following data types can be specified as SPARSE?
Correct Answer:
nchar
Note: This Question is unanswered, help us to find answer for this one
What is the name of the default instance installed by SQL Server 2008 Express in your computer?
Correct Answer:
sqlexpress
Note: This Question is unanswered, help us to find answer for this one
Which of the following is a valid syntax of the ALTER SERVER AUDIT statement used to enable a server audit?
Correct Answer:
ALTER SERVER AUDIT <audit_name> WITH (STATE=ON)
Note: This Question is unanswered, help us to find answer for this one
What range is supported by the TIME data type in SQL Server 2008?
Correct Answer:
00:00:00.0000000 through 23:59:59.9999999
Note: This Question is unanswered, help us to find answer for this one
Which of the following roles is required to connect to a Central Management Server?
Correct Answer:
ServerGroupReaderRole
Note: This Question is unanswered, help us to find answer for this one
Which of the following clauses of SQL Server 2008 avoids enforcing a constraint when repeated inserts are performed?
Correct Answer:
NOT FOR REPLICATION
Note: This Question is unanswered, help us to find answer for this one
Analyze the following code snippet:
DECLARE @myDate DATETIME2
SELECT @myDate = '2009/10/08 12:35:29.2348 +12:15'
SELECT @myDate AS '@myDate'
What is the output of the above code?
Correct Answer:
2009-10-08 12:35:29.2348000
Note: This Question is unanswered, help us to find answer for this one
Which of the following stored procedures is used to delete data from the management data warehouse of a Data Collector?
Correct Answer:
core.sp_purge_data
Note: This Question is unanswered, help us to find answer for this one
Which of the following is the default authentication mode for sqlcmd in SQL Server 2008?
Correct Answer:
Windows Authentication
Note: This Question is unanswered, help us to find answer for this one
Multiple CHECK constraints can be applied to a single column and a single CHECK constraint can be applied to multiple columns in SQL Server 2008.
Correct Answer:
True
Note: This Question is unanswered, help us to find answer for this one
Analyze the following command:
-o "C:\Folder\<file_name>"
Which of the following statements is true if a file with the file name specified in the above command already exists?
Correct Answer:
The file is overwritten.
Note: This Question is unanswered, help us to find answer for this one
Which of the following features of SQL Server 2008 enables you to limit the memory used by incoming application requests?
Correct Answer:
Resource Governor
Note: This Question is unanswered, help us to find answer for this one
Which of the following is a valid code to change the index created on a column of a table to page compression?
Correct Answer:
ALTER INDEX Index_Product ON Table1 REBUILD WITH ( DATA_COMPRESSION = PAGE ) GO
Note: This Question is unanswered, help us to find answer for this one
PRIMARY KEY constraint defaults to __________ index.
Correct Answer:
Clustered
Note: This Question is unanswered, help us to find answer for this one
What amount of storage is required by a date variable in SQL Server 2008?
Correct Answer:
3 bytes
Note: This Question is unanswered, help us to find answer for this one
What is the default precision of the date data type in SQL Server 2008?
Correct Answer:
10 digits
Note: This Question is unanswered, help us to find answer for this one
What is the default timeout for login to sqlcmd while you try to connect to a server?
Correct Answer:
8 seconds
Note: This Question is unanswered, help us to find answer for this one
Which of the following is a valid code to delete a clustered index with a PRIMARY KEY constraint in SQL Server 2008?
Correct Answer:
ALTER TABLE Production.ProductCost DROP CONSTRAINT PK_Product WITH (ONLINE = ON) GO
Note: This Question is unanswered, help us to find answer for this one
Windows Security log can be specified as a target for Audit in SQL Server 2008.
Correct Answer:
True
Note: This Question is unanswered, help us to find answer for this one
How many groupings are generated when CUBE is used with the GROUP BY clause of SQL Server 2008?
Correct Answer:
2^n (n= number of expressions in the element list passed to CUBE)
Note: This Question is unanswered, help us to find answer for this one
Which of the following features of SQL Server 2008 evaluates servers for compliance with a set of predefined conditions and prevents making undesirable changes to servers?
Correct Answer:
Policy-Based Management
Note: This Question is unanswered, help us to find answer for this one
Which of the following statements is true if you create a global temporary table in SQL Server 2008 and specify a FOREIGN KEY with the CREATE TABLE command?
Correct Answer:
The table is created without the FOREIGN KEY constraint and a warning message is returned.
Note: This Question is unanswered, help us to find answer for this one
Which of the following evaluation modes of Policy-Based Management CANNOT be automated in SQL Server 2008?
Correct Answer:
On demand
Note: This Question is unanswered, help us to find answer for this one
The regular identifiers of SQL Server 2008 may contain a range of _____________ characters.
Correct Answer:
1 to 128
Note: This Question is unanswered, help us to find answer for this one
What is the default value of the SORT_IN_TEMPDB clause of the relational_index_option specified at the time of creation of an index on a table in SQL Server 2008?
Correct Answer:
OFF
Note: This Question is unanswered, help us to find answer for this one
Which of the following is used by SQL Server 2008 Management Studio to execute scripts in regular mode in the Query Editor?
Correct Answer:
Microsoft .NET Framework SqlClient
Note: This Question is unanswered, help us to find answer for this one
Analyze the following code snippet:
DECLARE @myTime TIME(4) = '02:02:02.234567 +01:01'
SELECT @myTime AS '@myTime'
What is the output of the above code?
Correct Answer:
02:02:02.2346
Note: This Question is unanswered, help us to find answer for this one
Which of the following commands is used to save the output to a text file after you run a Transact-SQL script using sqlcmd?
Correct Answer:
sqlcmd -S myServer\instanceName -i C:\myScript.sql -o C:\new.txt
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
False
Note: This Question is unanswered, help us to find answer for this one
What is returned by NULLIF if the two expressions that it compares are NOT equal?
Correct Answer:
It returns the first expression.
Note: This Question is unanswered, help us to find answer for this one
An identifier denoting a global temporary object in SQL Server 2008 starts with a ______ sign.
Correct Answer:
Double number(##)
Note: This Question is unanswered, help us to find answer for this one
What is the maximum value for the sum of the values of MIN_CPU_PERCENT and MIN_MEMORY_PERCENT for all the resource pools of SQL Server?
Correct Answer:
100
Note: This Question is unanswered, help us to find answer for this one
The Server Audit object and the Server Audit Specification object of SQL Server 2008 share a __________ relationship.
Correct Answer:
One-to-one
Note: This Question is unanswered, help us to find answer for this one
Analyze the following code used to update a Common Table Expression:
USE demodb
GO
DECLARE @a TABLE (ID int, Value int);
DECLARE @b TABLE (ID int, Value int);
INSERT @a VALUES (1, 10), (2, 20);
INSERT @b VALUES (1, 100),(2, 200);
WITH cte AS (SELECT * FROM @a)
UPDATE cte
SET Value = b.Value
FROM cte AS a
INNER JOIN @b AS b ON b.ID = a.ID
SELECT * FROM @a
GO
What Will be the output of the above code?
Correct Answer:
ID Value ----- ----- 1 100 2 200
Note: This Question is unanswered, help us to find answer for this one
Columns marked with which of the following constraints/properties allow null values to be inserted in them?
Correct Answer:
UNIQUE
Note: This Question is unanswered, help us to find answer for this one
For which of the following data types can a COLLATE clause be applied?
Correct Answer:
text
Note: This Question is unanswered, help us to find answer for this one
Which of the following permissions are required to create a view in SQL Server 2008?
Correct Answer:
CREATE VIEW permission in database
Note: This Question is unanswered, help us to find answer for this one
Which of the following statements are true about FILESTREAM storage in SQL Server 2008?
Correct Answer:
Transact-SQL can be used to SELECT, INSERT, UPDATE, DELETE FILESTREAM data.
Note: This Question is unanswered, help us to find answer for this one
Which of the following spatial data types are used in SQL Server 2008?
Correct Answer:
Geography
Note: This Question is unanswered, help us to find answer for this one
Which of the following statements are true about the FILESTREAM argument of SQL Server 2008?
Correct Answer:
If a table contains FILESTREAM data and the table is partitioned, the FILESTREAM_ON clause must be included.
Note: This Question is unanswered, help us to find answer for this one
Which of the following counters are used to monitor compression of the whole instance of SQL Server?
Correct Answer:
Page compression attempts/sec
Note: This Question is unanswered, help us to find answer for this one
Which of the following are valid DATETIME functions in SQL Server 2008?
Correct Answer:
SYSDATETIME()
Note: This Question is unanswered, help us to find answer for this one
Which of the following formats are supported by the language_term argument while altering a full-text stoplist in SQL Server 2008?
Correct Answer:
Integer
Note: This Question is unanswered, help us to find answer for this one
Which of the following encryption algorithms are used by the Transparent Data Encryption security mechanism of SQL Server 2008?
Correct Answer:
Advanced Encryption Standard(AES)
Note: This Question is unanswered, help us to find answer for this one
Which of the following security features have been introduced in SQL Server 2008?
Correct Answer:
Extensible Key Management
Note: This Question is unanswered, help us to find answer for this one
Which of the following statements are true regarding row and page compression in SQL Server 2008?
Correct Answer:
When a table or index is created, data compression is set to NONE, unless otherwise specified.
Note: This Question is unanswered, help us to find answer for this one
Which of the following statements are true?
Correct Answer:
IGNORE_DUP_KEY cannot be set to ON for XML indexes.
Note: This Question is unanswered, help us to find answer for this one
Which of the following data types are supported by SQL Server 2008?
Correct Answer:
date
Note: This Question is unanswered, help us to find answer for this one
Which of the following options are available for the DATA_COMPRESSION clause specified for a table in SQL Server 2008?
Correct Answer:
Page
Note: This Question is unanswered, help us to find answer for this one
Which of the following rules must be followed for combining the result sets of two queries by using UNION?
Correct Answer:
The number of columns must be same in all queries.
Note: This Question is unanswered, help us to find answer for this one
Which of the following statements using GROUP BY clause are allowed in SQL Server 2008?Which of the following statements using GROUP BY clause are allowed in SQL Server 2008?
Correct Answer:
Which of the following statements using GROUP BY clause are allowed in SQL Server 2008?
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
35
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
-Z
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Server Audit object
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
UNIQUE constraint cannot be referenced by a FOREIGN KEY constraint
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
File_pattern
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
False
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
An incorrect syntax error is displayed.
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Data file level compression
Backup level compression
Note: This question has more than 1 correct answers
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
nvarchar
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
CREATE INDEX To
UPDATE To
Note: This question has more than 1 correct answers
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
_n
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
ENABLE
AUTO
DISABLE
Note: This question has more than 1 correct answers
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
DELETE
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
64 processors
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
999
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
18
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
SQL DDL syntax
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
date
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
False
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
PRIMARY KEY and UNIQUE constraints
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
SELECT * FROM Persons WHERE LastName BETWEEN 'Hansen' AND 'Pettersen'
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
A primary key should be created for the customer_id field in the customer table and a foreign key should be created for the customer_id field in the order table
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
VARTEXT
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
SELECT * FROM Persons ORDER BY FirstName DESC
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Query 2 is perfectly correct
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Views are a logical way of looking at the physical data located in the tables
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
.25
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
0-255
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
BIT
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Select name from students group by subject, name;
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
SELECT * FROM myTable WHERE column1 is null
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
SELECT MAX(gpa) FROM student_grades WHERE gpa IS NOT NULL GROUP BY semester_end
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
All are supported
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
True
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Yes
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
ALTER TABLE table1 ADD column2a varchar(50);
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
COUNT(start_date)
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Select course from students group by course having count(*) 5;
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
It will report an error
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Binary Large Object
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
It will print the current date
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Avg
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
displaytext
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
One-to-many or many-to-many relationships between columns in a table
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Table Name
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
None of the statements in the batch is executed if there are any fatal errors<br>in the batch
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
The two statements produce identical results
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Yes
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
SELECT Book_title FROM books WHERE (price < 500 OR price > 900) AND purchase_date < '11/11/2002' ORDER BY purchase_date DESC;
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
soundex(smith) is the same as soundex(smyth)
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
trim() function is used to remove leading and trailing spaces from a string
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
sp_columns myTable
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Programs with cursors take more time to run, hence performance degrades
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
4
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Default
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
select count(OrderDate),sum(amount) from orders group by OrderDate having sum(amount) 20000
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
1,2,3,4
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
@@colcount
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
\
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
System generated ID
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
No
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Select * from Products order by ProductGroup,CurrentStock DESC
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Dec 31, 9999
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
None of the above
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
// is used for single line comments
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
do...while
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Manipulating columns of datatype IMAGE / TEXT does not cause triggers to be executed
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Use DEFAULT and NOT NULL constraints
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
1,3,5,4,2
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
The query will return "Designing"
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
M to N
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
CREATE [UNIQUE] INDEX index_name ON tbl_name (index_columns)
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
All of the above are true
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Optimistic locking is a locking scheme handled by the server, whereas pessimistic locking is handled by the application developer
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
It will return the fields customer_id, customer_name, branch_id, branch_name, branch_name
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
marketing, production, sales, NULL
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
True
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
sub sub query ; sub query ; prime query
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Both 1 and 2 are true
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Serializable
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
It returns employees who have 50% commission rate or salary greater than $23,000
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
UPDATE Persons SET LastName = 'Nilsen' WHERE LastName = 'Hansen'
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
T-Sql is not case sensitive. Hence, the LOWER keyword is not required
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Aggregate
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
with
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Extraction
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Database Console Commands
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
False
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
msdb
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
All data extents changed since the most recent full database backup
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
msdb
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
If the cast to the desired data type fails, the result is NULL
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
As files in a file-system directory
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
The one from the highest peer_originator_id
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Rolls back to the start of the outer transaction
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
HAVING
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Common Table Expression
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
False
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
True
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
True
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
GRANT, DENY, and REVOKE
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
All of these
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Foreign key
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Any action in SQL server
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
GROUP BY then ORDER BY
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
False
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
LIKE "%ith"
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
SQL Server Agent Service
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
DENY
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
False
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
INT
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
UNPIVOT
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
diskadmin
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Adds the specified number of months to the input start date and then returns the last day of the month for the resulting date
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Check the average page density
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
CompoundCurve
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
smalldatetime2
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Header without any data
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
'New York"
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
FALSE
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Index Physical Statistics
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
SSISDB
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
SELECT
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
FileTable
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
SELECT * FROM #table1 WHERE xml_field1.value('(/PageContent/Text)[1]', 'varchar(100)') LIKE '%smith%'
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
False
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Many to many
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Enterprise edition
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Source code > Object code > Executable code > Procedure as database object
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
False
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Use triggers or use change data capture (CDC)
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
REVOKE
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
DECLARE
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
True
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
True
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
MSDB
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Foreign key
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
False
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
RANK
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
An error.
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
False
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Nonclustered Indices
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
INSERT INTO
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
True
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
All of these
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
HAVING
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Common Table Expresssion
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Any action in SQL server
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
A special T-SQL construct used to iterate through the individual records returned by a query
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
TABLE scan
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Both Windows security and SQL Server security
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
1433
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Compares a specified value against a list of values and is true if a match is found
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
True
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
All of these
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Manages processes running in an instance of SQL Server
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Copy only the information that has changed since the last full backup
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
INNER JOIN
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
They provide an extremely flexible method for importing and exporting data between a Microsoft SQL Server and other formats
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
True
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
All of these
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Read Commited
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
DROP FUNCTION
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Query A will return both result sets with duplicates removed; Query B will return both full result sets.
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
True
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Evaluates the arguments in order and returns the current value of the first expression that initially does not evaluate to NULL.
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
READ UNCOMMITED
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
All of these
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
SQL_VARIANT
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
pte
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Causes SQL Server to rebuild the query plan for a stored procedure on every call
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
CASCADE
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
SSIS
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Performance versus disk space
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Performing joins between calculated sets
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
LEN
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
1433
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
select ... ROW_NUMBER() over (partition by [group_val] order by [id]) as [row] ...;
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
True
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Variable Length
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
SET NOCOUNT ON
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Database Consistency Commands
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
GETDATE()
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Update the field1 column to the value 1 in only 100 records in the table
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Nondeterministic
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
SET XACT_ABORT ON
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
False
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
literal value
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Both FILESTREAM and Sparse columns
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Always On
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
IN
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
IN
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
False
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
When casting to desired data type failed it will result NULL
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
All of these are supported
Note: This Question is unanswered, help us to find answer for this one
Microsoft SQL Server MCQs | Topic-wise