Working With SQL Server Developer Edition - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T09:42:55Z http://stackoverflow.com/feeds/question/358069 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/358069/working-with-sql-server-developer-edition 0 Working With SQL Server Developer Edition George Stocker 2008-12-11T00:09:16Z 2008-12-11T15:53:10Z <p>I just bought Visual Studio 2008 Professional and it came with SQL Server 2005 Developer Edition. I'm used to using SQL Server 2005 at work, but the Developer edition doesn't seem to come with Server Management Studio, so I'm at a bit of a loss. A few questions:</p> <ol> <li>What resources are there for configuring and setting up SQL Server 2005 Developer Edition?</li> <li>What are some resources for managing databases (I know that I can have Multiple Databases with SQL Server 2005), and what 'extras' are provided by Developer Edition?</li> <li>Are there any funky things I need to know about if I were to create a database and move it from Developer Edition to an actual deployment server?</li> <li>Are there any other 'gotchas'?</li> </ol> <p><hr /></p> <p>Edit: I've answered the 'Why isn't SQL Server Management Studio showing up' question below. Resources for the other questions are still appreciated.</p> <p>Any other insights?</p> http://stackoverflow.com/questions/358069/working-with-sql-server-developer-edition/358088#358088 2 Answer by keithwarren7 for Working With SQL Server Developer Edition keithwarren7 2008-12-11T00:20:07Z 2008-12-11T00:20:07Z <p>OK, If you actually have the full Developer edition on SQL2005 it does have SSMS with it, you just didnt choose that option in the install.</p> <p>What is more likely is that you installed SQL 2005 Express Edition which does not include SSMS</p> <p>(SSMS = SQL Server Management Studio)</p> <p>To manage your SQL instance you should download SQL Server Management Studio Express from here <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=C243A5AE-4BD1-4E3D-94B8-5A0F62BF7796&amp;displaylang=en" rel="nofollow">http://www.microsoft.com/downloads/details.aspx?FamilyId=C243A5AE-4BD1-4E3D-94B8-5A0F62BF7796&amp;displaylang=en</a></p> <p>keep in mind that Express installs with an instance name so your server will actually be MACHINENAME\SqlExpress by default.</p> <p>And SQLExpress databases are exactly the same as regular SQL Server - the db engine just has limitations when you are running Express.</p> <p>Good luck.</p> http://stackoverflow.com/questions/358069/working-with-sql-server-developer-edition/358089#358089 2 Answer by ConcernedOfTunbridgeWells for Working With SQL Server Developer Edition ConcernedOfTunbridgeWells 2008-12-11T00:20:29Z 2008-12-11T00:20:29Z <p>It does come with SSMS and BIDS but it may not install them by default. Re-run the installer and make sure the 'workstation' (IIRC) bits are installed. </p> http://stackoverflow.com/questions/358069/working-with-sql-server-developer-edition/358158#358158 2 Answer by George Stocker for Working With SQL Server Developer Edition George Stocker 2008-12-11T00:57:26Z 2008-12-11T00:57:26Z <p>It turns out that installing SQL Server 2005 Developer Edition on a system that also has the Express Edition requires that the user run the setup from the commandline like so:</p> <p><code>D:\SQL Server x86\Servers\setup.exe -SKUUPGRADE=1</code></p> <p>The other questions are still open to be answered, however.</p> http://stackoverflow.com/questions/358069/working-with-sql-server-developer-edition/359814#359814 1 Answer by Valerion for Working With SQL Server Developer Edition Valerion 2008-12-11T15:53:10Z 2008-12-11T15:53:10Z <p>Developer Edition contains all the features that Enterprise has (or at least most of them). This can be bad if you do not realise.</p> <p>Some predecessors of mine finished a nice project that required the use of partitioned tables to greatly speed up our creaking DB. It worked a charm. A couple of weeks before deployment it got pointed out that only the Enterprise edition supported partitioned tables. They had to go cap-in-hand to the CFO and the CEO asking for about £16,000 in additional licencing costs.</p>