You must have create database permission, and you must be a valid user of master to use the create database command.
Always enter the command use master before you create a new database. See the Reference Manual: Commands.
You can create only one database at a time.
create database newpubs
Verifies that the database name specified is unique and follows the rules for identifiers.
Makes sure that the specified database device names are available.
Finds an unused identification number for the new database.
Assigns space to the database on the specified database devices and updates master..sysusages to reflect these assignments.
Inserts a row into sysdatabases.
Makes a copy of the model database in the new database space, thereby creating the new database’s system tables.
Clears all the remaining pages in the database device. If you are creating a database to load a database dump, for load skips page clearing, which is performed after the load completes.
The addition of user names.
The addition of objects.
The database option settings. Originally, the options are set to off in model. If you want all of your databases to inherit particular options, use sp_dboption to change the options in the model database. See System Administration Guide: Volume 1 > System and Optional Databases and Setting Database Options.
After creating a new database, the system administrator or database owner can use sp_adduser to manually add users to the database with sp_adduser. If you are adding new SAP ASE logins, you may also need the system security officer. See Security Administration Guide > Manage SAP ASE Logins and Database Users.