What does it mean to have quoted_identifier on? What are the
implications of having it off?

Answers were Sorted based on User's Feedback



What does it mean to have quoted_identifier on? What are the implications of having it off?..

Answer / koti-khammam

when QUOTED_IDENTIFIER option is specified as ON ,the
identifiers are placed with in double quotation and
constants are placed with in single quotation.
when QUOTED_IDENTIFIER is OFF,the identifiers are not placed
with in double quotation and we must follow all T-SQL rules
for the identifiers.

Is This Answer Correct ?    3 Yes 0 No

What does it mean to have quoted_identifier on? What are the implications of having it off?..

Answer / bobby

When SET QUOTED_IDENTIFIER is ON, identifiers can be
delimited by double quotation marks, and literals must be
delimited by single quotation marks. When SET
QUOTED_IDENTIFIER is OFF, identifiers cannot be quoted and
must follow all Transact-SQL rules for identifiers. For more
information, see Identifiers. Literals can be delimited by
either single or double quotation marks.

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More SQL Server Interview Questions

What are trace flags and mention a few common trace flags used with sql server?

0 Answers  


Explain about SQL server 2005?

0 Answers  


what is the Ticketing tool used in Wipro technologies at Bangalore...???

0 Answers   Liquid Hub,


What are the types of model in sql server and explain

2 Answers   TCS,


What is the benefit of normalization?

0 Answers  






How to defragment indexes with alter index ... Reorganize?

0 Answers  


How many types of built in functions are there in sql server 2012?

0 Answers  


What are the main differences between #temp tables and @table variables and which one is preferred?

0 Answers  


Where cross join is used?

0 Answers  


What is raid, and how it can influence database performance?

0 Answers  


write the query for taking database backup in sql

10 Answers   ABC, IBM, Logica CMG, MA,


select name of emplyoee whose total salary is 130 from following table. id name salary 1 a 100 2 b 20 3 c 50 1 a 30 2 b 70 Post the resulantant Query?

7 Answers  


Categories