به نقل از
MSDN:
نقل قول: To create a SQL Server login that uses Windows Authentication (SQL Server Management Studio)
In SQL Server Management Studio, open Object Explorer and expand the folder of the server instance in which to create the new login.
Right-click the Security folder, point to New, and then click Login.
On the General page, enter the name of a Windows user in the Login name box.
Select Windows Authentication.
Click OK.
To create a SQL Server login that uses SQL Server Authentication (SQL Server Management Studio)
In SQL Server Management Studio, open Object Explorer and expand the folder of the server instance in which to create the new login.
Right-click the Security folder, point to New, and then click Login.
On the General page, enter a name for the new login in the Login name box.
Select SQL Server Authentication. Windows Authentication is the more secure option.
Enter a password for the login.
Select the password policy options that should be applied to the new login. In general, enforcing password policy is the more secure option.
Click OK.
To create a SQL Server login that uses Windows Authentication using Transact-SQL
In Query Editor, enter the following Transact-SQL command: CREATE LOGIN <name of Windows User> FROM WINDOWS; GO
To create a SQL Server login that uses SQL Server Authentication (Transact-SQL)
In Query Editor, enter the following Transact-SQL command: CREATE LOGIN <login name> WITH PASSWORD = '<password>' ; GO
ترجمه:
برای ساختن یک لاگین در SQL Server که از اعتبار سنجی ویندوز استفاده می کند:
1. در محیط SQL Server Management Studio، بخش Object Explorer را باز نموده و فولدر سروری که میخواهید یک لاگین برای آن بسازید را باز کنید.
2. روی فولدر Security راست کلیک کرده، گزینه New را انتخاب و از منوی باز شده گزینه Login را کلیک کنید.
3. در صفحه General، در قسمت Login Name نام اکانت ویندوز را وارد نمایید.
4. Windows Authentication را انتخاب نمایید.
5. روی OK کلیک کنید.
برای ساختن یک لاگین در SQL Server که از اعتبار سنجی SQL Server استفاده می کند:
1. در محیط SQL Server Management Studio، بخش Object Explorer را باز نموده و فولدر سروری که میخواهید یک لاگین برای آن بسازید را باز کنید.
2. روی فولدر Security راست کلیک کرده، گزینه New را انتخاب و از منوی باز شده گزینه Login را کلیک کنید.
3. در صفحه General، در قسمت Login Name نامی برای یوزر خود وارد نمایید.
4. SQL Server Authentication را انتخاب نمایید. (اما) Windows Authentication امن تر است.
5. رمزی برای لاگین وارد کنید.
6. سیاستی برای رمز(Password Policy) انتخاب کنید که باید برای لاگین اعمال شود. به طور کلی، اجرای سیاستی برای رمز(Password Policy) گزینه امن تری است.
7. روی OK کلیک کنید.
برای ساختن یک لاگین در SQL Server که از اعتبار سنجی ویندوز استفاده می کند (با استفاده از دستورات T-SQL):
1. در Query Editor، دستور Transact-SQL زیر را وارد نمایید:
CREATE LOGIN <name of Windows User> FROM WINDOWS; GO
رای ساختن یک لاگین در SQL Server که از اعتبار سنجی SQL Server استفاده می کند (با استفاده از دستورات T-SQL):
1. در Query Editor، دستور Transact-SQL زیر را وارد نمایید:
CREATE LOGIN <login name> WITH PASSWORD = '<password>' ; GO