By: Ahmad Yaseen | Updated: 2022-12-19 | Comments (8) | Related: > TSQL
Problem
I am familiar with the T-SQL CREATE statement that is used to create different database objects and the ALTER statement that performs changes on existing database objects. I noticed that SQL Server now has a CREATE OR ALTER T-SQL statement. Can you explain what this does and how to use?
Solution
In SQL Server 2016, a new T-SQL statement CREATE OR ALTER was introduced and works with SQL Server 2016 and later. This combines both the CREATE and ALTER statements functionality. So, if the object does not exist already it will be created and if the object does already exist it will be altered/updated. The CREATE OR ALTER statement works with specific types of database objects such as stored procedures, functions, triggers and views.
With this new CREATE OR ALTER statement, you do not need to add extra code to your script to check if the object exists in the SYSOBJECTS system table and then drop and re-create. The CREATE OR ALTER statement will do that for you. This allows you to streamline your code and eliminate having to write additional code to check for an objects existence.
The CREATE OR ALTER statement acts like a normal CREATE statement by creating the database object if the database object does not exist and works like a normal ALTER statement if the database object already exists.
Assume we tried to create a stored procedure that already exists as follows.
USE MSSQLTipsDemo GO CREATE PROC CreateOrAlterDemo AS BEGIN SELECT TOP 10 * FROM [dbo].[CountryInfoNew] END GO
The SQL Server engine will prevent us from creating the stored procedure since there is a database object with that name already.
We can modify the code to use the CREATE OR ALTER statement instead of just the CREATE statement. The query execution will succeed each time you run that query, as it will work as an ALTER statement if the object already exists or as a CREATE statement if the object does not already exist.
USE MSSQLTipsDemo GO CREATE OR ALTER PROC CreateOrAlterDemo AS BEGIN SELECT TOP 10 * FROM [dbo].[CountryInfoNew] END GO
Notes
The CREATE OR ALTER statement does not work for tables and indexes, but it does work for stored procedures, functions, triggers and views.
Although this statement is handy to allow you to create a new object or alter an existing object, some caution should be used. If for some reason you end up using the same name as an existing object, the alter component will replace the existing code, so be careful how and when you use this.
When using CREATE OR ALTER, SQL Server will check to make sure the object types are compatible, so you don't accidently replace an existing object with a different object type. So if we had an existing stored procedure named "dbo.spTest" and tried to use CREATE or ALTER with function code using the same object name "dbo.spTest" we would get the following error:
Cannot perform alter on 'dbo.spTest' because it is an incompatible object type.
Next Steps
- Check out this tutorial to learn more about SQL Server Stored Procedures
About the author
This author pledges the content of this article is based on professional experience and not AI generated.
View all my tips
Article Last Updated: 2022-12-19