Creating a database - syncsort_capacity_management - 12 - 12.40

Syncsort Capacity Management Installation Guide

Product type
Software
Portfolio
Integrate
Product family
Syncsort
Product
Syncsort Capacity Management
Version
12.40
Language
English
Product name
Syncsort Capacity Management
Title
Syncsort Capacity Management Installation Guide
Topic type
How Do I
Copyright
2023
First publish date
1985

To create the SQL Server database, the user must be a member of the dbcreator SQL Server role. This role can be assigned using SQL Server Management Studio, or with the T-SQL script provided below, but only by a member of the sysadmin fixed server role. This permission can be revoked once the database has been created.

The text in italics must be replaced with the user account to which the permission is being granted. The square brackets around the account name are required.

EXEC sp_grantlogin [DomainName\UserName]
EXEC sp_addsrvrolemember [DomainName\UserName], 'dbcreator'