|
|
|
SSC-Insane
         
Group: General Forum Members
Last Login: Today @ 8:31 PM
Points: 21,832,
Visits: 27,854
|
|
|
|
|
|
Mr or Mrs. 500
      
Group: General Forum Members
Last Login: Friday, May 24, 2013 2:06 PM
Points: 576,
Visits: 27,681
|
|
This question fooled me 
Thanks Hugo for the great walkthrough, I learned something new :)
Cheers
|
|
|
|
|
Ten Centuries
      
Group: General Forum Members
Last Login: Tuesday, April 19, 2011 1:59 AM
Points: 1,042,
Visits: 234
|
|
A tricky question indeed.
And very good explaination by Hugo. Thanks Hugo. Learnt about delimiters.
|
|
|
|
|
SSCrazy
      
Group: General Forum Members
Last Login: Monday, May 06, 2013 5:31 AM
Points: 2,226,
Visits: 438
|
|
Hugo Kornelis (10/12/2010)
lukus_g (10/12/2010) so, does the transaction actually run and get rolled back?
No. The author of the question uses a long explanation to expand on how usefull the possibility to use non-standard characters in identifiers is. (It can be - but only in some cases, it can also be very confusing and introduce errors, so take care. And if you care for ANSI standards and portable code, consider using "double quotes" instead of [bracktes] to delimit identifiers). Unfortunately, he completely forgot to explain the actual question. First, focus on the first line: create table [VarArray[]](i int)The first [ starts a delimited identifier. That means that from there on, every character is considered part of the table name, and al characters are allowed. With one exception. The ] character will be considered the end of the delimited identifier. So what if we want to use a ] character as part of the identifier? The answer to that question is to escape it. In a [delimited identifier], you can escape the ] character by doubling it, so you get ]]. This can be very confusing. A human reader would interpret an identifier such as [identifier]]] as being terribly unmatched, but the SQL Server parser replaces the first two closing brackets with a single ] symbol as part of the identifier, and interprets the third closing identifier as the brackets that signifies the end of the delimited identifier. Carlo played a trick on us by adding a [ sign and a double ] to the identifier. We tend to pair up the identifiers and conclude that the last ] ends the identifier, and (i int) is the column list. SQL Server simply treats the [ as one character in the identifier, then treats the ]] as one character in the identifier, and then also treats (i int) as part of the identifier. If you execute ONLY the line create table [VarArray[]](i int)you will get an error message: Msg 105, Level 15, State 1, Line 1 Unclosed quotation mark after the character string 'VarArray[](i int) '.If you add a third ] right after the second and before (i int), the code will succeed and you will create a table with name VarArray[] and one integer column named i. Since the first line does not end the delimited identifier, the end of line character and the next line is considered part of the identifier as well. That even includes the GO lines - SSMS has its own parser that also sees that the delimiter has not ended, so it will not interpret these specific GO lines as batch seperators, but will include them in the batch. All lines in the code are sent as one single batch. This long delimited identifier finally ends on this line: while 1=1)]The extra ] at the end is easily missed by humans, but the SQL Server parser does recognise it, and interprets it as the end of the identifier. The lines that come after this line look like a single statement with two syntax errors (both enclosing in parentheses and the statement itself would violate syntax rules if used in a real WHILE loop), but are actually interpreted as a column list. So, what this code really does is - it creates a table with this hideous name: VarArray[](i int) GO begin tran insert into VarArray(i) select 1 rollback GO while(1=1) and with one single column, named print_i and typed as integer.
Thank you for your explanation, I couldn't understand the original explanation.
/Håkan Winther MCITP:Database Developer 2008
|
|
|
|