Renaming SQL Server database objects and changing object owners

By:   |   Updated: 2021-08-06   |   Comments (2)   |   Related: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | > TSQL


Problem

As with most things in life, nothing ever stays the same. This is true with SQL Server and also with your applications that utilize SQL Server. The way applications and databases were originally designed may or not meet your current or future needs and therefore there is a need to change what you thought was the perfect solution when it was first rolled out. Changes that you make on a daily or weekly basis probably are embedded in the application or database code (stored procs, triggers, etc.), but one change that you may face is the need to rename database objects that already exist. What options are available to rename database objects?

Solution

SQL Server offers many utilities that you may or may not be aware of and here are specific tools that allow you to rename objects that exist in a SQL Server instance. Each of these commands allows you to make changes to database objects or change ownership of certain objects. The following outlines the need, the command and some sample code.

Rename a SQL Server Database

A database can be renamed in one of several ways. The two commands that SQL Server offers are sp_renamedb and sp_rename. In addition, if you are using SQL Server Management Studio you can also change a database name via the GUI. Another option is to detach and reattach the database and rename the database on the attach. For more information take a look at this previous tip How to rename a database

Example: rename database from Test1 to Test2

ALTER DATABASE [Test1] MODIFY NAME = [Test2]
--or
sp_renamedb 'Test1' , 'Test2
--or
sp_rename 'Test1', 'Test2', 'DATABASE';

Rename a SQL Server Table, Stored Procedure, Trigger or other Object

Another task that you may need to do is to rename an existing table, stored procedure, trigger, etc. Again this can be done in several ways. You can use the sp_rename stored procedure or use SQL Server Management Studio by right clicking on the object and selecting rename. Another option is to create a new object and drop the old object.

This could be any object that exists with SQL Server (table, stored procedure, trigger, etc.)

Example: rename object Test1 to Test2.

sp_rename 'dbo.Test1', 'Test2', 'OBJECT';

Rename a SQL Server Index

Indexes can be renamed using the sp_rename option or again you can create a new index with the new name and drop the old index. Again this can be done using SQL Server Management Studio.

Example: rename an index from Test1 to IX_Test1

sp_rename 'dbo.Test.Test1', 'IX_test1', 'INDEX';

Rename a SQL Server Column

Renaming a column can be done using the sp_rename stored procedure or you can use ALTER TABLE to add a new column with the new name, move the data to the new column and then drop the old column.

This can also be done using SQL Server Management Studio, by right clicking on the column name and selecting rename.

Example: rename column Product in table Test1 to ProductName

sp_rename 'dbo.Test1.Product', 'ProductName', 'COLUMN';

Change SQL Server Database Owner

Changing database ownership can be done by using the sp_changedbowner. This can also be done using SQL Server Management Studio under the database properties.

Example: change the current database owner to DBadmin

sp_changedbowner 'DBadmin'

Change SQL Server Object Owner/Schema

To change the ownership of objects you can use the ALTER SCHEMA command.

Example: change the schema for table Test from the dbo schema to schema TestSchema

ALTER SCHEMA TestSchema TRANSFER dbo.Test

Summary

Note: when using SQL Server Management Studio to make these changes, the GUI is just calling the sp_rename stored procedure.

One thing to keep in mind is that when you use these commands or the GUI to rename objects, the change does not get propagated to other objects that are dependent upon the object that you renamed, therefore you will need to make modifications to these other objects in order for them to use the renamed object. As you can see this is a simple way of making these changes, but it could also have negative impact on your application and database. So before you start renaming objects make sure you know the impact of the change first.

Next Steps
  • Next time you need to make a name change, remember these different options that exist.
  • To determine which objects are dependent upon other objects take a look at this tip, Listing SQL Server Object Dependencies to help find the answers


sql server categories

sql server webinars

subscribe to mssqltips

sql server tutorials

sql server white papers

next tip



About the author
MSSQLTips author Greg Robidoux Greg Robidoux is the President and founder of Edgewood Solutions, a technology services company delivering services and solutions for Microsoft SQL Server. He is also one of the co-founders of MSSQLTips.com. Greg has been working with SQL Server since 1999, has authored numerous database-related articles, and delivered several presentations related to SQL Server. Before SQL Server, he worked on many data platforms such as DB2, Oracle, Sybase, and Informix.

This author pledges the content of this article is based on professional experience and not AI generated.

View all my tips


Article Last Updated: 2021-08-06

Comments For This Article




Tuesday, April 17, 2012 - 1:01:51 PM - webpos Back To Top (16978)

Hi,

I have a question How can I change a dbo. table system object paramenter to TRUE instead of fale.

webpos


Wednesday, March 17, 2010 - 3:33:36 AM - elizas Back To Top (5066)
Please visit the link below.It would answer your query. http://www.mindfiresolutions.com/Renaming-Databse-Objects-859.php














get free sql tips
agree to terms