ArcGIS Desktop

  • ArcGIS Pro
  • ArcMap

  • My Profile
  • Help
  • Sign Out
ArcGIS Desktop

ArcGIS Online

The mapping platform for your organization

ArcGIS Desktop

A complete professional GIS

ArcGIS Enterprise

GIS in your enterprise

ArcGIS Developers

Tools to build location-aware apps

ArcGIS Solutions

Free template maps and apps for your industry

ArcGIS Marketplace

Get apps and data for your organization

  • Documentation
  • Support
Esri
  • Sign In
user
  • My Profile
  • Sign Out

ArcMap

  • Home
  • Get Started
  • Map
  • Analyze
  • Manage Data
  • Tools
  • Extensions

Adding a configuration keyword to the geodatabase in PostgreSQL for the Workflow Manager (Classic) workspace

Available with Workflow Manager license.

After creating the data files, modify the DBTUNE table to include a new configuration keyword. Based on this new keyword, the data and database objects will be stored in the table space's location that was previously defined. The DBTUNE table is stored in the geodatabase in PostgreSQL. To modify the DBTUNE table, it is necessary to export the DBTUNE table into a text file and make modifications in the text file. After the updates to the text file are made, import the new DBTUNE table from the text file.

  1. Export the DBTUNE table before making any modifications.
    1. Start ArcCatalog.

      Tip:

      You can also export using ArcMap.

    2. Click the ArcToolbox button ArcToolbox on the Standard toolbar.
    3. Expand Data Management Tools > Geodatabase Administration.
    4. Double-click Export Geodatabase Configuration Keywords.

      The Export Geodatabase Configuration Keywords dialog box appears.

    5. Click the browse button for the Input Database Connection parameter and browse to the connection file for the enterprise, workgroup, or desktop geodatabase you want to export.
    6. Click the browse button for the Output File parameter and browse to the path where the file will be exported.
    7. Name the file dbtune_exp.txt and click Save.
    8. Click OK on the Export Geodatabase Configuration Keywords dialog box.
  2. Copy dbtune_exp.txt to dbtune_wmx.txt.
  3. Using a file-based editor, modify the ##DEFAULTS configuration keywords to control into which table spaces the tables and indexes will be created.

    Note:

    If your database only stores the Workflow Manager (Classic) repository, the dbtune_wmx.txt file can be opened in a text editor where you can manually edit the ##DEFAULTS configuration keyword; otherwise, create a new configuration keyword (##WMX) using the following ##DEFAULTS example.

    Note:

    Copying and pasting the examples may cause syntax errors.

    Follow this script example to modify the ##DEFAULTS.

    dbtune_wmx.txt
    
    ##DATA_DICTIONARY
    B_INDEX_ROWID           "WITH (FILLFACTOR = 75) USING INDEX TABLESPACE wmx_sde_dict_index"
    B_INDEX_USER            "WITH (FILLFACTOR = 75) USING INDEX TABLESPACE wmx_sde_dict_index"
    B_STORAGE               "TABLESPACE wmx_sde_dict"
    MVTABLES_MODIFIED_INDEX "WITH (FILLFACTOR = 75) USING INDEX TABLESPACE wmx_sde_dict_index"
    MVTABLES_MODIFIED_TABLE "TABLESPACE wmx_sde_dict"
    STATE_LINEAGES_INDEX    "WITH (FILLFACTOR = 75) USING INDEX TABLESPACE wmx_sde_dict_index"
    STATE_LINEAGES_TABLE	"TABLESPACE wmx_sde_dict"
    STATES_INDEX            "WITH (FILLFACTOR = 75) USING INDEX TABLESPACE wmx_sde_dict_index"
    STATES_TABLE		"TABLESPACE wmx_sde_dict"
    VERSIONS_INDEX          "WITH (FILLFACTOR = 75) USING INDEX TABLESPACE wmx_sde_dict_index"
    VERSIONS_TABLE		"TABLESPACE wmx_sde_dict"
    XML_INDEX_TAGS_TABLE    "TABLESPACE wmx_sde_dict"
    XML_INDEX_TAGS_INDEX    "WITH (FILLFACTOR = 75) USING INDEX TABLESPACE wmx_sde_dict_index"
    END
    
    ##DEFAULTS
    GEOMETRY_STORAGE       "ST_GEOMETRY"
    RASTER_STORAGE         "BINARY"
    UI_TEXT	           "User Interface text for DEFAULTS"
    A_INDEX_ROWID          "WITH (FILLFACTOR = 75) USING INDEX TABLESPACE wmx_Aindex"  
    A_INDEX_STATEID	       "WITH (FILLFACTOR = 75) TABLESPACE wmx_Aindex" 
    A_INDEX_USER           "WITH (FILLFACTOR = 75) TABLESPACE wmx_Aindex"
    A_INDEX_XML            "WITH (FILLFACTOR = 75) TABLESPACE wmx_Aindex"
    A_INDEX_RASTER         "WITH (FILLFACTOR = 75) TABLESPACE wmx_Aindex"
    A_STORAGE              "TABLESPACE wmx_Adata"
    B_INDEX_ROWID          "WITH (FILLFACTOR = 75) TABLESPACE wmx_Bindex"
    B_INDEX_USER           "WITH (FILLFACTOR = 75) TABLESPACE wmx_Bindex"
    B_INDEX_XML            "WITH (FILLFACTOR = 75) TABLESPACE wmx_Bindex"
    B_INDEX_RASTER         "WITH (FILLFACTOR = 90) TABLESPACE wmx_Bindex"
    B_INDEX_TO_DATE        "WITH (FILLFACTOR = 75) TABLESPACE wmx_Bindex"
    B_STORAGE              "TABLESPACE wmx_Bdata"
    D_INDEX_ALL            "WITH (FILLFACTOR = 75) USING INDEX TABLESPACE wmx_Dindex"
    D_INDEX_DELETED_AT     "WITH (FILLFACTOR = 75) TABLESPACE wmx_Dindex"
    D_STORAGE              "TABLESPACE wmx_Ddata"
    RAS_STORAGE            "TABLESPACE wmx_Bdata"
    RAS_INDEX_ID           "WITH (FILLFACTOR = 90) USING INDEX TABLESPACE wmx_Bindex"
    BND_STORAGE            "TABLESPACE wmx_Bdata"
    BND_INDEX_ID           "WITH (FILLFACTOR = 90) USING INDEX TABLESPACE wmx_Bindex"
    BND_INDEX_COMPOSITE    "WITH (FILLFACTOR = 90) USING INDEX TABLESPACE wmx_Bindex"
    AUX_STORAGE            "TABLESPACE wmx_Bdata"
    AUX_INDEX_COMPOSITE    "WITH (FILLFACTOR = 90) USING INDEX TABLESPACE wmx_Bindex"
    BLK_STORAGE            "TABLESPACE wmx_Bdata"
    BLK_INDEX_COMPOSITE    "WITH (FILLFACTOR = 90) USING INDEX TABLESPACE wmx_Bindex"
    XML_DOC_INDEX          "WITH (FILLFACTOR = 75) USING INDEX TABLESPACE wmx_Bindex"
    XML_DOC_STORAGE        "TABLESPACE wmx_Bdata"
    #XML_DOC_UNCOMPRESSED_TYPE  "BINARY"
    XML_IDX_INDEX_DOUBLE   "WITH (FILLFACTOR = 75) TABLESPACE wmx_Bindex"
    XML_IDX_INDEX_ID       "WITH (FILLFACTOR = 75) TABLESPACE wmx_Bindex"
    XML_IDX_INDEX_PK       "WITH (FILLFACTOR = 75) USING INDEX TABLESPACE wmx_Bindex"
    XML_IDX_INDEX_STRING   "WITH (FILLFACTOR = 75) TABLESPACE wmx_Bindex"
    XML_IDX_INDEX_TAG      "WITH (FILLFACTOR = 75) TABLESPACE wmx_Bindex"
    XML_IDX_STORAGE        "TABLESPACE wmx_Bindex"
    XML_IDX_FULLTEXT_UPDATE_METHOD "AUTOMATIC"
    #XML_COLUMN_STORAGE    - "SDE_XML" or "DB_XML"
    XML_COLUMN_STORAGE     "DB_XML"
    END
    ##PG_GEOMETRY
    GEOMETRY_STORAGE    "PG_GEOMETRY"
    UI_TEXT             "User Interface text description"
    END
    

  4. Import the modified dbtune_wmx.txt file using ArcCatalog or ArcMap.
    1. In the ArcToolbox window, expand Data Management Tools > Geodatabase Administration.
    2. Double-click the Import Geodatabase Configuration Keywords tool.

      The Import Geodatabase Configuration Keywords dialog box appears.

    3. Click the browse button next to the Input Database Connection parameter and browse to the connection file for the enterprise geodatabase from which to import.
    4. Click the browse button next to Input File parameter and browse to the path where the file will be imported.
    5. Name the file dbtune_wmx.txt and click Open.
    6. Click OK on the Import Geodatabase Configuration Keywords dialog box.

ArcGIS Desktop

  • Home
  • Documentation
  • Support

ArcGIS

  • ArcGIS Online
  • ArcGIS Desktop
  • ArcGIS Enterprise
  • ArcGIS
  • ArcGIS Developer
  • ArcGIS Solutions
  • ArcGIS Marketplace

About Esri

  • About Us
  • Careers
  • Esri Blog
  • User Conference
  • Developer Summit
Esri
Tell us what you think.
Copyright © 2021 Esri. | Privacy | Legal