I want to change schema name of table Employees in Database. In the current table Employees database schema name is dbo I want to chan
Employees
dbo
Create Schema :
IF (NOT EXISTS (SELECT * FROM sys.schemas WHERE name = 'exe')) BEGIN EXEC ('CREATE SCHEMA [exe] AUTHORIZATION [dbo]') END
ALTER Schema :
ALTER SCHEMA exe TRANSFER dbo.Employees