S.A.Parkhid
S.A.Parkhid

Reputation: 2868

Difference between Between SQLSever Authentication and Windows Authentication

What is the differrence between SQL Auth and Windows Auth ?

What is Server Name in SQL Server Connection Dialog ?

Server Name Consists:

What is SQLEXPRESS ?

Upvotes: 0

Views: 724

Answers (2)

George Mastros
George Mastros

Reputation: 24498

Just to further clarify...

When you install SQL Server, you can install it as a named instance, or a default instance. There can only be 1 default instance installed per computer. With a default instance, you use the ComputerName in the connection dialog. With a named instance, you use back slash () and the instance name.

When you install SQL Server Express, it defaults to installing named instance (named SQLEXPRESS).

Upvotes: 0

cusimar9
cusimar9

Reputation: 5259

SQL Authentication requires a username and password to authenticate. Windows authentication uses the currently logged in Windows user to authenticate an SQL Server sessin.

Server Name is the name of the Server, surprisingly

SQL Express is a free version of SQL Server provided for non commercial use

Upvotes: 3

Related Questions