Set default schema in code - possible?

Set default schema in code - possible?

am 27.09.2007 15:44:20 von AJ

==SQL Server 2005 SP2==

Is it possible to set the default schema in code?

I know that, for a particular DB user, I can set the default schema
statically in Mgmt Studio. However, I want to do this dynamically
in source code.

I am using JDBC if that matters.

Any help appreciated.

TIA

aj

Re: Set default schema in code - possible?

am 27.09.2007 23:46:42 von Erland Sommarskog

aj (ronald@mcdonalds.com) writes:
> Is it possible to set the default schema in code?
>
> I know that, for a particular DB user, I can set the default schema
> statically in Mgmt Studio. However, I want to do this dynamically
> in source code.

You can change the default schema for a user with ALTER USER. Look in
Books Online for details. Or use the Script button in SSMS to see how
Mgmt Studio do it.

Whether it is a good idea is another matter. If you are writing an admin
application, I guess it's OK. But if you are considering changing the
schema of the current user on the fly, keep in mind that it will affect
all sessions for that user.


--
Erland Sommarskog, SQL Server MVP, esquel@sommarskog.se

Books Online for SQL Server 2005 at
http://www.microsoft.com/technet/prodtechnol/sql/2005/downlo ads/books.mspx
Books Online for SQL Server 2000 at
http://www.microsoft.com/sql/prodinfo/previousversions/books .mspx