About 1,830,000 results
Open links in new tab
  1. Authorize database access to SQL Database, SQL Managed …

    May 9, 2024 · Learn about how Azure SQL Database, SQL Managed Instance, and Azure Synapse authenticate users for access using logins and user accounts. Also learn how to grant database roles and explicit permissions to authorize logins and …

  2. Adding Users to Your SQL Azure Database

    Jun 21, 2010 · This article will show you how to generate additional user accounts on your SQL Azure databases. Currently, the SQL Azure portal does not allow you to administrate additional users and logins, in order to do this you need to use Transact-SQL.

  3. How can I give permission to a user in an Azure SQL database?

    Feb 12, 2024 · I have an Azure SQL database with an admin user that I can see in the Azure portal. Now I want to create another user that has the permissions of the admin user exactly so I can perform some functions.

  4. How do I create a new user in a SQL Azure database?

    Sep 30, 2013 · As of Sql Azure 12, databases will be created as Contained Databases which will allow users to be created directly in your database, without the need for a server login via master. Sql (standard) User. AAD linked User. AAD linked Group.

  5. How to view the roles and permissions granted to any database user

    Per Managing Databases and Logins in Azure SQL Database, the loginmanager and dbmanager roles are the two server-level security roles available in Azure SQL Database. The loginmanager role has permission to create logins, and the dbmanager role has permission to create databases.

  6. Create SQL Login and SQL User on your Azure SQL DB

    Mar 13, 2019 · /*3: Create SQL User on the user database (connect with admin account to user database)*/ CREATE USER MaryUser FROM LOGIN MaryLogin; /*4. Grant permissions to the user by assign him to a database role*/ ALTER ROLE db_datareader ADD MEMBER MaryUser; See complete list of available database roles here: https://msdn.microsoft.com/en-us/library ...

  7. Contained user access to contained databases - SQL Server

    Nov 22, 2024 · Use contained database users to authenticate SQL Server and Azure SQL Database connections at the database level. A contained database is a database that's isolated from other databases and from the instance of SQL Server or SQL Database (and the master database) that hosts the database.

  8. Connect to and query Azure SQL Database using .NET and the …

    Sep 17, 2024 · This quickstart describes how to connect an application to a database in Azure SQL Database and perform queries using .NET and the Microsoft.Data.SqlClient library. This quickstart follows the recommended passwordless approach to connect to the database. You can learn more about passwordless connections on the passwordless hub.

  9. Listing Azure SQL Database Users and Roles | DEVelopers HUT

    How you can retrieve a list of Azure SQL Database users and determine which roles are assigned to each user account on each individual database.

  10. Create Users for Azure SQL Databases - MSSQLTips.com - SQL

    Dec 27, 2024 · Create Azure SQL Database users for SQL authentication logins, contained SQL users, contained Azure Active Directory users, and map logins.

  11. Some results have been removed