Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Executing sp_rename from an application
Message
From
16/10/2014 11:52:36
John Baird
Coatesville, Pennsylvania, United States
 
 
To
16/10/2014 11:48:41
General information
Forum:
Microsoft SQL Server
Category:
SQL syntax
Environment versions
SQL Server:
SQL Server 2012
Application:
Web
Miscellaneous
Thread ID:
01609538
Message ID:
01609541
Views:
36
>>Alter Table 'mytable' AlterColumn.'mycolumn' INT NOT NULL (or whatever). If the column is used in a constraint, you may have to drop the constraint first, then recreate it...
>
>This syntax changes the colum name?

no, I misread what you typed... sorry...


EXEC sys.sp_rename
@objname = N'dbo.Company.CompanyName',
@newname = 'Name',
@objtype = 'COLUMN'

From the documentation (sp_rename (Transact-SQL))

If the object to be renamed is a column in a table, object_name must be in the form table.column or schema.table.column. If the object to be renamed is an index, object_name must be in the form table.index or schema.table
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform