top of page
Search

Getting Started with SQL Server 2025 Public Preview: A Step-by-Step Installation Guide

  • Writer: Jeff Taylor
    Jeff Taylor
  • 15 hours ago
  • 4 min read

Are you ready for some new SQL Server database features? Let's get started installing SQL Server 2025 Preview!

SQL Server 2025 Logo
New SQL Server 2025 Logo

First, we need to fill out a form, but then we can get to all of the fun. Go to https://info.microsoft.com/ww-landing-sql-server-2025.html, fill out the form to get to the download page.

Public Preview Form for SQL Server 2025

On the next page, click the 64-bit edition exe download.

Download page for SQL Server 2025

Select the location to save your file.

Save File location for  SQL Server 2025

Once downloaded, run the executable and select the location to download all of the SQL Server media.

 SQL Server 2025 ctp 2.0 media location

You have several options for your installation type, and I've selected 'Custom' in this example.

 SQL Server 2025 installation type

Once downloaded, it will open up the SQL Server Installation Center, and click on 'Installation'.

 SQL Server 2025 Installation Center

I'm installing this on my computer so that I can perform a standalone installation. However, before we proceed, we need to uninstall PolyBase if it is already installed.

*** IMPORTANT NOTE ***
If you already have SQL Server 2019 or 2022 installed with PolyBase, you will need to uninstall it first. Click here to see instructions on how to uninstall PolyBase from SQL Server 2022. 
*** Note *** You can install SQL Server 2025 Preview side by side with another SQL installation. Currently, I also have SQL Server 2022 Development Edition installed.
 SQL Server 2025 Installation Center highlighting stand-alone install

The free 'Evaluation' edition is already selected, click 'Next'.

 SQL Server 2025 edition selection

Check the 'I accept the license terms and Privacy Statement' and click 'Next'.

 SQL Server 2025 terms and conditions

It then runs through some tests and, if successful, click 'next'.

 SQL Server 2025 install rules

If you want to enable 'Azure Extensions for SQL Server' click the box and then use your login or service principal. For testing, I used my Azure Login to configure.


Note: This option seemed to be skipped the next time I installed SQL Server 2025 on the same machine after uninstalling.

Azure Extensions for  SQL Server 2025

Select the Instance Features you wish to install, and specify the 'Instance Root Path' and click 'Next'.

 SQL Server 2025 Feature Selection

Usually, for CTPs, Preview, and older versions, I use a 'Named Instance' because I typically have a GA version as my default. I decided to use 'SQL2025' for this instance. Once selected, click 'Next' to continue.

 SQL Server 2025 Instance Configuration

Since I have selected PolyBase, I need to identify the ports I wish to use. I left these at the default and then clicked 'Next'.

 SQL Server 2025 PolyBase port configuration

For the Server Configuration, Service Accounts, I recommend using a service account, as well as for any Dev, QA, or Production installations.


If you do not have one on your local computer, it's easy to create one. Go to your computer's local user accounts and create a SQL Service account, add it to the local admin group, then add that account to all of the 'Service Accounts' services below and enter the password.


Always ensure that the 'Grant Perform Volume Maintenance Tasks' box is checked if the service account is not in the Admin Group, so the engine can quickly expand your data files without needing to zero out each growth. Once complete, click 'Next' to continue.

 SQL Server 2025 server configuration service accounts

On this tab, you can specify your Authentication Mode. Be sure to add yourself to the Specify SQL Administrators box below, so you can administer the server, and then click on the 'Data Directories' tab.

 SQL Server 2025 authentication mode selection

Specify where you want your databases to be placed. If I have multiple versions or instances installed on my computer, I will specify the version in the folder structure. (i.e. C:\MyDatabases\2025\). Once finished, click on the 'TempDB' tab.

 SQL Server 2025 database directories configuration

Here you can select your TempDB file location, size, and number of files. For local instances to test, I usually leave the size and number as the default and change the location similar to above, so I can have multiple instances of TempDB as needed. (i.e. C:\MyDatabases\2025\). Once you have finished configuring, click on the 'MaxDOP' tab.

 SQL Server 2025 tempdb configuration

Unless you want to limit this instance, I would leave it at the suggested MaxDOP. Click the 'Memory' tab.

 SQL Server 2025 maxdop configuration

Using the recommended maximum server memory is essential for your local instance, as you don't want SQL Server to slow down your local machine. If this becomes an issue, you can lower it or even stop the service when you're not using it, and set the default to 'manual' for the service. Check to box to accept the recommended configuration, and click on the 'FILESTREAM' tab.

 SQL Server 2025 memory configuration

If you plan to use FILESTREAM, configure it and then click 'Next'.

 SQL Server 2025 filestream configuration

Now you are ready to install. Click the 'Install' button to continue. If you want to perform this same install later, make note of your configuration path so you can grab your ConfigurationFile.ini for your next install.

 SQL Server 2025 ready to install summary

If the installation succeeds, you will see all green checkmark circles and 'Installation successful'. Click 'Close' to start using SQL Server 2025!

 SQL Server 2025 install complete

SSMS, Reporting Services, and SSDT are separate installations, and those links can be found on the 'Installation' page where we selected our 'stand-alone instance' install at the very beginning.

 SQL Server 2025 stand alone tools

This means that you will still need SSMS 20 installed if you need to support SSIS from within SSMS. Below is SSMS 20 on the left and SSMS 21 on the right.

SSMS 20 compared to SSMS 21 for SSIS support


©2021 by Jeff Taylor

bottom of page