|
Home >> FAQs/Tutorials >> SQL Server FAQ
SQL Server FAQ - "CREATE USER" - Creating a User Name in a Database
By: FYIcenter.com
(Continued from previous topic...)
How To Create a User Name in a Database?
User names are security principals at the database level.
If you want to allow a login name to access a specific database,
you need to create a user name in that database and link it to
the login name.
Creating a user name can be done by using the "CREATE USER"
statement as shown in this tutorial exercise:
-- Login with "sa"
-- Create a login
CREATE LOGIN Fyi_Login WITH PASSWORD = 'IYF'
GO
-- Select a database
USE FyiCenterData;
GO
-- Create a user and link it to a login
CREATE USER Fyi_User FOR LOGIN Fyi_Login;
GO
Login name "Fyi_Login" should be able to access database "FyiCenterData"
through user name "Fyi_User".
(Continued on next topic...)
- What Is the Security Model Used in SQL Server 2005?
- What Are Security Principals Used in SQL Server 2005?
- What Is the Security Principal at the Server Level That Represents Your Session?
- What Is the Security Principal at the Database Level That Represents Your Session?
- How To Create a New Login Name in SQL Server?
- How To Verify a Login name with SQLCMD Tool?
- How To List All Login Names on the Server?
- How To Change the Password of a Login Name?
- How To Change a Login Name?
- How To Disable a Login Name?
- How To Delete a Login Name?
- How To Create a User Name in a Database?
- How To List All User Names in a Database?
- How To Find the Login Name Linked to a Given User Name?
- How To Verify a User name with SQLCMD Tool?
- How To Change the Name of a Database User?
- How To Delete an Existing Database User?
|