About 5,650,000 results
Open links in new tab
  1. CREATE USER (Transact-SQL) - SQL Server | Microsoft Learn

    The following T-SQL example creates a database user for the Microsoft Entra user, named [email protected]. Replace <unique identifier sid> with the SID of the new user to the object …

  2. Creating User and Password in SQL Server - Stack Overflow

    Mar 11, 2018 · CREATE USER username IDENTIFIED BY Password; and it doesn't work. This error is shown: Msg 156, Level 15, State 1, Line 1 Incorrect syntax near the keyword 'BY'. I …

  3. How to Create Login, User and Grant Permissions in SQL Server

    Aug 13, 2025 · In this tutorial, you will learn How to create a user in SQL Server, Create a user using T-SQL, Assigning Permission to a user, and Grant Permissions in SQL

  4. SQL CREATE USERS - GeeksforGeeks

    Jul 23, 2025 · This article explains how to create and drop users in SQL with detailed examples, best practices, and SEO-optimized explanations. Whether we're using MySQL, Oracle, or …

  5. Create a New User and Grant Permissions in SQL Server

    Managing SQL Server security is a critical part of maintaining your SQL Server environment. In this article, let us take a step-by-step approach to create a new database User and grant …

  6. SQL Server Database Security - Logins and Users

    Jun 17, 2025 · To access SQL Server, you need to create a login, and to give access to a database you need to create a user. In this tutorial, we look at how to create a SQL Server …

  7. Create a SQL Login and Map it to a Database User - w3resource

    Sep 25, 2025 · Learn how to create a SQL login and map it to a database user to manage database access securely. Enhance authentication with this SQL query guide.

  8. SQL Server CREATE USER

    Summary: in this tutorial, you’ll learn how to use the SQL Server CREATE USER statement to add a user to the current database. The SQL Server CREATE USER statement allows you to …

  9. How To Create A User In SQL Server Database - databaseblogs.com

    Nov 12, 2024 · Creating users in SQL Server databases is a crucial skill for a DBA or developer working in SQL server. You can utilize the approaches mentioned above to create an SQL user.

  10. how to create user in sql server : 2 easy methods

    Oct 20, 2023 · To create a new user in sql server, you can use the CREATE LOGIN statement. Here’s an example of how to Create Login in sql server: In this declaration, replace …