| cppwiz 2003-09-18, 9:31 am |
| Susan,
Yes, identifiers can not be longer than 128 characters. For identifiers that don't follow the rules, such as having spaces in the indentifier, they must be delimited with either double quotation marks ("My Table") or brackets ([My Table]). The total size of the delimited indentifier can not be over 128 characters.
Are you possibly confusing the identifier 128 character limit with the char data type limit of 8000 characters ? For example:
UPDATE [My Table]
SET [My Table].[My Column] = 'This can be 8000 characters long'
The [My Table] and [My Column] can only be 128 characters but if [My Column] is defined as char(8000) then it can be assigned a string value of up to 8000 characters.
Hope this helps... |