Zum Inhalt springen

Create Databases in SQLServer Flex Instances

Diese Seite ist noch nicht in deiner Sprache verfügbar. Englische Seite aufrufen

In order to follow the steps described on this page, the following conditions need to be met:

Considerations for Creating Databases on SQLServer Flex

Section titled “Considerations for Creating Databases on SQLServer Flex”
  • Database naming: Database names can only contain alphanumeric characters (a-z, A-Z, 0-9 without umlauts) together with “_”, other special characters or space are not allowed.
  • Database options/parameters: Creating databases via portal or API supports supplying only database name and owner as parameters, so defining any extra parameters like compatibility level, collations or any other parameter is not supported. (This might change in future versions.)
  • Database initial size: When creating databases via portal or API, the databases are being created with two files only (1 data file and 1 log file). The size of these files are:
    • Data file size is 128 MB, with autogrowth of 64 MB.
    • Log file size is 64 MB, with autogrowth of 64 MB.
  • Database compatibility level: The database compatibility level is 160 (SQL Server 2022) by default.
  • Database collation: Both server and database collations is “SQL_Latin1_General_CP1_CI_AS”.
  • Database recovery model: Database recovery model is “FULL” by default.
  1. Navigate to SQLServer Flex and select the database server on which you want to create a database.
  2. Create the database user for your new database.
    See: Create Logins and Users in SQLServer Flex Instances
  3. Select Databases from the menu.
  4. Click Create Database.
  5. Enter the database details in the form.
    See: Considerations for Creating Databases on SQLServer Flex
  6. Click Create.