admin管理员组文章数量:1347158
I'm encountering an error while trying to rename a column in SQL Server using the following query:
EXEC sp_rename 'Gold.dbo.TEST_TABLE.OldTestColumn', 'NewTestColumn', 'COLUMN';
I get the following error message:
Msg 15600, Level 16, State 30, Line 897
An invalid parameter or option was specified for procedure 'sys.sp_rename'.Msg 24528, Level 0, State 1, Line 1
Statement ID: {9626E836-C810-48E3-A9A7-D2BBD641B028}
3:31:04 PM SQL Server execution time: 00:00:00.112 | Total duration: 00:00:01.191
The column, table, and schema exist, and everything is properly referenced. I have tried different variations, but the issue persists. My environment is Microsoft Fabric, within Warehouse Gold.
Any suggestions on how to resolve this issue?
I tried renaming a column in a table within Microsoft Fabric using the sp_rename
stored procedure. I expected the column name to be updated successfully without errors.
I'm encountering an error while trying to rename a column in SQL Server using the following query:
EXEC sp_rename 'Gold.dbo.TEST_TABLE.OldTestColumn', 'NewTestColumn', 'COLUMN';
I get the following error message:
Msg 15600, Level 16, State 30, Line 897
An invalid parameter or option was specified for procedure 'sys.sp_rename'.Msg 24528, Level 0, State 1, Line 1
Statement ID: {9626E836-C810-48E3-A9A7-D2BBD641B028}
3:31:04 PM SQL Server execution time: 00:00:00.112 | Total duration: 00:00:01.191
The column, table, and schema exist, and everything is properly referenced. I have tried different variations, but the issue persists. My environment is Microsoft Fabric, within Warehouse Gold.
Any suggestions on how to resolve this issue?
I tried renaming a column in a table within Microsoft Fabric using the sp_rename
stored procedure. I expected the column name to be updated successfully without errors.
1 Answer
Reset to default 3Renaming of columns is not supported (with sp_rename
) in a Warehouse in Microsoft Fabric. From the documentation:
Applies to: Microsoft Fabric
- In
sp_rename
for the Warehouse in Microsoft Fabric,OBJECT
is the only supported value for @objtype.- In
sp_rename
for the SQL analytics endpoint in Microsoft Fabric,OBJECT
is the only supported value for @objtype. Tables can't be renamed.
As such, you cannot change the name of a column in your table. You can only change the name of objects.
本文标签: t sqlError renaming a column in SQL Server with sprename in Microsoft FabricStack Overflow
版权声明:本文标题:t sql - Error renaming a column in SQL Server with sp_rename in Microsoft Fabric - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743832444a2546773.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
Gold.dbo.TEST_TABLE.OldTestColumn
4 part naming? Try connecting to the correct database and using 3 part naming. 4 part naming forsys.sp_rename
likely isn't supported (it's not on on-premises). – Thom A Commented 2 days agoobject_name
must be in the formtable.column
orschema.table.column
." learn.microsoft/en-us/sql/relational-databases/… – Charlieface Commented 2 days agosp_rename
for the Warehouse in Microsoft Fabric,OBJECT
is the only supported value for @objtype." – Thom A Commented 2 days ago