MS SQL Server 2008 - Confusion in migrating from MySQL re: "select XYZ from TABLE" - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T04:18:58Z http://stackoverflow.com/feeds/question/611850 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/611850/ms-sql-server-2008-confusion-in-migrating-from-mysql-re-select-xyz-from-table 1 MS SQL Server 2008 - Confusion in migrating from MySQL re: "select XYZ from TABLE" DanM 2009-03-04T18:28:17Z 2009-03-04T22:07:11Z <p>So I'm just confused here.</p> <p>I've got to migrate my database from MySQL to MS SQL Server 2008. I've transferred the data via the "MS SQL Data Wizard" app from SQL Maestros. It took the data+structure from my MySQL database "gk" and copied it into a database "gk" on my MS SQL Express instance.</p> <p>But when I connect to the MS SQL instance and try to run an SQL query, I only get results when I execute "<code>select * from gk.TABLENAME</code>" or "<code>select * from gk.gk.TABLENAME</code>"... If I execute "<code>select * from TABLENAME</code>" after executing "<code>use gk</code>", I get:</p> <blockquote> <p>Error: Invalid object name 'TABLENAME'<br> SQLState: S0002<br> Error code: 208</p> </blockquote> <p>How do I make this behave "normally"? I.e., I connect to a specific database such that I don't have to explicitly tell it in which database/schema to find the table?</p> <p><strong>UPDATE:</strong> I should specify the structure that was created by the SQL Data Wizard app. Looking at the object browser tree on the SQL Server Management Studio, there's this:</p> <pre><code>[HOSTNAME]\SQLEXPRESS (SQL Server ...) |-- Databases |-- System Databases |-- gk |... |-- Tables |-- TABLE1 |-- TABLE2 |-- TABLE3 </code></pre> <p>... and so on.</p> <p>Thanks. -dan</p> http://stackoverflow.com/questions/611850/ms-sql-server-2008-confusion-in-migrating-from-mysql-re-select-xyz-from-table/611859#611859 0 Answer by SarekOfVulcan for MS SQL Server 2008 - Confusion in migrating from MySQL re: "select XYZ from TABLE" SarekOfVulcan 2009-03-04T18:31:17Z 2009-03-04T18:31:17Z <p>Try this, if you haven't already:</p> <pre><code>USE gk GO SELECT * FROM tablename </code></pre> http://stackoverflow.com/questions/611850/ms-sql-server-2008-confusion-in-migrating-from-mysql-re-select-xyz-from-table/611973#611973 0 Answer by BradC for MS SQL Server 2008 - Confusion in migrating from MySQL re: "select XYZ from TABLE" BradC 2009-03-04T19:02:55Z 2009-03-04T22:07:11Z <p>Looks like the wizard created a database called "gk", and then put all tables in a schema titled "gk".</p> <p>If the tables exist in a named schema (ie, something besides the default schema of "dbo"), then you will always have to specify the schema when querying it.</p> <p>NOTE: In some situations, there is a significant performance penalty for NOT explicitly specifying the schema/owner. More significant in older versions of SQL, but still there. May not be a big enough difference to matter in your application, but still worth knowing: </p> <ul> <li><a href="http://sqlblog.com/blogs/linchi%5Fshea/archive/2007/06/30/performance-impact-of-procedure-calls-without-owner-qualification.aspx" rel="nofollow">Performance Impact of Procedure Calls Without Owner Qualification</a></li> <li><a href="http://sqlblog.com/blogs/linchi%5Fshea/archive/2007/07/05/performance-impact-of-procedure-calls-without-owner-qualification-sql-server-2000.aspx" rel="nofollow">Follow-up post comparing SQL 2000 results</a></li> </ul> http://stackoverflow.com/questions/611850/ms-sql-server-2008-confusion-in-migrating-from-mysql-re-select-xyz-from-table/612029#612029 1 Answer by Jason DeFontes for MS SQL Server 2008 - Confusion in migrating from MySQL re: "select XYZ from TABLE" Jason DeFontes 2009-03-04T19:18:26Z 2009-03-04T19:18:26Z <p>In the Login Properties dialog for your user there is a "User Mapping" page where you can set the user's default schema. Setting it to "gk" (in the "gk" database) should allow you to write queries without fully qualifying the tables.</p>