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

Pass DB Connection parameters to a Kettle a.k.a PDI table Input step dynamically from Excel -

multithreading - PhantomJS-Node in a for Loop -

c++ - MATLAB .m file to .mex file using Matlab Compiler -