Error "CREATE DATABASE permission denied"
Try to give the user your registration in CREATE ANY DATABASE Permission and try again. Take a look at the documentation about creating a new database
source to share
If you are in a situation where you only have access to the SQL / view database, you should consider the following:
-
Do you have an alternate login or credentials for the sa user? If so, try it first and, if necessary, grant your other login rights using the Security / Logins / .. section of your database in the Object Explorer pane ( see Ahmet Arslan's answer ).
-
If you have access to another Windows user account that has access through Windows Authentication, try running ssms.exe as a different user using the "runas" command. Full details and explanation here in the answer from SqlRyan .
-
If you have old databases from a previous Windows installation configured with Windows Authentication (and you don't / don't remember the sa account credentials). In this situation, you can recreate your past user account from a previous Windows installation. Make sure this new account has the same domain and username as your previous account. Log in with the recreated account and grant the current (or "real") user account sufficient permissions (see # 1 above). After confirming that you have regained access, you can delete the updated user account.
source to share