ComboSync MS SQL Requirements

ComboSync MS SQL Requirements

MS SQL Permissions Script

Supported MS SQL Servers

MS SQL Server 2016+/AzureDB

Disk drive performance is crucial in terms of SQL DB data flow.

The disk size depends on the data required.

Consult our technicians for more precise requirements.

Minimal Permissions

1.         Create role and schemas in the database (schemas depend on the data that will be used)

      CREATE ROLE [role_combocurve_agent] AUTHORIZATION [dbo];
GO

CREATE SCHEMA [CCStage] AUTHORIZATION [role_combocurve_agent];
GO
CREATE SCHEMA [enverus] AUTHORIZATION [role_combocurve_agent];
GO
CREATE SCHEMA [ihs] AUTHORIZATION [role_combocurve_agent];
GO
CREATE SCHEMA [ihsrest] AUTHORIZATION [role_combocurve_agent];
GO
CREATE SCHEMA [combocurve] AUTHORIZATION [role_combocurve_agent];
GO

2.         Set Agent’s account as a member of the role role_combocurve_agent

      EXEC sp_addrolemember 'role_combocurve_agent', '***account***'
GO
GRANT CREATE TABLE TO [***account***]
GO

3.         GRANT SELECT on all required data

Recommended Permissions

1.         Set Agent’s account as a member of the roles

      EXEC sp_addrolemember 'db_ddladmin', '***account***'
GO
EXEC sp_addrolemember 'db_datareader', '***account***'
GO
EXEC sp_addrolemember 'db_datawriter', '***account***'
GO


    • Related Articles

    • ComboSync v2 Overview

      ComboSync v2 Overview Summary ComboSync v2 is a standalone, no-code-on-the-customer solution which integrates client and public subscription data in and out of ComboCurve. ComboSync Solution Components ComboSync Agent • A service that processes data ...
    • ComboSync Agent Installation Guide

      ComboSync Agent Installation Guide Requirements Application Server OS Windows 10/11, Windows Server 2016+ Powershell 5+ for the installation/updating part CPU core 2+ RAM 8+ GB Disk space 600 MB + about 2 GB for logs Networking / Required outbound ...
    • ComboCurve: Rep Data Requirements

      Rep Well Data Requirements When creating a type curve, ComboCurve provides validations to exclude rep wells (analog wells) that are not of interests. Rep data requirements can either be found at the bottom of the Settings page under "Well Validation ...
    • ComboSync Auto-Update Feature

      ComboSync Agent Auto Update Introduction An automatic update feature is preferred. There is no action needed on the customer side. The update will be performed automatically. If the ComboCurve support team detects any auto-update issue, they will ...
    • ComboCurve: ARIES - Preparing and Transferring Access databases (.accdb or .mdb)

      Preparing and Transferring ARIES Access databases (.accdb or .mdb) General Size Limits ComboCurve has full support for ARIES (MS Access databases) and PHDWin imports. Feel free to submit a ticket and a Customer Success Representative can help in the ...