Microsoft SQL Server is a relational database management system developed by Microsoft. As a database server, its primary function is storing and retrieving data, as other software applications request. These applications may run on the same computer or another computer across a network, including the Internet.
SQL Server is available in multiple editions, each with distinct feature sets tailored to different users. This document focuses on SQL Server Express Edition, a scaled-down, free version of SQL Server that includes the core database engine.
On this page:
SQL Server Management Studio is a GUI tool included with SQL Server 2005 and later used for configuring, managing, and administering all components within Microsoft SQL Server. The tool comprises script editors and graphical tools that work with objects and features of the server. You can also use it to create a new database, change any existing database schema by adding or modifying tables and indexes, or analyze performance, including the query windows, which provide a GUI-based interface to write and execute queries.
SQL Server Authentication is a default mechanism to connect to MS SQL Server. However, there are times when you need to use SQL Server Authentication to connect to the server. To use it, follow the steps below to create a SQL Server Authentication Login ID.
Select the SQL Server Authentication option and enter a password for the account.
Uncheck the following options to set the password as you want:
If the options are checked, you should set the password according to the security policy in Windows. |
1. Go to Datasets → DBs on the Available Providers ListBox select SqlClient Data Provider and choose SQL Server.
The configurations described below necessitate that the user is logged in with Administrator privileges. |
2. In the LogonName column, insert the newly created user. In the LogonPassword column, insert the password.
3. In the ConnectionString column, the fields are configured as in the image.
You must always use the Test button to make sure the connection is correctly configured. |