Example: renaming dbo.HedgingBond to dbo.HedgingInstrument:
EXEC sp_rename "dbo"."HedgingBond", "HedgingInstrument";
The correct syntax is:
EXEC sp_rename "dbo.HedgingBond", "HedgingInstrument";
EXEC sp_rename "dbo"."HedgingBond", "HedgingInstrument";
EXEC sp_rename "dbo.HedgingBond", "HedgingInstrument";
MSSQL: Prefer "schema.table" quoting over "schema"."table". See http://www.heidisql.com/forum.php?t=18476
This is a good example of an issue that can be marked as fixed. Refer to issue 21940 .
Please login to leave a reply, or register at first.