SQL Server 17.4 Developer Edition Compatibility Levels - sql

In SQL Server 2017 Express, v17.4, I am unable to select a compatibility level beyond 2008 (100). The only versions available are 2008 or older. I am training for the MCSA SQL Server developer exams and I want to test some functionality unique to SQL Server 2016 (130) but am unable to do so until I figure out this problem. I did do my best to search here and on Google, but I'm not finding even a slightest reference to this. Is it a limitation of using a free version of SQL Server? As an alternative solution, is there a way to download older developer edition versions of SQL Server that might contain 2016 DB compatibility?

You can download SQL Server Developer edition from Visual Studio Dev Essentials https://my.visualstudio.com/Downloads?q=SQL%20Server%202017
Or from here
https://www.microsoft.com/en-gb/sql-server/sql-server-downloads

Related

SQL Server email and I can't reach a few features

I've been doing this for 3 days. I couldn't find the solution. Normally it was supposed to have features like the following.
What is the cause of this problem? And how do I solve it?
You're using SQL Server Express. SQL Server Express is a very cut down version of SQL Server and does not provide anywhere near as many features as Standard and Enterprise; such as database mail (Additional Database Services). If you need features, you need to purchase SQL Server and pay for the edition licences that have the features you need.
If you are using SQL Server for development purposes only, you can use SQL Server Developer Edition, which is allowed to be used for non-production environments only. Developer edition has all of the features that Enterprise does.
You can find the full list of features supplied by each edition here: Editions and supported features of SQL Server 2017

How to create a non-SQLEXPRESS instance for SQL Server 2012 developer edition

After install I wanted to practice creating SQL Server Agent jobs, I know that you cannot do this on a SQL Server Express instance, so I'm wondering with my developer edition if it's possible to create a non-SQL Server Express instance, and if so how, thanks.
Please check following tutorial which shows SQL Server 2016 installation step by step
In general for all SQL Server versions the setup procedure is very similar.
You can exclude installing components like Reporting Services, Integration Services, Analysis Services and other optional components if you want to make the setup process simple
What you should install is Database Engine Services! You can exclude the other features under Database Engine if you check the screenshot I shared in the article.
And what is important is the Management Tools that you can use to connect db instance and execute queries, etc.
Although the above tutorial shares the download link, you can also refer to https://www.microsoft.com/en-us/evalcenter/evaluate-sql-server-2016 for SQL Server 2014 and 2012 download links as well
So I realized that I only had SQL Server 2012 Express edition by using:
SELECT SERVERPROPERTY('EDITION')
Using the link provided by Eralper I installed SQL Server 2014 developer edition and now have two instances of SQL Server, one is the the express for 2012, the other is the 2014 developer edition. Once I log in to the named instance I can finally see of course the SQL Server Agent node at the bottom.
Thanks everyone for all the help and sorry for the confusion.

Is it possible to install SQL Server 2005 (enterprise edition) on Windows Server 2008?

Is it possible to install SQL Server 2005 (Enterprise Edition) on Windows Server 2008?
Sure, why shouldn't it be possible to do that???
Just do it! I don't see any reasons why you should have any issues with this setup.
Go ahead and try it - if you run into any actual problems, come back (but preferably to http://Serverfault.com) and ask for help.
Yes. The SQL Server version doesn't have to match the operating system version, as it is for example with the IIS.
Yes.
What does the MS site for SQL Server 2005 say? (my bold)
SQL Server 2005 on Windows Server 2008
and Windows Vista
In an effort to provide customers with
more secure products, Microsoft
Windows Server 2008 and Microsoft
Windows Vista are supported by SQL
Server 2005 Express Edition Service
Pack 1 (SP1), and for all other
editions will be supported by SQL
Server 2005 Service Pack 2 (SP2) or
later when it becomes available.
Earlier versions of SQL Server,
including SQL Server 2000 (all
editions including Desktop Engine
edition, a.k.a MSDE), SQL Server 7.0,
and SQL Server 6.5, will not be
supported on Windows Server 2008 or
Windows Vista.

SQL server 2005 instance not found

I was using SQL server 2005 express edition and, therefore was limited by a data base 4 giga size. I decided to install SQL server 2005 developper (64bits) in order to be able to go beyond 4 gigabytes data base size.
The installation program run with no error message on a Windows 7 64 bits, but did not install the SQL server Management Studio. After a couple of investigations, I found out and run the installation program on CD2 SqlRun_Tools.msi which installed the missing tools. I then installed the SQL server SP3 package.
When I opened the Management Studio, the 3 instances of SQL 2005 Express where there but no SQL 2005 developer edition (new) instance was shown.
I restored the system, then removed each one of the SQL server Express instances, then fully reinstalled the SQL 2005 developper edition with its default instance name, but again no SQLserver 2005 Developper instance was listed on the SQL Server management studio. Surprise! the 3 instances from SQL 2005 Express edition (which were all previously uninstalled) were still there, but not accessible.
I have tried to access the new SQL server Developper through my code but the instance has not been found either.
All connection strings have been working for a long time with SQL Express edition and are correct.
I have also checked that SQl server and SQl browser were started.
I would really appreciate your help.
Thanks a lot.

Is SQL Server 2008 Management Studio Express the same as Standard?

A while back, I installed SQL Server 2008 Express with Advanced Services, which installed SQL Server 2008 Management Studio (SSMS) Express as well. Now that we have SQL 2008 Standard on the network some months later, I want to confirm that I don't have to reinstall SSMS 2008 on my desktop. This blog post I found seems to suggest that I'm fine with the version of SSMS that came with SQL Express:
http://weblogs.asp.net/markwisecarver/archive/2008/09/02/sql-server-2008-management-tools-basic-vs-complete.aspx
...but I want to confirm. Unfortunately, the About dialog doesn't give details about an Express vs. a "Full" version of the tool. Anyone know?
Thanks.
They are different. SSMS Express appears to be somewhat of a hybrid of several standard SQL 2008 applications, each paired down to some extent and packaged together. Read more here. You can get more details on SSMSE here. If I were you I would install the full set of tools from the standard addition.
No, they are different. The Express edition of SSMS will work just fine with any higher edition of SQL Server, but it lacks some more advanced features (like the replication designers, etc.) of the higher-end editions.