SMO and Sql Server 7.0 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T16:56:01Z http://stackoverflow.com/feeds/question/33457 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/33457/smo-and-sql-server-7-0 0 SMO and Sql Server 7.0 Mark Brackett 2008-08-28T21:36:43Z 2009-05-18T14:22:18Z <p>Does anyone have a definitive answer to whether <a href="http://msdn.microsoft.com/en-us/library/ms162557.aspx" rel="nofollow">Sql Server Management Objects</a> is compatible with Sql Server 7.0? The docs state:</p> <blockquote> <p>Because SMO is compatible with SQL Server version 7.0, SQL Server 2000, SQL Server 2005, and SQL Server 2008, you easily manage a multi-version environment.</p> </blockquote> <p>But trying to connect to a Sql 7 instance gets me:</p> <blockquote> <p>"This SQL Server version (7.0) is not supported."</p> </blockquote> <p>Has anyone been successful in getting these 2 to play nice?</p> http://stackoverflow.com/questions/33457/smo-and-sql-server-7-0/33742#33742 2 Answer by RedWolves for SMO and Sql Server 7.0 RedWolves 2008-08-29T01:13:36Z 2008-08-29T01:13:36Z <p><em>you can use SMO to connect to SQL Server versions 7, 2000, and 2005, but SMO does not support databases set to compatibility levels 60, 65, and 70.</em></p> <p>for SQL Server 7.0 the compatibility level is 70</p> <p>Obviously this is conflicting information...I assume if your compatibility level of your DB is 70 you can not connect.</p> <p>To check run: EXEC sp_dbcmptlevel '<em>databasename</em>'</p> <p><a href="http://msdn.microsoft.com/en-us/library/aa259649.aspx" rel="nofollow">Looking through this link</a>, it seems you might be able to change the compatibility level by running this:</p> <p>EXEC sp_dbcmptlevel '<em>databasename</em>', 80</p> <p>Obviously make a back up before changing anything.</p> http://stackoverflow.com/questions/33457/smo-and-sql-server-7-0/35118#35118 1 Answer by Mark Brackett for SMO and Sql Server 7.0 Mark Brackett 2008-08-29T19:35:04Z 2008-08-29T19:35:04Z <p>Looks like the docs are wrong (and have continued to be wrong for the last 3+ years!). I found this snippet with <a href="http://www.red-gate.com/products/reflector/" rel="nofollow">Reflector</a> in <a href="http://msdn.microsoft.com/en-us/library/microsoft.sqlserver.management.common.connectionmanager.connect.aspx" rel="nofollow">Microsoft.SqlServer.Management.Common.ConnectionManager</a>, Microsoft.SqlServer.ConnectionInfo</p> <pre><code>protected void CheckServerVersion(ServerVersion version) { if ((version.Major &lt;= 7 || (version.Major &gt; 9)) { throw new ConnectionFailureException( StringConnectionInfo.ConnectToInvalidVersion(version.ToString()) ); } } </code></pre> <p>So, it looks like only SQL 2000 and SQL 2005 are supported. Presumably, SQL 2008 (version 10) has updated SMO assemblies.</p> <p>Bummer - guess it's back to <a href="http://msdn.microsoft.com/en-us/library/ms131540.aspx" rel="nofollow">SQL-DMO</a> for this project.</p> http://stackoverflow.com/questions/33457/smo-and-sql-server-7-0/415518#415518 0 Answer by gbn for SMO and Sql Server 7.0 gbn 2009-01-06T04:56:48Z 2009-01-06T04:56:48Z <p>Sorry for the late answer... there is <a href="http://msdn.microsoft.com/en-us/library/ms162130(SQL.90).aspx" rel="nofollow">partial support</a> for SQL 2000 and SQL 7</p> http://stackoverflow.com/questions/33457/smo-and-sql-server-7-0/878008#878008 0 Answer by David for SMO and Sql Server 7.0 David 2009-05-18T14:22:18Z 2009-05-18T14:22:18Z <p>Hello,</p> <p>Just to follow up on your commment SQL 2008 does have its own SMO package which supports SQL 2000, 2005 and 2008 which is actually definitively documented on their download page! And you're right you can't connect SQL 2005 SMO to SQL 2008.</p> <p>There are some nice updates updates in Version 10 of the SMO in that if you access properties that do not existing on the version of SQL that you are connect to you get a sensible "This property is not available on this Version of SQL" exception or words to that effect.</p> <p>Microsoft SQL Server 2008 Management Objects The SQL Server Management Objects (SMO) is a .NET Framework object model that enables software developers to create client-side applications to manage and administer SQL Server objects and services. This object model will work with SQL Server 2000, SQL Server 2005 and SQL Server 2008.</p> <p>Regards,</p> <p>David</p> <p><a href="http://centrel-solutions.com" rel="nofollow">http://centrel-solutions.com</a></p>