c# - Schema in SQL Server Management Studio -


By default, the name of schema is dbo.mytable, how can I convert it to my user specific schema name?

You can change the database schema using the following query:

 < Code> ALTER SCHEMA dbo TRANSFER yourNewSchema ABC;   

MSDN reference:

Comments

Popular posts from this blog

jsp - No mapping found for HTTP request with URI with annotation config Spring MVC and Jetty -

java - Ajax call to jsp and jsp redirecting to further jsp -

runtime error - Cannot find an overload for op_subtraction when subtracting datetime from datetime in powershell -