About 2,010,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 - Create database if db does not exist - Stack Overflow

    Jan 8, 2020 · Msg 911, Level 16, State 1, Line 5 Database 'DataBase' does not exist. Make sure that the name is entered correctly. How to make database with tables and procedures when database does …

  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. How to have docker compose init a SQL Server database

    Nov 12, 2021 · I have a docker-compose file that creates a starts SQL Server. This is working fine. I can connect to the database and see the master database. What I am trying to do is create a new …

  5. 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

  6. Generate create table SQL script for all tables in database

    Oct 17, 2023 · In SQL Server Management Studio(SSMS) Right click on the DB_NAME -> Select Task -> Select Generate Script. Follow along the presented wizard and select all tables in that database to …

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

  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. sql - CREATE DATABASE or ALTER DATABASE failed because the …

    Mar 24, 2015 · CREATE DATABASE or ALTER DATABASE failed because the resulting cumulative database size would exceed your licensed limit of 10240 MB per database. (Microsoft SQL Server, …

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

    Oct 6, 2023 · Sounds like you're trying to restore from a backup to a database that already exists and is in use. If you want to replace that database you'll need to drop it, or prevent users (including you!) …