Before You Begin
Microsoft SQL Server 2019 (codename: Seattle) is the second-to-last version of Microsoft's flagship database, released on 4 November 2019. The Standard edition with a 24-core license is a popular configuration for medium-sized businesses — cheaper than SQL Server 2022, yet still covered by extended support until January 2030.
Support Cycle
| Stage | Date |
|---|---|
| Release Date | 4 November 2019 |
| End of Mainstream Support | 7 January 2025 (ended) |
| End of Extended Support | 8 January 2030 |
Note: Mainstream support (new features, non-security fixes) ended in January 2025. SQL Server 2019 still receives security fixes as part of extended support — until January 2030. This is still over 3.5 years of secure usage.
System Requirements
| Component | Minimum | Recommended |
|---|---|---|
| Operating System | Windows Server 2016 SP1, Windows 10 (1607+) | Windows Server 2019/2022 |
| Processor | x64, 1.4 GHz | 2.0 GHz+, multi-core |
| RAM | 1 GB (4 GB recommended) | 16-64 GB (Standard max: 128 GB) |
| Disk | 6 GB free | SSD, RAID 10 for production |
| .NET Framework | 4.6.2+ | 4.8 |
SQL Server 2019 also runs on Linux (Ubuntu 16.04+, RHEL 7+, SUSE 12+) and in Docker containers.
SQL Server 2019 vs 2022 — What Do You Lose by Choosing the Older Version?
| Feature | SQL 2019 | SQL 2022 |
|---|---|---|
| 24 Core Price | 2149 zł | 2999 zł |
| Support Until | 2030 | 2033 |
| Ledger (immutable log) | ✗ | ✓ |
| Azure Synapse Link | ✗ | ✓ |
| Contained AG | ✗ | ✓ |
| S3-compatible backup | ✗ | ✓ |
| Intelligent Query Processing | ✓ (generation 1) | ✓ (generation 2 — better) |
| Accelerated Database Recovery | ✓ | ✓ |
| Big Data Clusters | ✓ (withdrawn in 2022) | ✗ (removed) |
| Always Encrypted with Enclaves | ✓ | ✓ |
| Query Store | ✓ | ✓ (extended) |
| Linux | ✓ | ✓ |
Conclusion: SQL Server 2019 is a solid option for 850 zł less than 2022. You lose Ledger, Synapse Link, and improved IQP — but for a typical company, these features are not critical. Support until 2030 provides over 3.5 years of security.
Step 1: Download SQL Server 2019
- Microsoft Evaluation Center → SQL Server 2019 → download ISO (~1.5 GB)
- Alternatively: Volume Licensing Service Center (VLSC) if you have a volume license
- You can install the Evaluation version (180 days) and activate it with a Standard key later
Step 2: Prerequisites
On Windows Server 2019/2022:
- Install all Windows Update updates
- Install .NET Framework 4.8
- PowerShell 5.1 or later
- Disable antivirus during installation (or add an exception)
Step 3: Installation
- Mount the ISO, run setup.exe as Administrator
- Installation → New SQL Server stand-alone installation
- Product Key: enter the key from KluczeSoft or select Evaluation
- Feature Selection:
- ✓ Database Engine Services
- ✓ SQL Server Replication
- ✓ Full-Text Search (optional)
- Instance Configuration: Default or Named Instance
- Database Engine Configuration:
- Authentication: Mixed Mode (Windows + SQL)
- Set the sa password (strong!)
- Add yourself as SQL Server Administrator
- Data Directories: place data files, logs, and TempDB on separate disks
- Install — 15-30 minutes
Restart the server after installation.
Step 4: Product Key Activation
Method A: During Installation
Enter the key on the Product Key screen — the simplest method.
Method B: After Installation via SSMS
- Open SQL Server Management Studio
- Connect to the instance
- Right-click on the server → Properties → General
- Change next to Edition → enter the key
- Restart the SQL Server service
Method C: Edition Upgrade
- Run setup.exe from the ISO
- Maintenance → Edition Upgrade
- Enter the Standard key
- Upgrade without reinstallation — data and databases preserved
Method D: Command Line
Run from the installation directory:
setup.exe /q /ACTION=EditionUpgrade /INSTANCENAME=MSSQLSERVER /PID=XXXXX-XXXXX-XXXXX-XXXXX-XXXXX /IACCEPTSQLSERVERLICENSETERMS
Verification
In SSMS:
SELECT SERVERPROPERTY('Edition') AS Edition,
SERVERPROPERTY('ProductVersion') AS Version,
SERVERPROPERTY('ProductLevel') AS Level;
Expected result: Standard Edition (64-bit), Version: 15.0.xxxx.
Step 5: Post-Installation Configuration
Install SSMS
Download the latest version of SQL Server Management Studio 20.x (free) from the Microsoft website.
Limit Memory
-- Leave at least 4 GB for the OS, allocate the rest to SQL Server
EXEC sp_configure 'show advanced options', 1;
RECONFIGURE;
EXEC sp_configure 'max server memory', 102400; -- 100 GB example
RECONFIGURE;
Enable Remote Access
- SQL Server Configuration Manager → Protocols → enable TCP/IP
- TCP Port: 1433
- Open port 1433 in Windows Firewall
- Restart the SQL Server service
Configure Backup
BACKUP DATABASE [MyDatabase] TO DISK = 'D:\Backups\MyDatabase_full.bak'
WITH COMPRESSION, CHECKSUM;
Enable Query Store
ALTER DATABASE [MyDatabase] SET QUERY_STORE = ON;
Key Features of SQL Server 2019
Intelligent Query Processing (IQP)
SQL Server 2019 introduced the first generation of IQP — automatic query optimization without changes to application code:
- Batch Mode on Rowstore — acceleration of analytical queries on OLTP tables
- Table Variable Deferred Compilation — better estimation of table variable cardinality
- Adaptive Joins — the engine automatically chooses between Nested Loops and Hash Join
Accelerated Database Recovery (ADR)
Dramatically faster database recovery after a failure — regardless of database size. In SQL 2017, recovering a 1 TB database could take hours. In 2019 — minutes.
Always Encrypted with Secure Enclaves
Encryption of data in the database with the ability to perform operations on encrypted data (comparisons, sorting) within a secure processor enclave.
If you need help or have questions, please contact us at [email protected] or call 00 800 121 1654.
Licensing
Core-Based Model
| Licence | Price at KluczeSoft |
|---|---|
| SQL Server 2019 Standard 24 Core | 2149 zł |
The licence covers up to 24 physical cores. The core-based model = unlimited number of users.
Server + CAL Model
| Licence | Price |
|---|---|
| SQL Server 2019 Standard 10 User CAL | 499 zł |
| SQL Server 2019 Standard 10 Device CAL | 499 zł |
| SQL Server 2019 Standard 50 User CAL | 1690 zł |
| SQL Server 2019 Standard 50 Device CAL | 1690 zł |
SQL 2019 vs 2022 — Cost Comparison
| Version | 24 Core Price | Support Until | Savings |
|---|---|---|---|
| SQL Server 2019 | 2149 zł | 2030 | 850 zł cheaper |
| SQL Server 2022 | 2999 zł | 2033 | — |
If you do not need Ledger or Azure Synapse Link — SQL Server 2019 for 2149 zł with support until 2030 is an excellent budget option.
Troubleshooting
Key is not accepted
- SQL 2019 key ≠ SQL 2022 key — they are not interchangeable
- Standard ≠ Enterprise — edition-specific keys
- Format: XXXXX-XXXXX-XXXXX-XXXXX-XXXXX
Cannot connect remotely
- Enable TCP/IP in SQL Server Configuration Manager
- Open port 1433 in the firewall
- Run the SQL Server Browser service (for named instances)
SQL Server uses all RAM
Normal behaviour. Limit: sp_configure 'max server memory'.
How to check the version?
In SSMS: SELECT @@VERSION — displays full information.
Summary
SQL Server 2019 Standard 24 Core for 2149 zł — that's 850 zł cheaper than SQL Server 2022 with security support until January 2030. It supports up to 128 GB RAM, 24 cores, and an unlimited number of users. You will receive the key immediately via email.
If you need longer support (until 2033) or new features like Ledger — consider SQL Server 2022 Standard for 2999 zł.
Microsoft Poland Technical Support: 00 800 121 1654 (toll-free line)
For any questions or concerns, please contact us at [email protected].
