[sqlalchemy] Re: mssql and specifying a schema name?

2012-05-30 Thread Lukasz Szybalski
On May 30, 1:03 pm, Michael Bayer mike...@zzzcomputing.com wrote: the default schema name is determined by:             SELECT default_schema_name FROM             sys.database_principals             WHERE name = (SELECT user_name())             AND type = 'S' for some reason on your

[sqlalchemy] Re: mssql and specifying a schema name?

2012-05-30 Thread Lukasz Szybalski
On May 30, 1:03 pm, Michael Bayer mike...@zzzcomputing.com wrote: the default schema name is determined by:             SELECT default_schema_name FROM             sys.database_principals             WHERE name = (SELECT user_name())             AND type = 'S' for some reason on your

Re: [sqlalchemy] Re: mssql and specifying a schema name?

2012-05-30 Thread Michael Bayer
On May 30, 2012, at 3:24 PM, Lukasz Szybalski wrote: On May 30, 1:03 pm, Michael Bayer mike...@zzzcomputing.com wrote: the default schema name is determined by: SELECT default_schema_name FROM sys.database_principals WHERE name = (SELECT

[sqlalchemy] Re: mssql and specifying a schema name?

2012-05-30 Thread Lukasz Szybalski
On May 30, 2:35 pm, Michael Bayer mike...@zzzcomputing.com wrote: On May 30, 2012, at 3:24 PM, Lukasz Szybalski wrote: On May 30, 1:03 pm, Michael Bayer mike...@zzzcomputing.com wrote: the default schema name is determined by:             SELECT default_schema_name FROM      

Re: [sqlalchemy] Re: mssql and specifying a schema name?

2012-05-30 Thread Michael Bayer
On May 30, 2012, at 3:56 PM, Lukasz Szybalski wrote: On May 30, 2:35 pm, Michael Bayer mike...@zzzcomputing.com wrote: On May 30, 2012, at 3:24 PM, Lukasz Szybalski wrote: On May 30, 1:03 pm, Michael Bayer mike...@zzzcomputing.com wrote: the default schema name is