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
Check out MSDN...
CREATE SCHEMA: http://msdn.microsoft.com/en-us/library/ms189462.aspx
CREATE SCHEMA
Then
ALTER SCHEMA: http://msdn.microsoft.com/en-us/library/ms173423.aspx
ALTER SCHEMA
Or you can check it on on SO...
How do I move a table into a schema in T-SQL