create_database
Create a new SQL Server database with configurable collation, initial size, maximum size, and file growth settings.
Instructions
Create a new SQL Server database with specified options
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| collation | No | Collation for the database (default: server default) | |
| maxSizeMB | No | Maximum size in MB (default: UNLIMITED) | |
| databaseName | Yes | Name of the database to create | |
| fileGrowthMB | No | File growth increment in MB (default: 256) | |
| initialSizeMB | No | Initial size in MB (default: server default) |