sp_validname (T-SQL)

Checks for valid Microsoft® SQL Server™ identifier names. All nonbinary and nonzero data, including Unicode data that can be stored by using the nchar, nvarchar, or ntext data types, are accepted as valid characters for identifier names.

Syntax

sp_validname [@name =] 'name'
    [, [@raise_error =] raise_error]

Arguments
[@name =] 'name'
Is the name of the identifier for which to check validity. name is sysname, with no default. name cannot be NULL, cannot be an empty string, and cannot contain a binary-zero character.
[@raise_error =] raise_error
Specifies whether to raise an error. raise_error is bit, with a default of 1, which means that errors should appear. 0 causes no error messages to appear.
Return Code Values

0 (success) or 1 (failure)

Result Sets

None

Permissions

Execute permissions default to the public role.

See Also
Data Types ntext, text, and image
Using Identifiers nchar and nvarchar
NCHAR System Stored Procedures

  


(c) 1988-98 Microsoft Corporation. All Rights Reserved.