1. Introduction
  2. Documentation Status
  3. Legal notice
  4. Conventions
  5. Bug Reporting Guidelines
  6. 1. Part I. Internals
    ❱
    1. 1.1. Architectural Fundamentals
    2. 1.2. Indexes
      ❱
      1. 1.2.1. B-Tree Indexes
      2. 1.2.2. GiST Indexes
      3. 1.2.3. SP-GiST Indexes
      4. 1.2.4. GIN Indexes
      5. 1.2.5. BRIN Indexes
      6. 1.2.6. Hash Indexes
    3. 1.3. Full Text Search
    4. 1.4. Concurrency Control
    5. 1.5. libpq — C Library
      ❱
      1. 1.5.1. Database Connection Control Functions
      2. 1.5.2. Connection Status Functions
      3. 1.5.3. Command Execution Functions
      4. 1.5.4. Asynchronous Command Processing
      5. 1.5.5. Pipeline Mode
      6. 1.5.6. Retrieving Query Results Row-by-Row
      7. 1.5.7. Canceling Queries in Progress
      8. 1.5.8. The Fast-Path Interface
      9. 1.5.9. Asynchronous Notification
      10. 1.5.10. Functions Associated with the COPY Command
      11. 1.5.11. Control Functions
      12. 1.5.12. Miscellaneous Functions
      13. 1.5.13. Notice Processing
      14. 1.5.14. Event System
      15. 1.5.15. Environment Variables
      16. 1.5.16. The Password File
      17. 1.5.17. The Connection Service File
      18. 1.5.18. LDAP Lookup of Connection Parameters
      19. 1.5.19. SSL Support
      20. 1.5.20. Behavior in Threaded Programs
      21. 1.5.21. Building libpq Programs
      22. 1.5.22. Example Programs
    6. 1.6. Large Objects
    7. 1.7. The Information Schema
    8. 1.8. Server Programming
      ❱
      1. 1.8.1. Extending SQL
        ❱
        1. 1.8.1.1. How Extensibility Works
        2. 1.8.1.2. The QHB Type System
        3. 1.8.1.3. User-Defined Functions
        4. 1.8.1.4. User-Defined Procedures
        5. 1.8.1.5. Query Language (SQL) Functions
        6. 1.8.1.6. Function Overloading
        7. 1.8.1.7. Function Volatility Categories
        8. 1.8.1.8. Procedural Language Functions
        9. 1.8.1.9. Internal Functions
        10. 1.8.1.10. Native Language Functions
        11. 1.8.1.11. Function Optimization Information
        12. 1.8.1.12. User-Defined Aggregates
        13. 1.8.1.13. User-Defined Types
        14. 1.8.1.14. User-Defined Operators
        15. 1.8.1.15. Operator Optimization Information
        16. 1.8.1.16. Interfacing Extensions to Indexes
        17. 1.8.1.17. Packaging Related Objects into an Extension
        18. 1.8.1.18. Extension Building Infrastructure
      2. 1.8.2. Triggers
      3. 1.8.3. Event Triggers
      4. 1.8.4. The Rule System
      5. 1.8.5. Server Programming Interface
      6. 1.8.6. Background Worker Processes
      7. 1.8.7. Logical Decoding
      8. 1.8.8. Replication Progress Tracking
      9. 1.8.9. Archive Modules
    9. 1.9. qhb instance
    10. 1.10. Overview of QHB Internals
    11. 1.11. System Catalogs
    12. 1.12. System Views
    13. 1.13. Frontend/Backend Protocol
      ❱
      1. 1.13.1. Overview
      2. 1.13.2. Message Flow
      3. 1.13.3. SASL Authentication
      4. 1.13.4. Streaming Replication Protocol
      5. 1.13.5. Logical Streaming Replication Protocol
      6. 1.13.6. Message Data Types
      7. 1.13.7. Message Formats
      8. 1.13.8. Error and Notice Message Fields
      9. 1.13.9. Logical Replication Message Formats
      10. 1.13.10. Summary of Changes since Protocol 2.0
    14. 1.14. Table Access Method Interface Definition
    15. 1.15. Index Access Method Interface Definition
    16. 1.16. Generic WAL Records
    17. 1.17. Custom WAL Resource Managers
    18. 1.18. Database Physical Storage
    19. 1.19. Transaction Processing
    20. 1.20. System Catalog Declarations and Initial Contents
    21. 1.21. How the Planner Uses Statistics
    22. 1.22. Backup Manifest Format
    23. 1.23. QSS Secure Storage Module
      ❱
      1. 1.23.1. User Guide for Cold Re-encryption of QHB Database Objects
    24. 1.24. QCP Asynchronous Connection Pool
    25. 1.25. QDL Data Bulk Direct Loading Module
      ❱
      1. 1.25.1. Example of Using QDL
    26. 1.26. QDLM Loading Metric Data into a Database Module
    27. 1.27. TARQ Disk Block Cache Manager
    28. 1.28. Dump and Load of the UMCA Disk Block Cache Manager Contents
    29. 1.29. Parameter HOLDMEM and Additional Disk Block Caches
    30. 1.30. Tables APPEND_ONLY
    31. 1.31. Metric Server
      ❱
      1. 1.31.1. queryid Metric Configuration
    32. 1.32. Shared Plan Cache
    33. 1.33. Built-in Message Queue
    34. 1.34. QSched Task Scheduler
    35. 1.35. Session Level Variables qhb-variables
    36. 1.36. Profiling Long Queries
    37. 1.37. Cluster Computing Management Module QLUSTER
      ❱
      1. 1.37.1. qluster rest api Description
      2. 1.37.2. QRAFT Protocol Description
    38. 1.38. QMAN — application for monitoring and managing QHB instances
      ❱
      1. 1.38.1. QMAN — Command Reference
  7. 2. Part II. Installation and Configuration
    ❱
    1. 2.1. Installation
    2. 2.2. Getting Started
    3. 2.3. Server Setup and Operation
    4. 2.4. Server Configuration
      ❱
      1. 2.4.1. Setting Parameters
      2. 2.4.2. File Locations
      3. 2.4.3. Connections and Authentication
      4. 2.4.4. Resource Consumption
      5. 2.4.5. Write Ahead Log
      6. 2.4.6. Replication
      7. 2.4.7. Query Planning
      8. 2.4.8. Error Reporting and Logging
      9. 2.4.9. Run-time Statistics
      10. 2.4.10. Automatic Vacuuming
      11. 2.4.11. Client Connection Defaults
      12. 2.4.12. Lock Management
      13. 2.4.13. Version and Platform Compatibility
      14. 2.4.14. Error Handling
      15. 2.4.15. Preset Options
      16. 2.4.16. Customized Options
      17. 2.4.17. Developer Options
      18. 2.4.18. Short Options
      19. 2.4.19. QHB-specific Module and Extension Options
    5. 2.5. Performance Tips
    6. 2.6. Client Authentication
    7. 2.7. Database Roles
    8. 2.8. Information Security Roles
    9. 2.9. Managing Databases
    10. 2.10. Localization
    11. 2.11. Routine Database Maintenance Tasks
    12. 2.12. Backup and Restore
    13. 2.13. qbackup Backup Tool
    14. 2.14. High Availability, Load Balancing, and Replication
    15. 2.15. Resource Management
    16. 2.16. Monitoring Database Activity
      ❱
      1. 2.16.1. Standard Unix Tools
      2. 2.16.2. The Cumulative Statistics System
      3. 2.16.3. Viewing Locks
      4. 2.16.4. Progress Reporting
      5. 2.16.5. Dynamic Tracing
      6. 2.16.6. QHB Metrics
    17. 2.17. Monitoring Disk Usage
    18. 2.18. Reliability and the Write-Ahead Log
    19. 2.19. Logical Replication
    20. 2.20. Just-in-Time Compilation (JIT)
    21. 2.21. Regression Tests
    22. 2.22. Procedural Languages
    23. 2.23. Writing a Procedural Language Handler
    24. 2.24. QHB Client Applications
      ❱
      1. 2.24.1. clusterdb
      2. 2.24.2. createdb
      3. 2.24.3. createuser
      4. 2.24.4. dropdb
      5. 2.24.5. dropuser
      6. 2.24.6. qhb_amcheck
      7. 2.24.7. qhb_basebackup
      8. 2.24.8. pg_config
      9. 2.24.9. qhb_dump
      10. 2.24.10. qhb_dumpall
      11. 2.24.11. qhb_isready
      12. 2.24.12. qhb_receivewal
      13. 2.24.13. qhb_recvlogical
      14. 2.24.14. qhb_restore
      15. 2.24.15. qhb_verifybackup
      16. 2.24.16. psql
      17. 2.24.17. reindexdb
      18. 2.24.18. vacuumdb
    25. 2.25. QHB Server Applications
      ❱
      1. 2.25.1. initdb
      2. 2.25.2. qhb_archivecleanup
      3. 2.25.3. qhb_bootstrap
      4. 2.25.4. qhb_checksums
      5. 2.25.5. qhb_controldata
      6. 2.25.6. qhb_ctl
      7. 2.25.7. qhb_resetwal
      8. 2.25.8. qhb_rewind
      9. 2.25.9. qhb_test_fsync
      10. 2.25.10. qhb_test_timing
      11. 2.25.11. qhb_upgrade
      12. 2.25.12. qhb_waldump
    26. 2.26. Writing a Foreign Data Wrapper
    27. 2.27. Writing a Table Sampling Method
    28. 2.28. Writing a Custom Scan Provider
    29. 2.29. Genetic Query Optimizer
  8. 3. Part III. The SQL Language
    ❱
    1. 3.1. The SQL Language. Tutorial on the basics
    2. 3.2. Advanced Features
    3. 3.3. SQL Syntax
    4. 3.4. Data Definition
      ❱
      1. 3.4.1. Table Basics
      2. 3.4.2. Default Values
      3. 3.4.3. Generated Columns
      4. 3.4.4. Constraints
      5. 3.4.5. System Columns
      6. 3.4.6. Modifying Tables
      7. 3.4.7. Privileges
      8. 3.4.8. Row Security Policies
      9. 3.4.9. Schemas
      10. 3.4.10. Inheritance
      11. 3.4.11. Table Partitioning
      12. 3.4.12. Foreign Data
      13. 3.4.13. Other Database Objects
      14. 3.4.14. Dependency Tracking
    5. 3.5. Data Manipulation
    6. 3.6. Queries
    7. 3.7. Data Types
      ❱
      1. 3.7.1. Numeric Types
      2. 3.7.2. Monetary Types
      3. 3.7.3. Character Types
      4. 3.7.4. Binary Data Types
      5. 3.7.5. Date/Time Types
      6. 3.7.6. Boolean Type
      7. 3.7.7. Enumerated Types
      8. 3.7.8. Geometric Types
      9. 3.7.9. Network Address Types
      10. 3.7.10. Bit String Types
      11. 3.7.11. Text Search Types
      12. 3.7.12. UUID Type
      13. 3.7.13. XML Type
      14. 3.7.14. JSON Types
      15. 3.7.15. Arrays
      16. 3.7.16. Composite Types
      17. 3.7.17. Range Types
      18. 3.7.18. Domain Types
      19. 3.7.19. Object Identifier Types
      20. 3.7.20. pg_lsn Type
      21. 3.7.21. Pseudo-Types
      22. 3.7.22. UREF Type
    8. 3.8. Functions and Operators
      ❱
      1. 3.8.1. Logical Operators
      2. 3.8.2. Comparison Functions and Operators
      3. 3.8.3. Mathematical Functions and Operators
      4. 3.8.4. String Functions and Operators
      5. 3.8.5. Binary String Functions and Operators
      6. 3.8.6. Bit String Functions and Operators
      7. 3.8.7. Pattern Matching
      8. 3.8.8. Data Type Formatting Functions
      9. 3.8.9. Date/Time Functions and Operators
      10. 3.8.10. Enum Support Functions
      11. 3.8.11. Geometric Functions and Operators
      12. 3.8.12. Network Address Functions and Operators
      13. 3.8.13. Text Search Functions and Operators
      14. 3.8.14. UUID Functions
      15. 3.8.15. XML Functions
      16. 3.8.16. JSON Functions and Operators
      17. 3.8.17. Sequence Manipulation Functions
      18. 3.8.18. Conditional Expressions
      19. 3.8.19. Array Functions and Operators
      20. 3.8.20. Range/Multirange Functions and Operators
      21. 3.8.21. Aggregate Functions
      22. 3.8.22. Window Functions
      23. 3.8.23. Subquery Expressions
      24. 3.8.24. Row and Array Comparisons
      25. 3.8.25. Set Returning Functions
      26. 3.8.26. System Information Functions and Operators
      27. 3.8.27. System Administration Functions
      28. 3.8.28. Trigger Functions
      29. 3.8.29. Event Trigger Functions
      30. 3.8.30. Statistics Information Functions
    9. 3.9. Type Conversion
    10. 3.10. Parallel Query
    11. 3.11. PL/pgSQL — SQL Procedural Language
      ❱
      1. 3.11.1. Overview1
      2. 3.11.2. Structure of PL/pgSQL
      3. 3.11.3. Declarations
      4. 3.11.4. Expressions
      5. 3.11.5. Basic Statements
      6. 3.11.6. Control Structures
      7. 3.11.7. Cursors
      8. 3.11.8. Transaction Management
      9. 3.11.9. Errors and Messages
      10. 3.11.10. Trigger Functions
      11. 3.11.11. PL/pgSQL under the Hood
      12. 3.11.12. Tips for Developing in PL/pgSQL
      13. 3.11.13. Porting from Oracle PL/SQL
    12. 3.12. Autonomous Transactions — PL/pgSQL Language Extension
    13. 3.13. SQL Commands
      ❱
      1. 3.13.1. ABORT
      2. 3.13.2. ALTER AGGREGATE
      3. 3.13.3. ALTER COLLATION
      4. 3.13.4. ALTER CONVERSION
      5. 3.13.5. ALTER DATABASE
      6. 3.13.6. ALTER DEFAULT PRIVILEGES
      7. 3.13.7. ALTER DOMAIN
      8. 3.13.8. ALTER EVENT TRIGGER
      9. 3.13.9. ALTER EXTENSION
      10. 3.13.10. ALTER FOREIGN DATA WRAPPER
      11. 3.13.11. ALTER FOREIGN TABLE
      12. 3.13.12. ALTER FUNCTION
      13. 3.13.13. ALTER GROUP
      14. 3.13.14. ALTER INDEX
      15. 3.13.15. ALTER LANGUAGE
      16. 3.13.16. ALTER LARGE OBJECT
      17. 3.13.17. ALTER MATERIALIZED VIEW
      18. 3.13.18. ALTER OPERATOR
      19. 3.13.19. ALTER OPERATOR CLASS
      20. 3.13.20. ALTER OPERATOR FAMILY
      21. 3.13.21. ALTER POLICY
      22. 3.13.22. ALTER PROCEDURE
      23. 3.13.23. ALTER PROFILE
      24. 3.13.24. ALTER PUBLICATION
      25. 3.13.25. ALTER ROLE
      26. 3.13.26. ALTER ROUTINE
      27. 3.13.27. ALTER RULE
      28. 3.13.28. ALTER SCHEMA
      29. 3.13.29. ALTER SEQUENCE
      30. 3.13.30. ALTER SERVER
      31. 3.13.31. ALTER STATISTICS
      32. 3.13.32. ALTER SUBSCRIPTION
      33. 3.13.33. ALTER SYSTEM
      34. 3.13.34. ALTER TABLE
      35. 3.13.35. ALTER TABLESPACE
      36. 3.13.36. ALTER TEXT SEARCH CONFIGURATION
      37. 3.13.37. ALTER TEXT SEARCH DICTIONARY
      38. 3.13.38. ALTER TEXT SEARCH PARSER
      39. 3.13.39. ALTER TEXT SEARCH TEMPLATE
      40. 3.13.40. ALTER TRIGGER
      41. 3.13.41. ALTER TYPE
      42. 3.13.42. ALTER USER
      43. 3.13.43. ALTER USER MAPPING
      44. 3.13.44. ALTER VIEW
      45. 3.13.45. ANALYZE
      46. 3.13.46. BEGIN
      47. 3.13.47. CALL
      48. 3.13.48. CHECKPOINT
      49. 3.13.49. CLOSE
      50. 3.13.50. CLUSTER
      51. 3.13.51. COMMENT
      52. 3.13.52. COMMIT
      53. 3.13.53. COMMIT PREPARED
      54. 3.13.54. COPY
      55. 3.13.55. CREATE ACCESS METHOD
      56. 3.13.56. CREATE AGGREGATE
      57. 3.13.57. CREATE CAST
      58. 3.13.58. CREATE COLLATION
      59. 3.13.59. CREATE CONVERSION
      60. 3.13.60. CREATE DATABASE
      61. 3.13.61. CREATE DOMAIN
      62. 3.13.62. CREATE EVENT TRIGGER
      63. 3.13.63. CREATE EXTENSION
      64. 3.13.64. CREATE FOREIGN DATA WRAPPER
      65. 3.13.65. CREATE FOREIGN TABLE
      66. 3.13.66. CREATE FUNCTION
      67. 3.13.67. CREATE GROUP
      68. 3.13.68. CREATE INDEX
      69. 3.13.69. CREATE LANGUAGE
      70. 3.13.70. CREATE MATERIALIZED VIEW
      71. 3.13.71. CREATE OPERATOR
      72. 3.13.72. CREATE OPERATOR CLASS
      73. 3.13.73. CREATE OPERATOR FAMILY
      74. 3.13.74. CREATE POLICY
      75. 3.13.75. CREATE PROCEDURE
      76. 3.13.76. CREATE PROFILE
      77. 3.13.77. CREATE PUBLICATION
      78. 3.13.78. CREATE QHBSECUREROLE
      79. 3.13.79. CREATE ROLE
      80. 3.13.80. CREATE RULE
      81. 3.13.81. CREATE SCHEMA
      82. 3.13.82. CREATE SEQUENCE
      83. 3.13.83. CREATE SERVER
      84. 3.13.84. CREATE STATISTICS
      85. 3.13.85. CREATE SUBSCRIPTION
      86. 3.13.86. CREATE TABLE
      87. 3.13.87. CREATE TABLE AS
      88. 3.13.88. CREATE TABLESPACE
      89. 3.13.89. CREATE TEXT SEARCH CONFIGURATION
      90. 3.13.90. CREATE TEXT SEARCH DICTIONARY
      91. 3.13.91. CREATE TEXT SEARCH PARSER
      92. 3.13.92. CREATE TEXT SEARCH TEMPLATE
      93. 3.13.93. CREATE TRANSFORM
      94. 3.13.94. CREATE TRIGGER
      95. 3.13.95. CREATE TYPE
      96. 3.13.96. CREATE USER
      97. 3.13.97. CREATE USER MAPPING
      98. 3.13.98. CREATE VIEW
      99. 3.13.99. DEALLOCATE
      100. 3.13.100. DECLARE
      101. 3.13.101. DELETE
      102. 3.13.102. DISCARD
      103. 3.13.103. DROP ACCESS METHOD
      104. 3.13.104. DROP AGGREGATE
      105. 3.13.105. DROP CAST
      106. 3.13.106. DROP COLLATION
      107. 3.13.107. DROP CONVERSION
      108. 3.13.108. DROP DATABASE
      109. 3.13.109. DROP DOMAIN
      110. 3.13.110. DROP EVENT TRIGGER
      111. 3.13.111. DROP EXTENSION
      112. 3.13.112. DROP FOREIGN DATA WRAPPER
      113. 3.13.113. DROP FOREIGN TABLE
      114. 3.13.114. DROP FUNCTION
      115. 3.13.115. DROP GROUP
      116. 3.13.116. DROP INDEX
      117. 3.13.117. DROP LANGUAGE
      118. 3.13.118. DROP MATERIALIZED VIEW
      119. 3.13.119. DROP OPERATOR
      120. 3.13.120. DROP OPERATOR CLASS
      121. 3.13.121. DROP OPERATOR FAMILY
      122. 3.13.122. DROP OWNED
      123. 3.13.123. DROP POLICY
      124. 3.13.124. DROP PROCEDURE
      125. 3.13.125. DROP PROFILE
      126. 3.13.126. DROP PUBLICATION
      127. 3.13.127. DROP QHBSECUREROLE
      128. 3.13.128. DROP ROLE
      129. 3.13.129. DROP ROUTINE
      130. 3.13.130. DROP RULE
      131. 3.13.131. DROP SCHEMA
      132. 3.13.132. DROP SEQUENCE
      133. 3.13.133. DROP SERVER
      134. 3.13.134. DROP STATISTICS
      135. 3.13.135. DROP SUBSCRIPTION
      136. 3.13.136. DROP TABLE
      137. 3.13.137. DROP TABLESPACE
      138. 3.13.138. DROP TEXT SEARCH CONFIGURATION
      139. 3.13.139. DROP TEXT SEARCH DICTIONARY
      140. 3.13.140. DROP TEXT SEARCH PARSER
      141. 3.13.141. DROP TEXT SEARCH TEMPLATE
      142. 3.13.142. DROP TRANSFORM
      143. 3.13.143. DROP TRIGGER
      144. 3.13.144. DROP TYPE
      145. 3.13.145. DROP USER
      146. 3.13.146. DROP USER MAPPING
      147. 3.13.147. DROP VIEW
      148. 3.13.148. END
      149. 3.13.149. EXECUTE
      150. 3.13.150. EXPLAIN
      151. 3.13.151. FETCH
      152. 3.13.152. GRANT
      153. 3.13.153. IMPORT FOREIGN SCHEMA
      154. 3.13.154. INSERT
      155. 3.13.155. LISTEN
      156. 3.13.156. LOAD
      157. 3.13.157. LOCK
      158. 3.13.158. MERGE
      159. 3.13.159. MOVE
      160. 3.13.160. NOTIFY
      161. 3.13.161. PREPARE
      162. 3.13.162. PREPARE TRANSACTION
      163. 3.13.163. REASSIGN OWNED
      164. 3.13.164. REFRESH MATERIALIZED VIEW
      165. 3.13.165. REINDEX
      166. 3.13.166. RELEASE SAVEPOINT
      167. 3.13.167. RESET
      168. 3.13.168. REVOKE
      169. 3.13.169. ROLLBACK
      170. 3.13.170. ROLLBACK PREPARED
      171. 3.13.171. ROLLBACK TO SAVEPOINT
      172. 3.13.172. SAVEPOINT
      173. 3.13.173. SECURITY LABEL
      174. 3.13.174. SELECT
      175. 3.13.175. SELECT INTO
      176. 3.13.176. SET
      177. 3.13.177. SET CONSTRAINTS
      178. 3.13.178. SET ROLE
      179. 3.13.179. SET SESSION AUTHORIZATION
      180. 3.13.180. SET TRANSACTION
      181. 3.13.181. SHOW
      182. 3.13.182. START TRANSACTION
      183. 3.13.183. TRUNCATE
      184. 3.13.184. UNLISTEN
      185. 3.13.185. UPDATE
      186. 3.13.186. VACUUM
      187. 3.13.187. VALUES
    14. 3.14. SQL Standard Support
      ❱
      1. 3.14.1. SQL Key Words
      2. 3.14.2. QHB Error Codes
      3. 3.14.3. Date/Time Support
      4. 3.14.4. SQL Conformance
  9. 4. Appendixes
    ❱
    1. 4.1. Extensions
      ❱
      1. 4.1.1. QHB Extensions
        ❱
        1. 4.1.1.1. Rbytea
        2. 4.1.1.2. Qbim
          ❱
          1. 4.1.1.2.1. Example of Using Qbim for a Test Object
          2. 4.1.1.2.2. Example of Using Qbim with Linked Objects
        3. 4.1.1.3. Qbayes
        4. 4.1.1.4. part_import
        5. 4.1.1.5. qhb_audit
        6. 4.1.1.6. stat_dump
      2. 4.1.2. Specific and Experimental PostgreSQL Modules
        ❱
        1. 4.1.2.1. adminpack
        2. 4.1.2.2. amcheck
        3. 4.1.2.3. auth_delay
        4. 4.1.2.4. auto_explain
        5. 4.1.2.5. basebackup_to_shell
        6. 4.1.2.6. basic_archive
        7. 4.1.2.7. bloom
        8. 4.1.2.8. btree_gin
        9. 4.1.2.9. btree_gist
        10. 4.1.2.10. citext
        11. 4.1.2.11. cube
        12. 4.1.2.12. dblink
        13. 4.1.2.13. dict_int
        14. 4.1.2.14. dict_xsyn
        15. 4.1.2.15. earthdistance
        16. 4.1.2.16. file_fdw
        17. 4.1.2.17. fuzzystrmatch
        18. 4.1.2.18. hstore
        19. 4.1.2.19. intagg
        20. 4.1.2.20. intarray
        21. 4.1.2.21. isn
        22. 4.1.2.22. lo
        23. 4.1.2.23. ltree
        24. 4.1.2.24. old_snapshot
        25. 4.1.2.25. pageinspect
        26. 4.1.2.26. passwordcheck
        27. 4.1.2.27. pg_buffercache
        28. 4.1.2.28. pgcrypto
        29. 4.1.2.29. pg_freespacemap
        30. 4.1.2.30. pg_prewarm
        31. 4.1.2.31. pgrowlocks
        32. 4.1.2.32. pg_stat_statements
        33. 4.1.2.33. pgstattuple
        34. 4.1.2.34. pg_surgery
        35. 4.1.2.35. pg_trgm
        36. 4.1.2.36. pg_visibility
        37. 4.1.2.37. pg_walinspect
        38. 4.1.2.38. postgres_fdw
        39. 4.1.2.39. seg
        40. 4.1.2.40. sepgsql
        41. 4.1.2.41. spi
        42. 4.1.2.42. sslinfo
        43. 4.1.2.43. tablefunc
        44. 4.1.2.44. tcn
        45. 4.1.2.45. test_decoding
        46. 4.1.2.46. tsm_system_rows
        47. 4.1.2.47. tsm_system_time
        48. 4.1.2.48. unaccent
        49. 4.1.2.49. uuid-ossp
        50. 4.1.2.50. xml2
      3. 4.1.3. Client Applications
        ❱
        1. 4.1.3.1. oid2name
        2. 4.1.3.2. vacuumlo
      4. 4.1.4. External Extensions
        ❱
        1. 4.1.4.1. PostGIS
        2. 4.1.4.2. Patroni
        3. 4.1.4.3. mysql_fdw
        4. 4.1.4.4. Orafce
        5. 4.1.4.5. pg_hint_plan
        6. 4.1.4.6. pg_repack
        7. 4.1.4.7. pg_store_plans
        8. 4.1.4.8. pgtt
        9. 4.1.4.9. plpgsql_check
        10. 4.1.4.10. sr_plan
    2. 4.2. Supported Platforms
      ❱
      1. 4.2.1. 1C Solution Support
    3. 4.3. QHB Usage Pattern
    4. 4.4. Differences between QHB and PostgreSQL
    5. 4.5. QHB Features and Benefits
    6. 4.6. Download Page
    7. 4.7. Brief Guides
      ❱
      1. 4.7.1. Step-by-Step Guides for Initial Download, Installation and Launch
      2. 4.7.2. Brief Upgrade Guide
      3. 4.7.3. Migrating a Database Cluster to QHB
      4. 4.7.4. Starting and Stopping a Server Using systemd Service
      5. 4.7.5. Example of Setting Up a Synchronous Replica
      6. 4.7.6. Example of Logging Setup
      7. 4.7.7. Installing Secure QHB Database
      8. 4.7.8. Installing the QSS Encryption Module Using the Sobol PRNG HSS
      9. 4.7.9. Working with Modules
        ❱
        1. 4.7.9.1. QCP Installation and Usage Guide
        2. 4.7.9.2. Metric Server Operation in Separate Collector and Aggregator Mode
      10. 4.7.10. Working with 1C
        ❱
        1. 4.7.10.1. QHB Installation Guide for 1C
        2. 4.7.10.2. Configuring QHB for 1C
        3. 4.7.10.3. QHB Backup for 1C
      11. 4.7.11. Working with the PL/pgSQL Debugger
    8. 4.8. Acronyms
    9. 4.9. Glossary
    10. 4.10. Color Support
    11. 4.11. Licensing
    12. 4.12. Integrity Control
    13. 4.13. Security Profiles
    14. 4.14. Release Notes
    15. 4.15. PostgreSQL Release Notes

DBMS «Quantum Hybrid Base» 1.5.3

Working with 1C

  • QHB Installation Guide for 1C
  • Configuring QHB for 1C
  • QHB Backup for 1C

Copyright © KVANTOM LLC, 2019-2026