Back to Help Center
SQL Server
Installation Guide

SQL Server 2017 Standard 50 User CAL – Installation, Activation and Licence Management

Comprehensive guide to installing, activating, and managing the SQL Server 2017 Standard licence with a 50 User CAL package. Detailed requirements, installation steps, user configuration, and troubleshooting.

8 min czytania·Zaktualizowano dzisiaj

Before You Begin

SQL Server 2017 Standard 50 User CAL is a licensing solution designed for companies that require a stable, efficient, and scalable database platform with access for up to 50 users. The Server + CAL (Client Access License) licensing model requires a server license and separate access licenses for each user accessing SQL Server services, regardless of the number of devices they connect from.

What do you get when buying from KluczeSoft?

  • Original SQL Server 2017 Standard license key
  • 50 User CAL licenses (for 50 users)
  • VAT invoice and technical support
  • Access to installation files
  • Assistance with activation and configuration

Important: CALs are not installed on the server – they are license rights that must be assigned to users in the company's documentation. Access management is done at the SQL Server level through user accounts.

Product Support Table

ProductRelease DateEnd of Mainstream SupportEnd of Extended Support
SQL Server 2017 Standard2 October 201711 October 202212 October 2027

You can find more information on the product page: /sql-server-2017

System Requirements

To properly install and run SQL Server 2017 Standard, your server must meet specific hardware and software requirements. Below, you will find a detailed table consistent with Microsoft documentation.

RequirementMinimumRecommended
Processorx64, 1.4 GHzx64, 2.0 GHz or faster
RAM2 GB (Express), 4 GB (Standard)8 GB or more
Free disk space6 GB10 GB or more
Operating SystemWindows Server 2016, 2019, 2022; Windows 10 (64-bit)Windows Server 2019/2022
File SystemNTFS or ReFSNTFS
Network CardRequiredRequired
Screen Resolution800x6001024x768 or higher
.NET Framework4.6 or later4.7.2 or later

Note: SQL Server 2017 does not support 32-bit systems. It is recommended to install on a dedicated server with the latest Windows Server system.

Step 1: Downloading Installation Files

  1. Log in to the KluczeSoft panel and download the SQL Server 2017 Standard installer (ISO or EXE file).
  2. If you have an ISO file, mount it by right-clicking and selecting "Mount".
  3. Open the mounted disk and run the setup.exe file as an administrator.

Step 2: Starting the Installation

  1. After running the installer, the SQL Server Installation Center welcome screen will appear.
  2. Select the option "New SQL Server stand-alone installation or add features to an existing installation".
  3. The installer will check the preliminary requirements – wait for it to finish.

Step 3: Entering the Product Key

  1. In the Product Key section, enter the received SQL Server 2017 Standard license key.
  2. Click Next.

Step 4: Accepting the License Terms

  1. Read the license agreement.
  2. Check the box I accept the license terms.
  3. Click Next.

Step 5: Installing Server Features

  1. Select the features to install (recommended: Database Engine Services, SQL Server Replication, Full-Text and Semantic Extractions for Search).
  2. Click Next.

Step 6: Instance Configuration

  1. Select the instance type:
    • Default instance (default, e.g. MSSQLSERVER)
    • Named instance (e.g. SQL2017)
  2. Click Next.

Step 7: Service Configuration

  1. Set the service accounts (recommended: default).
  2. Select the startup mode (Automatic).
  3. Click Next.

Step 8: Server Configuration

  1. In the Server Configuration tab, select the authentication mode:
    • Windows Authentication Mode (recommended)
    • Mixed Mode (Windows + SQL Server Authentication)
  2. Add administrative users (e.g. yourself).
  3. Click Next.

Step 9: Data Directory Selection

  1. If necessary, change the data, log, and backup directory paths.
  2. Click Next.

Step 10: Installation and Completion

  1. Review the installation summary.
  2. Click Install.
  3. After the installation is complete, click Close.

Product Key Activation

For SQL Server 2017 Standard, activation occurs during installation by entering the product key. User CAL licenses are not activated on the server – these are permissions assigned to users in the company's documentation.

Managing Users in SQL Server

To allow a user to use SQL Server, you must create a login and assign the appropriate permissions. You can do this using SQL Server Management Studio (SSMS) or T-SQL commands.

Method 1: GUI (SSMS)

  1. Open SQL Server Management Studio.
  2. Connect to the server instance.
  3. Expand the Security > Logins folder.
  4. Right-click on Logins and select New Login....
  5. Enter the username and password.
  6. Assign server and database roles.
  7. Confirm by clicking OK.

Method 2: Command Line (T-SQL)

Open SSMS or the sqlcmd tool and execute the following commands:

CREATE LOGIN [username] WITH PASSWORD = 'YourPassword123!';
USE [database_name];
CREATE USER [username] FOR LOGIN [username];
ALTER ROLE [db_datareader] ADD MEMBER [username];
ALTER ROLE [db_datawriter] ADD MEMBER [username];

Remember: Each user using SQL Server must have a valid User CAL assigned.

Activation Verification

SQL Server does not have a separate tool for verifying activation, like the Windows system. License activity can be confirmed in SQL Server Management Studio:

  1. Connect to the server in SSMS.
  2. Right-click on the server instance > Properties.
  3. In the General tab, check the server version and edition.
  4. In the License tab (if available), you will see license information.

You can also execute a T-SQL query:

SELECT SERVERPROPERTY('Edition'), SERVERPROPERTY('ProductVersion'), SERVERPROPERTY('LicenseType');

Post-Installation Configuration

After completing the installation and assigning CAL licenses, perform the following steps:

  1. Install the latest updates – download and install the latest Service Pack and Cumulative Update for SQL Server 2017.
  2. Configure backups – set up database backup schedules.
  3. Secure the server – configure the firewall, restrict access to port TCP 1433, and disable unnecessary features.
  4. Monitor performance – use Performance Monitor and SQL Server Profiler tools.
  5. Document CAL assignments – keep a record of users with assigned CALs.

If you need help or have questions, please contact us at [email protected] or call 00 800 121 1654.

Troubleshooting

Below, you will find the most common issues related to the installation and licensing of SQL Server 2017 Standard, along with their solutions.

1. Error: "The SQL Server license type is not valid"

Cause: An incorrect product key was entered or the key does not match the installer version. Solution:

  • Check if you are using a key for SQL Server 2017 Standard.
  • Download the correct installer from KluczeSoft.
  • Try entering the key again during installation.

2. Error: "SQL Server setup failed to validate the license"

Cause: The installer cannot verify the license. Solution:

  • Ensure you have an internet connection during installation.
  • Run the installer as an administrator.
  • Check the correctness of the product key.

3. Problem: User cannot connect to the server

Cause: Lack of login or permissions in SQL Server. Solution:

  • Create a login and user for that person (see the section above).
  • Check if the user has a User CAL assigned.

4. Problem: "Cannot connect to server – error 18456"

Cause: Incorrect login data or incorrect authentication mode. Solution:

  • Check if the Mixed Authentication mode is selected if you are using SQL login.
  • Reset the user's password.

5. Problem: "Port 1433 is blocked"

Cause: The network firewall is blocking the default SQL Server port. Solution:

  • Open port 1433 in the Windows Server firewall.
  • Configure SQL Server Configuration Manager.

6. Problem: "Multiplexing – licensing ambiguities"

Cause: Users are connecting through an intermediate application. Solution:

  • Each end-user using SQL Server data must have a User CAL assigned, even if connecting indirectly.
  • Document CAL assignments in accordance with Microsoft policy.

Comparison of versions and prices at KluczeSoft

EditionLicensing modelNumber of usersPrice (zł)Link
SQL Server 2017 Standard 50 User CALServer + 50 User CAL501690/sql-server-2017
SQL Server 2017 Standard 5 User CALServer + 5 User CAL5590/sql-server-2017
SQL Server 2017 Standard Device CALServer + Device CAL1 device129/sql-server-2017
SQL Server 2019 Standard 50 User CALServer + 50 User CAL501990/sql-server-2019

Tip: User CAL is cost-effective when users use multiple devices. Device CAL is beneficial when multiple people use one computer.

Summary

SQL Server 2017 Standard 50 User CAL is a flexible and scalable solution for companies that want to provide access to databases for up to 50 users. Installation and configuration require meeting specific hardware requirements and assigning a User CAL license to each user. Remember to keep documentation of CAL assignments and perform regular updates and backups.

In case of problems or questions, please contact our technical support department at 00 800 121 1654 or visit our knowledge base: /category/sql-server-2017-standard-50-user-cal. You can also contact us at [email protected].

Microsoft

SQL Server 2017 Standard 50 User CAL

Licencja dożywotniaWysyłka w 1 min
Kup w KluczeSoft

Related Articles

## Activating SQL Server 2017 Standard 50 User CAL To activate **SQL Server 2017 Standard 50 User CAL**, follow these steps: - Ensure you have a valid licence key for **SQL Server 2017 Standard**. - Install **SQL Server 2017 Standard** on your server. - Once the installation is complete, open the **SQL Server Management Studio**. > You can find **SQL Server Management Studio** in the **Start** menu, or by searching for it in **Windows**. ## Activation Process To activate the licence, you will need to enter the licence key. You can do this by running the following command in the **Command Prompt**: ```bash cscript.exe "C:\Program Files\Microsoft SQL Server\130\Tools\Binn\sqlservr.exe" -k <licence_key> ``` Replace `<licence_key>` with your actual licence key. ## Troubleshooting If you encounter any issues during the activation process, you can try the following: - Check that the licence key is correct and has not been used before. - Ensure that **SQL Server 2017 Standard** is installed correctly and that all prerequisites are met. - If you are still having issues, you can contact **KluczeSoft** for assistance: - Email: `[email protected]` - Phone: `00 800 121 1654` ## Additional Information For more information on **SQL Server 2017 Standard 50 User CAL**, you can visit the **Microsoft** website or contact **KluczeSoft** directly.Installation and Activation of Microsoft Windows Server 2019 Standard 16 CoreHow to Install Windows Server 2019 Essentials — A Complete GuideInstallation and Activation of Microsoft Windows Server 2019 DatacenterHow to install Windows Server 2022 Standard — a complete guideHow to install Windows Server 2022 Datacenter — a complete guide

Najczęściej zadawane pytania

No, User CAL is a licence assigned to a user in the company's documentation. It is not installed on the server or technically activated.
Yes, User CAL can be permanently assigned to another user or temporarily transferred to a substitute during the primary user's absence.
Yes, a User CAL for a newer version (e.g. 2022) can be used to access SQL Server 2017, but not the other way around.
In the case of User CAL, the licence is assigned to the user, regardless of the number of devices they use.
Keep a list of users with CAL, in accordance with Microsoft's licensing policy. The documentation should be up-to-date and available for inspection.
No, each end-user, even connecting indirectly through applications, must have a assigned User CAL.
In SSMS, right-click on the server instance > Properties or execute the query: `SELECT SERVERPROPERTY('Edition'), SERVERPROPERTY('ProductVersion')`.

Czy ten artykuł był pomocny?