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
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 |
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 |
What are trace flags and mention a few common trace flags used with sql server?
Explain about SQL server 2005?
what is the Ticketing tool used in Wipro technologies at Bangalore...???
What are the types of model in sql server and explain
What is the benefit of normalization?
How to defragment indexes with alter index ... Reorganize?
How many types of built in functions are there in sql server 2012?
What are the main differences between #temp tables and @table variables and which one is preferred?
Where cross join is used?
What is raid, and how it can influence database performance?
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?