About 707,000 results
Open links in new tab
  1. Create Local SQL Server database - Stack Overflow

    Apr 11, 2017 · After installation you need to connect to Server Name : localhost to start using the local instance of SQL Server. Once you are connected to the local instance, right click on Databases and …

  2. sql server - Using Testcontainers.MsSql.MsSqlBuilder and create ...

    Nov 19, 2023 · I can create the container, but I'm lost on where/when to create my database/schema. I've read the MsSqlBuilder code and I don't see how I would configure the SQL Server …

  3. database - What privileges are needed to create\delete tables on a ...

    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, …

  4. SQL Server Express CREATE DATABASE permission denied in database ...

    Oct 24, 2009 · SQL Server Express CREATE DATABASE permission denied in database 'master' Asked 16 years, 1 month ago Modified 4 years, 1 month ago Viewed 164k times

  5. sql - Create database if db does not exist - Stack Overflow

    Jan 8, 2020 · I want to make SQL Server script for creating database if it does not exist.

  6. How can I generate an entity–relationship (ER) diagram of a database ...

    128 I want to generate an ER diagram of an SQL database using Microsoft SQL Server Management Studio (SMSS). However, I don’t know how to. I found this technique online: Making ER Diagram …

  7. How do I create a new server in SQL Server Management Studio?

    Jan 24, 2022 · The questions is basically the title because I could not find any articles to help as they only help on how to create a new database however I cant seem to create/join my own server. The …

  8. CREATE DATABASE permission denied in database 'master' (EF code-first)

    Steps : Create a database in the Sql server management studio (preferably without tables). Now back on visual studio, add a connection of the newly created database in the server explorer. Now use the …

  9. database - SQL Server - Give user permission to create table in their ...

    Oct 29, 2020 · Granting CREATE TABLE, and other permissions doesn't do anything is that USER doesn't also have the ALTER permission. As such, all you need to is GRANT the USER the CREATE …

  10. Create a database from a .bak file in Microsoft SQL Server …

    Oct 6, 2023 · You want to create a copy of the database that's there. That means you need to give it a different name (since database names are unique) and move the files to a different location (since …