When I create a database - it creates it as (single user):
Whenever you create a new database, what you get is a copy of the model
database, so it sounds like your model
database has been set to single user.
When a
CREATE DATABASE
statement is issued, the first part of the database is created by copying in the contents of the model database. The rest of the new database is then filled with empty pages.If you modify the model database, all databases created afterward will inherit those changes. For example, you could set permissions or database options, or add objects such as tables, functions, or stored procedures.
(My emphasis)
To change a database back to concurrent usage, run:
ALTER DATABASE <dbName> set multi_user
Replacing <dbName>
with the name of the database to change.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With