Answers for "how we can change table schema in sql server"

SQL
0

sql server change schema of a table

-- change schema from [dbo] to [exe]
IF (NOT EXISTS (SELECT * FROM sys.schemas WHERE name = 'exe')) 
BEGIN
    EXEC ('CREATE SCHEMA [exe] AUTHORIZATION [dbo]')
END

ALTER SCHEMA exe 
    TRANSFER dbo.Employees
Posted by: Guest on April-26-2021

Code answers related to "how we can change table schema in sql server"

Code answers related to "SQL"

Browse Popular Code Answers by Language