About 50 results
Open links in new tab
  1. SQL Server Script to create a new user - Stack Overflow

    Oct 21, 2009 · I want to write a script to create a admin user ( with abcd password ) in SQL Server Express. Also I want to assign this user admin full rights.

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

    Mar 11, 2018 · Creating User and Password in SQL Server Asked 7 years, 11 months ago Modified 2 years, 5 months ago Viewed 11k times

  3. How can I create a user in SQL Server Express database I added to my ...

    How can I create a SQL user in a SQL Server Express database that I added to my project? I need to create a user to use in a connection string that doesn't use Integrated Security.

  4. How do I resolve SQL Server User Mapping Error 15023?

    It's still present in versions up to SQL 2019, at least. The newer recommended way to fix an orphaned user, from Troubleshoot orphaned users (SQL Server): In the master database, use the CREATE …

  5. How to create SQL Server user and password within docker container

    Mar 25, 2025 · 0 I am using docker-compose to create containers for my Go Server, and SQL Server database. I need to create a username and password for the go server to connect to the SQL Server …

  6. sql server - T-SQL How to grant role to user - Stack Overflow

    Jun 13, 2012 · After creating roles and granting privileges to them, I want to grant the privileges of a specified role to a user, how to do with it? I tried grant to , but failed.

  7. sql server - Can I grant a database user permission to create views in ...

    I'd like to set up a security situation where my database user ("ApplicationUser") has permission to create, alter and drop views within a schema. If I execute the statement GRANT ALTER ON SCHEMA...

  8. sql server - How to create a read-only user for a particular schema ...

    Nov 4, 2020 · After creating a user via CREATE USER... I want to give it access to my database and schema. Here is the way that is working: EXEC sp_addrolemember 'db_owner', 'tom' GRANT …

  9. What privileges are needed to create\delete tables on a Microsoft SQL ...

    Nov 21, 2019 · 5 I am not so into SQL Server and I have the following doubt: I have to require the creation of an user that can work on some databases. This user have to create\delete table, …

  10. SQL SERVER: Allow a user to create/alter/drop tables within own …

    Sep 5, 2019 · I'm running sql server 12.0 on Azure. I created a user "DemoApp" with it's schema "DemoApp" Solution 1: Set the user as the owner of the schema works and restricts access to select …