├── .devcontainer └── devcontainer.json ├── .dockerignore ├── .editorconfig ├── .envrc ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── problem-with-topic.yaml │ ├── product-feedback.yaml │ ├── propose-new-topic.yaml │ ├── suggest-addition-to-topic.yaml │ └── typo-or-minor-flaw.yaml ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── build-pages.yml │ ├── build-pdfs.yml │ ├── check-links.yml │ ├── deploy-develop.yml │ ├── deploy-draft.yml │ ├── deploy-main.yml │ ├── deploy-to-netlify.yml │ ├── generate-release-notes.yml │ ├── sync-and-process-files.yml │ ├── sync-issues.yml │ └── tools-events.yml ├── .gitignore ├── .husky ├── .gitignore ├── _ │ └── husky.sh ├── post-checkout ├── post-commit ├── post-merge ├── pre-commit └── pre-push ├── .nvmrc ├── .prettierignore ├── .prettierrc ├── .slugignore ├── .storybook └── main.js ├── .vscode ├── launch.json └── settings.json ├── CODEOWNERS ├── Docs 2.0 Process.docx ├── LICENSE ├── README.md ├── README_ADDING_NEW_SOURCES.md ├── README_DOCKER_VSCODE.md ├── advocacy_docs ├── .gitignore ├── community │ ├── contributing │ │ ├── index.mdx │ │ ├── releasenotes-styleguide.mdx │ │ ├── repo.mdx │ │ └── styleguide.mdx │ └── index.mdx ├── dev-guides │ ├── deploy │ │ ├── docker.mdx │ │ ├── images │ │ │ ├── pgadmin-connected.png │ │ │ ├── pgadmin-default.png │ │ │ └── pgadmin-register-server.png │ │ ├── index.mdx │ │ └── windows.mdx │ ├── index.mdx │ └── working │ │ ├── index.mdx │ │ └── psql-for-busy-developers.mdx ├── dummy.mdx ├── edb-postgres-ai │ ├── cloud-service │ │ ├── console │ │ │ ├── estate │ │ │ │ ├── index.mdx │ │ │ │ ├── integrating │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── integrate_aws │ │ │ │ │ │ ├── 01_create_policy.mdx │ │ │ │ │ │ ├── 02_create_role.mdx │ │ │ │ │ │ ├── 03_set_regions.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ └── integrate_schema.mdx │ │ │ │ ├── monitoring │ │ │ │ │ └── index.mdx │ │ │ │ └── reference │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── metrics_ingestion.mdx │ │ │ │ │ └── schema_ingestion.mdx │ │ │ ├── index.mdx │ │ │ ├── quickstart │ │ │ │ ├── connecting_to_the_database_with_dbeaver.mdx │ │ │ │ ├── connecting_to_the_database_with_pgadmin.mdx │ │ │ │ ├── connecting_to_the_database_with_psql.mdx │ │ │ │ ├── create_account_and_sign_in.mdx │ │ │ │ ├── creating_a_database_cluster.mdx │ │ │ │ ├── exploring_the_database.mdx │ │ │ │ ├── images │ │ │ │ │ ├── qs_cluster_provisioned.png │ │ │ │ │ ├── qs_cluster_provisioning.png │ │ │ │ │ ├── qs_clusters_view.png │ │ │ │ │ ├── qs_connect_credentials.png │ │ │ │ │ ├── qs_create_cluster.png │ │ │ │ │ ├── qs_create_cluster_cluster_settings.png │ │ │ │ │ ├── qs_overview_quick_connect.png │ │ │ │ │ ├── qs_project_view.png │ │ │ │ │ └── qs_single_pane_of_glass.png │ │ │ │ ├── index.mdx │ │ │ │ └── the_project_and_clusters_views.mdx │ │ │ └── using │ │ │ │ ├── account_activity.mdx │ │ │ │ ├── estate │ │ │ │ ├── cloud-hosted-databases.mdx │ │ │ │ ├── edb-postgres-ai-clusters.mdx │ │ │ │ ├── images │ │ │ │ │ ├── estateview.png │ │ │ │ │ └── managedstoragelocations.png │ │ │ │ ├── index.mdx │ │ │ │ ├── self-managed-postgres.mdx │ │ │ │ └── storage-locations.mdx │ │ │ │ ├── images │ │ │ │ ├── overview.svg │ │ │ │ └── projects.jpg │ │ │ │ ├── index.mdx │ │ │ │ ├── introduction.mdx │ │ │ │ ├── notifications.mdx │ │ │ │ ├── organizations │ │ │ │ ├── identity_provider │ │ │ │ │ ├── images │ │ │ │ │ │ └── nameID.png │ │ │ │ │ └── index.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── machine_users.mdx │ │ │ │ └── users.mdx │ │ │ │ ├── overview.mdx │ │ │ │ └── projects │ │ │ │ ├── activity_log.mdx │ │ │ │ ├── cloud_providers.mdx │ │ │ │ ├── clusters.mdx │ │ │ │ ├── images │ │ │ │ ├── example_project_in_projects.png │ │ │ │ ├── project_view.png │ │ │ │ ├── projectoverviewcluster.png │ │ │ │ └── spog_projects_view.png │ │ │ │ ├── index.mdx │ │ │ │ ├── managing_projects.mdx │ │ │ │ ├── migrate │ │ │ │ ├── index.mdx │ │ │ │ └── migrations.mdx │ │ │ │ ├── project_overview.mdx │ │ │ │ ├── regions.mdx │ │ │ │ ├── settings │ │ │ │ ├── index.mdx │ │ │ │ ├── integrations.mdx │ │ │ │ ├── profile.mdx │ │ │ │ └── security.mdx │ │ │ │ ├── storage_locations.mdx │ │ │ │ ├── usage_report.mdx │ │ │ │ ├── users.mdx │ │ │ │ └── viewing_projects.mdx │ │ ├── getting_started │ │ │ ├── backup_and_restore.mdx │ │ │ ├── creating_cluster │ │ │ │ ├── creating_a_cluster.mdx │ │ │ │ ├── creating_a_dha_cluster.mdx │ │ │ │ └── index.mdx │ │ │ ├── experiment │ │ │ │ └── data │ │ │ │ │ ├── Batting.csv │ │ │ │ │ └── LICENSE │ │ │ ├── images │ │ │ │ ├── Pause.png │ │ │ │ ├── Reactivate.png │ │ │ │ ├── SKUNotAvailable.png │ │ │ │ ├── attributes.png │ │ │ │ └── quotalimitation.png │ │ │ ├── import_data.mdx │ │ │ ├── index.mdx │ │ │ ├── planning │ │ │ │ ├── choosing_cluster_type.mdx │ │ │ │ ├── choosing_postgres_distro.mdx │ │ │ │ ├── index.mdx │ │ │ │ └── your_cloud_account.mdx │ │ │ └── your_cloud_account │ │ │ │ ├── cluster_networking.mdx │ │ │ │ ├── connecting_to_your_cloud │ │ │ │ ├── connecting_aws.mdx │ │ │ │ ├── connecting_azure.mdx │ │ │ │ ├── connecting_gcp.mdx │ │ │ │ └── index.mdx │ │ │ │ ├── deploying_using_your_cloud_account │ │ │ │ ├── deploy_aws.mdx │ │ │ │ ├── deploy_azure.mdx │ │ │ │ ├── deploy_gcp.mdx │ │ │ │ └── index.mdx │ │ │ │ ├── getting_started_with_your_cloud_account.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── managing_regions.mdx │ │ │ │ └── preparing_cloud_account │ │ │ │ ├── index.mdx │ │ │ │ ├── preparing_aws.mdx │ │ │ │ ├── preparing_azure │ │ │ │ ├── 01_understanding_qotas_in_azure.mdx │ │ │ │ └── index.mdx │ │ │ │ └── preparing_gcp │ │ │ │ ├── index.mdx │ │ │ │ └── understanding_quotas_in_gcp.mdx │ │ ├── images │ │ │ ├── 2DataGroups-1.png │ │ │ ├── 2DataGroups-2.png │ │ │ ├── 2dn-1wn-2dn-1wn-1wg.png │ │ │ ├── 2dn-1wn-2dn-1wn-1wg.svg │ │ │ ├── EHA.svg │ │ │ ├── Extreme-HA-Diagram-2x.png │ │ │ ├── FarawayReplicas-afterpromotion.png │ │ │ ├── FarawayReplicas-generic.png │ │ │ ├── HA-diagram-2x.png │ │ │ ├── Multi-Region-3Nodes.png │ │ │ ├── Single-Node-Diagram-2x.png │ │ │ ├── SingleDataGroup-1.png │ │ │ ├── SingleDataGroup-2.png │ │ │ ├── eha.png │ │ │ ├── extreme-availability.png │ │ │ ├── extreme-high-availability-3-regions.png │ │ │ ├── extreme-high-availability-3-regions.svg │ │ │ ├── extreme-high-availability-single-region.png │ │ │ ├── extreme-high-availability-single-region.svg │ │ │ ├── fullyhosted.svg │ │ │ ├── fullymanaged.svg │ │ │ ├── ha-not-enabled.png │ │ │ ├── high-availability-old.png │ │ │ ├── high-availability.png │ │ │ ├── high-availability.svg │ │ │ ├── high-availibility.puml │ │ │ ├── image3.png │ │ │ ├── image5.png │ │ │ ├── single-node.png │ │ │ └── single-node.svg │ │ ├── index.mdx │ │ ├── known_issues │ │ │ ├── index.mdx │ │ │ └── known_issues_pgd.mdx │ │ ├── managing_your_cluster │ │ │ ├── backup_and_restore.mdx │ │ │ ├── deleting_your_cluster.mdx │ │ │ ├── index.mdx │ │ │ ├── managing_cluster.mdx │ │ │ ├── migration │ │ │ │ ├── cold_migration.mdx │ │ │ │ ├── dha_bulk_migration.mdx │ │ │ │ └── index.mdx │ │ │ ├── modifying_your_cluster │ │ │ │ ├── 05_db_configuration_parameters.mdx │ │ │ │ ├── images │ │ │ │ │ └── restart_icon.png │ │ │ │ └── index.mdx │ │ │ ├── periodic_maintenance.mdx │ │ │ └── upgrading_your_cluster.mdx │ │ ├── references │ │ │ ├── distributed_high_availability │ │ │ │ ├── index.mdx │ │ │ │ ├── pgd_cli_ba.mdx │ │ │ │ └── pgd_defaults_ba.mdx │ │ │ ├── foreign_data_wrappers.mdx │ │ │ ├── index.mdx │ │ │ ├── poolers.mdx │ │ │ ├── pricing_and_billing │ │ │ │ └── index.mdx │ │ │ ├── supported_cluster_types │ │ │ │ ├── distributed_highavailability.mdx │ │ │ │ ├── faraway_replicas.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── primary_standby_highavailability.mdx │ │ │ │ └── single_node.mdx │ │ │ ├── supported_database_versions.mdx │ │ │ ├── supported_extension_tools.mdx │ │ │ └── supported_regions │ │ │ │ ├── country_reference.mdx │ │ │ │ └── index.mdx │ │ ├── release_notes │ │ │ ├── 2023 │ │ │ │ ├── 2023_01_jan_rel_notes.mdx │ │ │ │ ├── 2023_02_feb_rel_notes.mdx │ │ │ │ ├── 2023_03_mar_rel_notes.mdx │ │ │ │ ├── 2023_04_apr_rel_notes.mdx │ │ │ │ ├── 2023_05_may_rel_notes.mdx │ │ │ │ ├── 2023_06_jun_rel_notes.mdx │ │ │ │ ├── 2023_07_jul_rel_notes.mdx │ │ │ │ ├── 2023_08_aug_rel_notes.mdx │ │ │ │ ├── 2023_09_sep_rel_notes.mdx │ │ │ │ ├── 2023_10_oct_rel_notes.mdx │ │ │ │ ├── 2023_11_nov_rel_notes.mdx │ │ │ │ ├── 2023_12_dec_rel_notes.mdx │ │ │ │ └── index.mdx │ │ │ ├── 2024_01_jan_rel_notes.mdx │ │ │ ├── 2024_02_feb_rel_notes.mdx │ │ │ ├── 2024_03_mar_rel_notes.mdx │ │ │ ├── 2024_04_apr_rel_notes.mdx │ │ │ ├── 2024_05_may_rel_notes.mdx │ │ │ ├── 2024_06_jun_rel_notes.mdx │ │ │ ├── 2024_07_jul_rel_notes.mdx │ │ │ ├── 2024_08_aug_rel_notes.mdx │ │ │ ├── 2024_09_sep_rel_notes.mdx │ │ │ ├── 2024_10_oct_rel_notes.mdx │ │ │ ├── 2024_11_nov_rel_notes.mdx │ │ │ └── index.mdx │ │ ├── security │ │ │ ├── compliance_and_certifications.mdx │ │ │ ├── index.mdx │ │ │ ├── responsibility_model.mdx │ │ │ └── security.mdx │ │ ├── support_services │ │ │ └── index.mdx │ │ ├── using_cluster │ │ │ ├── cli │ │ │ │ ├── create_cluster_cli.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── managing_clusters.mdx │ │ │ │ └── using_features.mdx │ │ │ ├── connect_from_a_client │ │ │ │ ├── connect_using_dbeaver.mdx │ │ │ │ ├── connect_using_pgadmin.mdx │ │ │ │ ├── connect_using_psql.mdx │ │ │ │ └── index.mdx │ │ │ ├── connecting_your_cluster │ │ │ │ ├── 02_connecting_from_aws │ │ │ │ │ ├── 02_vpc_peering.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── connecting_from_azure │ │ │ │ │ ├── 02_virtual_network_peering.mdx │ │ │ │ │ ├── 03_vnet_vnet.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── connecting_from_gcp │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── vpc_peering.mdx │ │ │ │ ├── images │ │ │ │ │ ├── create_private_endpoint.png │ │ │ │ │ ├── create_private_endpoint_resource.png │ │ │ │ │ ├── create_private_endpoint_virtual_network.png │ │ │ │ │ ├── image1.png │ │ │ │ │ ├── image10.png │ │ │ │ │ ├── image11.png │ │ │ │ │ ├── image12.png │ │ │ │ │ ├── image13.png │ │ │ │ │ ├── image14.png │ │ │ │ │ ├── image15.png │ │ │ │ │ ├── image16.png │ │ │ │ │ ├── image17.png │ │ │ │ │ ├── image18.png │ │ │ │ │ ├── image19.png │ │ │ │ │ ├── image20.png │ │ │ │ │ ├── image21.png │ │ │ │ │ ├── image22.png │ │ │ │ │ ├── image24.png │ │ │ │ │ ├── image25.png │ │ │ │ │ ├── image4.png │ │ │ │ │ ├── image5.png │ │ │ │ │ ├── image6.png │ │ │ │ │ ├── image7.png │ │ │ │ │ ├── image8.png │ │ │ │ │ ├── image9.png │ │ │ │ │ ├── point-to-site-download.png │ │ │ │ │ └── point-to-site.png │ │ │ │ └── index.mdx │ │ │ ├── demonstration_oracle_compatibility.mdx │ │ │ ├── faraway_replicas.mdx │ │ │ ├── fault_injection_testing │ │ │ │ ├── images │ │ │ │ │ ├── biganimal_faultinjectiontest_1.png │ │ │ │ │ ├── biganimal_faultinjectiontest_2.png │ │ │ │ │ ├── biganimal_faultinjectiontest_3.png │ │ │ │ │ └── biganimal_faultinjectiontest_4.png │ │ │ │ └── index.mdx │ │ │ ├── index.mdx │ │ │ ├── managing_postgres_extensions.mdx │ │ │ ├── monitoring_and_logging │ │ │ │ ├── alerts.mdx │ │ │ │ ├── health_status.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── metrics │ │ │ │ │ └── index.mdx │ │ │ │ ├── monitoring_from_aws │ │ │ │ │ └── index.mdx │ │ │ │ ├── monitoring_from_azure │ │ │ │ │ └── index.mdx │ │ │ │ ├── monitoring_using_biganimal_observability │ │ │ │ │ ├── images │ │ │ │ │ │ └── monitoring_and_logging_tab.png │ │ │ │ │ └── index.mdx │ │ │ │ ├── other_monitoring │ │ │ │ │ ├── example_metrics.mdx │ │ │ │ │ ├── images │ │ │ │ │ │ ├── connections_example.png │ │ │ │ │ │ ├── cpu_usage_example.png │ │ │ │ │ │ ├── logs_pattern.png │ │ │ │ │ │ ├── memory_usage_example.png │ │ │ │ │ │ ├── metrics_pattern.png │ │ │ │ │ │ ├── pvc_usage_example.png │ │ │ │ │ │ ├── replication_lag_example.png │ │ │ │ │ │ ├── status_example.png │ │ │ │ │ │ └── xid_age_example.png │ │ │ │ │ └── index.mdx │ │ │ │ └── third_party_integrations │ │ │ │ │ ├── datadog.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── newrelic.mdx │ │ │ ├── postgres_access │ │ │ │ ├── admin_roles.mdx │ │ │ │ ├── database_authentication.mdx │ │ │ │ ├── index.mdx │ │ │ │ └── pg_ba_admin.mdx │ │ │ ├── tagging │ │ │ │ ├── create_and_manage_tags.mdx │ │ │ │ └── index.mdx │ │ │ └── your_cloud_account │ │ │ │ ├── aws_secrets_manager_integration.mdx │ │ │ │ ├── csp_tagging.mdx │ │ │ │ ├── customizing_compliance │ │ │ │ ├── aws_config_rules.mdx │ │ │ │ ├── azure_policy_definitions.mdx │ │ │ │ ├── gcp_policy_definitions.mdx │ │ │ │ └── index.mdx │ │ │ │ └── index.mdx │ │ └── using_the_api │ │ │ ├── access_key │ │ │ └── index.mdx │ │ │ ├── api.mdx │ │ │ ├── index.mdx │ │ │ └── terraform_provider.mdx │ ├── databases │ │ ├── advanced_performance.mdx │ │ ├── advanced_replication.mdx │ │ ├── advanced_security.mdx │ │ ├── advanced_sql.mdx │ │ ├── deployment_options.mdx │ │ ├── feature_support_per_db.mdx │ │ ├── images │ │ │ ├── pg_distros_550w.svg │ │ │ ├── postgres_distros_transparent.svg │ │ │ └── postgres_distros_transparent_500w.svg │ │ ├── index.mdx │ │ ├── oracle_compatibility.mdx │ │ ├── postgres_distributions.mdx │ │ └── tools_extensions.mdx │ ├── extensions-and-tools │ │ └── index.mdx │ ├── index.mdx │ ├── integration │ │ └── index.mdx │ ├── migration-etl │ │ └── index.mdx │ ├── overview │ │ ├── guide-and-getting-started.mdx │ │ └── index.mdx │ └── platforms-and-tools │ │ ├── backup.mdx │ │ ├── high-availability.mdx │ │ ├── index.mdx │ │ ├── kubernetes.mdx │ │ ├── management.mdx │ │ └── security.mdx ├── migrating │ ├── index.mdx │ └── oracle │ │ ├── edb_migration_tools.mdx │ │ ├── factors_to_consider.mdx │ │ ├── images │ │ ├── journey.png │ │ └── journey_with_bullets.png │ │ ├── index.mdx │ │ ├── migration_journey.mdx │ │ ├── migration_techniques.mdx │ │ └── oracle_epas_comparison │ │ ├── app_devel_capabilities.mdx │ │ ├── database_features.mdx │ │ ├── general_characteristics.mdx │ │ ├── index.mdx │ │ ├── non_relational_data.mdx │ │ ├── notable_differences.mdx │ │ └── operational_capabilities.mdx ├── partner_docs │ ├── ChemaxonJChemPostgreSQLCartridge │ │ ├── 02-PartnerInformation.mdx │ │ ├── 03-SolutionSummary.mdx │ │ ├── 04-Configuration.mdx │ │ ├── 05-Using.mdx │ │ ├── 06-CertificationEnvironment.mdx │ │ ├── Images │ │ │ ├── PartnerProgram.png │ │ │ └── UpdatedChemaxonSolutionSummary.png │ │ └── index.mdx │ ├── CohesityDataProtectforPostgreSQL │ │ ├── 02-PartnerInformation.mdx │ │ ├── 03-SolutionSummary.mdx │ │ ├── 04-ConfiguringCohesityDataProtectforPostgreSQL.mdx │ │ ├── 05-UsingCohesityDataProtectforPostgreSQL.mdx │ │ ├── 06-CertificationEnvironment.mdx │ │ ├── Images │ │ │ ├── CohesityBackupOptions.png │ │ │ ├── CohesityCreateProtectionPolicy.png │ │ │ ├── CohesityDashboard.png │ │ │ ├── CohesityEDBAdvancedServerProtection.png │ │ │ ├── CohesityEDBDroppedDatabase.png │ │ │ ├── CohesityEDBRestoredDatabase.png │ │ │ ├── CohesityGlobalSourceRegistration.png │ │ │ ├── CohesityLoginCredentials.png │ │ │ ├── CohesityLoginPage.png │ │ │ ├── CohesityNewProtection.png │ │ │ ├── CohesityObjectName.png │ │ │ ├── CohesityProtectionAdditionalSettings.png │ │ │ ├── CohesityProtectionDetails.png │ │ │ ├── CohesityProtectionGroupChoice.png │ │ │ ├── CohesityProtectionMoreAdditionalSettings.png │ │ │ ├── CohesityProtectionPageOverview.png │ │ │ ├── CohesityProtectionPolicyChoice.png │ │ │ ├── CohesityRecoverChooseProtectionGroup.png │ │ │ ├── CohesityRecoverObjectName.png │ │ │ ├── CohesityRecoverProtectionGroup.png │ │ │ ├── CohesityRecoverRecoveryPoint.png │ │ │ ├── CohesityRecoverRecoveryScripts.png │ │ │ ├── CohesityRecoveryLogs.png │ │ │ ├── CohesityRecoveryStatus.png │ │ │ ├── CohesityRegisterSource.png │ │ │ ├── CohesityRegisterUniversalDataAdapter.png │ │ │ ├── CohesityRestoreDatabaseSteps.png │ │ │ ├── CohesityUniversalDataAdapter.png │ │ │ ├── CohesityUniversalDataAdapterInformation.png │ │ │ ├── DatabaseConnectorforPostgreSQL.png │ │ │ └── PartnerProgram.jpg.png │ │ └── index.mdx │ ├── CommvaultBackupandRecovery │ │ ├── 02-PartnerInformation.mdx │ │ ├── 03-SolutionSummary.mdx │ │ ├── 04-ConfiguringCommvaultBackupandRecovery.mdx │ │ ├── 05-UsingCommvaultBackupandRecovery.mdx │ │ ├── 06-CertificationEnvironment.mdx │ │ ├── 07-SupportandLogging.mdx │ │ ├── Images │ │ │ ├── BackupPlanConf.png │ │ │ ├── CommvaultViewLogsForJob.png │ │ │ ├── CreateInstance1.png │ │ │ ├── CreateInstance2.png │ │ │ ├── CreateInstance3.png │ │ │ ├── CreateInstance4.png │ │ │ ├── DiskStorageConf.png │ │ │ ├── Dumpbackup1.png │ │ │ ├── Dumpbackup2.png │ │ │ ├── Dumpbackup3.png │ │ │ ├── Dumpbackup4.png │ │ │ ├── Dumpbackup5.png │ │ │ ├── Dumpbackup6.png │ │ │ ├── Dumpbackup7.png │ │ │ ├── Dumprestore1.png │ │ │ ├── Dumprestore2.png │ │ │ ├── Dumprestore3.png │ │ │ ├── Dumprestore4.png │ │ │ ├── Dumprestore5.png │ │ │ ├── FSBasedBackupJob.png │ │ │ ├── FSBasedBackupJobDetails.png │ │ │ ├── FSBasedFullRestoreDatabases.png │ │ │ ├── FSBasedFullRestoreOptions.png │ │ │ ├── Final-SolutionSummaryImage.png │ │ │ ├── Fsbackup1.png │ │ │ ├── Fsbackup2.png │ │ │ ├── Fsbackup3.png │ │ │ ├── Fsbackup4.png │ │ │ ├── Fsbackup5.png │ │ │ ├── Fsbackup6.png │ │ │ ├── Fsbackup7.png │ │ │ ├── PartnerProgram.jpg.png │ │ │ ├── SelectFSBasedBackupType.png │ │ │ ├── ServerAdd1.png │ │ │ ├── ServerAdd2.png │ │ │ ├── ServerAdd3.png │ │ │ ├── ServerAdd4.png │ │ │ ├── ServerAdd5.png │ │ │ └── ServerAdd6.png │ │ └── index.mdx │ ├── DBeaverPRO │ │ ├── 02-PartnerInformation.mdx │ │ ├── 03-SolutionSummary.mdx │ │ ├── 04-ConfiguringDBeaverPRO.mdx │ │ ├── 05-UsingDBeaverPRO.mdx │ │ ├── 06-CertificationEnvironment.mdx │ │ ├── 07-SupportandLogging.mdx │ │ ├── Images │ │ │ ├── CompareMigrateSchema.png │ │ │ ├── ConnectionOnLeftSide.png │ │ │ ├── ConnectionSettings.png │ │ │ ├── Console.png │ │ │ ├── Console2.png │ │ │ ├── Console3.png │ │ │ ├── DBN.png │ │ │ ├── DBN2.png │ │ │ ├── DBNavigate.png │ │ │ ├── DBNavigate2.png │ │ │ ├── DBNavigate3.png │ │ │ ├── DBeaverErrorLogs.png │ │ │ ├── DBeaverLogViewer.png │ │ │ ├── DbeaverArc.png │ │ │ ├── EDBPartnerProgram.png │ │ │ ├── EPASConfig.png │ │ │ ├── EPASConnectionSettings.png │ │ │ ├── EPASDatabaseConfiguration.png │ │ │ ├── EPASTestConnection.png │ │ │ ├── ExtendedConfiguration.png │ │ │ ├── ExtendedTestConnection.png │ │ │ ├── JDBCConnection.png │ │ │ ├── JDBCURL.png │ │ │ ├── NewConnectionExtended.png │ │ │ ├── PostgreSQLInformation.png │ │ │ ├── PostgresConnectionSettings.png │ │ │ ├── PostgresTestConnection.png │ │ │ ├── SameSchemaCompareResults.png │ │ │ ├── SchemaCompareDiffResults.png │ │ │ ├── SchemaCompareSettings.png │ │ │ ├── SchemasToCompare.png │ │ │ ├── SelectTargetSourceforCompare.png │ │ │ ├── SuccessfulConnection.png │ │ │ ├── Table.png │ │ │ ├── Table2.png │ │ │ ├── Table3.png │ │ │ └── UpdatedDBeaverArc.png │ │ └── index.mdx │ ├── EsriArcGISProandEsriArcGISEnterprise │ │ ├── 02-PartnerInformation.mdx │ │ ├── 03-SolutionSummary.mdx │ │ ├── 04-ConfiguringEsriArcGISProandEsriArcGISEnterprise.mdx │ │ ├── 05-UsingEsriArcGISProandEsriArcGISEnterprise.mdx │ │ ├── 06-CertificationEnvironment.mdx │ │ ├── Images │ │ │ ├── EsriAddDatabase.png │ │ │ ├── EsriAddGDBFile.png │ │ │ ├── EsriAddGDBtoMap.png │ │ │ ├── EsriAnalysisTools.png │ │ │ ├── EsriArcGISEnterpriseMapShare.png │ │ │ ├── EsriArcGISProDataChangeTest.png │ │ │ ├── EsriArcGISProDataChangeTest2.png │ │ │ ├── EsriAuthorization.png │ │ │ ├── EsriAuthorizationChoices.png │ │ │ ├── EsriAuthorizationChoicesNew.png │ │ │ ├── EsriAuthorizationExtensions.png │ │ │ ├── EsriAuthorizationMethod.png │ │ │ ├── EsriAuthorizationMethodNew.png │ │ │ ├── EsriAuthorizationMethodScreen.png │ │ │ ├── EsriCatalogPane.png │ │ │ ├── EsriCreateEnterpriseGeodatabase.png │ │ │ ├── EsriCreateEnterpriseGeodatabaseRun.png │ │ │ ├── EsriCreateEnterpriseGeodatabaseSuccessfulRun.png │ │ │ ├── EsriCreateNewProject.png │ │ │ ├── EsriEnterpriseConnectionMessage.png │ │ │ ├── EsriEnterpriseFinishSharing.png │ │ │ ├── EsriEnterprisePopulationViewinSharedContent.png │ │ │ ├── EsriEnterpriseRoadsViewinSharedContent.png │ │ │ ├── EsriEnterpriseShareAsWebMap.png │ │ │ ├── EsriExpandGDBInformation.png │ │ │ ├── EsriFeatureClasstoGeodatabase.png │ │ │ ├── EsriFeatureClasstoGeodatabaseNew.png │ │ │ ├── EsriImportFeatureClass.png │ │ │ ├── EsriImportFeatureClassOutPutGeodatabase.png │ │ │ ├── EsriImportedDataArcGISProCheckSecondMap.png │ │ │ ├── EsriImportedDataCheckinArcGISPro.png │ │ │ ├── EsriImportedDataFromServer.png │ │ │ ├── EsriImportedDataInMapViewArcGISProCheck.png │ │ │ ├── EsriNewDatabaseConnection.png │ │ │ ├── EsriNewPostGISConnection.png │ │ │ ├── EsriNewProject.png │ │ │ ├── EsriPgAdminProjectedPopulationMap.png │ │ │ ├── EsriPgAdminProjectedPopulationTable.png │ │ │ ├── EsriPgAdminRoadsTable.png │ │ │ ├── EsriPgAdminRoadsTableTwo.png │ │ │ ├── EsriSelectTableForImport.png │ │ │ ├── EsriShareWebMap.png │ │ │ ├── EsriSharedMapPortalOptions.png │ │ │ ├── EsriSolutionSummary.png │ │ │ └── PartnerProgram.jpg.png │ │ └── index.mdx │ ├── HPE │ │ ├── 02-PartnerInformation.mdx │ │ ├── 03-SolutionSummary.mdx │ │ ├── 04-ConfiguringHPEGreenlake.mdx │ │ ├── 05-UsingHPEGreenlake.mdx │ │ ├── 06-CertificationEnvironment.mdx │ │ ├── 07-SupportandLogging.mdx │ │ ├── Images │ │ │ ├── HPEDatabaseDisplay.png │ │ │ ├── HPESolutionSummaryImage.png │ │ │ ├── PartnerProgram.jpg.png │ │ │ └── SampleDeployment.png │ │ └── index.mdx │ ├── HashicorpVault │ │ ├── 02-PartnerInformation.mdx │ │ ├── 03-SolutionSummary.mdx │ │ ├── 04-ConfiguringHashicorpVault.mdx │ │ ├── 05-UsingHashicorpVault.mdx │ │ ├── 06-CertificationEnvironment.mdx │ │ ├── 07-SupportandLogging.mdx │ │ ├── Images │ │ │ ├── HashicorpVaultSolutionSummaryImage.png │ │ │ └── PartnerProgram.jpg.png │ │ └── index.mdx │ ├── HashicorpVaultTransitSecretsEngine │ │ ├── 02-PartnerInformation.mdx │ │ ├── 03-SolutionSummary.mdx │ │ ├── 04-ConfiguringTransitSecretsEngine.mdx │ │ ├── 05-UsingTransitSecretsEngine.mdx │ │ ├── 06-CertificationEnvironment.mdx │ │ ├── 07-Support.mdx │ │ ├── Images │ │ │ ├── HashicorpVaultTransitSecretsEngineArchitecture(old).png │ │ │ ├── HashicorpVaultTransitSecretsEngineArchitecture.png │ │ │ └── PartnerProgram.jpg.png │ │ └── index.mdx │ ├── ImpervaDataSecurityFabric │ │ ├── 02-PartnerInformation.mdx │ │ ├── 03-SolutionSummary.mdx │ │ ├── 04-ConfiguringImpervaDataSecurityFabric.mdx │ │ ├── 05-UsingImpervaDataSecurityFabric.mdx │ │ ├── 06-CertificationEnvironment.mdx │ │ ├── 07-Support.mdx │ │ ├── Images │ │ │ ├── ImpervaAgentConfiguration.png │ │ │ ├── ImpervaDBAudits.png │ │ │ ├── ImpervaDataSecurityFabricOverview.png │ │ │ ├── ImpervaDataSecurityFabricforPostgreSQL.png │ │ │ ├── ImpervaLogRetrieval.png │ │ │ ├── ImpervaSitesTree.png │ │ │ └── PartnerProgram.jpg.png │ │ └── index.mdx │ ├── KastenbyVeeam │ │ ├── 02-PartnerInformation.mdx │ │ ├── 03-SolutionSummary.mdx │ │ ├── 04-ConfiguringVeeamKasten.mdx │ │ ├── 05-UsingVeeamKasten.mdx │ │ ├── 06-CertificationEnvironment.mdx │ │ ├── 07-SupportandLogging.mdx │ │ ├── Images │ │ │ ├── KastenBackupPolicywithHooks.png │ │ │ ├── KastenRestorePoint.png │ │ │ ├── KastenSolutionSummaryImagenew.png │ │ │ ├── LaunchaBackup.png │ │ │ ├── PartnerProgram.jpg.png │ │ │ └── VeeamKastenLogging.png │ │ └── index.mdx │ ├── LiquibasePro │ │ ├── 02-PartnerInformation.mdx │ │ ├── 03-SolutionSummary.mdx │ │ ├── 04-ConfiguringLiquibasePro.mdx │ │ ├── 05-UsingLiquibasePro.mdx │ │ ├── 06-CertificationEnvironment.mdx │ │ ├── 07-Appendix.mdx │ │ ├── Images │ │ │ ├── Configuration.png │ │ │ ├── ConfigurationPrerequisites1.png │ │ │ ├── IntegrationViews1.png │ │ │ ├── IntegrationViews2.png │ │ │ ├── IntegrationViews3.png │ │ │ ├── IntegrationViews4.png │ │ │ ├── IntegrationViews5.png │ │ │ ├── PartnerProgram.jpg copy.png │ │ │ └── PartnerProgram.jpg.png │ │ └── index.mdx │ ├── Markdown Implementation Guide Template │ │ ├── 02-PartnerInformation.mdx │ │ ├── 03-SolutionSummary.mdx │ │ ├── 04-ConfiguringPartnerNamePartnerProduct.mdx │ │ ├── 05-UsingPartnerNamePartnerProduct.mdx │ │ ├── 06-CertificationEnvironment.mdx │ │ ├── 07-SupportandLoggingDetails.mdx │ │ ├── 08-Appendix.mdx │ │ ├── Images │ │ │ ├── EDBPartnerProgram.png │ │ │ └── PlaceholderImage.png │ │ └── index.mdx │ ├── NutanixAHV │ │ ├── 02-PartnerInformation.mdx │ │ ├── 03-SolutionSummary.mdx │ │ ├── 04-ConfiguringNutanixAHV.mdx │ │ ├── 05-UsingNutanixAHV.mdx │ │ ├── 06-CertificationEnvironment.mdx │ │ ├── 07-Support.mdx │ │ ├── Images │ │ │ ├── CreateaVM.png │ │ │ ├── CreateaVM2.png │ │ │ ├── IntegrationViews.png │ │ │ ├── NutanixSampleDeployment.png │ │ │ ├── NutanixSolutionSummary.png │ │ │ ├── PartnerProgram.jpg.png │ │ │ ├── PrismWebConsole.png │ │ │ ├── SampleDeployment.png │ │ │ ├── TestEnvironmentSpecifications.png │ │ │ └── VMConfiguration2.png │ │ └── index.mdx │ ├── PreciselyConnectCDC │ │ ├── 02-PartnerInformation.mdx │ │ ├── 03-SolutionSummary.mdx │ │ ├── 04-Configuratingpreciselyconnectcdc.mdx │ │ ├── 05-Usingpreciselyconnectcdc.mdx │ │ ├── 06-CertificationEnvironment.mdx │ │ ├── 07-Support.mdx │ │ ├── Images │ │ │ ├── 46.png │ │ │ ├── ConnectCDCSolutionSummary.png │ │ │ ├── PartnerProgram.png │ │ │ ├── Process.png │ │ │ ├── availabletables.png │ │ │ ├── configureepas.png │ │ │ ├── confirmtablesontarget.png │ │ │ ├── connectcdc.png │ │ │ ├── copyrequest.png │ │ │ ├── datatransformation1.png │ │ │ ├── datatransformation2.png │ │ │ ├── distributetables.png │ │ │ ├── distributionmodel.png │ │ │ ├── distrmodel.png │ │ │ ├── doneprepareuserdatabase.png │ │ │ ├── idpassword.png │ │ │ ├── idpassword1.png │ │ │ ├── installmetabase.png │ │ │ ├── metabasesucces.png │ │ │ ├── modelcommit.png │ │ │ ├── newdistribution.png │ │ │ ├── newhost.png │ │ │ ├── newmodel.png │ │ │ ├── newserver.png │ │ │ ├── pgAdmin.png │ │ │ ├── pgAdmincopydone.png │ │ │ ├── pgAdmincopydone2.png │ │ │ ├── pgAdmintargettables.png │ │ │ ├── pgadming.png │ │ │ ├── prepareuserdatabase.png │ │ │ ├── prepareuserdatabase2.png │ │ │ ├── prepareuserdatabasesuccess.png │ │ │ ├── refreshtables.png │ │ │ ├── replicationrequest.png │ │ │ ├── replicationrequest2.png │ │ │ ├── replicationrequest3.png │ │ │ ├── rpuserpassword.png │ │ │ ├── schema2.png │ │ │ ├── schematoreplicate.png │ │ │ ├── selecttableforreplication.png │ │ │ ├── successserver.png │ │ │ ├── tablemappings.png │ │ │ ├── targetmetabasecreated.png │ │ │ ├── targetpgadmin.png │ │ │ ├── targetserver.png │ │ │ ├── targetserverlogin.png │ │ │ ├── targetserveruserpass.png │ │ │ ├── targettablescreen.png │ │ │ ├── targetuserpassword.png │ │ │ ├── targtemetbase.png │ │ │ ├── tstconnection.png │ │ │ ├── userpassword.png │ │ │ └── validmodel.png │ │ └── index.mdx │ ├── PureStorageFlashArray │ │ ├── 02-PartnerInformation.mdx │ │ ├── 03-SolutionSummary.mdx │ │ ├── 04-ConfiguringPureStorageFlashArray.mdx │ │ ├── 05-UsingPureStorageFlashArray.mdx │ │ ├── 06-CertificationEnvironment.mdx │ │ ├── 07-SupportandLoggingDetails.mdx │ │ ├── Images │ │ │ ├── FlashArrayHardwareRequirements.png │ │ │ ├── PartnerProgram.jpg.png │ │ │ └── PureStorageSolutionSummary.png │ │ └── index.mdx │ ├── QuestToadEdge │ │ ├── 02-PartnerInformation.mdx │ │ ├── 03-SolutionSummary.mdx │ │ ├── 04-ConfiguringQuestToadEdge.mdx │ │ ├── 05-UsingQuestToadEdge.mdx │ │ ├── 06-CertificationEnvironment.mdx │ │ ├── Images │ │ │ ├── BasicFunctionality.png │ │ │ ├── ConnectButton.png │ │ │ ├── CustomersTable.png │ │ │ ├── DataTab.png │ │ │ ├── EDBPartnerProgram.png │ │ │ ├── EPASConfiguration.png │ │ │ ├── ExtendedConfiguration.png │ │ │ ├── OpenSQLEditor.png │ │ │ ├── ScriptTab.png │ │ │ └── ToadEdgeUpdatedSolutionSummary.png │ │ └── index.mdx │ ├── RepostorDataProtectorforPostgreSQL │ │ ├── 02-PartnerInformation.mdx │ │ ├── 03-SolutionSummary.mdx │ │ ├── 04-ConfiguringRepostorDataProtectorforPostgreSQL.mdx │ │ ├── 05-UsingRepostorDataProtectorforPostgreSQL.mdx │ │ ├── 06-CertificationEnvironment.mdx │ │ ├── Images │ │ │ ├── AvailableBackups.png │ │ │ ├── DatabaseLevelBackup.png │ │ │ ├── InstanceLevelBackup.png │ │ │ ├── InstanceRestore.png │ │ │ ├── PartnerProgram.png │ │ │ ├── QueryofAvailableInstanceBackups.png │ │ │ ├── RedirectedRestore.png │ │ │ ├── RepostorSolutionSummary.png │ │ │ └── RestoreofDatabaseLevelBackup.png │ │ └── index.mdx │ ├── SIBVisionsVisionX │ │ ├── 02-PartnerInformation.mdx │ │ ├── 03-SolutionSummary.mdx │ │ ├── 04-ConfiguringSIBVisionsVisionX.mdx │ │ ├── 05-UsingSIBVisionsVisionX.mdx │ │ ├── 06-CertificationEnvironment.mdx │ │ ├── Images │ │ │ ├── FMBMigration1.png │ │ │ ├── FMBMigration10.png │ │ │ ├── FMBMigration11.png │ │ │ ├── FMBMigration12.png │ │ │ ├── FMBMigration13.png │ │ │ ├── FMBMigration14.png │ │ │ ├── FMBMigration15.png │ │ │ ├── FMBMigration16.png │ │ │ ├── FMBMigration17.png │ │ │ ├── FMBMigration18.png │ │ │ ├── FMBMigration19.png │ │ │ ├── FMBMigration2.png │ │ │ ├── FMBMigration20.png │ │ │ ├── FMBMigration21.png │ │ │ ├── FMBMigration22.png │ │ │ ├── FMBMigration23.png │ │ │ ├── FMBMigration24.png │ │ │ ├── FMBMigration25.png │ │ │ ├── FMBMigration26.png │ │ │ ├── FMBMigration27.png │ │ │ ├── FMBMigration28.png │ │ │ ├── FMBMigration29.png │ │ │ ├── FMBMigration3.png │ │ │ ├── FMBMigration30.png │ │ │ ├── FMBMigration31.png │ │ │ ├── FMBMigration32.png │ │ │ ├── FMBMigration33.png │ │ │ ├── FMBMigration34.png │ │ │ ├── FMBMigration35.png │ │ │ ├── FMBMigration36.png │ │ │ ├── FMBMigration37.png │ │ │ ├── FMBMigration4.png │ │ │ ├── FMBMigration5.png │ │ │ ├── FMBMigration6.png │ │ │ ├── FMBMigration7.png │ │ │ ├── FMBMigration8.png │ │ │ ├── FMBMigration9.png │ │ │ ├── ImportExport11.png │ │ │ ├── ImportExport24.png │ │ │ ├── ImportExport25.png │ │ │ ├── ImportExport26.png │ │ │ ├── ImportExport27.png │ │ │ ├── ImportExport28.png │ │ │ ├── ImportExport29.png │ │ │ ├── ImportExport30.png │ │ │ ├── ImportExport31.png │ │ │ ├── ImportExport32.png │ │ │ ├── ImportExport33.png │ │ │ ├── ImportExport34.png │ │ │ ├── ImportExport35.png │ │ │ ├── ImportExport36.png │ │ │ ├── ImportExport37.png │ │ │ ├── ImportExport38.png │ │ │ ├── ImportExport39.png │ │ │ ├── ImportExport4.png │ │ │ ├── ImportExport5.png │ │ │ ├── ImportExport6.png │ │ │ ├── ImportExport8.png │ │ │ ├── PartnerProgram.jpg.png │ │ │ └── system-architecture-application.png │ │ └── index.mdx │ ├── ThalesCipherTrustManager │ │ ├── 02-PartnerInformation.mdx │ │ ├── 03-SolutionSummary.mdx │ │ ├── 04-ConfiguringThalesCipherTrustManager.mdx │ │ ├── 05-UsingThalesCipherTrustManager.mdx │ │ ├── 06-CertificationEnvironment.mdx │ │ ├── 07-SupportandLogging.mdx │ │ ├── Images │ │ │ ├── AddKey.png │ │ │ ├── CreateNewRegistrationTokenCA.png │ │ │ ├── CreateNewRegistrationTokenCopyToken.png │ │ │ ├── CreateNewRegistrationTokenName.png │ │ │ ├── CreateNewRegistrationTokenSelectProfile.png │ │ │ ├── GeneratedKey.png │ │ │ ├── KeyDetails.png │ │ │ ├── KeyID.png │ │ │ ├── KeyMainPage.png │ │ │ ├── PYKMIPconffile.png │ │ │ ├── PartnerProgram.jpg.png │ │ │ ├── ThalesCheckKeys.png │ │ │ ├── ThalesCipherTrustAddUser.png │ │ │ ├── ThalesCipherTrustCACert.png │ │ │ ├── ThalesCipherTrustLoginScreen.png │ │ │ ├── ThalesCipherTrustManagerAddClientProfile.png │ │ │ ├── ThalesCipherTrustandEDBSolutionSummaryImage.png │ │ │ ├── ThalesDownloadCerts.png │ │ │ ├── ThalesRecords.png │ │ │ ├── ThalesRegistrationClient.png │ │ │ └── ThalesSolutionSummary.png │ │ └── index.mdx │ ├── ThalesCipherTrustTransparentEncryption │ │ ├── 02-PartnerInformation.mdx │ │ ├── 03-SolutionSummary.mdx │ │ ├── 04-ConfiguringThalesCipherTrustTransparentEncryption.mdx │ │ ├── 05-UsingThalesCipherTrustTransparentEncryption.mdx │ │ ├── 06-CertificationEnvironment.mdx │ │ ├── 07-Appendix.mdx │ │ ├── Images │ │ │ ├── CipherTrustManager.png │ │ │ ├── ConfiguringCipherTrustManager.png │ │ │ ├── CreatePolicies1.png │ │ │ ├── CreatePolicies2.png │ │ │ ├── CreatePolicies3.png │ │ │ ├── CreatePolicies4.png │ │ │ ├── CreateUserSets1.png │ │ │ ├── CreateUserSets2.png │ │ │ ├── CreateUserSets3.png │ │ │ ├── EDBPostgresExtendedwithBDRAlwaysOn.png │ │ │ ├── GreenLogo.jpg │ │ │ ├── ImplementingCTE.png │ │ │ ├── InstallingCTEAgent.png │ │ │ ├── PartnerProgram.jpg.png │ │ │ ├── PostgresHostRepository.png │ │ │ ├── SampleUserScenarios1.png │ │ │ ├── SampleUserScenarios2.png │ │ │ ├── SampleUserScenarios3.png │ │ │ ├── SampleUserScenarios4.png │ │ │ ├── SolutionSummary.jpg.png │ │ │ └── UsingCTE.png │ │ └── index.mdx │ └── VeritasNetBackupforPostgreSQL │ │ ├── 02-PartnerInformation.mdx │ │ ├── 03-SolutionSummary.mdx │ │ ├── 04-ConfiguringVeritasNetBackupforPostgreSQL.mdx │ │ ├── 05-UsingVeritasNetBackupForPostgreSQL.mdx │ │ ├── 06-CertificationEnvironment.mdx │ │ ├── Images │ │ ├── ArchitectureUpdate4.png │ │ ├── BackupQuery.png │ │ ├── EDBPartnerProgram.png │ │ ├── NetBackupAdminConsole.png │ │ ├── NetBackupDataPolicy1.png │ │ ├── NetBackupDataPolicy2.png │ │ ├── NetBackupDataPolicy3.png │ │ └── NetBackupDataPolicy4.png │ │ └── index.mdx ├── pg_extensions │ ├── advanced_storage_pack │ │ ├── configuring.mdx │ │ ├── index.mdx │ │ ├── installing.mdx │ │ ├── rel_notes │ │ │ ├── asp_1.0.0_rel_notes.mdx │ │ │ ├── asp_1.2.1_rel_notes.mdx │ │ │ ├── asp_1.3.0_rel_notes.mdx │ │ │ ├── asp_1.4.0_rel_notes.mdx │ │ │ ├── index.mdx │ │ │ └── src │ │ │ │ ├── meta.yml │ │ │ │ ├── relnote_1.3.0.yml │ │ │ │ └── relnote_1.4.0.yml │ │ └── using.mdx │ ├── apache_age │ │ ├── configuring.mdx │ │ ├── index.mdx │ │ ├── installing.mdx │ │ ├── rel_notes │ │ │ ├── apache_age_1.5.0_rel_notes.mdx │ │ │ └── index.mdx │ │ └── using.mdx │ ├── edb_job_scheduler │ │ ├── configuring.mdx │ │ ├── index.mdx │ │ └── user_api.mdx │ ├── edb_stat_monitor │ │ ├── about.mdx │ │ ├── configuring.mdx │ │ ├── features.mdx │ │ ├── index.mdx │ │ ├── installing.mdx │ │ ├── parameters.mdx │ │ ├── rel_notes │ │ │ ├── edb_stat_monitor_2.1.0_rel_notes.mdx │ │ │ ├── index.mdx │ │ │ └── src │ │ │ │ ├── edb_stat_monitor_2.1.0.yml │ │ │ │ └── meta.yml │ │ └── using.mdx │ ├── extensiondata.json │ ├── extensionrefs.json │ ├── index.mdx │ ├── index.mdx.in │ ├── ldap_sync │ │ ├── configuring.mdx │ │ ├── index.mdx │ │ ├── installing.mdx │ │ ├── rel_notes │ │ │ ├── index.mdx │ │ │ └── ldap_sync_1.0.0_rel_notes.mdx │ │ └── using.mdx │ ├── otel │ │ ├── configuring.mdx │ │ ├── index.mdx │ │ ├── installing.mdx │ │ ├── rel_notes │ │ │ ├── edb_otel_1.0.0_rel_notes.mdx │ │ │ ├── edb_otel_2.0.0_rel_notes.mdx │ │ │ └── index.mdx │ │ ├── uninstalling.mdx │ │ ├── upgrading.mdx │ │ └── using.mdx │ ├── pg_anonymizer │ │ ├── configuring.mdx │ │ ├── index.mdx │ │ ├── installing.mdx │ │ ├── rel_notes │ │ │ ├── index.mdx │ │ │ └── pg_anonymizer_2.3.0_rel_notes.mdx │ │ └── using.mdx │ ├── pg_cron │ │ ├── configuring.mdx │ │ ├── index.mdx │ │ ├── installing.mdx │ │ ├── rel_notes │ │ │ ├── index.mdx │ │ │ └── pg_cron_1.6.4_rel_notes.mdx │ │ └── using.mdx │ ├── pg_failover_slots │ │ ├── configuring.mdx │ │ ├── index.mdx │ │ ├── installing.mdx │ │ ├── rel_notes │ │ │ ├── index.mdx │ │ │ ├── pg_failover_slots_1.0.0_rel_notes.mdx │ │ │ ├── pg_failover_slots_1.0.1_rel_notes.mdx │ │ │ └── pg_failover_slots_1.1.0_rel_notes.mdx │ │ └── using.mdx │ ├── pg_squeeze │ │ ├── configuring.mdx │ │ ├── index.mdx │ │ ├── installing.mdx │ │ ├── rel_notes │ │ │ ├── index.mdx │ │ │ ├── pg_squeeze_1.6.1_rel_notes.mdx │ │ │ ├── pg_squeeze_1.7.0_rel_notes.mdx │ │ │ └── pg_squeeze_1.8.0_rel_notes.mdx │ │ └── using.mdx │ ├── pg_tuner │ │ ├── configuring.mdx │ │ ├── index.mdx │ │ ├── installing.mdx │ │ ├── rel_notes │ │ │ ├── index.mdx │ │ │ ├── pg_tuner_1.0.0_rel_notes.mdx │ │ │ ├── pg_tuner_1.1.0_rel_notes.mdx │ │ │ └── pg_tuner_1.3.0_rel_notes.mdx │ │ └── using.mdx │ ├── pgaudit │ │ ├── configuring.mdx │ │ ├── index.mdx │ │ ├── installing.mdx │ │ ├── rel_notes │ │ │ ├── index.mdx │ │ │ └── pgaudit_17_rel_notes.mdx │ │ └── using.mdx │ ├── pgrouting │ │ ├── configuring.mdx │ │ ├── index.mdx │ │ ├── installing.mdx │ │ ├── rel_notes │ │ │ ├── index.mdx │ │ │ └── pgrouting_3.7.0_rel_notes.mdx │ │ └── using.mdx │ ├── pgtt │ │ ├── configuring.mdx │ │ ├── index.mdx │ │ ├── installing.mdx │ │ ├── rel_notes │ │ │ ├── index.mdx │ │ │ └── pgtt_4.0_rel_notes.mdx │ │ └── using.mdx │ ├── pgvector │ │ ├── configuring.mdx │ │ ├── index.mdx │ │ ├── installing.mdx │ │ ├── rel_notes │ │ │ ├── index.mdx │ │ │ └── pgvector_0.8.0_rel_notes.mdx │ │ └── using.mdx │ ├── query_advisor │ │ ├── configuring.mdx │ │ ├── index.mdx │ │ ├── installing.mdx │ │ ├── rel_notes │ │ │ ├── index.mdx │ │ │ ├── query_advisor_1.0.0_rel_notes.mdx │ │ │ ├── query_advisor_1.1.1_rel_notes.mdx │ │ │ ├── query_advisor_1.2.0_rel_notes.mdx │ │ │ ├── query_advisor_1.2.1_rel_notes.mdx │ │ │ └── query_advisor_1.2.2_rel_notes.mdx │ │ └── using.mdx │ ├── spl_check │ │ ├── configuring.mdx │ │ ├── index.mdx │ │ ├── installing.mdx │ │ └── using │ │ │ ├── dependency_list.mdx │ │ │ ├── index.mdx │ │ │ ├── pragma.mdx │ │ │ ├── profiler.mdx │ │ │ └── tracer.mdx │ ├── sqlprofiler │ │ ├── configuring.mdx │ │ ├── index.mdx │ │ ├── installing.mdx │ │ ├── rel_notes │ │ │ ├── index.mdx │ │ │ ├── sql_profiler_4.1.3_rel_notes.mdx │ │ │ └── sql_profiler_4.2.0_rel_notes.mdx │ │ ├── uninstalling.mdx │ │ ├── upgrading.mdx │ │ └── using.mdx │ ├── system_stats │ │ ├── configuring.mdx │ │ ├── index.mdx │ │ ├── installing.mdx │ │ └── using.mdx │ ├── wait_states │ │ ├── configuring.mdx │ │ ├── index.mdx │ │ ├── installing.mdx │ │ ├── rel_notes │ │ │ ├── index.mdx │ │ │ ├── wait_states_1.2_rel_notes.mdx │ │ │ ├── wait_states_1.3_rel_notes.mdx │ │ │ ├── wait_states_1.4_rel_notes.mdx │ │ │ ├── wait_states_1.5.1_rel_notes.mdx │ │ │ └── wait_states_1.5_rel_notes.mdx │ │ └── using.mdx │ └── wal2json │ │ ├── configuring.mdx │ │ ├── index.mdx │ │ ├── installing.mdx │ │ └── using.mdx ├── playground │ └── 1 │ │ ├── 01_examples │ │ ├── admonitions.mdx │ │ ├── code-blocks.mdx │ │ ├── directory_defaults │ │ │ ├── index.mdx │ │ │ ├── sibling.mdx │ │ │ └── sub_folder │ │ │ │ ├── index.mdx │ │ │ │ └── sibling.mdx │ │ ├── expression-replacement.mdx │ │ ├── footnotetest.mdx │ │ ├── icons.mdx │ │ ├── images │ │ │ └── building_Razvan_Mirel.jpeg │ │ ├── index.mdx │ │ ├── link-test.mdx │ │ ├── link-tests │ │ │ ├── index.mdx │ │ │ └── link.mdx │ │ ├── link.mdx │ │ ├── navigation │ │ │ ├── a.mdx │ │ │ ├── b.mdx │ │ │ ├── c.mdx │ │ │ ├── directory │ │ │ │ └── index.mdx │ │ │ └── index.mdx │ │ ├── no-title.mdx │ │ ├── redirects.mdx │ │ ├── summary.mdx │ │ └── tabs.mdx │ │ ├── index.mdx │ │ └── new_guide │ │ └── index.mdx ├── portal │ ├── index.mdx │ └── kubernetes │ │ ├── index.mdx │ │ └── learn │ │ ├── explained │ │ ├── for │ │ │ ├── cloud-architects.mdx │ │ │ ├── dbas.mdx │ │ │ ├── decision-makers.mdx │ │ │ ├── index.mdx │ │ │ ├── operations-support.mdx │ │ │ ├── platform-engineers.mdx │ │ │ ├── security-engineers.mdx │ │ │ ├── software-engineers.mdx │ │ │ └── sres.mdx │ │ ├── hybrid-manager │ │ │ ├── ha-dr-best-practices.mdx │ │ │ ├── index.mdx │ │ │ ├── manage-kubernetes-networking.mdx │ │ │ ├── minimum-required-specs.mdx │ │ │ ├── monitor-kubernetes-best-practices.mdx │ │ │ ├── storage-best-practices.mdx │ │ │ └── troubleshooting-best-practices.mdx │ │ ├── index.mdx │ │ ├── k8s-at-edb.mdx │ │ ├── k8s-in-hybrid-manager.mdx │ │ └── terminology.mdx │ │ ├── how-to │ │ ├── backup-kubernetes-pv.mdx │ │ ├── expand-kubernetes-storage.mdx │ │ ├── hybrid-manager │ │ │ ├── backup-hybrid-manager-configuration.mdx │ │ │ ├── index.mdx │ │ │ ├── monitor-hyrid-manager-cluster-state.mdx │ │ │ ├── monitor-resource-exhaustion.mdx │ │ │ ├── restart-hybrid-manager-components.mdx │ │ │ ├── set-cpu-memory-limits-db-nodes.mdx │ │ │ ├── troubleshoot-common-scenarios.mdx │ │ │ ├── troubleshoot-hybrid-manager-components.mdx │ │ │ └── use-edb-observability-stack.mdx │ │ ├── index.mdx │ │ ├── manage-kubernetes-networking.mdx │ │ ├── manage-kubernetes-storage.mdx │ │ ├── scale-kubernetes-clusters.mdx │ │ └── troubleshooting-on-kubernetes.mdx │ │ └── index.mdx ├── repos │ ├── getting_started │ │ ├── index.mdx │ │ ├── troubleshooting.mdx │ │ ├── with_cli │ │ │ ├── adding_edb_repositories.mdx │ │ │ ├── get_your_token.mdx │ │ │ ├── index.mdx │ │ │ └── install_named_package.mdx │ │ └── with_web │ │ │ ├── add_your_repository.mdx │ │ │ ├── get_your_token.mdx │ │ │ ├── images │ │ │ ├── step1.png │ │ │ └── step2.png │ │ │ ├── index.mdx │ │ │ └── install_package.mdx │ ├── index.mdx │ ├── migration │ │ ├── images │ │ │ └── step1.png │ │ └── index.mdx │ ├── reference │ │ ├── index.mdx │ │ ├── package_names.mdx │ │ └── repositories_by_name.mdx │ └── working_with_repos │ │ ├── building_local_mirrors.mdx │ │ ├── directly.mdx │ │ ├── images │ │ ├── download_repos.png │ │ ├── platforms_and_architectures.png │ │ └── repository_package_list.png │ │ ├── index.mdx │ │ ├── installing_airgapped.mdx │ │ └── integrating │ │ ├── artifactory.mdx │ │ └── index.mdx ├── security │ ├── advisories │ │ ├── cve.mdx.template │ │ ├── cve20074639.mdx │ │ ├── cve201910128.mdx │ │ ├── cve202331043.mdx │ │ ├── cve202341113.mdx │ │ ├── cve202341114.mdx │ │ ├── cve202341115.mdx │ │ ├── cve202341116.mdx │ │ ├── cve202341117.mdx │ │ ├── cve202341118.mdx │ │ ├── cve202341119.mdx │ │ ├── cve202341120.mdx │ │ ├── cve20244545.mdx │ │ ├── cve20252506.mdx │ │ ├── index.mdx │ │ └── table.template │ ├── assessments │ │ ├── cve-2020-10531.mdx │ │ ├── cve-2024-0985.mdx │ │ ├── cve-2024-1597.mdx │ │ ├── cve-2024-4317.mdx │ │ ├── cve-2024-7348.mdx │ │ ├── cve-2025-1094.mdx │ │ ├── cve-2025-2291.mdx │ │ ├── cve-2025-46801.mdx │ │ ├── cve-2025-8714.mdx │ │ ├── cve-2025-8715.mdx │ │ └── index.mdx │ ├── index.mdx │ ├── templates │ │ ├── advisoriesindex.njs │ │ ├── assessmentsindex.njs │ │ └── securityindex.njs │ └── vulnerability-disclosure-policy.mdx ├── supported-open-source │ ├── barman │ │ ├── index.mdx │ │ ├── pg-backup-api │ │ │ ├── 01-installation.mdx │ │ │ ├── 02-securing-pg-backup-api.mdx │ │ │ ├── 03-tasks.mdx │ │ │ └── index.mdx │ │ └── single-server-streaming │ │ │ ├── index.mdx │ │ │ ├── step01-db-setup.mdx │ │ │ ├── step02-backup-setup.mdx │ │ │ ├── step03-backup.mdx │ │ │ └── step04-restore.mdx │ ├── cloud_native_pg │ │ └── index.mdx │ ├── patroni │ │ ├── .gitignore │ │ ├── cluster_management.mdx │ │ ├── debian11_quick_start.mdx │ │ ├── examples │ │ │ ├── debian11 │ │ │ │ └── Vagrantfile │ │ │ └── rhel8 │ │ │ │ └── Vagrantfile │ │ ├── images │ │ │ ├── etcd-demo.excalidraw │ │ │ ├── etcd-demo.png │ │ │ ├── supported-arch.excalidraw │ │ │ └── supported-arch.png │ │ ├── index.mdx │ │ ├── installing_etcd.mdx │ │ ├── installing_patroni.mdx │ │ ├── installing_with_TPA.mdx │ │ ├── migrating.mdx │ │ ├── rhel8_quick_start.mdx │ │ └── tips.mdx │ ├── pgadmin │ │ └── index.mdx │ ├── pgbackrest │ │ ├── 02-installation.mdx │ │ ├── 03-quick_start.mdx │ │ ├── 04-recommended_settings.mdx │ │ ├── 05-retention_policy.mdx │ │ ├── 06-use_case_1.mdx │ │ ├── 07-use_case_2.mdx │ │ ├── 08-multiple-repositories.mdx │ │ ├── 09-tls_server.mdx │ │ ├── 10-non-superuser.mdx │ │ ├── 98-appendix.mdx │ │ ├── 99-faq.mdx │ │ ├── images │ │ │ ├── use_case_1-01.png │ │ │ └── use_case_2-01.png │ │ └── index.mdx │ ├── pglogical2 │ │ ├── configuration-options.mdx │ │ ├── conflicts.mdx │ │ ├── index.mdx │ │ ├── installation.mdx │ │ ├── limitations-and-restrictions.mdx │ │ ├── release-notes.mdx │ │ ├── requirements.mdx │ │ ├── synchronous-replication.mdx │ │ └── usage.mdx │ ├── postgresql │ │ ├── index.mdx │ │ ├── installing │ │ │ ├── command_line_parameters.mdx │ │ │ ├── images │ │ │ │ ├── EDB_logo.png │ │ │ │ ├── Stackbuilder_welcome.png │ │ │ │ ├── _static │ │ │ │ │ └── edb.png │ │ │ │ ├── a_summary_window_displays_a_list_of_selected_packages.png │ │ │ │ ├── aug11_ad.png │ │ │ │ ├── change_program.png │ │ │ │ ├── check_the_box_to_add_new_module.png │ │ │ │ ├── checkbox_module.png │ │ │ │ ├── data_directory.png │ │ │ │ ├── download_completes.png │ │ │ │ ├── download_process_is_complete.png │ │ │ │ ├── edb.png │ │ │ │ ├── edb_logo.svg │ │ │ │ ├── edblogo.png │ │ │ │ ├── image2.png │ │ │ │ ├── installation_complete.png │ │ │ │ ├── installation_directory.png │ │ │ │ ├── installing.png │ │ │ │ ├── mac_uninstallation_completed.png │ │ │ │ ├── module_selection.png │ │ │ │ ├── password.png │ │ │ │ ├── port_Aug11.png │ │ │ │ ├── preinstallation.png │ │ │ │ ├── ready_to_install.png │ │ │ │ ├── remove_the_entire_application_or_components.png │ │ │ │ ├── select_components.png │ │ │ │ ├── select_the_components_to_uninstall.png │ │ │ │ ├── selecting_the_components_to_uninstall.png │ │ │ │ ├── stack_builder_welcome.png │ │ │ │ ├── summary_of_selected_packages.png │ │ │ │ ├── the_Stack_Builder_module_selection_window.png │ │ │ │ ├── the_advanced_options_dialog.png │ │ │ │ ├── the_data_directory_dialog.png │ │ │ │ ├── the_installation_directory_dialog.png │ │ │ │ ├── the_installing_dialog.png │ │ │ │ ├── the_password_dialog.png │ │ │ │ ├── the_port_dialog.png │ │ │ │ ├── the_preinstallation_summary_dialog.png │ │ │ │ ├── the_proxy_servers_dialog.png │ │ │ │ ├── the_ready_to_install_dialog.png │ │ │ │ ├── the_select_components_dialog.png │ │ │ │ ├── the_stack_builder_welcome_window.png │ │ │ │ ├── the_uninstall_or_change_a_program_dialog.png │ │ │ │ ├── uninstallation_confirmation.png │ │ │ │ ├── uninstallationcomplete.png │ │ │ │ ├── uninstalling_postgreSQL.png │ │ │ │ ├── uninstalling_postgreSQL_comfirmation.png │ │ │ │ ├── uninstallingpostgres1.png │ │ │ │ └── welcome.png │ │ │ ├── index.mdx │ │ │ ├── linux_arm64 │ │ │ │ ├── index.mdx │ │ │ │ ├── postgresql_debian_12.mdx │ │ │ │ └── postgresql_rhel_9.mdx │ │ │ ├── linux_ppc64le │ │ │ │ ├── index.mdx │ │ │ │ ├── postgresql_rhel_8.mdx │ │ │ │ ├── postgresql_rhel_9.mdx │ │ │ │ └── postgresql_sles_15.mdx │ │ │ ├── linux_x86_64 │ │ │ │ ├── index.mdx │ │ │ │ ├── postgresql_debian_11.mdx │ │ │ │ ├── postgresql_debian_12.mdx │ │ │ │ ├── postgresql_other_linux_8.mdx │ │ │ │ ├── postgresql_other_linux_9.mdx │ │ │ │ ├── postgresql_rhel_8.mdx │ │ │ │ ├── postgresql_rhel_9.mdx │ │ │ │ ├── postgresql_sles_15.mdx │ │ │ │ ├── postgresql_ubuntu_22.mdx │ │ │ │ └── postgresql_ubuntu_24.mdx │ │ │ ├── macos.mdx │ │ │ ├── requirements.mdx │ │ │ ├── using_stackbuilder.mdx │ │ │ └── windows.mdx │ │ ├── overview.mdx │ │ ├── troubleshooting.mdx │ │ └── uninstalling.mdx │ ├── postgrest │ │ ├── configuring.mdx │ │ ├── index.mdx │ │ ├── installing.mdx │ │ └── using.mdx │ └── warehousepg │ │ ├── edbpggpsupp │ │ ├── index.mdx │ │ ├── installing.mdx │ │ └── resources.mdx │ │ ├── index.mdx │ │ └── warehousepg │ │ └── index.mdx └── tools │ ├── agent │ ├── agent_ref.mdx │ ├── index.mdx │ ├── installing │ │ └── index.mdx │ ├── stand_alone │ │ ├── index.mdx │ │ ├── sa_agent_os_user.mdx │ │ ├── sa_config_agent_airgapped.mdx │ │ ├── sa_config_agent_network.mdx │ │ └── sa_prepare_database.mdx │ └── usage_reporting │ │ └── index.mdx │ ├── alteruser_utility │ └── index.mdx │ ├── edb_sqlpatch │ └── index.mdx │ └── index.mdx ├── ai-content ├── dev-sources.sample ├── docker ├── docker-compose.build-pdf.yaml ├── docker-compose.check-links.yaml ├── docker-compose.install-template.yaml ├── docker-compose.quickstart.yaml └── images │ ├── Dockerfile.install-template │ ├── Dockerfile.pdf-builder │ └── Dockerfile.quickstart ├── docs-for-docs ├── README.md ├── agreements │ ├── branch-and-release.md │ ├── doc-release-tag-format.md │ ├── product-version-fork.md │ ├── release-notes-guidelines.md │ └── screenshot_policy.md ├── how-tos │ ├── avoid-breaking-links.md │ ├── markdown-tips.md │ └── sync-cnp-docs.md └── overviews │ ├── legacy-redirects │ └── README.md │ └── search │ └── README.md ├── env.development.example ├── gatsby-browser.js ├── gatsby-config.js ├── gatsby-node.js ├── gatsby-ssr.js ├── icons-pkg ├── dist │ ├── color.cjs │ ├── color.mjs │ ├── edb_logos.cjs │ ├── edb_logos.mjs │ ├── flags.cjs │ ├── flags.mjs │ ├── index.cjs │ ├── index.mjs │ ├── logos.cjs │ └── logos.mjs ├── ignore.txt └── package.json ├── install_template ├── .gitignore ├── .prettierrc.json ├── README.md ├── config.yaml ├── deploy.mjs ├── lib │ └── config.mjs ├── main.mjs ├── package-lock.json ├── package.json ├── renders │ └── .gitkeep └── templates │ ├── platformBase │ ├── _deploymentConstants.njk │ ├── _epasVersionInPackageName.njk │ ├── _epasinstalldiffserver.njk │ ├── _epasinstallsameserver.njk │ ├── _javainstall.njk │ ├── _login.njk │ ├── almalinux-8-or-rocky-linux-8.njk │ ├── almalinux-9-or-rocky-linux-9.njk │ ├── arm64_index.njk │ ├── base.njk │ ├── centos-7.njk │ ├── debian-10.njk │ ├── debian-11.njk │ ├── debian-12.njk │ ├── debian-9.njk │ ├── debian.njk │ ├── index.njk │ ├── ppc64le_index.njk │ ├── redhat-family.njk │ ├── rhel-7-or-ol-7.njk │ ├── rhel-8-or-ol-8.njk │ ├── rhel-9-or-ol-9.njk │ ├── sles-15.njk │ ├── ubuntu-18.04.njk │ ├── ubuntu-20.04.njk │ ├── ubuntu-22.04.njk │ ├── ubuntu-24.04.njk │ ├── ubuntu.njk │ └── x86_64_index.njk │ └── products │ ├── edb*plus │ ├── almalinux-8-or-rocky-linux-8.njk │ ├── almalinux-9-or-rocky-linux-9.njk │ ├── arm64_index.njk │ ├── base.njk │ ├── debian-11.njk │ ├── debian-12-arm64.njk │ ├── debian-12.njk │ ├── index.njk │ ├── ppc64le_index.njk │ ├── rhel-8-or-ol-8.njk │ ├── rhel-8_ppc64le.njk │ ├── rhel-9-or-ol-9.njk │ ├── rhel-9_arm64.njk │ ├── rhel-9_ppc64le.njk │ ├── sles-15.njk │ ├── sles-15_ppc64le.njk │ ├── ubuntu-22.04.njk │ ├── ubuntu-24.04.njk │ └── x86_64_index.njk │ ├── edb-data-migration-service-agent │ ├── almalinux-8-or-rocky-linux-8.njk │ ├── almalinux-9-or-rocky-linux-9.njk │ ├── arm64_index.njk │ ├── base.njk │ ├── debian-11.njk │ ├── debian-12-arm64.njk │ ├── debian-12.njk │ ├── debian.njk │ ├── index.njk │ ├── ppc64le_index.njk │ ├── rhel-8-or-ol-8.njk │ ├── rhel-9-or-ol-9.njk │ ├── sles-15.njk │ ├── ubuntu-22.04.njk │ ├── ubuntu-24.0.njk │ ├── ubuntu-24.04.njk │ ├── ubuntu.njk │ └── x86_64_index.njk │ ├── edb-data-migration-service-reader │ ├── almalinux-8-or-rocky-linux-8.njk │ ├── almalinux-9-or-rocky-linux-9.njk │ ├── arm64_index.njk │ ├── base.njk │ ├── debian-11.njk │ ├── debian-12-arm64.njk │ ├── debian-12.njk │ ├── debian.njk │ ├── index.njk │ ├── ppc64le_index.njk │ ├── rhel-8-or-ol-8.njk │ ├── rhel-9-or-ol-9.njk │ ├── sles-15.njk │ ├── ubuntu-22.04.njk │ ├── ubuntu-24.0.njk │ ├── ubuntu-24.04.njk │ ├── ubuntu.njk │ └── x86_64_index.njk │ ├── edb-data-migration-service-writer │ ├── almalinux-8-or-rocky-linux-8.njk │ ├── almalinux-9-or-rocky-linux-9.njk │ ├── arm64_index.njk │ ├── base.njk │ ├── debian-11.njk │ ├── debian-12-arm64.njk │ ├── debian-12.njk │ ├── debian.njk │ ├── index.njk │ ├── ppc64le_index.njk │ ├── rhel-8-or-ol-8.njk │ ├── rhel-9-or-ol-9.njk │ ├── sles-15.njk │ ├── ubuntu-22.04.njk │ ├── ubuntu-24.04.njk │ ├── ubuntu.njk │ └── x86_64_index.njk │ ├── edb-jdbc-connector │ ├── almalinux-8-or-rocky-linux-8.njk │ ├── almalinux-9-or-rocky-linux-9.njk │ ├── arm64_index.njk │ ├── base.njk │ ├── debian-11.njk │ ├── debian-12-arm64.njk │ ├── debian-12.njk │ ├── index.njk │ ├── ppc64le_index.njk │ ├── rhel-8-or-ol-8.njk │ ├── rhel-8_ppc64le.njk │ ├── rhel-9-or-ol-9.njk │ ├── rhel-9_arm64.njk │ ├── rhel-9_ppc64le.njk │ ├── sles-15.njk │ ├── sles-15_ppc64le.njk │ ├── sles.njk │ ├── ubuntu-22.04.njk │ ├── ubuntu-24.04.njk │ └── x86_64_index.njk │ ├── edb-ocl-connector │ ├── almalinux-8-or-rocky-linux-8.njk │ ├── almalinux-9-or-rocky-linux-9.njk │ ├── arm64_index.njk │ ├── base.njk │ ├── debian-11.njk │ ├── debian-12-arm64.njk │ ├── debian-12.njk │ ├── debian.njk │ ├── index.njk │ ├── ppc64le_index.njk │ ├── rhel-8-or-ol-8.njk │ ├── rhel-8_ppc64le.njk │ ├── rhel-9-or-ol-9.njk │ ├── rhel-9_arm64.njk │ ├── rhel-9_ppc64le.njk │ ├── sles-15.njk │ ├── sles-15_ppc64le.njk │ ├── ubuntu-22.04.njk │ ├── ubuntu-24.04.njk │ ├── ubuntu.njk │ └── x86_64_index.njk │ ├── edb-odbc-connector │ ├── almalinux-8-or-rocky-linux-8.njk │ ├── almalinux-9-or-rocky-linux-9.njk │ ├── arm64_index.njk │ ├── base.njk │ ├── debian-11.njk │ ├── debian-12-arm64.njk │ ├── debian-12.njk │ ├── debian.njk │ ├── index.njk │ ├── ppc64le_index.njk │ ├── rhel-8-or-ol-8.njk │ ├── rhel-8_ppc64le.njk │ ├── rhel-9-or-ol-9.njk │ ├── rhel-9_arm64.njk │ ├── rhel-9_ppc64le.njk │ ├── sles-15.njk │ ├── sles-15_ppc64le.njk │ ├── ubuntu-22.04.njk │ ├── ubuntu-24.04.njk │ ├── ubuntu.njk │ └── x86_64_index.njk │ ├── edb-pgbouncer │ ├── almalinux-8-or-rocky-linux-8.njk │ ├── almalinux-9-or-rocky-linux-9.njk │ ├── arm64_index.njk │ ├── base.njk │ ├── debian-11.njk │ ├── debian-12-arm64.njk │ ├── debian-12.njk │ ├── index.njk │ ├── ppc64le_index.njk │ ├── rhel-8-or-ol-8.njk │ ├── rhel-8_ppc64le.njk │ ├── rhel-9-or-ol-9.njk │ ├── rhel-9_arm64.njk │ ├── rhel-9_ppc64le.njk │ ├── sles-15.njk │ ├── sles-15_ppc64le.njk │ ├── ubuntu-22.04.njk │ ├── ubuntu-24.04.njk │ └── x86_64_index.njk │ ├── edb-pgpool-ii-extensions │ ├── almalinux-8-or-rocky-linux-8.njk │ ├── almalinux-9-or-rocky-linux-9.njk │ ├── arm64_index.njk │ ├── base.njk │ ├── debian-11.njk │ ├── debian-12-arm64.njk │ ├── debian-12.njk │ ├── index.njk │ ├── ppc64le_index.njk │ ├── rhel-8-or-ol-8.njk │ ├── rhel-8_ppc64le.njk │ ├── rhel-9-or-ol-9.njk │ ├── rhel-9_arm64.njk │ ├── rhel-9_ppc64le.njk │ ├── sles-15.njk │ ├── sles-15_ppc64le.njk │ ├── ubuntu-22.04.njk │ ├── ubuntu-24.04.njk │ └── x86_64_index.njk │ ├── edb-pgpool-ii │ ├── almalinux-8-or-rocky-linux-8.njk │ ├── almalinux-9-or-rocky-linux-9.njk │ ├── arm64_index.njk │ ├── base.njk │ ├── debian-11.njk │ ├── debian-12-arm64.njk │ ├── debian-12.njk │ ├── debian.njk │ ├── index.njk │ ├── ppc64le_index.njk │ ├── rhel-8-or-ol-8.njk │ ├── rhel-8_ppc64le.njk │ ├── rhel-9-or-ol-9.njk │ ├── rhel-9_arm64.njk │ ├── rhel-9_ppc64le.njk │ ├── sles-15.njk │ ├── sles-15_ppc64le.njk │ ├── ubuntu-22.04.njk │ ├── ubuntu-24.04.njk │ ├── ubuntu.njk │ └── x86_64_index.njk │ ├── edb-postgres-advanced-server │ ├── _centos-rhel-installcommand.njk │ ├── almalinux-8-or-rocky-linux-8.njk │ ├── almalinux-9-or-rocky-linux-9.njk │ ├── arm64_index.njk │ ├── base.njk │ ├── debian-11.njk │ ├── debian-12-arm64.njk │ ├── debian-12.njk │ ├── debian-9.njk │ ├── debian.njk │ ├── index.njk │ ├── ppc64le_index.njk │ ├── rhel-8-or-ol-8.njk │ ├── rhel-8_ppc64le.njk │ ├── rhel-9-or-ol-9.njk │ ├── rhel-9_arm64.njk │ ├── rhel-9_ppc64le.njk │ ├── sles-15.njk │ ├── sles-15_ppc64le.njk │ ├── ubuntu-22.04.njk │ ├── ubuntu-24.04.njk │ ├── ubuntu.njk │ ├── v15_index.njk │ └── x86_64_index.njk │ ├── edb-postgres-extended-server │ ├── almalinux-8-or-rocky-linux-8.njk │ ├── almalinux-9-or-rocky-linux-9.njk │ ├── arm64_index.njk │ ├── base.njk │ ├── debian-11.njk │ ├── debian-12-arm64.njk │ ├── debian-12.njk │ ├── debian-9.njk │ ├── debian.njk │ ├── index.njk │ ├── ppc64le_index.njk │ ├── rhel-8-or-ol-8.njk │ ├── rhel-8_ppc64le.njk │ ├── rhel-9-or-ol-9.njk │ ├── rhel-9_arm64.njk │ ├── rhel-9_ppc64le.njk │ ├── sles-15.njk │ ├── sles-15_ppc64le.njk │ ├── ubuntu-22.04.njk │ ├── ubuntu-24.04.njk │ ├── ubuntu.njk │ └── x86_64_index.njk │ ├── edb-tde-thales-rest-api-client │ ├── almalinux-8-or-rocky-linux-8.njk │ ├── almalinux-9-or-rocky-linux-9.njk │ ├── base.njk │ ├── debian-11.njk │ ├── debian-12.njk │ ├── debian.njk │ ├── index.njk │ ├── rhel-8-or-ol-8.njk │ ├── rhel-9-or-ol-9.njk │ ├── ubuntu-22.04.njk │ ├── ubuntu-24.04.njk │ ├── ubuntu.njk │ └── x86_64_index.njk │ ├── edb-transporter │ ├── almalinux-8-or-rocky-linux-8.njk │ ├── base.njk │ ├── centos-7.njk │ ├── debian-10.njk │ ├── debian-11.njk │ ├── debian-9.njk │ ├── debian.njk │ ├── index.njk │ ├── ppc64le_index.njk │ ├── rhel-7-or-ol-7.njk │ ├── rhel-8-or-ol-8.njk │ ├── sles-15.njk │ ├── sles-15_ppc64le.njk │ ├── ubuntu-18.04.njk │ ├── ubuntu-20.04.njk │ ├── ubuntu-22.04.njk │ ├── ubuntu.njk │ └── x86_64_index.njk │ ├── failover-manager │ ├── almalinux-8-or-rocky-linux-8.njk │ ├── almalinux-9-or-rocky-linux-9.njk │ ├── arm64_index.njk │ ├── base.njk │ ├── debian-11.njk │ ├── debian-12-arm64.njk │ ├── debian-12.njk │ ├── index.njk │ ├── ppc64le_index.njk │ ├── rhel-8-or-ol-8.njk │ ├── rhel-8_ppc64le.njk │ ├── rhel-9-or-ol-9.njk │ ├── rhel-9_arm64.njk │ ├── rhel-9_ppc64le.njk │ ├── sles-15.njk │ ├── sles-15_ppc64le.njk │ ├── ubuntu-22.04.njk │ ├── ubuntu-24.04.njk │ └── x86_64_index.njk │ ├── hadoop-foreign-data-wrapper │ ├── almalinux-8-or-rocky-linux-8.njk │ ├── almalinux-9-or-rocky-linux-9.njk │ ├── arm64_index.njk │ ├── base.njk │ ├── debian-11.njk │ ├── debian-12-arm64.njk │ ├── debian-12.njk │ ├── index.njk │ ├── ppc64le_index.njk │ ├── rhel-8-or-ol-8.njk │ ├── rhel-8_ppc64le.njk │ ├── rhel-9-or-ol-9.njk │ ├── rhel-9_arm64.njk │ ├── rhel-9_ppc64le.njk │ ├── sles-15.njk │ ├── sles-15_ppc64le.njk │ ├── ubuntu-22.04.njk │ ├── ubuntu-24.04.njk │ └── x86_64_index.njk │ ├── migration-toolkit │ ├── almalinux-8-or-rocky-linux-8.njk │ ├── almalinux-9-or-rocky-linux-9.njk │ ├── arm64_index.njk │ ├── base.njk │ ├── debian-11.njk │ ├── debian-12-arm64.njk │ ├── debian-12.njk │ ├── index.njk │ ├── ppc64le_index.njk │ ├── rhel-8-or-ol-8.njk │ ├── rhel-8_ppc64le.njk │ ├── rhel-9-or-ol-9.njk │ ├── rhel-9_arm64.njk │ ├── rhel-9_ppc64le.njk │ ├── sles-15.njk │ ├── sles-15_ppc64le.njk │ ├── ubuntu-22.04.njk │ ├── ubuntu-24.04.njk │ └── x86_64_index.njk │ ├── mongodb-foreign-data-wrapper │ ├── almalinux-8-or-rocky-linux-8.njk │ ├── almalinux-9-or-rocky-linux-9.njk │ ├── arm64_index.njk │ ├── base.njk │ ├── debian-11.njk │ ├── debian-12-arm64.njk │ ├── debian-12.njk │ ├── debian-9.njk │ ├── index.njk │ ├── ppc64le_index.njk │ ├── rhel-8-or-ol-8.njk │ ├── rhel-8_ppc64le.njk │ ├── rhel-9-or-ol-9.njk │ ├── rhel-9_arm64.njk │ ├── rhel-9_ppc64le.njk │ ├── sles-15.njk │ ├── sles-15_ppc64le.njk │ ├── ubuntu-22.04.njk │ ├── ubuntu-24.04.njk │ └── x86_64_index.njk │ ├── mysql-foreign-data-wrapper │ ├── almalinux-8-or-rocky-linux-8.njk │ ├── almalinux-9-or-rocky-linux-9.njk │ ├── arm64_index.njk │ ├── base.njk │ ├── debian-11.njk │ ├── debian-12-arm64.njk │ ├── debian-12.njk │ ├── index.njk │ ├── ppc64le_index.njk │ ├── rhel-8-or-ol-8.njk │ ├── rhel-8_ppc64le.njk │ ├── rhel-9-or-ol-9.njk │ ├── rhel-9_arm64.njk │ ├── rhel-9_ppc64le.njk │ ├── sles-15.njk │ ├── sles-15_ppc64le.njk │ ├── ubuntu-22.04.njk │ ├── ubuntu-24.04.njk │ └── x86_64_index.njk │ ├── postgis │ ├── _epasVersionInPostGISPackageName.njk │ ├── almalinux-8-or-rocky-linux-8.njk │ ├── almalinux-9-or-rocky-linux-9.njk │ ├── arm64_index.njk │ ├── base.njk │ ├── debian-11.njk │ ├── debian-12-arm64.njk │ ├── debian-12.njk │ ├── index.njk │ ├── ppc64le_index.njk │ ├── rhel-8-or-ol-8.njk │ ├── rhel-8_ppc64le.njk │ ├── rhel-9-or-ol-9.njk │ ├── rhel-9_arm64.njk │ ├── rhel-9_ppc64le.njk │ ├── sles-15.njk │ ├── sles-15_ppc64le.njk │ ├── ubuntu-22.04.njk │ ├── ubuntu-24.04.njk │ └── x86_64_index.njk │ ├── postgres-enterprise-manager-agent │ ├── almalinux-8-or-rocky-linux-8.njk │ ├── almalinux-9-or-rocky-linux-9.njk │ ├── arm64_index.njk │ ├── base.njk │ ├── debian-11.njk │ ├── debian-12-arm64.njk │ ├── debian-12.njk │ ├── index.njk │ ├── ppc64le_index.njk │ ├── rhel-8-or-ol-8.njk │ ├── rhel-8_ppc64le.njk │ ├── rhel-9-or-ol-9.njk │ ├── rhel-9_arm64.njk │ ├── rhel-9_ppc64le.njk │ ├── sles-15.njk │ ├── sles-15_ppc64le.njk │ ├── ubuntu-22.04.njk │ ├── ubuntu-24.04.njk │ └── x86_64_index.njk │ ├── postgres-enterprise-manager-server │ ├── almalinux-8-or-rocky-linux-8.njk │ ├── almalinux-9-or-rocky-linux-9.njk │ ├── arm64_index.njk │ ├── base.njk │ ├── debian-11.njk │ ├── debian-12-arm64.njk │ ├── debian-12.njk │ ├── index.njk │ ├── ppc64le_index.njk │ ├── rhel-8-or-ol-8.njk │ ├── rhel-8_ppc64le.njk │ ├── rhel-9-or-ol-9.njk │ ├── rhel-9_arm64.njk │ ├── rhel-9_ppc64le.njk │ ├── sles-15.njk │ ├── sles-15_ppc64le.njk │ ├── ubuntu-22.04.njk │ ├── ubuntu-24.04.njk │ └── x86_64_index.njk │ ├── postgresql │ ├── almalinux-8-or-rocky-linux-8.njk │ ├── almalinux-9-or-rocky-linux-9.njk │ ├── arm64_index.njk │ ├── base.njk │ ├── debian-11.njk │ ├── debian-12-arm64.njk │ ├── debian-12.njk │ ├── index.njk │ ├── ppc64le_index.njk │ ├── rhel-8-or-ol-8.njk │ ├── rhel-8_ppc64le.njk │ ├── rhel-9-or-ol-9.njk │ ├── rhel-9_arm64.njk │ ├── rhel-9_ppc64le.njk │ ├── sles-15.njk │ ├── sles-15_ppc64le.njk │ ├── ubuntu-22.04.njk │ ├── ubuntu-24.04.njk │ └── x86_64_index.njk │ ├── replication-manager │ ├── almalinux-8-or-rocky-linux-8.njk │ ├── base.njk │ ├── centos-7.njk │ ├── centos-7_ppc64le.njk │ ├── debian-10.njk │ ├── rhel-7-or-ol-7.njk │ ├── rhel-7-or-ol-7_ppc64le.njk │ ├── rhel-8-or-ol-8.njk │ ├── sles-15.njk │ ├── sles-15_ppc64le.njk │ ├── ubuntu-18.04.njk │ └── ubuntu-20.04.njk │ ├── replication-server │ ├── almalinux-8-or-rocky-linux-8.njk │ ├── almalinux-9-or-rocky-linux-9.njk │ ├── arm64_index.njk │ ├── base.njk │ ├── debian-12-arm64.njk │ ├── debian-12.njk │ ├── index.njk │ ├── ppc64le_index.njk │ ├── rhel-8-or-ol-8.njk │ ├── rhel-8_ppc64le.njk │ ├── rhel-9-or-ol-9.njk │ ├── rhel-9_arm64.njk │ ├── rhel-9_ppc64le.njk │ ├── sles-15.njk │ ├── sles-15_ppc64le.njk │ ├── ubuntu-22.04.njk │ ├── ubuntu-24.04.njk │ └── x86_64_index.njk │ └── slony-replication │ ├── almalinux-8-or-rocky-linux-8.njk │ ├── base.njk │ ├── centos-7.njk │ ├── centos-7_ppc64le.njk │ ├── debian-10.njk │ ├── debian-9.njk │ ├── rhel-7-or-ol-7.njk │ ├── rhel-7-or-ol-7_ppc64le.njk │ ├── rhel-8-or-ol-8.njk │ ├── sles-15.njk │ ├── sles-15_ppc64le.njk │ ├── ubuntu-18.04.njk │ └── ubuntu-20.04.njk ├── netlify.toml ├── package.json ├── patches ├── @parcel+reporter-dev-server+2.6.2.patch ├── @turist+fetch+7.2.0.patch ├── create-gatsby+2.25.0.patch ├── gatsby-plugin-mdx+3.20.0.patch ├── remark-parse+8.0.3.patch ├── sanitize-html+1.27.5.patch ├── tr46+0.0.3.patch └── whatwg-url+5.0.0.patch ├── product_docs ├── content │ └── .keep ├── content_build │ └── .keep ├── convert.sh ├── convert_pem_online_help.sh ├── docs │ ├── .gitignore │ ├── bart │ │ └── 2.6 │ │ │ └── index.mdx │ ├── edb-postgres-ai │ │ ├── 1.2 │ │ │ ├── ai-factory │ │ │ │ ├── gen-ai │ │ │ │ │ ├── agent-studio │ │ │ │ │ │ ├── assistants │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── reference │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ ├── assistants │ │ │ │ │ │ │ │ ├── assistant-runs.mdx │ │ │ │ │ │ │ │ ├── getting-started-with-assistants.mdx │ │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ ├── data-lakes │ │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ ├── data-sources │ │ │ │ │ │ │ │ ├── create-data-source.mdx │ │ │ │ │ │ │ │ ├── getting-started-with-data-sources.mdx │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ └── refresh-data.mdx │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── knowledge-bases │ │ │ │ │ │ │ │ ├── accessing-data.mdx │ │ │ │ │ │ │ │ ├── create-knowledge-base.mdx │ │ │ │ │ │ │ │ ├── getting-started-with-knowledge-bases.mdx │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ └── knowledge-base-types.mdx │ │ │ │ │ │ │ ├── retrievers │ │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ ├── rules │ │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ ├── structures │ │ │ │ │ │ │ │ ├── create-structure.mdx │ │ │ │ │ │ │ │ ├── getting-started-with-structures.mdx │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ ├── run-structure.mdx │ │ │ │ │ │ │ │ ├── structure-config.mdx │ │ │ │ │ │ │ │ └── structure-run-events.mdx │ │ │ │ │ │ │ ├── threads │ │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ └── tools │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ ├── run-tool.mdx │ │ │ │ │ │ │ │ └── tool-config.mdx │ │ │ │ │ │ ├── rulesets │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── structures │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── threads │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ └── tools │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── builder │ │ │ │ │ │ ├── data-lake │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── libraries │ │ │ │ │ │ │ ├── data-sources.mdx │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── knowledge-bases.mdx │ │ │ │ │ │ │ └── retrivers.mdx │ │ │ │ │ │ └── sdk │ │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ ├── artifacts.mdx │ │ │ │ │ │ │ ├── chunkers.mdx │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ └── loaders.mdx │ │ │ │ │ │ │ ├── drivers │ │ │ │ │ │ │ ├── assistant-drivers.mdx │ │ │ │ │ │ │ ├── audio-transcription-drivers.mdx │ │ │ │ │ │ │ ├── conversation-memory-drivers.mdx │ │ │ │ │ │ │ ├── embedding-drivers.mdx │ │ │ │ │ │ │ ├── event-listener-drivers.mdx │ │ │ │ │ │ │ ├── file-manager-drivers.mdx │ │ │ │ │ │ │ ├── image-generation-drivers.mdx │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── observability-drivers.mdx │ │ │ │ │ │ │ ├── rerank-drivers.mdx │ │ │ │ │ │ │ ├── ruleset-drivers.mdx │ │ │ │ │ │ │ ├── sql-drivers.mdx │ │ │ │ │ │ │ ├── structure-run-drivers.mdx │ │ │ │ │ │ │ ├── text-to-speech-drivers.mdx │ │ │ │ │ │ │ ├── vector-store-drivers.mdx │ │ │ │ │ │ │ ├── web-scraper-drivers.mdx │ │ │ │ │ │ │ └── web-search-drivers.mdx │ │ │ │ │ │ │ ├── engines │ │ │ │ │ │ │ ├── eval-engines.mdx │ │ │ │ │ │ │ ├── extraction-engines.mdx │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ └── summary-engines.mdx │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── misc │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── serialization.mdx │ │ │ │ │ │ │ └── tokenizers.mdx │ │ │ │ │ │ │ ├── reference │ │ │ │ │ │ │ ├── artifacts │ │ │ │ │ │ │ │ ├── action_artifact.mdx │ │ │ │ │ │ │ │ ├── audio_artifact.mdx │ │ │ │ │ │ │ │ ├── base_artifact.mdx │ │ │ │ │ │ │ │ ├── blob_artifact.mdx │ │ │ │ │ │ │ │ ├── boolean_artifact.mdx │ │ │ │ │ │ │ │ ├── error_artifact.mdx │ │ │ │ │ │ │ │ ├── generic_artifact.mdx │ │ │ │ │ │ │ │ ├── image_artifact.mdx │ │ │ │ │ │ │ │ ├── image_url_artifact.mdx │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ ├── info_artifact.mdx │ │ │ │ │ │ │ │ ├── json_artifact.mdx │ │ │ │ │ │ │ │ ├── list_artifact.mdx │ │ │ │ │ │ │ │ ├── model_artifact.mdx │ │ │ │ │ │ │ │ ├── text_artifact.mdx │ │ │ │ │ │ │ │ └── url_artifact.mdx │ │ │ │ │ │ │ ├── chunkers │ │ │ │ │ │ │ │ ├── base_chunker.mdx │ │ │ │ │ │ │ │ ├── chunk_separator.mdx │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ ├── markdown_chunker.mdx │ │ │ │ │ │ │ │ ├── pdf_chunker.mdx │ │ │ │ │ │ │ │ └── text_chunker.mdx │ │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ │ ├── actions │ │ │ │ │ │ │ │ │ ├── base_action.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── tool_action.mdx │ │ │ │ │ │ │ │ ├── decorators.mdx │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ ├── observable.mdx │ │ │ │ │ │ │ │ ├── prompt_stack │ │ │ │ │ │ │ │ │ ├── contents │ │ │ │ │ │ │ │ │ │ ├── action_call_delta_message_content.mdx │ │ │ │ │ │ │ │ │ │ ├── action_call_message_content.mdx │ │ │ │ │ │ │ │ │ │ ├── action_result_message_content.mdx │ │ │ │ │ │ │ │ │ │ ├── audio_delta_message_content.mdx │ │ │ │ │ │ │ │ │ │ ├── audio_message_content.mdx │ │ │ │ │ │ │ │ │ │ ├── base_delta_message_content.mdx │ │ │ │ │ │ │ │ │ │ ├── base_message_content.mdx │ │ │ │ │ │ │ │ │ │ ├── generic_message_content.mdx │ │ │ │ │ │ │ │ │ │ ├── image_message_content.mdx │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ ├── text_delta_message_content.mdx │ │ │ │ │ │ │ │ │ │ └── text_message_content.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── messages │ │ │ │ │ │ │ │ │ │ ├── base_message.mdx │ │ │ │ │ │ │ │ │ │ ├── delta_message.mdx │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ └── message.mdx │ │ │ │ │ │ │ │ │ └── prompt_stack.mdx │ │ │ │ │ │ │ │ └── reference.mdx │ │ │ │ │ │ │ ├── configs │ │ │ │ │ │ │ │ ├── base_config.mdx │ │ │ │ │ │ │ │ ├── defaults_config.mdx │ │ │ │ │ │ │ │ ├── drivers │ │ │ │ │ │ │ │ │ ├── amazon_bedrock_drivers_config.mdx │ │ │ │ │ │ │ │ │ ├── anthropic_drivers_config.mdx │ │ │ │ │ │ │ │ │ ├── azure_openai_drivers_config.mdx │ │ │ │ │ │ │ │ │ ├── base_drivers_config.mdx │ │ │ │ │ │ │ │ │ ├── cohere_drivers_config.mdx │ │ │ │ │ │ │ │ │ ├── drivers_config.mdx │ │ │ │ │ │ │ │ │ ├── google_drivers_config.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── openai_drivers_config.mdx │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ └── logging │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── json_formatter.mdx │ │ │ │ │ │ │ │ │ ├── logging_config.mdx │ │ │ │ │ │ │ │ │ ├── newline_logging_filter.mdx │ │ │ │ │ │ │ │ │ └── truncate_logging_filter.mdx │ │ │ │ │ │ │ ├── drivers │ │ │ │ │ │ │ │ ├── assistant │ │ │ │ │ │ │ │ │ ├── base_assistant_driver.mdx │ │ │ │ │ │ │ │ │ ├── griptape_cloud.mdx │ │ │ │ │ │ │ │ │ ├── griptape_cloud_assistant_driver.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── openai.mdx │ │ │ │ │ │ │ │ │ └── openai_assistant_driver.mdx │ │ │ │ │ │ │ │ ├── audio_transcription │ │ │ │ │ │ │ │ │ ├── base_audio_transcription_driver.mdx │ │ │ │ │ │ │ │ │ ├── dummy.mdx │ │ │ │ │ │ │ │ │ ├── dummy_audio_transcription_driver.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── openai.mdx │ │ │ │ │ │ │ │ │ └── openai_audio_transcription_driver.mdx │ │ │ │ │ │ │ │ ├── embedding │ │ │ │ │ │ │ │ │ ├── amazon_bedrock.mdx │ │ │ │ │ │ │ │ │ ├── amazon_bedrock_cohere_embedding_driver.mdx │ │ │ │ │ │ │ │ │ ├── amazon_bedrock_titan_embedding_driver.mdx │ │ │ │ │ │ │ │ │ ├── amazon_sagemaker_jumpstart.mdx │ │ │ │ │ │ │ │ │ ├── amazon_sagemaker_jumpstart_embedding_driver.mdx │ │ │ │ │ │ │ │ │ ├── azure_openai_embedding_driver.mdx │ │ │ │ │ │ │ │ │ ├── base_embedding_driver.mdx │ │ │ │ │ │ │ │ │ ├── cohere.mdx │ │ │ │ │ │ │ │ │ ├── cohere_embedding_driver.mdx │ │ │ │ │ │ │ │ │ ├── dummy.mdx │ │ │ │ │ │ │ │ │ ├── dummy_embedding_driver.mdx │ │ │ │ │ │ │ │ │ ├── google.mdx │ │ │ │ │ │ │ │ │ ├── google_embedding_driver.mdx │ │ │ │ │ │ │ │ │ ├── huggingface_hub.mdx │ │ │ │ │ │ │ │ │ ├── huggingface_hub_embedding_driver.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── nvidia_nim.mdx │ │ │ │ │ │ │ │ │ ├── nvidia_nim_embedding_driver.mdx │ │ │ │ │ │ │ │ │ ├── ollama.mdx │ │ │ │ │ │ │ │ │ ├── ollama_embedding_driver.mdx │ │ │ │ │ │ │ │ │ ├── openai.mdx │ │ │ │ │ │ │ │ │ ├── openai_embedding_driver.mdx │ │ │ │ │ │ │ │ │ ├── voyageai.mdx │ │ │ │ │ │ │ │ │ └── voyageai_embedding_driver.mdx │ │ │ │ │ │ │ │ ├── event_listener │ │ │ │ │ │ │ │ │ ├── amazon_sqs.mdx │ │ │ │ │ │ │ │ │ ├── amazon_sqs_event_listener_driver.mdx │ │ │ │ │ │ │ │ │ ├── aws_iot_core.mdx │ │ │ │ │ │ │ │ │ ├── aws_iot_core_event_listener_driver.mdx │ │ │ │ │ │ │ │ │ ├── base_event_listener_driver.mdx │ │ │ │ │ │ │ │ │ ├── griptape_cloud.mdx │ │ │ │ │ │ │ │ │ ├── griptape_cloud_event_listener_driver.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── pusher.mdx │ │ │ │ │ │ │ │ │ ├── pusher_event_listener_driver.mdx │ │ │ │ │ │ │ │ │ ├── webhook.mdx │ │ │ │ │ │ │ │ │ └── webhook_event_listener_driver.mdx │ │ │ │ │ │ │ │ ├── file_manager │ │ │ │ │ │ │ │ │ ├── amazon_s3.mdx │ │ │ │ │ │ │ │ │ ├── amazon_s3_file_manager_driver.mdx │ │ │ │ │ │ │ │ │ ├── base_file_manager_driver.mdx │ │ │ │ │ │ │ │ │ ├── griptape_cloud.mdx │ │ │ │ │ │ │ │ │ ├── griptape_cloud_file_manager_driver.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── local.mdx │ │ │ │ │ │ │ │ │ └── local_file_manager_driver.mdx │ │ │ │ │ │ │ │ ├── image_generation │ │ │ │ │ │ │ │ │ ├── amazon_bedrock.mdx │ │ │ │ │ │ │ │ │ ├── amazon_bedrock_image_generation_driver.mdx │ │ │ │ │ │ │ │ │ ├── azure_openai_image_generation_driver.mdx │ │ │ │ │ │ │ │ │ ├── base_image_generation_driver.mdx │ │ │ │ │ │ │ │ │ ├── base_multi_model_image_generation_driver.mdx │ │ │ │ │ │ │ │ │ ├── dummy.mdx │ │ │ │ │ │ │ │ │ ├── dummy_image_generation_driver.mdx │ │ │ │ │ │ │ │ │ ├── griptape_cloud.mdx │ │ │ │ │ │ │ │ │ ├── griptape_cloud_image_generation_driver.mdx │ │ │ │ │ │ │ │ │ ├── huggingface_pipeline.mdx │ │ │ │ │ │ │ │ │ ├── huggingface_pipeline_image_generation_driver.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── leonardo.mdx │ │ │ │ │ │ │ │ │ ├── leonardo_image_generation_driver.mdx │ │ │ │ │ │ │ │ │ ├── openai.mdx │ │ │ │ │ │ │ │ │ └── openai_image_generation_driver.mdx │ │ │ │ │ │ │ │ ├── image_generation_model │ │ │ │ │ │ │ │ │ ├── base_image_generation_model_driver.mdx │ │ │ │ │ │ │ │ │ ├── bedrock_stable_diffusion.mdx │ │ │ │ │ │ │ │ │ ├── bedrock_stable_diffusion_image_generation_model_driver.mdx │ │ │ │ │ │ │ │ │ ├── bedrock_titan.mdx │ │ │ │ │ │ │ │ │ ├── bedrock_titan_image_generation_model_driver.mdx │ │ │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ │ ├── image_generation_pipeline │ │ │ │ │ │ │ │ │ ├── base_image_generation_pipeline_driver.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── stable_diffusion_3.mdx │ │ │ │ │ │ │ │ │ ├── stable_diffusion_3_controlnet.mdx │ │ │ │ │ │ │ │ │ ├── stable_diffusion_3_controlnet_image_generation_pipeline_driver.mdx │ │ │ │ │ │ │ │ │ ├── stable_diffusion_3_image_generation_pipeline_driver.mdx │ │ │ │ │ │ │ │ │ ├── stable_diffusion_3_img_2_img.mdx │ │ │ │ │ │ │ │ │ └── stable_diffusion_3_img_2_img_image_generation_pipeline_driver.mdx │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ ├── memory │ │ │ │ │ │ │ │ │ ├── conversation │ │ │ │ │ │ │ │ │ │ ├── amazon_dynamodb.mdx │ │ │ │ │ │ │ │ │ │ ├── amazon_dynamodb_conversation_memory_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── base_conversation_memory_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── griptape_cloud.mdx │ │ │ │ │ │ │ │ │ │ ├── griptape_cloud_conversation_memory_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ ├── local.mdx │ │ │ │ │ │ │ │ │ │ ├── local_conversation_memory_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── redis.mdx │ │ │ │ │ │ │ │ │ │ └── redis_conversation_memory_driver.mdx │ │ │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ │ ├── observability │ │ │ │ │ │ │ │ │ ├── base_observability_driver.mdx │ │ │ │ │ │ │ │ │ ├── datadog.mdx │ │ │ │ │ │ │ │ │ ├── datadog_observability_driver.mdx │ │ │ │ │ │ │ │ │ ├── griptape_cloud.mdx │ │ │ │ │ │ │ │ │ ├── griptape_cloud_observability_driver.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── no_op.mdx │ │ │ │ │ │ │ │ │ ├── no_op_observability_driver.mdx │ │ │ │ │ │ │ │ │ ├── open_telemetry.mdx │ │ │ │ │ │ │ │ │ └── open_telemetry_observability_driver.mdx │ │ │ │ │ │ │ │ ├── prompt │ │ │ │ │ │ │ │ │ ├── amazon_bedrock.mdx │ │ │ │ │ │ │ │ │ ├── amazon_bedrock_prompt_driver.mdx │ │ │ │ │ │ │ │ │ ├── amazon_sagemaker_jumpstart.mdx │ │ │ │ │ │ │ │ │ ├── amazon_sagemaker_jumpstart_prompt_driver.mdx │ │ │ │ │ │ │ │ │ ├── anthropic.mdx │ │ │ │ │ │ │ │ │ ├── anthropic_prompt_driver.mdx │ │ │ │ │ │ │ │ │ ├── azure_openai_chat_prompt_driver.mdx │ │ │ │ │ │ │ │ │ ├── base_prompt_driver.mdx │ │ │ │ │ │ │ │ │ ├── cohere.mdx │ │ │ │ │ │ │ │ │ ├── cohere_prompt_driver.mdx │ │ │ │ │ │ │ │ │ ├── dummy.mdx │ │ │ │ │ │ │ │ │ ├── dummy_prompt_driver.mdx │ │ │ │ │ │ │ │ │ ├── google.mdx │ │ │ │ │ │ │ │ │ ├── google_prompt_driver.mdx │ │ │ │ │ │ │ │ │ ├── griptape_cloud.mdx │ │ │ │ │ │ │ │ │ ├── griptape_cloud_prompt_driver.mdx │ │ │ │ │ │ │ │ │ ├── grok.mdx │ │ │ │ │ │ │ │ │ ├── grok_prompt_driver.mdx │ │ │ │ │ │ │ │ │ ├── huggingface_hub.mdx │ │ │ │ │ │ │ │ │ ├── huggingface_hub_prompt_driver.mdx │ │ │ │ │ │ │ │ │ ├── huggingface_pipeline.mdx │ │ │ │ │ │ │ │ │ ├── huggingface_pipeline_prompt_driver.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── ollama.mdx │ │ │ │ │ │ │ │ │ ├── ollama_prompt_driver.mdx │ │ │ │ │ │ │ │ │ ├── openai.mdx │ │ │ │ │ │ │ │ │ ├── openai_chat_prompt_driver.mdx │ │ │ │ │ │ │ │ │ ├── perplexity.mdx │ │ │ │ │ │ │ │ │ └── perplexity_prompt_driver.mdx │ │ │ │ │ │ │ │ ├── rerank │ │ │ │ │ │ │ │ │ ├── base_rerank_driver.mdx │ │ │ │ │ │ │ │ │ ├── cohere.mdx │ │ │ │ │ │ │ │ │ ├── cohere_rerank_driver.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── local.mdx │ │ │ │ │ │ │ │ │ ├── local_rerank_driver.mdx │ │ │ │ │ │ │ │ │ ├── nvidia_nim.mdx │ │ │ │ │ │ │ │ │ └── nvidia_nim_rerank_driver.mdx │ │ │ │ │ │ │ │ ├── ruleset │ │ │ │ │ │ │ │ │ ├── base_ruleset_driver.mdx │ │ │ │ │ │ │ │ │ ├── griptape_cloud.mdx │ │ │ │ │ │ │ │ │ ├── griptape_cloud_ruleset_driver.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── local.mdx │ │ │ │ │ │ │ │ │ └── local_ruleset_driver.mdx │ │ │ │ │ │ │ │ ├── sql │ │ │ │ │ │ │ │ │ ├── amazon_redshift.mdx │ │ │ │ │ │ │ │ │ ├── amazon_redshift_sql_driver.mdx │ │ │ │ │ │ │ │ │ ├── base_sql_driver.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── snowflake.mdx │ │ │ │ │ │ │ │ │ ├── snowflake_sql_driver.mdx │ │ │ │ │ │ │ │ │ └── sql_driver.mdx │ │ │ │ │ │ │ │ ├── structure_run │ │ │ │ │ │ │ │ │ ├── base_structure_run_driver.mdx │ │ │ │ │ │ │ │ │ ├── griptape_cloud.mdx │ │ │ │ │ │ │ │ │ ├── griptape_cloud_structure_run_driver.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── local.mdx │ │ │ │ │ │ │ │ │ └── local_structure_run_driver.mdx │ │ │ │ │ │ │ │ ├── text_to_speech │ │ │ │ │ │ │ │ │ ├── azure_openai_text_to_speech_driver.mdx │ │ │ │ │ │ │ │ │ ├── base_text_to_speech_driver.mdx │ │ │ │ │ │ │ │ │ ├── dummy.mdx │ │ │ │ │ │ │ │ │ ├── dummy_text_to_speech_driver.mdx │ │ │ │ │ │ │ │ │ ├── elevenlabs.mdx │ │ │ │ │ │ │ │ │ ├── elevenlabs_text_to_speech_driver.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── openai.mdx │ │ │ │ │ │ │ │ │ └── openai_text_to_speech_driver.mdx │ │ │ │ │ │ │ │ ├── vector │ │ │ │ │ │ │ │ │ ├── amazon_opensearch.mdx │ │ │ │ │ │ │ │ │ ├── amazon_opensearch_vector_store_driver.mdx │ │ │ │ │ │ │ │ │ ├── astradb.mdx │ │ │ │ │ │ │ │ │ ├── astradb_vector_store_driver.mdx │ │ │ │ │ │ │ │ │ ├── azure_mongodb.mdx │ │ │ │ │ │ │ │ │ ├── azure_mongodb_vector_store_driver.mdx │ │ │ │ │ │ │ │ │ ├── base_vector_store_driver.mdx │ │ │ │ │ │ │ │ │ ├── dummy.mdx │ │ │ │ │ │ │ │ │ ├── dummy_vector_store_driver.mdx │ │ │ │ │ │ │ │ │ ├── griptape_cloud.mdx │ │ │ │ │ │ │ │ │ ├── griptape_cloud_vector_store_driver.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── local.mdx │ │ │ │ │ │ │ │ │ ├── local_vector_store_driver.mdx │ │ │ │ │ │ │ │ │ ├── marqo.mdx │ │ │ │ │ │ │ │ │ ├── marqo_vector_store_driver.mdx │ │ │ │ │ │ │ │ │ ├── mongodb_atlas.mdx │ │ │ │ │ │ │ │ │ ├── mongodb_atlas_vector_store_driver.mdx │ │ │ │ │ │ │ │ │ ├── opensearch.mdx │ │ │ │ │ │ │ │ │ ├── opensearch_vector_store_driver.mdx │ │ │ │ │ │ │ │ │ ├── pgai.mdx │ │ │ │ │ │ │ │ │ ├── pgai_knowledge_base_vector_store_driver.mdx │ │ │ │ │ │ │ │ │ ├── pgvector.mdx │ │ │ │ │ │ │ │ │ ├── pgvector_vector_store_driver.mdx │ │ │ │ │ │ │ │ │ ├── pinecone.mdx │ │ │ │ │ │ │ │ │ ├── pinecone_vector_store_driver.mdx │ │ │ │ │ │ │ │ │ ├── qdrant.mdx │ │ │ │ │ │ │ │ │ ├── qdrant_vector_store_driver.mdx │ │ │ │ │ │ │ │ │ ├── redis.mdx │ │ │ │ │ │ │ │ │ └── redis_vector_store_driver.mdx │ │ │ │ │ │ │ │ ├── web_scraper │ │ │ │ │ │ │ │ │ ├── base_web_scraper_driver.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── markdownify.mdx │ │ │ │ │ │ │ │ │ ├── markdownify_web_scraper_driver.mdx │ │ │ │ │ │ │ │ │ ├── proxy.mdx │ │ │ │ │ │ │ │ │ ├── proxy_web_scraper_driver.mdx │ │ │ │ │ │ │ │ │ ├── trafilatura.mdx │ │ │ │ │ │ │ │ │ └── trafilatura_web_scraper_driver.mdx │ │ │ │ │ │ │ │ └── web_search │ │ │ │ │ │ │ │ │ ├── base_web_search_driver.mdx │ │ │ │ │ │ │ │ │ ├── duck_duck_go.mdx │ │ │ │ │ │ │ │ │ ├── duck_duck_go_web_search_driver.mdx │ │ │ │ │ │ │ │ │ ├── exa.mdx │ │ │ │ │ │ │ │ │ ├── exa_web_search_driver.mdx │ │ │ │ │ │ │ │ │ ├── google.mdx │ │ │ │ │ │ │ │ │ ├── google_web_search_driver.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── perplexity.mdx │ │ │ │ │ │ │ │ │ ├── perplexity_web_search_driver.mdx │ │ │ │ │ │ │ │ │ ├── tavily.mdx │ │ │ │ │ │ │ │ │ └── tavily_web_search_driver.mdx │ │ │ │ │ │ │ ├── engines │ │ │ │ │ │ │ │ ├── eval │ │ │ │ │ │ │ │ │ ├── base_eval_engine.mdx │ │ │ │ │ │ │ │ │ ├── eval_engine.mdx │ │ │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ │ ├── extraction │ │ │ │ │ │ │ │ │ ├── base_extraction_engine.mdx │ │ │ │ │ │ │ │ │ ├── csv_extraction_engine.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── json_extraction_engine.mdx │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ ├── rag │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── modules │ │ │ │ │ │ │ │ │ │ ├── base_rag_module.mdx │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ ├── query │ │ │ │ │ │ │ │ │ │ │ ├── base_query_rag_module.mdx │ │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ │ └── translate_query_rag_module.mdx │ │ │ │ │ │ │ │ │ │ ├── response │ │ │ │ │ │ │ │ │ │ │ ├── base_after_response_rag_module.mdx │ │ │ │ │ │ │ │ │ │ │ ├── base_before_response_rag_module.mdx │ │ │ │ │ │ │ │ │ │ │ ├── base_response_rag_module.mdx │ │ │ │ │ │ │ │ │ │ │ ├── footnote_prompt_response_rag_module.mdx │ │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ │ ├── prompt_response_rag_module.mdx │ │ │ │ │ │ │ │ │ │ │ └── text_chunks_response_rag_module.mdx │ │ │ │ │ │ │ │ │ │ └── retrieval │ │ │ │ │ │ │ │ │ │ │ ├── base_rerank_rag_module.mdx │ │ │ │ │ │ │ │ │ │ │ ├── base_retrieval_rag_module.mdx │ │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ │ ├── text_chunks_rerank_rag_module.mdx │ │ │ │ │ │ │ │ │ │ │ ├── text_loader_retrieval_rag_module.mdx │ │ │ │ │ │ │ │ │ │ │ └── vector_store_retrieval_rag_module.mdx │ │ │ │ │ │ │ │ │ ├── rag_context.mdx │ │ │ │ │ │ │ │ │ ├── rag_engine.mdx │ │ │ │ │ │ │ │ │ └── stages │ │ │ │ │ │ │ │ │ │ ├── base_rag_stage.mdx │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ ├── query_rag_stage.mdx │ │ │ │ │ │ │ │ │ │ ├── response_rag_stage.mdx │ │ │ │ │ │ │ │ │ │ └── retrieval_rag_stage.mdx │ │ │ │ │ │ │ │ └── summary │ │ │ │ │ │ │ │ │ ├── base_summary_engine.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── prompt_summary_engine.mdx │ │ │ │ │ │ │ ├── events │ │ │ │ │ │ │ │ ├── action_chunk_event.mdx │ │ │ │ │ │ │ │ ├── audio_chunk_event.mdx │ │ │ │ │ │ │ │ ├── base_actions_subtask_event.mdx │ │ │ │ │ │ │ │ ├── base_audio_transcription_event.mdx │ │ │ │ │ │ │ │ ├── base_chunk_event.mdx │ │ │ │ │ │ │ │ ├── base_event.mdx │ │ │ │ │ │ │ │ ├── base_image_generation_event.mdx │ │ │ │ │ │ │ │ ├── base_image_query_event.mdx │ │ │ │ │ │ │ │ ├── base_media_generation_event.mdx │ │ │ │ │ │ │ │ ├── base_prompt_event.mdx │ │ │ │ │ │ │ │ ├── base_task_event.mdx │ │ │ │ │ │ │ │ ├── base_text_to_speech_event.mdx │ │ │ │ │ │ │ │ ├── event_bus.mdx │ │ │ │ │ │ │ │ ├── event_listener.mdx │ │ │ │ │ │ │ │ ├── finish_actions_subtask_event.mdx │ │ │ │ │ │ │ │ ├── finish_audio_transcription_event.mdx │ │ │ │ │ │ │ │ ├── finish_image_generation_event.mdx │ │ │ │ │ │ │ │ ├── finish_image_query_event.mdx │ │ │ │ │ │ │ │ ├── finish_prompt_event.mdx │ │ │ │ │ │ │ │ ├── finish_structure_run_event.mdx │ │ │ │ │ │ │ │ ├── finish_task_event.mdx │ │ │ │ │ │ │ │ ├── finish_text_to_speech_event.mdx │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ ├── start_actions_subtask_event.mdx │ │ │ │ │ │ │ │ ├── start_audio_transcription_event.mdx │ │ │ │ │ │ │ │ ├── start_image_generation_event.mdx │ │ │ │ │ │ │ │ ├── start_image_query_event.mdx │ │ │ │ │ │ │ │ ├── start_prompt_event.mdx │ │ │ │ │ │ │ │ ├── start_structure_run_event.mdx │ │ │ │ │ │ │ │ ├── start_task_event.mdx │ │ │ │ │ │ │ │ ├── start_text_to_speech_event.mdx │ │ │ │ │ │ │ │ └── text_chunk_event.mdx │ │ │ │ │ │ │ ├── exceptions │ │ │ │ │ │ │ │ ├── dummy_exception.mdx │ │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── loaders │ │ │ │ │ │ │ │ ├── audio_loader.mdx │ │ │ │ │ │ │ │ ├── base_file_loader.mdx │ │ │ │ │ │ │ │ ├── base_loader.mdx │ │ │ │ │ │ │ │ ├── blob_loader.mdx │ │ │ │ │ │ │ │ ├── csv_loader.mdx │ │ │ │ │ │ │ │ ├── email_loader.mdx │ │ │ │ │ │ │ │ ├── image_loader.mdx │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ ├── json_loader.mdx │ │ │ │ │ │ │ │ ├── pdf_loader.mdx │ │ │ │ │ │ │ │ ├── sql_loader.mdx │ │ │ │ │ │ │ │ ├── text_loader.mdx │ │ │ │ │ │ │ │ └── web_loader.mdx │ │ │ │ │ │ │ ├── memory │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ ├── meta │ │ │ │ │ │ │ │ │ ├── action_subtask_meta_entry.mdx │ │ │ │ │ │ │ │ │ ├── base_meta_entry.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── meta_memory.mdx │ │ │ │ │ │ │ │ ├── structure │ │ │ │ │ │ │ │ │ ├── base_conversation_memory.mdx │ │ │ │ │ │ │ │ │ ├── conversation_memory.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── run.mdx │ │ │ │ │ │ │ │ │ └── summary_conversation_memory.mdx │ │ │ │ │ │ │ │ └── task │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── storage │ │ │ │ │ │ │ │ │ ├── base_artifact_storage.mdx │ │ │ │ │ │ │ │ │ ├── blob_artifact_storage.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── text_artifact_storage.mdx │ │ │ │ │ │ │ │ │ └── task_memory.mdx │ │ │ │ │ │ │ ├── mixins │ │ │ │ │ │ │ │ ├── actions_subtask_origin_mixin.mdx │ │ │ │ │ │ │ │ ├── activity_mixin.mdx │ │ │ │ │ │ │ │ ├── artifact_file_output_mixin.mdx │ │ │ │ │ │ │ │ ├── exponential_backoff_mixin.mdx │ │ │ │ │ │ │ │ ├── futures_executor_mixin.mdx │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ ├── rule_mixin.mdx │ │ │ │ │ │ │ │ ├── runnable_mixin.mdx │ │ │ │ │ │ │ │ ├── serializable_mixin.mdx │ │ │ │ │ │ │ │ └── singleton_mixin.mdx │ │ │ │ │ │ │ ├── observability │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ └── observability.mdx │ │ │ │ │ │ │ ├── rules │ │ │ │ │ │ │ │ ├── base_rule.mdx │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ ├── json_schema_rule.mdx │ │ │ │ │ │ │ │ ├── rule.mdx │ │ │ │ │ │ │ │ └── ruleset.mdx │ │ │ │ │ │ │ ├── schemas │ │ │ │ │ │ │ │ ├── base_schema.mdx │ │ │ │ │ │ │ │ ├── bytes_field.mdx │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ ├── polymorphic_schema.mdx │ │ │ │ │ │ │ │ ├── pydantic_model_field.mdx │ │ │ │ │ │ │ │ └── union_field.mdx │ │ │ │ │ │ │ ├── structures │ │ │ │ │ │ │ │ ├── agent.mdx │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ ├── pipeline.mdx │ │ │ │ │ │ │ │ ├── structure.mdx │ │ │ │ │ │ │ │ └── workflow.mdx │ │ │ │ │ │ │ ├── tasks │ │ │ │ │ │ │ │ ├── actions_subtask.mdx │ │ │ │ │ │ │ │ ├── assistant_task.mdx │ │ │ │ │ │ │ │ ├── audio_transcription_task.mdx │ │ │ │ │ │ │ │ ├── base_audio_generation_task.mdx │ │ │ │ │ │ │ │ ├── base_audio_input_task.mdx │ │ │ │ │ │ │ │ ├── base_image_generation_task.mdx │ │ │ │ │ │ │ │ ├── base_subtask.mdx │ │ │ │ │ │ │ │ ├── base_task.mdx │ │ │ │ │ │ │ │ ├── base_text_input_task.mdx │ │ │ │ │ │ │ │ ├── branch_task.mdx │ │ │ │ │ │ │ │ ├── code_execution_task.mdx │ │ │ │ │ │ │ │ ├── extraction_task.mdx │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ ├── inpainting_image_generation_task.mdx │ │ │ │ │ │ │ │ ├── outpainting_image_generation_task.mdx │ │ │ │ │ │ │ │ ├── output_schema_validation_subtask.mdx │ │ │ │ │ │ │ │ ├── prompt_image_generation_task.mdx │ │ │ │ │ │ │ │ ├── prompt_task.mdx │ │ │ │ │ │ │ │ ├── rag_task.mdx │ │ │ │ │ │ │ │ ├── structure_run_task.mdx │ │ │ │ │ │ │ │ ├── text_summary_task.mdx │ │ │ │ │ │ │ │ ├── text_to_speech_task.mdx │ │ │ │ │ │ │ │ ├── tool_task.mdx │ │ │ │ │ │ │ │ ├── toolkit_task.mdx │ │ │ │ │ │ │ │ └── variation_image_generation_task.mdx │ │ │ │ │ │ │ ├── tokenizers │ │ │ │ │ │ │ │ ├── amazon_bedrock_tokenizer.mdx │ │ │ │ │ │ │ │ ├── anthropic_tokenizer.mdx │ │ │ │ │ │ │ │ ├── base_tokenizer.mdx │ │ │ │ │ │ │ │ ├── cohere_tokenizer.mdx │ │ │ │ │ │ │ │ ├── dummy_tokenizer.mdx │ │ │ │ │ │ │ │ ├── google_tokenizer.mdx │ │ │ │ │ │ │ │ ├── grok_tokenizer.mdx │ │ │ │ │ │ │ │ ├── huggingface_tokenizer.mdx │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ ├── openai_tokenizer.mdx │ │ │ │ │ │ │ │ ├── simple_tokenizer.mdx │ │ │ │ │ │ │ │ └── voyageai_tokenizer.mdx │ │ │ │ │ │ │ ├── tools │ │ │ │ │ │ │ │ ├── audio_transcription │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ ├── base_griptape_cloud_tool.mdx │ │ │ │ │ │ │ │ ├── base_image_generation_tool.mdx │ │ │ │ │ │ │ │ ├── base_tool.mdx │ │ │ │ │ │ │ │ ├── calculator │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ ├── computer │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ ├── date_time │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ ├── email │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ ├── extraction │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ ├── file_manager │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ ├── griptape_cloud_tool │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ ├── image_query │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ ├── inpainting_image_generation │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ ├── outpainting_image_generation │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ ├── prompt_image_generation │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ ├── prompt_summary │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ ├── query │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ ├── rag │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ ├── rest_api │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ ├── sql │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ ├── structure_run │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ ├── structured_output │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ ├── text_to_speech │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ ├── variation_image_generation │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ ├── vector_store │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ ├── web_scraper │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ └── web_search │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ │ ├── chat.mdx │ │ │ │ │ │ │ │ ├── command_runner.mdx │ │ │ │ │ │ │ │ ├── constants.mdx │ │ │ │ │ │ │ │ ├── contextvars_utils.mdx │ │ │ │ │ │ │ │ ├── conversation.mdx │ │ │ │ │ │ │ │ ├── decorators.mdx │ │ │ │ │ │ │ │ ├── deprecation.mdx │ │ │ │ │ │ │ │ ├── dict_utils.mdx │ │ │ │ │ │ │ │ ├── file_utils.mdx │ │ │ │ │ │ │ │ ├── futures.mdx │ │ │ │ │ │ │ │ ├── griptape_cloud.mdx │ │ │ │ │ │ │ │ ├── hash.mdx │ │ │ │ │ │ │ │ ├── import_utils.mdx │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ ├── j2.mdx │ │ │ │ │ │ │ │ ├── json_schema_utils.mdx │ │ │ │ │ │ │ │ ├── load_artifact_from_memory.mdx │ │ │ │ │ │ │ │ ├── manifest_validator.mdx │ │ │ │ │ │ │ │ ├── paths.mdx │ │ │ │ │ │ │ │ ├── python_runner.mdx │ │ │ │ │ │ │ │ ├── reference_utils.mdx │ │ │ │ │ │ │ │ ├── stream.mdx │ │ │ │ │ │ │ │ ├── structure_visualizer.mdx │ │ │ │ │ │ │ │ └── token_counter.mdx │ │ │ │ │ │ │ ├── structures │ │ │ │ │ │ │ ├── configs.mdx │ │ │ │ │ │ │ ├── conversation-memory.mdx │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── observability.mdx │ │ │ │ │ │ │ ├── pipelines.mdx │ │ │ │ │ │ │ ├── rulesets.mdx │ │ │ │ │ │ │ ├── task-memory.mdx │ │ │ │ │ │ │ ├── tasks.mdx │ │ │ │ │ │ │ └── workflows.mdx │ │ │ │ │ │ │ └── tools │ │ │ │ │ │ │ ├── custom-tools │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ └── official-tools │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── limitations.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── learn │ │ │ │ │ ├── explained │ │ │ │ │ │ ├── ai-factory-concepts.mdx │ │ │ │ │ │ ├── assistants-explained.mdx │ │ │ │ │ │ ├── data-lake-explained.mdx │ │ │ │ │ │ ├── generic-concepts.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── knowledge-bases-explained.mdx │ │ │ │ │ │ ├── model-library-explained.mdx │ │ │ │ │ │ ├── model-serving-concepts.mdx │ │ │ │ │ │ ├── model-serving-explained.mdx │ │ │ │ │ │ ├── retrievers-explained.mdx │ │ │ │ │ │ ├── rulesets-explained.mdx │ │ │ │ │ │ ├── sovereign-ai.mdx │ │ │ │ │ │ ├── structures-explained.mdx │ │ │ │ │ │ ├── terminology.mdx │ │ │ │ │ │ ├── threads-explained.mdx │ │ │ │ │ │ └── tools-explained.mdx │ │ │ │ │ ├── how-to │ │ │ │ │ │ ├── gen-ai │ │ │ │ │ │ │ ├── configure-data-sources.mdx │ │ │ │ │ │ │ ├── configure-datalake.mdx │ │ │ │ │ │ │ ├── create-assistant.mdx │ │ │ │ │ │ │ ├── create-knowledge-base.mdx │ │ │ │ │ │ │ ├── create-retriever.mdx │ │ │ │ │ │ │ ├── create-ruleset.mdx │ │ │ │ │ │ │ ├── create-structure.mdx │ │ │ │ │ │ │ ├── create-tool.mdx │ │ │ │ │ │ │ ├── data-source-confluence.mdx │ │ │ │ │ │ │ ├── data-source-custom.mdx │ │ │ │ │ │ │ ├── data-source-data-lake.mdx │ │ │ │ │ │ │ ├── data-source-google-drive.mdx │ │ │ │ │ │ │ ├── data-source-s3.mdx │ │ │ │ │ │ │ ├── data-source-webpage.mdx │ │ │ │ │ │ │ ├── hybrid-kb-best-practices.mdx │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── manage-knowledge-base.mdx │ │ │ │ │ │ │ └── view-threads.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── model-library │ │ │ │ │ │ │ ├── define-repository-rules.mdx │ │ │ │ │ │ │ ├── how-to-deploy-ai-models.mdx │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── integrate-private-registry.mdx │ │ │ │ │ │ │ └── manage-repository-metadata.mdx │ │ │ │ │ │ └── model-serving │ │ │ │ │ │ │ ├── configure-servingruntime.mdx │ │ │ │ │ │ │ ├── create-inferenceservice.mdx │ │ │ │ │ │ │ ├── deploy-nim-container.mdx │ │ │ │ │ │ │ ├── faq.mdx │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── monitor-inferenceservice.mdx │ │ │ │ │ │ │ ├── observability.mdx │ │ │ │ │ │ │ └── update-gpu-resources.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── paths │ │ │ │ │ │ ├── 101.mdx │ │ │ │ │ │ ├── 201.mdx │ │ │ │ │ │ ├── 301.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── solutions.mdx │ │ │ │ │ └── use-cases.mdx │ │ │ │ ├── model │ │ │ │ │ ├── deployment.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── library.mdx │ │ │ │ │ └── serving.mdx │ │ │ │ ├── pipeline │ │ │ │ │ ├── capabilities │ │ │ │ │ │ ├── auto-processing.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── compatibility.mdx │ │ │ │ │ ├── gettingstarted │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── images │ │ │ │ │ │ └── aidb-overview-withbackground.png │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── installing │ │ │ │ │ │ ├── complete.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── packages.mdx │ │ │ │ │ │ └── upgrading.mdx │ │ │ │ │ ├── knowledge_base │ │ │ │ │ │ ├── concepts.mdx │ │ │ │ │ │ ├── example.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── performance_tuning.mdx │ │ │ │ │ │ ├── usage.mdx │ │ │ │ │ │ └── usage_auto_processing.mdx │ │ │ │ │ ├── licenses.mdx │ │ │ │ │ ├── limitations.mdx │ │ │ │ │ ├── models │ │ │ │ │ │ ├── getting-started.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── primitives.mdx │ │ │ │ │ │ ├── supported-models │ │ │ │ │ │ │ ├── bert.mdx │ │ │ │ │ │ │ ├── clip.mdx │ │ │ │ │ │ │ ├── completions.mdx │ │ │ │ │ │ │ ├── embeddings.mdx │ │ │ │ │ │ │ ├── gemini.mdx │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── llama.mdx │ │ │ │ │ │ │ ├── nim_clip.mdx │ │ │ │ │ │ │ ├── nim_paddle_ocr.mdx │ │ │ │ │ │ │ ├── nim_reranking.mdx │ │ │ │ │ │ │ ├── support_matrix.mdx │ │ │ │ │ │ │ └── t5.mdx │ │ │ │ │ │ ├── using-models.mdx │ │ │ │ │ │ └── using-with │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── openai-api-compatibility.mdx │ │ │ │ │ │ │ └── using-nvidia-nim │ │ │ │ │ │ │ ├── files │ │ │ │ │ │ │ ├── embedding-runtime.yaml │ │ │ │ │ │ │ ├── embedding-service.yaml │ │ │ │ │ │ │ ├── image-embed-runtime.yaml │ │ │ │ │ │ │ ├── image-embed-service.yaml │ │ │ │ │ │ │ ├── llm-runtime.yaml │ │ │ │ │ │ │ ├── llm-service.yaml │ │ │ │ │ │ │ ├── ocr-runtime.yaml │ │ │ │ │ │ │ ├── ocr-service.yaml │ │ │ │ │ │ │ ├── rerank-runtime.yaml │ │ │ │ │ │ │ └── rerank-service.yaml │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ └── get-api-key.svg │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── using-nim-in-nvidia-ngc.mdx │ │ │ │ │ │ │ └── using-nim-in-your-environment.mdx │ │ │ │ │ ├── pgfs │ │ │ │ │ │ ├── functions │ │ │ │ │ │ │ ├── gcs.mdx │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── local.mdx │ │ │ │ │ │ │ └── s3.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── settings.mdx │ │ │ │ │ ├── pipelines-overview.mdx │ │ │ │ │ ├── preparers │ │ │ │ │ │ ├── concepts.mdx │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ ├── chained_preparers.mdx │ │ │ │ │ │ │ ├── chunk_text.mdx │ │ │ │ │ │ │ ├── chunk_text_auto_processing.mdx │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── parse_html.mdx │ │ │ │ │ │ │ ├── parse_pdf.mdx │ │ │ │ │ │ │ ├── perform_ocr.mdx │ │ │ │ │ │ │ └── summarize_text.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── primitives.mdx │ │ │ │ │ │ ├── usage.mdx │ │ │ │ │ │ └── volume_destination.mdx │ │ │ │ │ ├── reference │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── knowledge_bases.mdx │ │ │ │ │ │ ├── models.mdx │ │ │ │ │ │ ├── pgfs.mdx │ │ │ │ │ │ ├── preparers.mdx │ │ │ │ │ │ └── retrievers.mdx │ │ │ │ │ ├── rel_notes │ │ │ │ │ │ ├── ai-accelerator_1.0.7_rel_notes.mdx │ │ │ │ │ │ ├── ai-accelerator_2.0.0_rel_notes.mdx │ │ │ │ │ │ ├── ai-accelerator_2.1.1_rel_notes.mdx │ │ │ │ │ │ ├── ai-accelerator_2.1.2_rel_notes.mdx │ │ │ │ │ │ ├── ai-accelerator_2.2.1_rel_notes.mdx │ │ │ │ │ │ ├── ai-accelerator_3.0.1_rel_notes.mdx │ │ │ │ │ │ ├── ai-accelerator_4.0.0_rel_notes.mdx │ │ │ │ │ │ ├── ai-accelerator_4.0.1_rel_notes.mdx │ │ │ │ │ │ ├── ai-accelerator_4.1.0_rel_notes.mdx │ │ │ │ │ │ ├── ai-accelerator_4.1.1_rel_notes.mdx │ │ │ │ │ │ ├── ai-accelerator_4.2.0_rel_notes.mdx │ │ │ │ │ │ ├── ai-accelerator_4.3.0_rel_notes.mdx │ │ │ │ │ │ ├── ai-accelerator_4.4.0_rel_notes.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── meta.yml │ │ │ │ │ │ │ ├── rel_notes_1.0.7.yml │ │ │ │ │ │ │ ├── rel_notes_2.0.0.yml │ │ │ │ │ │ │ ├── rel_notes_2.1.1.yml │ │ │ │ │ │ │ ├── rel_notes_2.1.2.yml │ │ │ │ │ │ │ ├── rel_notes_2.2.1.yml │ │ │ │ │ │ │ ├── rel_notes_3.0.1.yml │ │ │ │ │ │ │ ├── rel_notes_4.0.0.yml │ │ │ │ │ │ │ ├── rel_notes_4.0.1.yml │ │ │ │ │ │ │ ├── rel_notes_4.1.0.yml │ │ │ │ │ │ │ ├── rel_notes_4.1.1.yml │ │ │ │ │ │ │ ├── rel_notes_4.2.0.yml │ │ │ │ │ │ │ ├── rel_notes_4.3.0.yml │ │ │ │ │ │ │ └── rel_notes_4.4.0.yml │ │ │ │ │ └── volumes.mdx │ │ │ │ └── vector-engine │ │ │ │ │ └── index.mdx │ │ │ ├── analytics │ │ │ │ ├── delta_lake.mdx │ │ │ │ ├── iceberg.mdx │ │ │ │ ├── images │ │ │ │ │ ├── choose-your-path.svg │ │ │ │ │ ├── create-cluster-dropdown.png │ │ │ │ │ ├── create-cluster-dropdown.svg │ │ │ │ │ ├── create-cluster-wizard.png │ │ │ │ │ ├── custom-build-wizard.svg │ │ │ │ │ ├── level-100.svg │ │ │ │ │ ├── level-200.svg │ │ │ │ │ ├── level-300.svg │ │ │ │ │ ├── level-50.svg │ │ │ │ │ ├── msl_list.png │ │ │ │ │ └── old-level-300.svg │ │ │ │ ├── index.mdx │ │ │ │ ├── lakehouse.mdx │ │ │ │ ├── learn │ │ │ │ │ ├── explained │ │ │ │ │ │ ├── analytics-concepts.mdx │ │ │ │ │ │ ├── generic-concepts.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── terminology.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── paths │ │ │ │ │ │ ├── 101.mdx │ │ │ │ │ │ ├── 201.mdx │ │ │ │ │ │ ├── 301.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── personas.mdx │ │ │ │ │ └── tutorials │ │ │ │ │ │ └── index.mdx │ │ │ │ ├── quick_start.mdx │ │ │ │ ├── reference │ │ │ │ │ ├── datasets.mdx │ │ │ │ │ ├── delta_tables.mdx │ │ │ │ │ ├── directscan.mdx │ │ │ │ │ ├── functions.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── instances.mdx │ │ │ │ │ ├── loadingdata.mdx │ │ │ │ │ ├── pgaa_functions.mdx │ │ │ │ │ ├── queries.mdx │ │ │ │ │ └── users.mdx │ │ │ │ └── tiered_tables.mdx │ │ │ ├── hybrid-manager │ │ │ │ ├── ai-factory │ │ │ │ │ ├── enabling.mdx │ │ │ │ │ ├── gen-ai │ │ │ │ │ │ ├── agent-studio.mdx │ │ │ │ │ │ ├── builder.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── images │ │ │ │ │ │ ├── first-time-form.png │ │ │ │ │ │ ├── first-time-setup.png │ │ │ │ │ │ └── launchpad.png │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── learn │ │ │ │ │ │ ├── explained │ │ │ │ │ │ │ ├── container-registry-explained.mdx │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ └── model-image-library-explained.mdx │ │ │ │ │ │ ├── how-to │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── setup-gpu.mdx │ │ │ │ │ │ │ └── verify-models.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── paths │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ └── model │ │ │ │ │ │ ├── gpu.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── library.mdx │ │ │ │ │ │ └── serving.mdx │ │ │ │ ├── analytics │ │ │ │ │ ├── delta_lake.mdx │ │ │ │ │ ├── iceberg.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── lakehouse.mdx │ │ │ │ │ ├── learn │ │ │ │ │ │ ├── analytics_concepts.mdx │ │ │ │ │ │ ├── how-to │ │ │ │ │ │ │ ├── configure-delta-pgfs.mdx │ │ │ │ │ │ │ ├── configure-iceberg-catalog.mdx │ │ │ │ │ │ │ ├── configure-tiered-autopartition.mdx │ │ │ │ │ │ │ ├── configure-tiered-offload.mdx │ │ │ │ │ │ │ ├── configure-tiered-pgfs.mdx │ │ │ │ │ │ │ ├── create-lakehouse-cluster.mdx │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── monitor-tiered-tables.mdx │ │ │ │ │ │ │ ├── offload-pgd-to-iceberg.mdx │ │ │ │ │ │ │ ├── performance-delta-lake-queries.mdx │ │ │ │ │ │ │ ├── query-delta-lake-tables.mdx │ │ │ │ │ │ │ ├── query-iceberg-existing-tables.mdx │ │ │ │ │ │ │ └── query-tiered-tables.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── personas.mdx │ │ │ │ │ │ └── use-cases.mdx │ │ │ │ │ └── tiered_tables.mdx │ │ │ │ ├── images │ │ │ │ │ ├── 2dn-1wn-2dn-1wn-1wg.svg │ │ │ │ │ ├── PGAIHM-backups-img1.png │ │ │ │ │ ├── PGAIHM-backups-img2.png │ │ │ │ │ ├── PGAIHM-restores-img1.png │ │ │ │ │ ├── PGAIHM-restores-img2.png │ │ │ │ │ ├── PGAIHM-restores-pitr-api-1.png │ │ │ │ │ ├── PGAIHM-restores-pitr-api-2.png │ │ │ │ │ ├── PGAIHM-restores-pitr-api-3.png │ │ │ │ │ ├── PGAIHM-restores-pitr-cli-1.png │ │ │ │ │ ├── PGAIHM-restores-pitr-cli-2.png │ │ │ │ │ ├── api_docs.png │ │ │ │ │ ├── architectures │ │ │ │ │ │ ├── ahadha-1x3-cluster.svg │ │ │ │ │ │ ├── dha-3x3-cluster.svg │ │ │ │ │ │ └── dhaaha-1x2-with-witness.svg │ │ │ │ │ ├── assetlibrary-home.png │ │ │ │ │ ├── assetlibrary-image-details-image-tags-tab.png │ │ │ │ │ ├── assetlibrary-image-details-overview-tab.png │ │ │ │ │ ├── assetlibrary-image-tag-details.png │ │ │ │ │ ├── assetlibrary-knowledge-bases.png │ │ │ │ │ ├── browser_cluster.png │ │ │ │ │ ├── cert-manager_dashboard.png │ │ │ │ │ ├── cluster-health-status-dha.png │ │ │ │ │ ├── cluster-health-status-primary-standby.png │ │ │ │ │ ├── cluster_types_HM.svg │ │ │ │ │ ├── default_alerts_hcp.png │ │ │ │ │ ├── eha.png │ │ │ │ │ ├── hard_utiliz.png │ │ │ │ │ ├── hcp-usagereport-1.png │ │ │ │ │ ├── hcp_high-level_light.svg │ │ │ │ │ ├── high-availability.svg │ │ │ │ │ ├── hm_migrations_oracle.svg │ │ │ │ │ ├── hm_migrations_pg.svg │ │ │ │ │ ├── hm_monitoring_no_ext.svg │ │ │ │ │ ├── k8s_compute_dashboard.png │ │ │ │ │ ├── k8s_coreDNS_dashboard.png │ │ │ │ │ ├── k8s_kubelet_dashboard.png │ │ │ │ │ ├── k8s_networking_cluster_dashboard.png │ │ │ │ │ ├── k8s_persistentvolumes_dashboard.png │ │ │ │ │ ├── k8s_stateful_dashboard.png │ │ │ │ │ ├── launchpad.png │ │ │ │ │ ├── launchpad_access.png │ │ │ │ │ ├── loki_chunks_dashboard.png │ │ │ │ │ ├── loki_data_dashboard.png │ │ │ │ │ ├── loki_ops_dashboard.png │ │ │ │ │ ├── loki_reads_dashboard.png │ │ │ │ │ ├── loki_reads_resources_dashboard.png │ │ │ │ │ ├── loki_retention_dashboard.png │ │ │ │ │ ├── loki_writes_dashboard.png │ │ │ │ │ ├── loki_writes_resources_dashboard.png │ │ │ │ │ ├── postgres_PGD_dashboard.png │ │ │ │ │ ├── postgres_estatestats_dashboard.png │ │ │ │ │ ├── postgres_hardware_dashboard.png │ │ │ │ │ ├── postgres_k8s_events_dashboard.png │ │ │ │ │ ├── postgres_status_dashboard.png │ │ │ │ │ ├── power_emission_dashboard.png │ │ │ │ │ ├── project-overview.png │ │ │ │ │ ├── project-spog.png │ │ │ │ │ ├── region2d1w.png │ │ │ │ │ ├── region3d.png │ │ │ │ │ ├── repo-token.png │ │ │ │ │ ├── single-node.svg │ │ │ │ │ ├── telemetry_memcached_dashboard.png │ │ │ │ │ ├── telemetry_node_dashboard.png │ │ │ │ │ ├── telemetry_prometheus_dashboard.png │ │ │ │ │ ├── telemetry_thanos_dashboard.png │ │ │ │ │ └── velero_dashboard.png │ │ │ │ ├── index.mdx │ │ │ │ ├── install │ │ │ │ │ ├── customization │ │ │ │ │ │ ├── data_catalog_secret.mdx │ │ │ │ │ │ ├── genai_secret.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── migration_portal_secrets.mdx │ │ │ │ │ ├── eks │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── installing │ │ │ │ │ │ │ ├── assets-helm │ │ │ │ │ │ │ │ ├── default-env.sh │ │ │ │ │ │ │ │ ├── eks-fix-auto.sh │ │ │ │ │ │ │ │ ├── eks-install-secrets.sh │ │ │ │ │ │ │ │ └── prepare.sh │ │ │ │ │ │ │ ├── assets-op │ │ │ │ │ │ │ │ ├── default-env.sh │ │ │ │ │ │ │ │ ├── eks-fix-auto.sh │ │ │ │ │ │ │ │ ├── eks-install-operator.sh │ │ │ │ │ │ │ │ ├── eks-install-secrets.sh │ │ │ │ │ │ │ │ ├── hm-default.yaml │ │ │ │ │ │ │ │ └── prepare-op.sh │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── installinghelm.mdx │ │ │ │ │ │ │ └── installingop.mdx │ │ │ │ │ │ ├── portalconnection.mdx │ │ │ │ │ │ ├── prerequisites │ │ │ │ │ │ │ ├── awsaccount.mdx │ │ │ │ │ │ │ ├── ekscluster.mdx │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ └── installsystem.mdx │ │ │ │ │ │ └── uninstall.mdx │ │ │ │ │ ├── gcp │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── installing │ │ │ │ │ │ │ ├── dns_and_verify.mdx │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── installhelm.mdx │ │ │ │ │ │ │ └── installop.mdx │ │ │ │ │ │ ├── portalconnection.mdx │ │ │ │ │ │ └── prerequisites │ │ │ │ │ │ │ ├── gcpcluster.mdx │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── installsystem.mdx │ │ │ │ │ │ │ └── setvariables.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── kubernetes │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── planning.mdx │ │ │ │ │ │ └── recommended.mdx │ │ │ │ │ └── rhos │ │ │ │ │ │ ├── dns_and_verify.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── installing.mdx │ │ │ │ │ │ ├── portalconnection.mdx │ │ │ │ │ │ └── prerequisites │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── installsystem.mdx │ │ │ │ │ │ ├── rhoscluster.mdx │ │ │ │ │ │ └── setvariables.mdx │ │ │ │ ├── overview │ │ │ │ │ ├── architecture.mdx │ │ │ │ │ ├── database_types │ │ │ │ │ │ ├── advanced_highavailability.mdx │ │ │ │ │ │ ├── distributed_highavailability.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── primary_standby_highavailability.mdx │ │ │ │ │ │ └── single_node.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── postgres_distributions.mdx │ │ │ │ ├── release_notes │ │ │ │ │ ├── hm_1.2_rel_notes.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── system │ │ │ │ │ ├── concepts.mdx │ │ │ │ │ ├── faq.mdx │ │ │ │ │ ├── glossary.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── specs.mdx │ │ │ │ │ ├── use-cases.mdx │ │ │ │ │ └── what-to-expect.mdx │ │ │ │ └── using_hybrid_manager │ │ │ │ │ ├── backup_restore │ │ │ │ │ ├── backups.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── restores.mdx │ │ │ │ │ ├── cluster_management │ │ │ │ │ ├── create-clusters │ │ │ │ │ │ ├── additional-settings.mdx │ │ │ │ │ │ ├── cluster-info.mdx │ │ │ │ │ │ ├── cluster-settings.mdx │ │ │ │ │ │ ├── create-clusters-with-templates.mdx │ │ │ │ │ │ ├── data-groups.mdx │ │ │ │ │ │ ├── db-configuration.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── manage-clusters │ │ │ │ │ │ ├── create-cluster-template.mdx │ │ │ │ │ │ ├── delete-clusters.mdx │ │ │ │ │ │ ├── edit-clusters.mdx │ │ │ │ │ │ ├── formula.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── restore-clusters.mdx │ │ │ │ │ │ └── trace-clusters.mdx │ │ │ │ │ ├── managing_db_access │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── ldap.mdx │ │ │ │ │ └── view_clusters │ │ │ │ │ │ ├── cluster-backups-tab.mdx │ │ │ │ │ │ ├── cluster-connect-tab.mdx │ │ │ │ │ │ ├── cluster-logs-tab.mdx │ │ │ │ │ │ ├── cluster-monitoring-tab.mdx │ │ │ │ │ │ ├── cluster-overview-tab.mdx │ │ │ │ │ │ ├── cluster-properties-tab.mdx │ │ │ │ │ │ ├── cluster-query-diagnostics-tab.mdx │ │ │ │ │ │ ├── cluster-recommendations-tab.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── edbctl │ │ │ │ │ ├── edbctl_backup.mdx │ │ │ │ │ ├── edbctl_cluster.mdx │ │ │ │ │ ├── edbctl_config.mdx │ │ │ │ │ ├── edbctl_credential.mdx │ │ │ │ │ ├── edbctl_image.mdx │ │ │ │ │ ├── edbctl_image_pull_secret.mdx │ │ │ │ │ ├── edbctl_operator.mdx │ │ │ │ │ ├── edbctl_project.mdx │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── enabling_migration_copilot.mdx │ │ │ │ │ ├── hadr │ │ │ │ │ ├── hadr.mdx │ │ │ │ │ ├── hadr_recovery.mdx │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── hm_overview │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── lakehouse.mdx │ │ │ │ │ ├── postgres.mdx │ │ │ │ │ └── using-portal.mdx │ │ │ │ │ ├── hm_terminology.mdx │ │ │ │ │ ├── image-management │ │ │ │ │ ├── asset-library.mdx │ │ │ │ │ ├── container-images.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── knowledge-bases.mdx │ │ │ │ │ └── manage-repositories.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── kms_for_tde │ │ │ │ │ ├── adding_kms_support.mdx │ │ │ │ │ ├── aws_kms.mdx │ │ │ │ │ ├── deleting_key.mdx │ │ │ │ │ ├── google_cloud_kms.mdx │ │ │ │ │ ├── hashicorp.mdx │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── managing_users │ │ │ │ │ ├── apply_dex_config.mdx │ │ │ │ │ ├── byo_idp │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── ldap.mdx │ │ │ │ │ │ └── saml.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── native_users │ │ │ │ │ │ ├── change_pw_native_user.mdx │ │ │ │ │ │ ├── create_native_user.mdx │ │ │ │ │ │ ├── disable_native_user.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ └── user_roles_authz │ │ │ │ │ │ ├── authz.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── roles.mdx │ │ │ │ │ ├── migration │ │ │ │ │ ├── architecture.mdx │ │ │ │ │ ├── features.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── installing │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── linux_arm64 │ │ │ │ │ │ │ ├── edb-dms-reader_debian_12.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ └── linux_x86_64 │ │ │ │ │ │ │ ├── edb-dms-reader_debian_11.mdx │ │ │ │ │ │ │ ├── edb-dms-reader_debian_12.mdx │ │ │ │ │ │ │ ├── edb-dms-reader_other_linux_8.mdx │ │ │ │ │ │ │ ├── edb-dms-reader_other_linux_9.mdx │ │ │ │ │ │ │ ├── edb-dms-reader_rhel_8.mdx │ │ │ │ │ │ │ ├── edb-dms-reader_rhel_9.mdx │ │ │ │ │ │ │ ├── edb-dms-reader_sles_15.mdx │ │ │ │ │ │ │ ├── edb-dms-reader_ubuntu_22.mdx │ │ │ │ │ │ │ ├── edb-dms-reader_ubuntu_24.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── installing2 │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── linux_arm64 │ │ │ │ │ │ │ ├── edb-dms-writer_debian_12.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ └── linux_x86_64 │ │ │ │ │ │ │ ├── edb-dms-writer_debian_11.mdx │ │ │ │ │ │ │ ├── edb-dms-writer_debian_12.mdx │ │ │ │ │ │ │ ├── edb-dms-writer_other_linux_8.mdx │ │ │ │ │ │ │ ├── edb-dms-writer_other_linux_9.mdx │ │ │ │ │ │ │ ├── edb-dms-writer_rhel_8.mdx │ │ │ │ │ │ │ ├── edb-dms-writer_rhel_9.mdx │ │ │ │ │ │ │ ├── edb-dms-writer_sles_15.mdx │ │ │ │ │ │ │ ├── edb-dms-writer_ubuntu_22.mdx │ │ │ │ │ │ │ ├── edb-dms-writer_ubuntu_24.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── limitations.mdx │ │ │ │ │ ├── migrate │ │ │ │ │ │ ├── credentials.mdx │ │ │ │ │ │ ├── destinations.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── migrations.mdx │ │ │ │ │ │ └── sources.mdx │ │ │ │ │ ├── migration_guides │ │ │ │ │ │ ├── aws_rds_pg_to_hm_managed │ │ │ │ │ │ │ ├── applying_constraints.mdx │ │ │ │ │ │ │ ├── configuring_reader.mdx │ │ │ │ │ │ │ ├── creating_destination_db.mdx │ │ │ │ │ │ │ ├── creating_migration.mdx │ │ │ │ │ │ │ ├── creating_project_credentials.mdx │ │ │ │ │ │ │ ├── finalizing_migration.mdx │ │ │ │ │ │ │ ├── handling_schema.mdx │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── migrating_schema.mdx │ │ │ │ │ │ │ ├── preparing_source_pg_db.mdx │ │ │ │ │ │ │ └── viewing_source.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── oracle_to_hm_managed │ │ │ │ │ │ │ ├── agent_configuring_oracle.mdx │ │ │ │ │ │ │ ├── agent_creating_machine_user.mdx │ │ │ │ │ │ │ ├── agent_installing.mdx │ │ │ │ │ │ │ ├── agent_preparing_oracle.mdx │ │ │ │ │ │ │ ├── agent_running.mdx │ │ │ │ │ │ │ ├── agent_service.mdx │ │ │ │ │ │ │ ├── agent_verifying_assessment.mdx │ │ │ │ │ │ │ ├── applying_constraints.mdx │ │ │ │ │ │ │ ├── configuring_reader.mdx │ │ │ │ │ │ │ ├── creating_destination_db.mdx │ │ │ │ │ │ │ ├── creating_migration.mdx │ │ │ │ │ │ │ ├── creating_project_credentials.mdx │ │ │ │ │ │ │ ├── finalizing_migration.mdx │ │ │ │ │ │ │ ├── handling_schema.mdx │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── migrating_schema.mdx │ │ │ │ │ │ │ ├── preparing_source_oracle_db.mdx │ │ │ │ │ │ │ └── viewing_source.mdx │ │ │ │ │ │ ├── self_managed_pg_to_hm_managed │ │ │ │ │ │ │ ├── applying_constraints.mdx │ │ │ │ │ │ │ ├── configuring_reader.mdx │ │ │ │ │ │ │ ├── creating_destination_db.mdx │ │ │ │ │ │ │ ├── creating_migration.mdx │ │ │ │ │ │ │ ├── creating_project_credentials.mdx │ │ │ │ │ │ │ ├── finalizing_migration.mdx │ │ │ │ │ │ │ ├── handling_schema.mdx │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── migrating_schema.mdx │ │ │ │ │ │ │ ├── preparing_source_pg_db.mdx │ │ │ │ │ │ │ └── viewing_source.mdx │ │ │ │ │ │ ├── self_managed_pg_to_self_managed_pg │ │ │ │ │ │ │ ├── applying_constraints.mdx │ │ │ │ │ │ │ ├── configuring_reader.mdx │ │ │ │ │ │ │ ├── configuring_writer.mdx │ │ │ │ │ │ │ ├── creating_destination_db.mdx │ │ │ │ │ │ │ ├── creating_migration.mdx │ │ │ │ │ │ │ ├── creating_project_credentials.mdx │ │ │ │ │ │ │ ├── finalizing_migration.mdx │ │ │ │ │ │ │ ├── handling_schema.mdx │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── migrating_schema.mdx │ │ │ │ │ │ │ ├── preparing_destination_selfpg_db.mdx │ │ │ │ │ │ │ ├── preparing_source_pg_db.mdx │ │ │ │ │ │ │ ├── viewing_destination_console.mdx │ │ │ │ │ │ │ └── viewing_source.mdx │ │ │ │ │ │ └── snippet_sources │ │ │ │ │ │ │ ├── 0_creating_destination_db │ │ │ │ │ │ │ ├── creating_hm_destination_db.mdx │ │ │ │ │ │ │ ├── creating_selfmanaged_destination_db.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ ├── 100_agent_snippets │ │ │ │ │ │ │ ├── agent_service_oracle.mdx │ │ │ │ │ │ │ ├── configuring_agent_oracle.mdx │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── preparing_oracle_database.mdx │ │ │ │ │ │ │ └── verifying_assessments.mdx │ │ │ │ │ │ │ ├── 10_creating_migration │ │ │ │ │ │ │ ├── creating_mig_hm_managed.mdx │ │ │ │ │ │ │ ├── creating_mig_self_managed.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ ├── 11_finalizing_migration │ │ │ │ │ │ │ ├── finalizing_migration.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ ├── 12_apply_constraints │ │ │ │ │ │ │ ├── applying_constraints.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ ├── 1_preparing_source_dbs │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── preparing_oracle_source_databases.mdx │ │ │ │ │ │ │ ├── preparing_postgres_source_databases.mdx │ │ │ │ │ │ │ └── preparing_rds_source_databases.mdx │ │ │ │ │ │ │ ├── 2_preparing_destination_dbs │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ └── preparing_postgres_destination_databases.mdx │ │ │ │ │ │ │ ├── 3_schema_considerations │ │ │ │ │ │ │ ├── constraints.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ ├── 4_migrating_schemas │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── preparing_oracle_schemas.mdx │ │ │ │ │ │ │ └── preparing_postgres_schemas.mdx │ │ │ │ │ │ │ ├── 5_creating_project_credentials │ │ │ │ │ │ │ ├── creating_project_credentials.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ ├── 6_reader │ │ │ │ │ │ │ ├── configuring_reader_aws_rds_pg.mdx │ │ │ │ │ │ │ ├── configuring_reader_oracle.mdx │ │ │ │ │ │ │ ├── configuring_reader_postgres.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ ├── 7_viewing_source_console │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ └── viewing_source_console.mdx │ │ │ │ │ │ │ ├── 8_writer │ │ │ │ │ │ │ ├── configuring_writer_postgres.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ ├── 9_viewing_destination │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ └── viewing_destination_console.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── migrations │ │ │ │ │ │ ├── compatibility.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── migration_database_details_view.mdx │ │ │ │ │ ├── reader_reference.mdx │ │ │ │ │ ├── schema_migration │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── migration_portal │ │ │ │ │ │ │ ├── access_mp.mdx │ │ │ │ │ │ │ ├── external_schema_migration.mdx │ │ │ │ │ │ │ ├── hm_schema_migration.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ └── postgres │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── specs.mdx │ │ │ │ │ ├── supported_versions.mdx │ │ │ │ │ ├── terminology.mdx │ │ │ │ │ └── writer_reference.mdx │ │ │ │ │ ├── monitoring │ │ │ │ │ ├── alerts.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── mon_ext_dbs │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mon_ext_csp │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ └── rds.mdx │ │ │ │ │ │ └── mon_with_agent │ │ │ │ │ │ │ ├── admin_tasks.mdx │ │ │ │ │ │ │ ├── agent_os_user.mdx │ │ │ │ │ │ │ ├── configure_agent │ │ │ │ │ │ │ ├── fine_tune_monitoring.mdx │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── multiple_dbs.mdx │ │ │ │ │ │ │ └── usage_reporting.mdx │ │ │ │ │ │ │ ├── create_machine_user.mdx │ │ │ │ │ │ │ ├── data_sovereignity.mdx │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── install_agent.mdx │ │ │ │ │ │ │ ├── prepare_postgres_database.mdx │ │ │ │ │ │ │ ├── run_agent.mdx │ │ │ │ │ │ │ ├── run_as_service.mdx │ │ │ │ │ │ │ └── troubleshooting.mdx │ │ │ │ │ ├── monitoring_console │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── metrics_latency.mdx │ │ │ │ │ │ └── support_scope.mdx │ │ │ │ │ ├── monitoring_grafana │ │ │ │ │ │ ├── grafana_dashboards │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── kubernetes_dashboards.mdx │ │ │ │ │ │ │ ├── loki_dashboards.mdx │ │ │ │ │ │ │ ├── other_dashboards.mdx │ │ │ │ │ │ │ ├── postgres_dashboards.mdx │ │ │ │ │ │ │ └── telemetry_dashboards.mdx │ │ │ │ │ │ ├── grafana_explore.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── troubleshooting.mdx │ │ │ │ │ └── notifications.mdx │ │ │ │ │ ├── projects │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── managing.mdx │ │ │ │ │ ├── settings │ │ │ │ │ │ ├── alerts.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── notifications.mdx │ │ │ │ │ ├── storage-locations.mdx │ │ │ │ │ └── usage-report.mdx │ │ │ │ │ ├── query-diagnostics-recommendations.mdx │ │ │ │ │ ├── troubleshooting.mdx │ │ │ │ │ ├── upgrading │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── pg_major │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── pgd_major.mdx │ │ │ │ │ │ └── upgrade_major.mdx │ │ │ │ │ └── pg_minor.mdx │ │ │ │ │ └── using_the_api │ │ │ │ │ ├── access_key.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── using_access_key.mdx │ │ │ │ │ └── using_the_hm_api.mdx │ │ │ └── index.mdx │ │ ├── 1.3 │ │ │ ├── ai-factory │ │ │ │ ├── concepts │ │ │ │ │ ├── differences-and-faq.mdx │ │ │ │ │ ├── generic-concepts.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── security-governance.mdx │ │ │ │ │ ├── sovereign-ai.mdx │ │ │ │ │ └── terminology.mdx │ │ │ │ ├── gen-ai │ │ │ │ │ ├── architecture.mdx │ │ │ │ │ ├── assistants.mdx │ │ │ │ │ ├── concepts.mdx │ │ │ │ │ ├── configure-datalake.mdx │ │ │ │ │ ├── create-assistant.mdx │ │ │ │ │ ├── create-knowledge-base.mdx │ │ │ │ │ ├── create-retriever.mdx │ │ │ │ │ ├── create-ruleset.mdx │ │ │ │ │ ├── create-structure.mdx │ │ │ │ │ ├── create-tool.mdx │ │ │ │ │ ├── data-lake.mdx │ │ │ │ │ ├── data-source-confluence.mdx │ │ │ │ │ ├── data-source-custom.mdx │ │ │ │ │ ├── data-source-data-lake.mdx │ │ │ │ │ ├── data-source-google-drive.mdx │ │ │ │ │ ├── data-source-s3.mdx │ │ │ │ │ ├── data-source-webpage.mdx │ │ │ │ │ ├── data-sources.mdx │ │ │ │ │ ├── faq.mdx │ │ │ │ │ ├── getting-started.mdx │ │ │ │ │ ├── how-to.mdx │ │ │ │ │ ├── hybrid-kb-best-practices.mdx │ │ │ │ │ ├── images │ │ │ │ │ │ ├── quickstart-ui-step-1-knowledge-base.svg │ │ │ │ │ │ ├── quickstart-ui-step-2-ruleset.svg │ │ │ │ │ │ ├── quickstart-ui-step-3-retriever.svg │ │ │ │ │ │ ├── quickstart-ui-step-4-tools.svg │ │ │ │ │ │ ├── quickstart-ui-step-5-model-serving.svg │ │ │ │ │ │ ├── quickstart-ui-step-6-create-assistant.svg │ │ │ │ │ │ └── quickstart-ui-step-7-threads.svg │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── knowledge-bases.mdx │ │ │ │ │ ├── libraries.mdx │ │ │ │ │ ├── manage-knowledge-base.mdx │ │ │ │ │ ├── quickstart-customer-service-agent-ui.mdx │ │ │ │ │ ├── reference │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── assistants │ │ │ │ │ │ │ ├── assistant-runs.mdx │ │ │ │ │ │ │ ├── getting-started-with-assistants.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── data-lakes │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── data-sources │ │ │ │ │ │ │ ├── create-data-source.mdx │ │ │ │ │ │ │ ├── getting-started-with-data-sources.mdx │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ └── refresh-data.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── knowledge-bases │ │ │ │ │ │ │ ├── accessing-data.mdx │ │ │ │ │ │ │ ├── create-knowledge-base.mdx │ │ │ │ │ │ │ ├── getting-started-with-knowledge-bases.mdx │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ └── knowledge-base-types.mdx │ │ │ │ │ │ ├── retrievers │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── rules │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── sdk │ │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ │ ├── artifacts.mdx │ │ │ │ │ │ │ │ ├── chunkers.mdx │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ └── loaders.mdx │ │ │ │ │ │ │ ├── drivers │ │ │ │ │ │ │ │ ├── assistant-drivers.mdx │ │ │ │ │ │ │ │ ├── audio-transcription-drivers.mdx │ │ │ │ │ │ │ │ ├── conversation-memory-drivers.mdx │ │ │ │ │ │ │ │ ├── embedding-drivers.mdx │ │ │ │ │ │ │ │ ├── event-listener-drivers.mdx │ │ │ │ │ │ │ │ ├── file-manager-drivers.mdx │ │ │ │ │ │ │ │ ├── image-generation-drivers.mdx │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ ├── observability-drivers.mdx │ │ │ │ │ │ │ │ ├── rerank-drivers.mdx │ │ │ │ │ │ │ │ ├── ruleset-drivers.mdx │ │ │ │ │ │ │ │ ├── sql-drivers.mdx │ │ │ │ │ │ │ │ ├── structure-run-drivers.mdx │ │ │ │ │ │ │ │ ├── text-to-speech-drivers.mdx │ │ │ │ │ │ │ │ ├── vector-store-drivers.mdx │ │ │ │ │ │ │ │ ├── web-scraper-drivers.mdx │ │ │ │ │ │ │ │ └── web-search-drivers.mdx │ │ │ │ │ │ │ ├── engines │ │ │ │ │ │ │ │ ├── eval-engines.mdx │ │ │ │ │ │ │ │ ├── extraction-engines.mdx │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ └── summary-engines.mdx │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── misc │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ ├── serialization.mdx │ │ │ │ │ │ │ │ └── tokenizers.mdx │ │ │ │ │ │ │ ├── reference │ │ │ │ │ │ │ │ ├── artifacts │ │ │ │ │ │ │ │ │ ├── action_artifact.mdx │ │ │ │ │ │ │ │ │ ├── audio_artifact.mdx │ │ │ │ │ │ │ │ │ ├── base_artifact.mdx │ │ │ │ │ │ │ │ │ ├── blob_artifact.mdx │ │ │ │ │ │ │ │ │ ├── boolean_artifact.mdx │ │ │ │ │ │ │ │ │ ├── error_artifact.mdx │ │ │ │ │ │ │ │ │ ├── generic_artifact.mdx │ │ │ │ │ │ │ │ │ ├── image_artifact.mdx │ │ │ │ │ │ │ │ │ ├── image_url_artifact.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── info_artifact.mdx │ │ │ │ │ │ │ │ │ ├── json_artifact.mdx │ │ │ │ │ │ │ │ │ ├── list_artifact.mdx │ │ │ │ │ │ │ │ │ ├── model_artifact.mdx │ │ │ │ │ │ │ │ │ ├── text_artifact.mdx │ │ │ │ │ │ │ │ │ └── url_artifact.mdx │ │ │ │ │ │ │ │ ├── chunkers │ │ │ │ │ │ │ │ │ ├── base_chunker.mdx │ │ │ │ │ │ │ │ │ ├── chunk_separator.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── markdown_chunker.mdx │ │ │ │ │ │ │ │ │ ├── pdf_chunker.mdx │ │ │ │ │ │ │ │ │ └── text_chunker.mdx │ │ │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ │ │ ├── actions │ │ │ │ │ │ │ │ │ │ ├── base_action.mdx │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ └── tool_action.mdx │ │ │ │ │ │ │ │ │ ├── decorators.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── observable.mdx │ │ │ │ │ │ │ │ │ ├── prompt_stack │ │ │ │ │ │ │ │ │ │ ├── contents │ │ │ │ │ │ │ │ │ │ │ ├── action_call_delta_message_content.mdx │ │ │ │ │ │ │ │ │ │ │ ├── action_call_message_content.mdx │ │ │ │ │ │ │ │ │ │ │ ├── action_result_message_content.mdx │ │ │ │ │ │ │ │ │ │ │ ├── audio_delta_message_content.mdx │ │ │ │ │ │ │ │ │ │ │ ├── audio_message_content.mdx │ │ │ │ │ │ │ │ │ │ │ ├── base_delta_message_content.mdx │ │ │ │ │ │ │ │ │ │ │ ├── base_message_content.mdx │ │ │ │ │ │ │ │ │ │ │ ├── generic_message_content.mdx │ │ │ │ │ │ │ │ │ │ │ ├── image_message_content.mdx │ │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ │ ├── text_delta_message_content.mdx │ │ │ │ │ │ │ │ │ │ │ └── text_message_content.mdx │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ ├── messages │ │ │ │ │ │ │ │ │ │ │ ├── base_message.mdx │ │ │ │ │ │ │ │ │ │ │ ├── delta_message.mdx │ │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ │ └── message.mdx │ │ │ │ │ │ │ │ │ │ └── prompt_stack.mdx │ │ │ │ │ │ │ │ │ └── reference.mdx │ │ │ │ │ │ │ │ ├── configs │ │ │ │ │ │ │ │ │ ├── base_config.mdx │ │ │ │ │ │ │ │ │ ├── defaults_config.mdx │ │ │ │ │ │ │ │ │ ├── drivers │ │ │ │ │ │ │ │ │ │ ├── amazon_bedrock_drivers_config.mdx │ │ │ │ │ │ │ │ │ │ ├── anthropic_drivers_config.mdx │ │ │ │ │ │ │ │ │ │ ├── azure_openai_drivers_config.mdx │ │ │ │ │ │ │ │ │ │ ├── base_drivers_config.mdx │ │ │ │ │ │ │ │ │ │ ├── cohere_drivers_config.mdx │ │ │ │ │ │ │ │ │ │ ├── drivers_config.mdx │ │ │ │ │ │ │ │ │ │ ├── google_drivers_config.mdx │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ └── openai_drivers_config.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── logging │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ ├── json_formatter.mdx │ │ │ │ │ │ │ │ │ │ ├── logging_config.mdx │ │ │ │ │ │ │ │ │ │ ├── newline_logging_filter.mdx │ │ │ │ │ │ │ │ │ │ └── truncate_logging_filter.mdx │ │ │ │ │ │ │ │ ├── drivers │ │ │ │ │ │ │ │ │ ├── assistant │ │ │ │ │ │ │ │ │ │ ├── base_assistant_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── griptape_cloud.mdx │ │ │ │ │ │ │ │ │ │ ├── griptape_cloud_assistant_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ ├── openai.mdx │ │ │ │ │ │ │ │ │ │ └── openai_assistant_driver.mdx │ │ │ │ │ │ │ │ │ ├── audio_transcription │ │ │ │ │ │ │ │ │ │ ├── base_audio_transcription_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── dummy.mdx │ │ │ │ │ │ │ │ │ │ ├── dummy_audio_transcription_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ ├── openai.mdx │ │ │ │ │ │ │ │ │ │ └── openai_audio_transcription_driver.mdx │ │ │ │ │ │ │ │ │ ├── embedding │ │ │ │ │ │ │ │ │ │ ├── amazon_bedrock.mdx │ │ │ │ │ │ │ │ │ │ ├── amazon_bedrock_cohere_embedding_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── amazon_bedrock_titan_embedding_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── amazon_sagemaker_jumpstart.mdx │ │ │ │ │ │ │ │ │ │ ├── amazon_sagemaker_jumpstart_embedding_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── azure_openai_embedding_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── base_embedding_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── cohere.mdx │ │ │ │ │ │ │ │ │ │ ├── cohere_embedding_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── dummy.mdx │ │ │ │ │ │ │ │ │ │ ├── dummy_embedding_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── google.mdx │ │ │ │ │ │ │ │ │ │ ├── google_embedding_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── huggingface_hub.mdx │ │ │ │ │ │ │ │ │ │ ├── huggingface_hub_embedding_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ ├── nvidia_nim.mdx │ │ │ │ │ │ │ │ │ │ ├── nvidia_nim_embedding_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── ollama.mdx │ │ │ │ │ │ │ │ │ │ ├── ollama_embedding_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── openai.mdx │ │ │ │ │ │ │ │ │ │ ├── openai_embedding_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── voyageai.mdx │ │ │ │ │ │ │ │ │ │ └── voyageai_embedding_driver.mdx │ │ │ │ │ │ │ │ │ ├── event_listener │ │ │ │ │ │ │ │ │ │ ├── amazon_sqs.mdx │ │ │ │ │ │ │ │ │ │ ├── amazon_sqs_event_listener_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── aws_iot_core.mdx │ │ │ │ │ │ │ │ │ │ ├── aws_iot_core_event_listener_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── base_event_listener_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── griptape_cloud.mdx │ │ │ │ │ │ │ │ │ │ ├── griptape_cloud_event_listener_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ ├── pusher.mdx │ │ │ │ │ │ │ │ │ │ ├── pusher_event_listener_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── webhook.mdx │ │ │ │ │ │ │ │ │ │ └── webhook_event_listener_driver.mdx │ │ │ │ │ │ │ │ │ ├── file_manager │ │ │ │ │ │ │ │ │ │ ├── amazon_s3.mdx │ │ │ │ │ │ │ │ │ │ ├── amazon_s3_file_manager_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── base_file_manager_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── griptape_cloud.mdx │ │ │ │ │ │ │ │ │ │ ├── griptape_cloud_file_manager_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ ├── local.mdx │ │ │ │ │ │ │ │ │ │ └── local_file_manager_driver.mdx │ │ │ │ │ │ │ │ │ ├── image_generation │ │ │ │ │ │ │ │ │ │ ├── amazon_bedrock.mdx │ │ │ │ │ │ │ │ │ │ ├── amazon_bedrock_image_generation_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── azure_openai_image_generation_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── base_image_generation_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── base_multi_model_image_generation_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── dummy.mdx │ │ │ │ │ │ │ │ │ │ ├── dummy_image_generation_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── griptape_cloud.mdx │ │ │ │ │ │ │ │ │ │ ├── griptape_cloud_image_generation_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── huggingface_pipeline.mdx │ │ │ │ │ │ │ │ │ │ ├── huggingface_pipeline_image_generation_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ ├── leonardo.mdx │ │ │ │ │ │ │ │ │ │ ├── leonardo_image_generation_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── openai.mdx │ │ │ │ │ │ │ │ │ │ └── openai_image_generation_driver.mdx │ │ │ │ │ │ │ │ │ ├── image_generation_model │ │ │ │ │ │ │ │ │ │ ├── base_image_generation_model_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── bedrock_stable_diffusion.mdx │ │ │ │ │ │ │ │ │ │ ├── bedrock_stable_diffusion_image_generation_model_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── bedrock_titan.mdx │ │ │ │ │ │ │ │ │ │ ├── bedrock_titan_image_generation_model_driver.mdx │ │ │ │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ │ │ ├── image_generation_pipeline │ │ │ │ │ │ │ │ │ │ ├── base_image_generation_pipeline_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ ├── stable_diffusion_3.mdx │ │ │ │ │ │ │ │ │ │ ├── stable_diffusion_3_controlnet.mdx │ │ │ │ │ │ │ │ │ │ ├── stable_diffusion_3_controlnet_image_generation_pipeline_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── stable_diffusion_3_image_generation_pipeline_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── stable_diffusion_3_img_2_img.mdx │ │ │ │ │ │ │ │ │ │ └── stable_diffusion_3_img_2_img_image_generation_pipeline_driver.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── memory │ │ │ │ │ │ │ │ │ │ ├── conversation │ │ │ │ │ │ │ │ │ │ │ ├── amazon_dynamodb.mdx │ │ │ │ │ │ │ │ │ │ │ ├── amazon_dynamodb_conversation_memory_driver.mdx │ │ │ │ │ │ │ │ │ │ │ ├── base_conversation_memory_driver.mdx │ │ │ │ │ │ │ │ │ │ │ ├── griptape_cloud.mdx │ │ │ │ │ │ │ │ │ │ │ ├── griptape_cloud_conversation_memory_driver.mdx │ │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ │ ├── local.mdx │ │ │ │ │ │ │ │ │ │ │ ├── local_conversation_memory_driver.mdx │ │ │ │ │ │ │ │ │ │ │ ├── redis.mdx │ │ │ │ │ │ │ │ │ │ │ └── redis_conversation_memory_driver.mdx │ │ │ │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ │ │ ├── observability │ │ │ │ │ │ │ │ │ │ ├── base_observability_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── datadog.mdx │ │ │ │ │ │ │ │ │ │ ├── datadog_observability_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── griptape_cloud.mdx │ │ │ │ │ │ │ │ │ │ ├── griptape_cloud_observability_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ ├── no_op.mdx │ │ │ │ │ │ │ │ │ │ ├── no_op_observability_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── open_telemetry.mdx │ │ │ │ │ │ │ │ │ │ └── open_telemetry_observability_driver.mdx │ │ │ │ │ │ │ │ │ ├── prompt │ │ │ │ │ │ │ │ │ │ ├── amazon_bedrock.mdx │ │ │ │ │ │ │ │ │ │ ├── amazon_bedrock_prompt_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── amazon_sagemaker_jumpstart.mdx │ │ │ │ │ │ │ │ │ │ ├── amazon_sagemaker_jumpstart_prompt_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── anthropic.mdx │ │ │ │ │ │ │ │ │ │ ├── anthropic_prompt_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── azure_openai_chat_prompt_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── base_prompt_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── cohere.mdx │ │ │ │ │ │ │ │ │ │ ├── cohere_prompt_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── dummy.mdx │ │ │ │ │ │ │ │ │ │ ├── dummy_prompt_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── google.mdx │ │ │ │ │ │ │ │ │ │ ├── google_prompt_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── griptape_cloud.mdx │ │ │ │ │ │ │ │ │ │ ├── griptape_cloud_prompt_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── grok.mdx │ │ │ │ │ │ │ │ │ │ ├── grok_prompt_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── huggingface_hub.mdx │ │ │ │ │ │ │ │ │ │ ├── huggingface_hub_prompt_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── huggingface_pipeline.mdx │ │ │ │ │ │ │ │ │ │ ├── huggingface_pipeline_prompt_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ ├── ollama.mdx │ │ │ │ │ │ │ │ │ │ ├── ollama_prompt_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── openai.mdx │ │ │ │ │ │ │ │ │ │ ├── openai_chat_prompt_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── perplexity.mdx │ │ │ │ │ │ │ │ │ │ └── perplexity_prompt_driver.mdx │ │ │ │ │ │ │ │ │ ├── rerank │ │ │ │ │ │ │ │ │ │ ├── base_rerank_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── cohere.mdx │ │ │ │ │ │ │ │ │ │ ├── cohere_rerank_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ ├── local.mdx │ │ │ │ │ │ │ │ │ │ ├── local_rerank_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── nvidia_nim.mdx │ │ │ │ │ │ │ │ │ │ └── nvidia_nim_rerank_driver.mdx │ │ │ │ │ │ │ │ │ ├── ruleset │ │ │ │ │ │ │ │ │ │ ├── base_ruleset_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── griptape_cloud.mdx │ │ │ │ │ │ │ │ │ │ ├── griptape_cloud_ruleset_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ ├── local.mdx │ │ │ │ │ │ │ │ │ │ └── local_ruleset_driver.mdx │ │ │ │ │ │ │ │ │ ├── sql │ │ │ │ │ │ │ │ │ │ ├── amazon_redshift.mdx │ │ │ │ │ │ │ │ │ │ ├── amazon_redshift_sql_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── base_sql_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ ├── snowflake.mdx │ │ │ │ │ │ │ │ │ │ ├── snowflake_sql_driver.mdx │ │ │ │ │ │ │ │ │ │ └── sql_driver.mdx │ │ │ │ │ │ │ │ │ ├── structure_run │ │ │ │ │ │ │ │ │ │ ├── base_structure_run_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── griptape_cloud.mdx │ │ │ │ │ │ │ │ │ │ ├── griptape_cloud_structure_run_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ ├── local.mdx │ │ │ │ │ │ │ │ │ │ └── local_structure_run_driver.mdx │ │ │ │ │ │ │ │ │ ├── text_to_speech │ │ │ │ │ │ │ │ │ │ ├── azure_openai_text_to_speech_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── base_text_to_speech_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── dummy.mdx │ │ │ │ │ │ │ │ │ │ ├── dummy_text_to_speech_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── elevenlabs.mdx │ │ │ │ │ │ │ │ │ │ ├── elevenlabs_text_to_speech_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ ├── openai.mdx │ │ │ │ │ │ │ │ │ │ └── openai_text_to_speech_driver.mdx │ │ │ │ │ │ │ │ │ ├── vector │ │ │ │ │ │ │ │ │ │ ├── amazon_opensearch.mdx │ │ │ │ │ │ │ │ │ │ ├── amazon_opensearch_vector_store_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── astradb.mdx │ │ │ │ │ │ │ │ │ │ ├── astradb_vector_store_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── azure_mongodb.mdx │ │ │ │ │ │ │ │ │ │ ├── azure_mongodb_vector_store_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── base_vector_store_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── dummy.mdx │ │ │ │ │ │ │ │ │ │ ├── dummy_vector_store_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── griptape_cloud.mdx │ │ │ │ │ │ │ │ │ │ ├── griptape_cloud_vector_store_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ ├── local.mdx │ │ │ │ │ │ │ │ │ │ ├── local_vector_store_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── marqo.mdx │ │ │ │ │ │ │ │ │ │ ├── marqo_vector_store_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── mongodb_atlas.mdx │ │ │ │ │ │ │ │ │ │ ├── mongodb_atlas_vector_store_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── opensearch.mdx │ │ │ │ │ │ │ │ │ │ ├── opensearch_vector_store_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── pgai.mdx │ │ │ │ │ │ │ │ │ │ ├── pgai_knowledge_base_vector_store_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── pgvector.mdx │ │ │ │ │ │ │ │ │ │ ├── pgvector_vector_store_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── pinecone.mdx │ │ │ │ │ │ │ │ │ │ ├── pinecone_vector_store_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── qdrant.mdx │ │ │ │ │ │ │ │ │ │ ├── qdrant_vector_store_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── redis.mdx │ │ │ │ │ │ │ │ │ │ └── redis_vector_store_driver.mdx │ │ │ │ │ │ │ │ │ ├── web_scraper │ │ │ │ │ │ │ │ │ │ ├── base_web_scraper_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ ├── markdownify.mdx │ │ │ │ │ │ │ │ │ │ ├── markdownify_web_scraper_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── proxy.mdx │ │ │ │ │ │ │ │ │ │ ├── proxy_web_scraper_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── trafilatura.mdx │ │ │ │ │ │ │ │ │ │ └── trafilatura_web_scraper_driver.mdx │ │ │ │ │ │ │ │ │ └── web_search │ │ │ │ │ │ │ │ │ │ ├── base_web_search_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── duck_duck_go.mdx │ │ │ │ │ │ │ │ │ │ ├── duck_duck_go_web_search_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── exa.mdx │ │ │ │ │ │ │ │ │ │ ├── exa_web_search_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── google.mdx │ │ │ │ │ │ │ │ │ │ ├── google_web_search_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ ├── perplexity.mdx │ │ │ │ │ │ │ │ │ │ ├── perplexity_web_search_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── tavily.mdx │ │ │ │ │ │ │ │ │ │ └── tavily_web_search_driver.mdx │ │ │ │ │ │ │ │ ├── engines │ │ │ │ │ │ │ │ │ ├── eval │ │ │ │ │ │ │ │ │ │ ├── base_eval_engine.mdx │ │ │ │ │ │ │ │ │ │ ├── eval_engine.mdx │ │ │ │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ │ │ ├── extraction │ │ │ │ │ │ │ │ │ │ ├── base_extraction_engine.mdx │ │ │ │ │ │ │ │ │ │ ├── csv_extraction_engine.mdx │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ └── json_extraction_engine.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── rag │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ ├── modules │ │ │ │ │ │ │ │ │ │ │ ├── base_rag_module.mdx │ │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ │ ├── query │ │ │ │ │ │ │ │ │ │ │ │ ├── base_query_rag_module.mdx │ │ │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ │ │ └── translate_query_rag_module.mdx │ │ │ │ │ │ │ │ │ │ │ ├── response │ │ │ │ │ │ │ │ │ │ │ │ ├── base_after_response_rag_module.mdx │ │ │ │ │ │ │ │ │ │ │ │ ├── base_before_response_rag_module.mdx │ │ │ │ │ │ │ │ │ │ │ │ ├── base_response_rag_module.mdx │ │ │ │ │ │ │ │ │ │ │ │ ├── footnote_prompt_response_rag_module.mdx │ │ │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ │ │ ├── prompt_response_rag_module.mdx │ │ │ │ │ │ │ │ │ │ │ │ └── text_chunks_response_rag_module.mdx │ │ │ │ │ │ │ │ │ │ │ └── retrieval │ │ │ │ │ │ │ │ │ │ │ │ ├── base_rerank_rag_module.mdx │ │ │ │ │ │ │ │ │ │ │ │ ├── base_retrieval_rag_module.mdx │ │ │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ │ │ ├── text_chunks_rerank_rag_module.mdx │ │ │ │ │ │ │ │ │ │ │ │ ├── text_loader_retrieval_rag_module.mdx │ │ │ │ │ │ │ │ │ │ │ │ └── vector_store_retrieval_rag_module.mdx │ │ │ │ │ │ │ │ │ │ ├── rag_context.mdx │ │ │ │ │ │ │ │ │ │ ├── rag_engine.mdx │ │ │ │ │ │ │ │ │ │ └── stages │ │ │ │ │ │ │ │ │ │ │ ├── base_rag_stage.mdx │ │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ │ ├── query_rag_stage.mdx │ │ │ │ │ │ │ │ │ │ │ ├── response_rag_stage.mdx │ │ │ │ │ │ │ │ │ │ │ └── retrieval_rag_stage.mdx │ │ │ │ │ │ │ │ │ └── summary │ │ │ │ │ │ │ │ │ │ ├── base_summary_engine.mdx │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ └── prompt_summary_engine.mdx │ │ │ │ │ │ │ │ ├── events │ │ │ │ │ │ │ │ │ ├── action_chunk_event.mdx │ │ │ │ │ │ │ │ │ ├── audio_chunk_event.mdx │ │ │ │ │ │ │ │ │ ├── base_actions_subtask_event.mdx │ │ │ │ │ │ │ │ │ ├── base_audio_transcription_event.mdx │ │ │ │ │ │ │ │ │ ├── base_chunk_event.mdx │ │ │ │ │ │ │ │ │ ├── base_event.mdx │ │ │ │ │ │ │ │ │ ├── base_image_generation_event.mdx │ │ │ │ │ │ │ │ │ ├── base_image_query_event.mdx │ │ │ │ │ │ │ │ │ ├── base_media_generation_event.mdx │ │ │ │ │ │ │ │ │ ├── base_prompt_event.mdx │ │ │ │ │ │ │ │ │ ├── base_task_event.mdx │ │ │ │ │ │ │ │ │ ├── base_text_to_speech_event.mdx │ │ │ │ │ │ │ │ │ ├── event_bus.mdx │ │ │ │ │ │ │ │ │ ├── event_listener.mdx │ │ │ │ │ │ │ │ │ ├── finish_actions_subtask_event.mdx │ │ │ │ │ │ │ │ │ ├── finish_audio_transcription_event.mdx │ │ │ │ │ │ │ │ │ ├── finish_image_generation_event.mdx │ │ │ │ │ │ │ │ │ ├── finish_image_query_event.mdx │ │ │ │ │ │ │ │ │ ├── finish_prompt_event.mdx │ │ │ │ │ │ │ │ │ ├── finish_structure_run_event.mdx │ │ │ │ │ │ │ │ │ ├── finish_task_event.mdx │ │ │ │ │ │ │ │ │ ├── finish_text_to_speech_event.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── start_actions_subtask_event.mdx │ │ │ │ │ │ │ │ │ ├── start_audio_transcription_event.mdx │ │ │ │ │ │ │ │ │ ├── start_image_generation_event.mdx │ │ │ │ │ │ │ │ │ ├── start_image_query_event.mdx │ │ │ │ │ │ │ │ │ ├── start_prompt_event.mdx │ │ │ │ │ │ │ │ │ ├── start_structure_run_event.mdx │ │ │ │ │ │ │ │ │ ├── start_task_event.mdx │ │ │ │ │ │ │ │ │ ├── start_text_to_speech_event.mdx │ │ │ │ │ │ │ │ │ └── text_chunk_event.mdx │ │ │ │ │ │ │ │ ├── exceptions │ │ │ │ │ │ │ │ │ ├── dummy_exception.mdx │ │ │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ ├── loaders │ │ │ │ │ │ │ │ │ ├── audio_loader.mdx │ │ │ │ │ │ │ │ │ ├── base_file_loader.mdx │ │ │ │ │ │ │ │ │ ├── base_loader.mdx │ │ │ │ │ │ │ │ │ ├── blob_loader.mdx │ │ │ │ │ │ │ │ │ ├── csv_loader.mdx │ │ │ │ │ │ │ │ │ ├── email_loader.mdx │ │ │ │ │ │ │ │ │ ├── image_loader.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── json_loader.mdx │ │ │ │ │ │ │ │ │ ├── pdf_loader.mdx │ │ │ │ │ │ │ │ │ ├── sql_loader.mdx │ │ │ │ │ │ │ │ │ ├── text_loader.mdx │ │ │ │ │ │ │ │ │ └── web_loader.mdx │ │ │ │ │ │ │ │ ├── memory │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── meta │ │ │ │ │ │ │ │ │ │ ├── action_subtask_meta_entry.mdx │ │ │ │ │ │ │ │ │ │ ├── base_meta_entry.mdx │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ └── meta_memory.mdx │ │ │ │ │ │ │ │ │ ├── structure │ │ │ │ │ │ │ │ │ │ ├── base_conversation_memory.mdx │ │ │ │ │ │ │ │ │ │ ├── conversation_memory.mdx │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ ├── run.mdx │ │ │ │ │ │ │ │ │ │ └── summary_conversation_memory.mdx │ │ │ │ │ │ │ │ │ └── task │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ ├── storage │ │ │ │ │ │ │ │ │ │ ├── base_artifact_storage.mdx │ │ │ │ │ │ │ │ │ │ ├── blob_artifact_storage.mdx │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ └── text_artifact_storage.mdx │ │ │ │ │ │ │ │ │ │ └── task_memory.mdx │ │ │ │ │ │ │ │ ├── mixins │ │ │ │ │ │ │ │ │ ├── actions_subtask_origin_mixin.mdx │ │ │ │ │ │ │ │ │ ├── activity_mixin.mdx │ │ │ │ │ │ │ │ │ ├── artifact_file_output_mixin.mdx │ │ │ │ │ │ │ │ │ ├── exponential_backoff_mixin.mdx │ │ │ │ │ │ │ │ │ ├── futures_executor_mixin.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── rule_mixin.mdx │ │ │ │ │ │ │ │ │ ├── runnable_mixin.mdx │ │ │ │ │ │ │ │ │ ├── serializable_mixin.mdx │ │ │ │ │ │ │ │ │ └── singleton_mixin.mdx │ │ │ │ │ │ │ │ ├── observability │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── observability.mdx │ │ │ │ │ │ │ │ ├── rules │ │ │ │ │ │ │ │ │ ├── base_rule.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── json_schema_rule.mdx │ │ │ │ │ │ │ │ │ ├── rule.mdx │ │ │ │ │ │ │ │ │ └── ruleset.mdx │ │ │ │ │ │ │ │ ├── schemas │ │ │ │ │ │ │ │ │ ├── base_schema.mdx │ │ │ │ │ │ │ │ │ ├── bytes_field.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── polymorphic_schema.mdx │ │ │ │ │ │ │ │ │ ├── pydantic_model_field.mdx │ │ │ │ │ │ │ │ │ └── union_field.mdx │ │ │ │ │ │ │ │ ├── structures │ │ │ │ │ │ │ │ │ ├── agent.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── pipeline.mdx │ │ │ │ │ │ │ │ │ ├── structure.mdx │ │ │ │ │ │ │ │ │ └── workflow.mdx │ │ │ │ │ │ │ │ ├── tasks │ │ │ │ │ │ │ │ │ ├── actions_subtask.mdx │ │ │ │ │ │ │ │ │ ├── assistant_task.mdx │ │ │ │ │ │ │ │ │ ├── audio_transcription_task.mdx │ │ │ │ │ │ │ │ │ ├── base_audio_generation_task.mdx │ │ │ │ │ │ │ │ │ ├── base_audio_input_task.mdx │ │ │ │ │ │ │ │ │ ├── base_image_generation_task.mdx │ │ │ │ │ │ │ │ │ ├── base_subtask.mdx │ │ │ │ │ │ │ │ │ ├── base_task.mdx │ │ │ │ │ │ │ │ │ ├── base_text_input_task.mdx │ │ │ │ │ │ │ │ │ ├── branch_task.mdx │ │ │ │ │ │ │ │ │ ├── code_execution_task.mdx │ │ │ │ │ │ │ │ │ ├── extraction_task.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── inpainting_image_generation_task.mdx │ │ │ │ │ │ │ │ │ ├── outpainting_image_generation_task.mdx │ │ │ │ │ │ │ │ │ ├── output_schema_validation_subtask.mdx │ │ │ │ │ │ │ │ │ ├── prompt_image_generation_task.mdx │ │ │ │ │ │ │ │ │ ├── prompt_task.mdx │ │ │ │ │ │ │ │ │ ├── rag_task.mdx │ │ │ │ │ │ │ │ │ ├── structure_run_task.mdx │ │ │ │ │ │ │ │ │ ├── text_summary_task.mdx │ │ │ │ │ │ │ │ │ ├── text_to_speech_task.mdx │ │ │ │ │ │ │ │ │ ├── tool_task.mdx │ │ │ │ │ │ │ │ │ ├── toolkit_task.mdx │ │ │ │ │ │ │ │ │ └── variation_image_generation_task.mdx │ │ │ │ │ │ │ │ ├── tokenizers │ │ │ │ │ │ │ │ │ ├── amazon_bedrock_tokenizer.mdx │ │ │ │ │ │ │ │ │ ├── anthropic_tokenizer.mdx │ │ │ │ │ │ │ │ │ ├── base_tokenizer.mdx │ │ │ │ │ │ │ │ │ ├── cohere_tokenizer.mdx │ │ │ │ │ │ │ │ │ ├── dummy_tokenizer.mdx │ │ │ │ │ │ │ │ │ ├── google_tokenizer.mdx │ │ │ │ │ │ │ │ │ ├── grok_tokenizer.mdx │ │ │ │ │ │ │ │ │ ├── huggingface_tokenizer.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── openai_tokenizer.mdx │ │ │ │ │ │ │ │ │ ├── simple_tokenizer.mdx │ │ │ │ │ │ │ │ │ └── voyageai_tokenizer.mdx │ │ │ │ │ │ │ │ ├── tools │ │ │ │ │ │ │ │ │ ├── audio_transcription │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ │ ├── base_griptape_cloud_tool.mdx │ │ │ │ │ │ │ │ │ ├── base_image_generation_tool.mdx │ │ │ │ │ │ │ │ │ ├── base_tool.mdx │ │ │ │ │ │ │ │ │ ├── calculator │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ │ ├── computer │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ │ ├── date_time │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ │ ├── email │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ │ ├── extraction │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ │ ├── file_manager │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ │ ├── griptape_cloud_tool │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ │ ├── image_query │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── inpainting_image_generation │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ │ ├── outpainting_image_generation │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ │ ├── prompt_image_generation │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ │ ├── prompt_summary │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ │ ├── query │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ │ ├── rag │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ │ ├── rest_api │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ │ ├── sql │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ │ ├── structure_run │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ │ ├── structured_output │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ │ ├── text_to_speech │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ │ ├── variation_image_generation │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ │ ├── vector_store │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ │ ├── web_scraper │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ │ └── web_search │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ │ │ ├── chat.mdx │ │ │ │ │ │ │ │ │ ├── command_runner.mdx │ │ │ │ │ │ │ │ │ ├── constants.mdx │ │ │ │ │ │ │ │ │ ├── contextvars_utils.mdx │ │ │ │ │ │ │ │ │ ├── conversation.mdx │ │ │ │ │ │ │ │ │ ├── decorators.mdx │ │ │ │ │ │ │ │ │ ├── deprecation.mdx │ │ │ │ │ │ │ │ │ ├── dict_utils.mdx │ │ │ │ │ │ │ │ │ ├── file_utils.mdx │ │ │ │ │ │ │ │ │ ├── futures.mdx │ │ │ │ │ │ │ │ │ ├── griptape_cloud.mdx │ │ │ │ │ │ │ │ │ ├── hash.mdx │ │ │ │ │ │ │ │ │ ├── import_utils.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── j2.mdx │ │ │ │ │ │ │ │ │ ├── json_schema_utils.mdx │ │ │ │ │ │ │ │ │ ├── load_artifact_from_memory.mdx │ │ │ │ │ │ │ │ │ ├── manifest_validator.mdx │ │ │ │ │ │ │ │ │ ├── paths.mdx │ │ │ │ │ │ │ │ │ ├── python_runner.mdx │ │ │ │ │ │ │ │ │ ├── reference_utils.mdx │ │ │ │ │ │ │ │ │ ├── stream.mdx │ │ │ │ │ │ │ │ │ ├── structure_visualizer.mdx │ │ │ │ │ │ │ │ │ └── token_counter.mdx │ │ │ │ │ │ │ ├── structures │ │ │ │ │ │ │ │ ├── configs.mdx │ │ │ │ │ │ │ │ ├── conversation-memory.mdx │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ ├── observability.mdx │ │ │ │ │ │ │ │ ├── pipelines.mdx │ │ │ │ │ │ │ │ ├── rulesets.mdx │ │ │ │ │ │ │ │ ├── task-memory.mdx │ │ │ │ │ │ │ │ ├── tasks.mdx │ │ │ │ │ │ │ │ └── workflows.mdx │ │ │ │ │ │ │ └── tools │ │ │ │ │ │ │ │ ├── custom-tools │ │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ └── official-tools │ │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── structures │ │ │ │ │ │ │ ├── create-structure.mdx │ │ │ │ │ │ │ ├── getting-started-with-structures.mdx │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── run-structure.mdx │ │ │ │ │ │ │ ├── structure-config.mdx │ │ │ │ │ │ │ └── structure-run-events.mdx │ │ │ │ │ │ ├── threads │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ └── tools │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── run-tool.mdx │ │ │ │ │ │ │ └── tool-config.mdx │ │ │ │ │ ├── retrievers.mdx │ │ │ │ │ ├── rulesets.mdx │ │ │ │ │ ├── structures.mdx │ │ │ │ │ ├── threads.mdx │ │ │ │ │ ├── tools.mdx │ │ │ │ │ └── view-threads.mdx │ │ │ │ ├── hub-map.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── learn │ │ │ │ │ ├── 101.mdx │ │ │ │ │ ├── 201.mdx │ │ │ │ │ ├── 301.mdx │ │ │ │ │ ├── explained.mdx │ │ │ │ │ ├── how-to │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── learning-paths.mdx │ │ │ │ │ ├── solutions.mdx │ │ │ │ │ └── use-cases.mdx │ │ │ │ ├── model │ │ │ │ │ ├── access-kserve-endpoints.mdx │ │ │ │ │ ├── air-gapped-cache-hybrid-manager.mdx │ │ │ │ │ ├── architecture.mdx │ │ │ │ │ ├── configure-servingruntime.mdx │ │ │ │ │ ├── create-inferenceservice.mdx │ │ │ │ │ ├── define-repository-rules.mdx │ │ │ │ │ ├── deploy-nim-container.mdx │ │ │ │ │ ├── deployment.mdx │ │ │ │ │ ├── faq.mdx │ │ │ │ │ ├── how-to-deploy-ai-models.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── integrate-private-registry.mdx │ │ │ │ │ ├── library.mdx │ │ │ │ │ ├── manage-repository-metadata.mdx │ │ │ │ │ ├── model-library-explained.mdx │ │ │ │ │ ├── model-serving-concepts.mdx │ │ │ │ │ ├── model-serving-explained.mdx │ │ │ │ │ ├── monitor-inferenceservice.mdx │ │ │ │ │ ├── observability.mdx │ │ │ │ │ ├── quickstart-python-using-inference-endpoint.mdx │ │ │ │ │ ├── samples │ │ │ │ │ │ └── hm_kserve_quickstart.py │ │ │ │ │ ├── serving.mdx │ │ │ │ │ ├── setup-gpu.mdx │ │ │ │ │ ├── update-gpu-resources.mdx │ │ │ │ │ ├── use-case-and-personas.mdx │ │ │ │ │ └── verify-models.mdx │ │ │ │ ├── pipeline │ │ │ │ │ ├── capabilities │ │ │ │ │ │ ├── auto-processing.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── compatibility.mdx │ │ │ │ │ ├── gettingstarted │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── images │ │ │ │ │ │ └── aidb-overview-withbackground.png │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── installing │ │ │ │ │ │ ├── complete.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── packages.mdx │ │ │ │ │ │ ├── permissions.mdx │ │ │ │ │ │ └── upgrading.mdx │ │ │ │ │ ├── knowledge_base │ │ │ │ │ │ ├── concepts.mdx │ │ │ │ │ │ ├── example.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── performance_tuning.mdx │ │ │ │ │ │ ├── usage.mdx │ │ │ │ │ │ └── usage_auto_processing.mdx │ │ │ │ │ ├── licenses.mdx │ │ │ │ │ ├── limitations.mdx │ │ │ │ │ ├── models │ │ │ │ │ │ ├── getting-started.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── primitives.mdx │ │ │ │ │ │ ├── supported-models │ │ │ │ │ │ │ ├── bert.mdx │ │ │ │ │ │ │ ├── clip.mdx │ │ │ │ │ │ │ ├── completions.mdx │ │ │ │ │ │ │ ├── embeddings.mdx │ │ │ │ │ │ │ ├── gemini.mdx │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── llama.mdx │ │ │ │ │ │ │ ├── nim_clip.mdx │ │ │ │ │ │ │ ├── nim_paddle_ocr.mdx │ │ │ │ │ │ │ ├── nim_reranking.mdx │ │ │ │ │ │ │ ├── support_matrix.mdx │ │ │ │ │ │ │ └── t5.mdx │ │ │ │ │ │ ├── using-models.mdx │ │ │ │ │ │ └── using-with │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── openai-api-compatibility.mdx │ │ │ │ │ │ │ └── using-nvidia-nim │ │ │ │ │ │ │ ├── files │ │ │ │ │ │ │ ├── embedding-runtime.yaml │ │ │ │ │ │ │ ├── embedding-service.yaml │ │ │ │ │ │ │ ├── image-embed-runtime.yaml │ │ │ │ │ │ │ ├── image-embed-service.yaml │ │ │ │ │ │ │ ├── llm-runtime.yaml │ │ │ │ │ │ │ ├── llm-service.yaml │ │ │ │ │ │ │ ├── ocr-runtime.yaml │ │ │ │ │ │ │ ├── ocr-service.yaml │ │ │ │ │ │ │ ├── rerank-runtime.yaml │ │ │ │ │ │ │ └── rerank-service.yaml │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ └── get-api-key.svg │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── using-nim-in-nvidia-ngc.mdx │ │ │ │ │ │ │ └── using-nim-in-your-environment.mdx │ │ │ │ │ ├── pgfs │ │ │ │ │ │ ├── functions │ │ │ │ │ │ │ ├── gcs.mdx │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── local.mdx │ │ │ │ │ │ │ └── s3.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── settings.mdx │ │ │ │ │ ├── pipelines-overview.mdx │ │ │ │ │ ├── preparers │ │ │ │ │ │ ├── concepts.mdx │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ ├── chained_preparers.mdx │ │ │ │ │ │ │ ├── chunk_text.mdx │ │ │ │ │ │ │ ├── chunk_text_auto_processing.mdx │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── parse_html.mdx │ │ │ │ │ │ │ ├── parse_pdf.mdx │ │ │ │ │ │ │ ├── perform_ocr.mdx │ │ │ │ │ │ │ └── summarize_text.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── primitives.mdx │ │ │ │ │ │ ├── usage.mdx │ │ │ │ │ │ └── volume_destination.mdx │ │ │ │ │ ├── reference │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── knowledge_bases.mdx │ │ │ │ │ │ ├── models.mdx │ │ │ │ │ │ ├── pgfs.mdx │ │ │ │ │ │ ├── preparers.mdx │ │ │ │ │ │ └── retrievers.mdx │ │ │ │ │ ├── rel_notes │ │ │ │ │ │ ├── ai-accelerator_1.0.7_rel_notes.mdx │ │ │ │ │ │ ├── ai-accelerator_2.0.0_rel_notes.mdx │ │ │ │ │ │ ├── ai-accelerator_2.1.1_rel_notes.mdx │ │ │ │ │ │ ├── ai-accelerator_2.1.2_rel_notes.mdx │ │ │ │ │ │ ├── ai-accelerator_2.2.1_rel_notes.mdx │ │ │ │ │ │ ├── ai-accelerator_3.0.1_rel_notes.mdx │ │ │ │ │ │ ├── ai-accelerator_4.0.0_rel_notes.mdx │ │ │ │ │ │ ├── ai-accelerator_4.0.1_rel_notes.mdx │ │ │ │ │ │ ├── ai-accelerator_4.1.0_rel_notes.mdx │ │ │ │ │ │ ├── ai-accelerator_4.1.1_rel_notes.mdx │ │ │ │ │ │ ├── ai-accelerator_4.2.0_rel_notes.mdx │ │ │ │ │ │ ├── ai-accelerator_4.3.0_rel_notes.mdx │ │ │ │ │ │ ├── ai-accelerator_4.4.0_rel_notes.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── meta.yml │ │ │ │ │ │ │ ├── rel_notes_1.0.7.yml │ │ │ │ │ │ │ ├── rel_notes_2.0.0.yml │ │ │ │ │ │ │ ├── rel_notes_2.1.1.yml │ │ │ │ │ │ │ ├── rel_notes_2.1.2.yml │ │ │ │ │ │ │ ├── rel_notes_2.2.1.yml │ │ │ │ │ │ │ ├── rel_notes_3.0.1.yml │ │ │ │ │ │ │ ├── rel_notes_4.0.0.yml │ │ │ │ │ │ │ ├── rel_notes_4.0.1.yml │ │ │ │ │ │ │ ├── rel_notes_4.1.0.yml │ │ │ │ │ │ │ ├── rel_notes_4.1.1.yml │ │ │ │ │ │ │ ├── rel_notes_4.2.0.yml │ │ │ │ │ │ │ ├── rel_notes_4.3.0.yml │ │ │ │ │ │ │ └── rel_notes_4.4.0.yml │ │ │ │ │ └── volumes.mdx │ │ │ │ ├── release_notes │ │ │ │ │ ├── ai_factory_1.3_rel_notes.mdx │ │ │ │ │ └── index.mdx │ │ │ │ └── vector-engine │ │ │ │ │ └── index.mdx │ │ │ ├── analytics │ │ │ │ ├── 101.mdx │ │ │ │ ├── 201.mdx │ │ │ │ ├── 301.mdx │ │ │ │ ├── analytics-concepts.mdx │ │ │ │ ├── architecture.mdx │ │ │ │ ├── create-lakehouse-cluster.mdx │ │ │ │ ├── delta_lake.mdx │ │ │ │ ├── generic-concepts.mdx │ │ │ │ ├── getting-setup.mdx │ │ │ │ ├── how-to-iceberg-reads-writes-with-catalog.mdx │ │ │ │ ├── how-to-lakehouse-read-with-without-catalog.mdx │ │ │ │ ├── how-to-read-write-without-catalog.mdx │ │ │ │ ├── how-to-third-party-catalog.mdx │ │ │ │ ├── iceberg.mdx │ │ │ │ ├── images │ │ │ │ │ ├── choose-your-path.svg │ │ │ │ │ ├── create-cluster-dropdown.png │ │ │ │ │ ├── create-cluster-dropdown.svg │ │ │ │ │ ├── create-cluster-wizard.png │ │ │ │ │ ├── custom-build-wizard.svg │ │ │ │ │ ├── level-100.svg │ │ │ │ │ ├── level-200.svg │ │ │ │ │ ├── level-300.svg │ │ │ │ │ ├── level-50.svg │ │ │ │ │ ├── msl_list.png │ │ │ │ │ └── old-level-300.svg │ │ │ │ ├── index.mdx │ │ │ │ ├── lakehouse.mdx │ │ │ │ ├── learn.mdx │ │ │ │ ├── paths.mdx │ │ │ │ ├── personas.mdx │ │ │ │ ├── quick_start.mdx │ │ │ │ ├── reference │ │ │ │ │ ├── datasets.mdx │ │ │ │ │ ├── delta_tables.mdx │ │ │ │ │ ├── directscan.mdx │ │ │ │ │ ├── functions.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── instances.mdx │ │ │ │ │ ├── loadingdata.mdx │ │ │ │ │ ├── pgaa_functions.mdx │ │ │ │ │ ├── queries.mdx │ │ │ │ │ └── users.mdx │ │ │ │ ├── terminology.mdx │ │ │ │ └── tiered_tables.mdx │ │ │ ├── hybrid-manager │ │ │ │ ├── ai-factory │ │ │ │ │ ├── architecture.mdx │ │ │ │ │ ├── deploy-with-hm-ui.mdx │ │ │ │ │ ├── faq.mdx │ │ │ │ │ ├── gen-ai.mdx │ │ │ │ │ ├── getting-started.mdx │ │ │ │ │ ├── gpu-recommended.mdx │ │ │ │ │ ├── how-to-enable-ai-factory.mdx │ │ │ │ │ ├── images │ │ │ │ │ │ ├── first-time-form.png │ │ │ │ │ │ ├── first-time-setup.png │ │ │ │ │ │ └── launchpad.png │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── models.mdx │ │ │ │ │ ├── observability.mdx │ │ │ │ │ ├── prerequisites.mdx │ │ │ │ │ ├── quickstart.mdx │ │ │ │ │ ├── sovereign-ai-on-hm.mdx │ │ │ │ │ ├── troubleshooting.mdx │ │ │ │ │ ├── use-cases-and-personas.mdx │ │ │ │ │ ├── using-models-in-gen-ai-builder.mdx │ │ │ │ │ └── using-models-in-model-clusters.mdx │ │ │ │ ├── analytics │ │ │ │ │ ├── analytics_concepts.mdx │ │ │ │ │ ├── delta_lake.mdx │ │ │ │ │ ├── iceberg.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── lakehouse.mdx │ │ │ │ │ └── tiered_tables.mdx │ │ │ │ ├── images │ │ │ │ │ ├── 2dn-1wn-2dn-1wn-1wg.svg │ │ │ │ │ ├── PGAIHM-backups-img1.png │ │ │ │ │ ├── PGAIHM-backups-img2.png │ │ │ │ │ ├── PGAIHM-restores-img1.png │ │ │ │ │ ├── PGAIHM-restores-img2.png │ │ │ │ │ ├── PGAIHM-restores-pitr-api-1.png │ │ │ │ │ ├── PGAIHM-restores-pitr-api-2.png │ │ │ │ │ ├── PGAIHM-restores-pitr-api-3.png │ │ │ │ │ ├── PGAIHM-restores-pitr-cli-1.png │ │ │ │ │ ├── PGAIHM-restores-pitr-cli-2.png │ │ │ │ │ ├── api_docs.png │ │ │ │ │ ├── architectures │ │ │ │ │ │ ├── ahadha-1x3-cluster.svg │ │ │ │ │ │ ├── dha-3x3-cluster.svg │ │ │ │ │ │ └── dhaaha-1x2-with-witness.svg │ │ │ │ │ ├── assetlibrary-home.png │ │ │ │ │ ├── assetlibrary-image-details-image-tags-tab.png │ │ │ │ │ ├── assetlibrary-image-details-overview-tab.png │ │ │ │ │ ├── assetlibrary-image-tag-details.png │ │ │ │ │ ├── assetlibrary-knowledge-bases.png │ │ │ │ │ ├── browser_cluster.png │ │ │ │ │ ├── cert-manager_dashboard.png │ │ │ │ │ ├── cluster-health-status-dha.png │ │ │ │ │ ├── cluster-health-status-primary-standby.png │ │ │ │ │ ├── cluster_types_HM.svg │ │ │ │ │ ├── default_alerts_hcp.png │ │ │ │ │ ├── eha.png │ │ │ │ │ ├── hard_utiliz.png │ │ │ │ │ ├── hcp-usagereport-1.png │ │ │ │ │ ├── hcp_high-level_light.svg │ │ │ │ │ ├── high-availability.svg │ │ │ │ │ ├── hm_migrations_oracle.svg │ │ │ │ │ ├── hm_migrations_oracle_dmsagent.svg │ │ │ │ │ ├── hm_migrations_pg.svg │ │ │ │ │ ├── hm_migrations_pg_dmsagent.svg │ │ │ │ │ ├── hm_monitoring_ext.svg │ │ │ │ │ ├── k8s_compute_dashboard.png │ │ │ │ │ ├── k8s_coreDNS_dashboard.png │ │ │ │ │ ├── k8s_kubelet_dashboard.png │ │ │ │ │ ├── k8s_networking_cluster_dashboard.png │ │ │ │ │ ├── k8s_persistentvolumes_dashboard.png │ │ │ │ │ ├── k8s_stateful_dashboard.png │ │ │ │ │ ├── launchpad.png │ │ │ │ │ ├── launchpad_access.png │ │ │ │ │ ├── loki_chunks_dashboard.png │ │ │ │ │ ├── loki_data_dashboard.png │ │ │ │ │ ├── loki_ops_dashboard.png │ │ │ │ │ ├── loki_reads_dashboard.png │ │ │ │ │ ├── loki_reads_resources_dashboard.png │ │ │ │ │ ├── loki_retention_dashboard.png │ │ │ │ │ ├── loki_writes_dashboard.png │ │ │ │ │ ├── loki_writes_resources_dashboard.png │ │ │ │ │ ├── mp_ai_copilot_models.svg │ │ │ │ │ ├── postgres_PGD_dashboard.png │ │ │ │ │ ├── postgres_estatestats_dashboard.png │ │ │ │ │ ├── postgres_hardware_dashboard.png │ │ │ │ │ ├── postgres_k8s_events_dashboard.png │ │ │ │ │ ├── postgres_status_dashboard.png │ │ │ │ │ ├── power_emission_dashboard.png │ │ │ │ │ ├── project-overview.png │ │ │ │ │ ├── project-spog.png │ │ │ │ │ ├── region2d1w.png │ │ │ │ │ ├── region3d.png │ │ │ │ │ ├── repo-token.png │ │ │ │ │ ├── single-node.svg │ │ │ │ │ ├── telemetry_memcached_dashboard.png │ │ │ │ │ ├── telemetry_node_dashboard.png │ │ │ │ │ ├── telemetry_prometheus_dashboard.png │ │ │ │ │ ├── telemetry_thanos_dashboard.png │ │ │ │ │ └── velero_dashboard.png │ │ │ │ ├── index.mdx │ │ │ │ ├── install │ │ │ │ │ ├── customization │ │ │ │ │ │ ├── byo_idp │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── ldap.mdx │ │ │ │ │ │ │ └── saml.mdx │ │ │ │ │ │ ├── cert-man.mdx │ │ │ │ │ │ ├── data_catalog_secret.mdx │ │ │ │ │ │ ├── genai_secret.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── kms_for_tde │ │ │ │ │ │ │ ├── adding_kms_support.mdx │ │ │ │ │ │ │ ├── aws_kms.mdx │ │ │ │ │ │ │ ├── deleting_key.mdx │ │ │ │ │ │ │ ├── google_cloud_kms.mdx │ │ │ │ │ │ │ ├── hashicorp.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ └── migration_portal_secrets.mdx │ │ │ │ │ ├── eks │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── installing │ │ │ │ │ │ │ ├── assets-helm │ │ │ │ │ │ │ │ ├── default-env.sh │ │ │ │ │ │ │ │ ├── eks-fix-auto.sh │ │ │ │ │ │ │ │ ├── eks-install-secrets.sh │ │ │ │ │ │ │ │ └── prepare.sh │ │ │ │ │ │ │ ├── assets-op │ │ │ │ │ │ │ │ ├── default-env.sh │ │ │ │ │ │ │ │ ├── eks-fix-auto.sh │ │ │ │ │ │ │ │ ├── eks-install-operator.sh │ │ │ │ │ │ │ │ ├── eks-install-secrets.sh │ │ │ │ │ │ │ │ ├── hm-default.yaml │ │ │ │ │ │ │ │ └── prepare-op.sh │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── installinghelm.mdx │ │ │ │ │ │ │ └── installingop.mdx │ │ │ │ │ │ ├── portalconnection.mdx │ │ │ │ │ │ ├── prerequisites │ │ │ │ │ │ │ ├── awsaccount.mdx │ │ │ │ │ │ │ ├── ekscluster.mdx │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ └── installsystem.mdx │ │ │ │ │ │ └── uninstall.mdx │ │ │ │ │ ├── gcp │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── installing │ │ │ │ │ │ │ ├── dns_and_verify.mdx │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── installhelm.mdx │ │ │ │ │ │ │ └── installop.mdx │ │ │ │ │ │ ├── portalconnection.mdx │ │ │ │ │ │ └── prerequisites │ │ │ │ │ │ │ ├── gcpcluster.mdx │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── installsystem.mdx │ │ │ │ │ │ │ └── setvariables.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── rancher │ │ │ │ │ │ ├── dns_and_verify.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── installing.mdx │ │ │ │ │ │ ├── portalconnection.mdx │ │ │ │ │ │ └── prerequisites │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ └── rke2cluster.mdx │ │ │ │ │ └── rhos │ │ │ │ │ │ ├── dns_and_verify.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── installing.mdx │ │ │ │ │ │ ├── portalconnection.mdx │ │ │ │ │ │ └── prerequisites │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── installsystem.mdx │ │ │ │ │ │ ├── rhoscluster.mdx │ │ │ │ │ │ └── setvariables.mdx │ │ │ │ ├── known_issues.mdx │ │ │ │ ├── overview │ │ │ │ │ ├── architecture.mdx │ │ │ │ │ ├── database_types │ │ │ │ │ │ ├── advanced_highavailability.mdx │ │ │ │ │ │ ├── distributed_highavailability.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── primary_standby_highavailability.mdx │ │ │ │ │ │ └── single_node.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── postgres_distributions.mdx │ │ │ │ ├── release_notes │ │ │ │ │ ├── hm_1.2_rel_notes.mdx │ │ │ │ │ ├── hm_1.3.1_rel_notes.mdx │ │ │ │ │ ├── hm_1.3.2_rel_notes.mdx │ │ │ │ │ ├── hm_1.3_rel_notes.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── system │ │ │ │ │ ├── concepts.mdx │ │ │ │ │ ├── faq.mdx │ │ │ │ │ ├── glossary.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── specs.mdx │ │ │ │ │ ├── use-cases.mdx │ │ │ │ │ └── what-to-expect.mdx │ │ │ │ └── using_hybrid_manager │ │ │ │ │ ├── backup_restore │ │ │ │ │ ├── backups.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── restores.mdx │ │ │ │ │ ├── cluster_management │ │ │ │ │ ├── create-clusters │ │ │ │ │ │ ├── additional-settings.mdx │ │ │ │ │ │ ├── cluster-info.mdx │ │ │ │ │ │ ├── cluster-settings.mdx │ │ │ │ │ │ ├── create-clusters-with-templates.mdx │ │ │ │ │ │ ├── data-groups.mdx │ │ │ │ │ │ ├── db-configuration.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── manage-clusters │ │ │ │ │ │ ├── create-cluster-template.mdx │ │ │ │ │ │ ├── delete-clusters.mdx │ │ │ │ │ │ ├── edit-clusters.mdx │ │ │ │ │ │ ├── formula.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── restore-clusters.mdx │ │ │ │ │ │ └── trace-clusters.mdx │ │ │ │ │ ├── managing_db_access │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── ldap.mdx │ │ │ │ │ └── view_clusters │ │ │ │ │ │ ├── cluster-backups-tab.mdx │ │ │ │ │ │ ├── cluster-connect-tab.mdx │ │ │ │ │ │ ├── cluster-logs-tab.mdx │ │ │ │ │ │ ├── cluster-monitoring-tab.mdx │ │ │ │ │ │ ├── cluster-overview-tab.mdx │ │ │ │ │ │ ├── cluster-properties-tab.mdx │ │ │ │ │ │ ├── cluster-query-diagnostics-tab.mdx │ │ │ │ │ │ ├── cluster-recommendations-tab.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── edbctl │ │ │ │ │ ├── edbctl_backup.mdx │ │ │ │ │ ├── edbctl_cluster.mdx │ │ │ │ │ ├── edbctl_config.mdx │ │ │ │ │ ├── edbctl_credential.mdx │ │ │ │ │ ├── edbctl_image.mdx │ │ │ │ │ ├── edbctl_image_pull_secret.mdx │ │ │ │ │ ├── edbctl_operator.mdx │ │ │ │ │ ├── edbctl_project.mdx │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── enabling_migration_copilot │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── self_hosted_model.mdx │ │ │ │ │ └── third_party_model.mdx │ │ │ │ │ ├── hadr │ │ │ │ │ ├── hadr.mdx │ │ │ │ │ ├── hadr_recovery.mdx │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── hm_overview │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── lakehouse.mdx │ │ │ │ │ ├── postgres.mdx │ │ │ │ │ └── using-portal.mdx │ │ │ │ │ ├── hm_terminology.mdx │ │ │ │ │ ├── image-management │ │ │ │ │ ├── asset-library.mdx │ │ │ │ │ ├── container-images.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── knowledge-bases.mdx │ │ │ │ │ └── manage-repositories.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── managing_users │ │ │ │ │ ├── apply_dex_config.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── native_users │ │ │ │ │ │ ├── change_pw_native_user.mdx │ │ │ │ │ │ ├── create_native_user.mdx │ │ │ │ │ │ ├── disable_native_user.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ └── user_roles_authz │ │ │ │ │ │ ├── authz.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── roles.mdx │ │ │ │ │ ├── migration │ │ │ │ │ ├── architecture.mdx │ │ │ │ │ ├── dms_agent_reference.mdx │ │ │ │ │ ├── features.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── installing_agent │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── linux_arm64 │ │ │ │ │ │ │ ├── edb-dms-agent_debian_12.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ └── linux_x86_64 │ │ │ │ │ │ │ ├── edb-dms-agent_debian_11.mdx │ │ │ │ │ │ │ ├── edb-dms-agent_debian_12.mdx │ │ │ │ │ │ │ ├── edb-dms-agent_other_linux_8.mdx │ │ │ │ │ │ │ ├── edb-dms-agent_other_linux_9.mdx │ │ │ │ │ │ │ ├── edb-dms-agent_rhel_8.mdx │ │ │ │ │ │ │ ├── edb-dms-agent_rhel_9.mdx │ │ │ │ │ │ │ ├── edb-dms-agent_sles_15.mdx │ │ │ │ │ │ │ ├── edb-dms-agent_ubuntu_22.mdx │ │ │ │ │ │ │ ├── edb-dms-agent_ubuntu_24.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── limitations.mdx │ │ │ │ │ ├── migrate │ │ │ │ │ │ ├── credentials.mdx │ │ │ │ │ │ ├── destinations.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── migrations.mdx │ │ │ │ │ │ └── sources.mdx │ │ │ │ │ ├── migration_guides │ │ │ │ │ │ ├── aws_rds_pg_to_hm_managed │ │ │ │ │ │ │ ├── agent_postgres.mdx │ │ │ │ │ │ │ ├── applying_constraints.mdx │ │ │ │ │ │ │ ├── configuring_reader.mdx │ │ │ │ │ │ │ ├── creating_destination_db.mdx │ │ │ │ │ │ │ ├── creating_migration.mdx │ │ │ │ │ │ │ ├── creating_project_credentials.mdx │ │ │ │ │ │ │ ├── finalizing_migration.mdx │ │ │ │ │ │ │ ├── handling_schema.mdx │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── migrating_schema.mdx │ │ │ │ │ │ │ ├── preparing_source_pg_db.mdx │ │ │ │ │ │ │ └── viewing_source.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── oracle_to_hm_managed │ │ │ │ │ │ │ ├── agent_configuring_oracle.mdx │ │ │ │ │ │ │ ├── agent_creating_machine_user.mdx │ │ │ │ │ │ │ ├── agent_installing.mdx │ │ │ │ │ │ │ ├── agent_preparing_oracle.mdx │ │ │ │ │ │ │ ├── agent_running.mdx │ │ │ │ │ │ │ ├── agent_service.mdx │ │ │ │ │ │ │ ├── agent_verifying_assessment.mdx │ │ │ │ │ │ │ ├── applying_constraints.mdx │ │ │ │ │ │ │ ├── configuring_reader.mdx │ │ │ │ │ │ │ ├── creating_destination_db.mdx │ │ │ │ │ │ │ ├── creating_migration.mdx │ │ │ │ │ │ │ ├── creating_project_credentials.mdx │ │ │ │ │ │ │ ├── finalizing_migration.mdx │ │ │ │ │ │ │ ├── handling_schema.mdx │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── migrating_schema.mdx │ │ │ │ │ │ │ ├── preparing_source_oracle_db.mdx │ │ │ │ │ │ │ └── viewing_source.mdx │ │ │ │ │ │ ├── self_managed_pg_to_hm_managed │ │ │ │ │ │ │ ├── agent_postgres.mdx │ │ │ │ │ │ │ ├── applying_constraints.mdx │ │ │ │ │ │ │ ├── configuring_reader.mdx │ │ │ │ │ │ │ ├── creating_destination_db.mdx │ │ │ │ │ │ │ ├── creating_migration.mdx │ │ │ │ │ │ │ ├── creating_project_credentials.mdx │ │ │ │ │ │ │ ├── finalizing_migration.mdx │ │ │ │ │ │ │ ├── handling_schema.mdx │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── migrating_schema.mdx │ │ │ │ │ │ │ ├── preparing_source_pg_db.mdx │ │ │ │ │ │ │ └── viewing_source.mdx │ │ │ │ │ │ ├── self_managed_pg_to_self_managed_pg │ │ │ │ │ │ │ ├── agent_postgres.mdx │ │ │ │ │ │ │ ├── applying_constraints.mdx │ │ │ │ │ │ │ ├── configuring_reader.mdx │ │ │ │ │ │ │ ├── configuring_writer.mdx │ │ │ │ │ │ │ ├── creating_destination_db.mdx │ │ │ │ │ │ │ ├── creating_migration.mdx │ │ │ │ │ │ │ ├── creating_project_credentials.mdx │ │ │ │ │ │ │ ├── finalizing_migration.mdx │ │ │ │ │ │ │ ├── handling_schema.mdx │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── migrating_schema.mdx │ │ │ │ │ │ │ ├── preparing_destination_selfpg_db.mdx │ │ │ │ │ │ │ ├── preparing_source_pg_db.mdx │ │ │ │ │ │ │ ├── viewing_destination_console.mdx │ │ │ │ │ │ │ └── viewing_source.mdx │ │ │ │ │ │ └── snippet_sources │ │ │ │ │ │ │ ├── 0_creating_destination_db │ │ │ │ │ │ │ ├── creating_hm_destination_db.mdx │ │ │ │ │ │ │ ├── creating_selfmanaged_destination_db.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ ├── 100_agent_snippets │ │ │ │ │ │ │ ├── agent_service_oracle.mdx │ │ │ │ │ │ │ ├── configuring_agent_oracle.mdx │ │ │ │ │ │ │ ├── configuring_agent_postgres.mdx │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── preparing_oracle_database.mdx │ │ │ │ │ │ │ └── verifying_assessments.mdx │ │ │ │ │ │ │ ├── 10_creating_migration │ │ │ │ │ │ │ ├── creating_mig_hm_managed.mdx │ │ │ │ │ │ │ ├── creating_mig_self_managed.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ ├── 11_finalizing_migration │ │ │ │ │ │ │ ├── finalizing_migration.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ ├── 12_apply_constraints │ │ │ │ │ │ │ ├── applying_constraints.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ ├── 1_preparing_source_dbs │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── preparing_oracle_source_databases.mdx │ │ │ │ │ │ │ ├── preparing_postgres_source_databases.mdx │ │ │ │ │ │ │ └── preparing_rds_source_databases.mdx │ │ │ │ │ │ │ ├── 2_preparing_destination_dbs │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ └── preparing_postgres_destination_databases.mdx │ │ │ │ │ │ │ ├── 3_schema_considerations │ │ │ │ │ │ │ ├── constraints.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ ├── 4_migrating_schemas │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── preparing_oracle_schemas.mdx │ │ │ │ │ │ │ └── preparing_postgres_schemas.mdx │ │ │ │ │ │ │ ├── 5_creating_project_credentials │ │ │ │ │ │ │ ├── creating_project_credentials.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ ├── 6_reader │ │ │ │ │ │ │ ├── configuring_reader_aws_rds_pg.mdx │ │ │ │ │ │ │ ├── configuring_reader_oracle.mdx │ │ │ │ │ │ │ ├── configuring_reader_postgres.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ ├── 7_viewing_source_console │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ └── viewing_source_console.mdx │ │ │ │ │ │ │ ├── 8_writer │ │ │ │ │ │ │ ├── configuring_writer_postgres.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ ├── 9_viewing_destination │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ └── viewing_destination_console.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── migration_portal_api.mdx │ │ │ │ │ ├── migrations │ │ │ │ │ │ ├── compatibility.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── migration_database_details_view.mdx │ │ │ │ │ ├── schema_migration │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── migration_portal │ │ │ │ │ │ │ ├── access_mp.mdx │ │ │ │ │ │ │ ├── external_schema_migration.mdx │ │ │ │ │ │ │ ├── hm_schema_migration.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ └── postgres │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── specs.mdx │ │ │ │ │ ├── supported_versions.mdx │ │ │ │ │ └── terminology.mdx │ │ │ │ │ ├── monitoring │ │ │ │ │ ├── alerts.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── mon_ext_dbs │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mon_ext_csp │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ └── rds.mdx │ │ │ │ │ │ └── mon_with_agent │ │ │ │ │ │ │ ├── admin_tasks.mdx │ │ │ │ │ │ │ ├── agent_os_user.mdx │ │ │ │ │ │ │ ├── configure_agent │ │ │ │ │ │ │ ├── fine_tune_monitoring.mdx │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── multiple_dbs.mdx │ │ │ │ │ │ │ ├── schema_ingestion.mdx │ │ │ │ │ │ │ └── usage_reporting.mdx │ │ │ │ │ │ │ ├── create_machine_user.mdx │ │ │ │ │ │ │ ├── data_sovereignity.mdx │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── install_agent.mdx │ │ │ │ │ │ │ ├── prepare_postgres_database.mdx │ │ │ │ │ │ │ ├── run_agent.mdx │ │ │ │ │ │ │ ├── run_as_service.mdx │ │ │ │ │ │ │ └── troubleshooting.mdx │ │ │ │ │ ├── monitoring_console │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── metrics_latency.mdx │ │ │ │ │ │ └── support_scope.mdx │ │ │ │ │ ├── monitoring_grafana │ │ │ │ │ │ ├── grafana_dashboards │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── kubernetes_dashboards.mdx │ │ │ │ │ │ │ ├── loki_dashboards.mdx │ │ │ │ │ │ │ ├── other_dashboards.mdx │ │ │ │ │ │ │ ├── postgres_dashboards.mdx │ │ │ │ │ │ │ └── telemetry_dashboards.mdx │ │ │ │ │ │ ├── grafana_explore.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── troubleshooting.mdx │ │ │ │ │ └── notifications.mdx │ │ │ │ │ ├── multi-dc.mdx │ │ │ │ │ ├── projects │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── managing.mdx │ │ │ │ │ ├── settings │ │ │ │ │ │ ├── alerts.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── notifications.mdx │ │ │ │ │ ├── storage-locations.mdx │ │ │ │ │ └── usage-report.mdx │ │ │ │ │ ├── query-diagnostics-recommendations.mdx │ │ │ │ │ ├── troubleshooting.mdx │ │ │ │ │ ├── upgrading │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── pg_major │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── pgd_major.mdx │ │ │ │ │ │ ├── pgd_major_blue_green.mdx │ │ │ │ │ │ └── upgrade_major.mdx │ │ │ │ │ └── pg_minor.mdx │ │ │ │ │ └── using_the_api │ │ │ │ │ ├── access_key.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── using_access_key.mdx │ │ │ │ │ └── using_the_hm_api.mdx │ │ │ └── index.mdx │ │ └── preview │ │ │ ├── ai-factory │ │ │ ├── concepts │ │ │ │ ├── differences-and-faq.mdx │ │ │ │ ├── generic-concepts.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── security-governance.mdx │ │ │ │ ├── sovereign-ai.mdx │ │ │ │ └── terminology.mdx │ │ │ ├── gen-ai │ │ │ │ ├── architecture.mdx │ │ │ │ ├── assistants.mdx │ │ │ │ ├── concepts.mdx │ │ │ │ ├── configure-datalake.mdx │ │ │ │ ├── create-assistant.mdx │ │ │ │ ├── create-knowledge-base.mdx │ │ │ │ ├── create-retriever.mdx │ │ │ │ ├── create-ruleset.mdx │ │ │ │ ├── create-structure.mdx │ │ │ │ ├── create-tool.mdx │ │ │ │ ├── data-lake.mdx │ │ │ │ ├── data-source-confluence.mdx │ │ │ │ ├── data-source-custom.mdx │ │ │ │ ├── data-source-data-lake.mdx │ │ │ │ ├── data-source-google-drive.mdx │ │ │ │ ├── data-source-s3.mdx │ │ │ │ ├── data-source-webpage.mdx │ │ │ │ ├── data-sources.mdx │ │ │ │ ├── faq.mdx │ │ │ │ ├── getting-started.mdx │ │ │ │ ├── how-to.mdx │ │ │ │ ├── hybrid-kb-best-practices.mdx │ │ │ │ ├── images │ │ │ │ │ ├── quickstart-ui-step-1-knowledge-base.svg │ │ │ │ │ ├── quickstart-ui-step-2-ruleset.svg │ │ │ │ │ ├── quickstart-ui-step-3-retriever.svg │ │ │ │ │ ├── quickstart-ui-step-4-tools.svg │ │ │ │ │ ├── quickstart-ui-step-5-model-serving.svg │ │ │ │ │ ├── quickstart-ui-step-6-create-assistant.svg │ │ │ │ │ └── quickstart-ui-step-7-threads.svg │ │ │ │ ├── index.mdx │ │ │ │ ├── knowledge-bases.mdx │ │ │ │ ├── libraries.mdx │ │ │ │ ├── manage-knowledge-base.mdx │ │ │ │ ├── quickstart-customer-service-agent-ui.mdx │ │ │ │ ├── reference │ │ │ │ │ ├── api │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── assistants │ │ │ │ │ │ ├── assistant-runs.mdx │ │ │ │ │ │ ├── getting-started-with-assistants.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── data-lakes │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── data-sources │ │ │ │ │ │ ├── create-data-source.mdx │ │ │ │ │ │ ├── getting-started-with-data-sources.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── refresh-data.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── knowledge-bases │ │ │ │ │ │ ├── accessing-data.mdx │ │ │ │ │ │ ├── create-knowledge-base.mdx │ │ │ │ │ │ ├── getting-started-with-knowledge-bases.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── knowledge-base-types.mdx │ │ │ │ │ ├── retrievers │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── rules │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── sdk │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ ├── artifacts.mdx │ │ │ │ │ │ │ ├── chunkers.mdx │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ └── loaders.mdx │ │ │ │ │ │ ├── drivers │ │ │ │ │ │ │ ├── assistant-drivers.mdx │ │ │ │ │ │ │ ├── audio-transcription-drivers.mdx │ │ │ │ │ │ │ ├── conversation-memory-drivers.mdx │ │ │ │ │ │ │ ├── embedding-drivers.mdx │ │ │ │ │ │ │ ├── event-listener-drivers.mdx │ │ │ │ │ │ │ ├── file-manager-drivers.mdx │ │ │ │ │ │ │ ├── image-generation-drivers.mdx │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── observability-drivers.mdx │ │ │ │ │ │ │ ├── rerank-drivers.mdx │ │ │ │ │ │ │ ├── ruleset-drivers.mdx │ │ │ │ │ │ │ ├── sql-drivers.mdx │ │ │ │ │ │ │ ├── structure-run-drivers.mdx │ │ │ │ │ │ │ ├── text-to-speech-drivers.mdx │ │ │ │ │ │ │ ├── vector-store-drivers.mdx │ │ │ │ │ │ │ ├── web-scraper-drivers.mdx │ │ │ │ │ │ │ └── web-search-drivers.mdx │ │ │ │ │ │ ├── engines │ │ │ │ │ │ │ ├── eval-engines.mdx │ │ │ │ │ │ │ ├── extraction-engines.mdx │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ └── summary-engines.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── misc │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── serialization.mdx │ │ │ │ │ │ │ └── tokenizers.mdx │ │ │ │ │ │ ├── reference │ │ │ │ │ │ │ ├── artifacts │ │ │ │ │ │ │ │ ├── action_artifact.mdx │ │ │ │ │ │ │ │ ├── audio_artifact.mdx │ │ │ │ │ │ │ │ ├── base_artifact.mdx │ │ │ │ │ │ │ │ ├── blob_artifact.mdx │ │ │ │ │ │ │ │ ├── boolean_artifact.mdx │ │ │ │ │ │ │ │ ├── error_artifact.mdx │ │ │ │ │ │ │ │ ├── generic_artifact.mdx │ │ │ │ │ │ │ │ ├── image_artifact.mdx │ │ │ │ │ │ │ │ ├── image_url_artifact.mdx │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ ├── info_artifact.mdx │ │ │ │ │ │ │ │ ├── json_artifact.mdx │ │ │ │ │ │ │ │ ├── list_artifact.mdx │ │ │ │ │ │ │ │ ├── model_artifact.mdx │ │ │ │ │ │ │ │ ├── text_artifact.mdx │ │ │ │ │ │ │ │ └── url_artifact.mdx │ │ │ │ │ │ │ ├── chunkers │ │ │ │ │ │ │ │ ├── base_chunker.mdx │ │ │ │ │ │ │ │ ├── chunk_separator.mdx │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ ├── markdown_chunker.mdx │ │ │ │ │ │ │ │ ├── pdf_chunker.mdx │ │ │ │ │ │ │ │ └── text_chunker.mdx │ │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ │ ├── actions │ │ │ │ │ │ │ │ │ ├── base_action.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── tool_action.mdx │ │ │ │ │ │ │ │ ├── decorators.mdx │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ ├── observable.mdx │ │ │ │ │ │ │ │ ├── prompt_stack │ │ │ │ │ │ │ │ │ ├── contents │ │ │ │ │ │ │ │ │ │ ├── action_call_delta_message_content.mdx │ │ │ │ │ │ │ │ │ │ ├── action_call_message_content.mdx │ │ │ │ │ │ │ │ │ │ ├── action_result_message_content.mdx │ │ │ │ │ │ │ │ │ │ ├── audio_delta_message_content.mdx │ │ │ │ │ │ │ │ │ │ ├── audio_message_content.mdx │ │ │ │ │ │ │ │ │ │ ├── base_delta_message_content.mdx │ │ │ │ │ │ │ │ │ │ ├── base_message_content.mdx │ │ │ │ │ │ │ │ │ │ ├── generic_message_content.mdx │ │ │ │ │ │ │ │ │ │ ├── image_message_content.mdx │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ ├── text_delta_message_content.mdx │ │ │ │ │ │ │ │ │ │ └── text_message_content.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── messages │ │ │ │ │ │ │ │ │ │ ├── base_message.mdx │ │ │ │ │ │ │ │ │ │ ├── delta_message.mdx │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ └── message.mdx │ │ │ │ │ │ │ │ │ └── prompt_stack.mdx │ │ │ │ │ │ │ │ └── reference.mdx │ │ │ │ │ │ │ ├── configs │ │ │ │ │ │ │ │ ├── base_config.mdx │ │ │ │ │ │ │ │ ├── defaults_config.mdx │ │ │ │ │ │ │ │ ├── drivers │ │ │ │ │ │ │ │ │ ├── amazon_bedrock_drivers_config.mdx │ │ │ │ │ │ │ │ │ ├── anthropic_drivers_config.mdx │ │ │ │ │ │ │ │ │ ├── azure_openai_drivers_config.mdx │ │ │ │ │ │ │ │ │ ├── base_drivers_config.mdx │ │ │ │ │ │ │ │ │ ├── cohere_drivers_config.mdx │ │ │ │ │ │ │ │ │ ├── drivers_config.mdx │ │ │ │ │ │ │ │ │ ├── google_drivers_config.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── openai_drivers_config.mdx │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ └── logging │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── json_formatter.mdx │ │ │ │ │ │ │ │ │ ├── logging_config.mdx │ │ │ │ │ │ │ │ │ ├── newline_logging_filter.mdx │ │ │ │ │ │ │ │ │ └── truncate_logging_filter.mdx │ │ │ │ │ │ │ ├── drivers │ │ │ │ │ │ │ │ ├── assistant │ │ │ │ │ │ │ │ │ ├── base_assistant_driver.mdx │ │ │ │ │ │ │ │ │ ├── griptape_cloud.mdx │ │ │ │ │ │ │ │ │ ├── griptape_cloud_assistant_driver.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── openai.mdx │ │ │ │ │ │ │ │ │ └── openai_assistant_driver.mdx │ │ │ │ │ │ │ │ ├── audio_transcription │ │ │ │ │ │ │ │ │ ├── base_audio_transcription_driver.mdx │ │ │ │ │ │ │ │ │ ├── dummy.mdx │ │ │ │ │ │ │ │ │ ├── dummy_audio_transcription_driver.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── openai.mdx │ │ │ │ │ │ │ │ │ └── openai_audio_transcription_driver.mdx │ │ │ │ │ │ │ │ ├── embedding │ │ │ │ │ │ │ │ │ ├── amazon_bedrock.mdx │ │ │ │ │ │ │ │ │ ├── amazon_bedrock_cohere_embedding_driver.mdx │ │ │ │ │ │ │ │ │ ├── amazon_bedrock_titan_embedding_driver.mdx │ │ │ │ │ │ │ │ │ ├── amazon_sagemaker_jumpstart.mdx │ │ │ │ │ │ │ │ │ ├── amazon_sagemaker_jumpstart_embedding_driver.mdx │ │ │ │ │ │ │ │ │ ├── azure_openai_embedding_driver.mdx │ │ │ │ │ │ │ │ │ ├── base_embedding_driver.mdx │ │ │ │ │ │ │ │ │ ├── cohere.mdx │ │ │ │ │ │ │ │ │ ├── cohere_embedding_driver.mdx │ │ │ │ │ │ │ │ │ ├── dummy.mdx │ │ │ │ │ │ │ │ │ ├── dummy_embedding_driver.mdx │ │ │ │ │ │ │ │ │ ├── google.mdx │ │ │ │ │ │ │ │ │ ├── google_embedding_driver.mdx │ │ │ │ │ │ │ │ │ ├── huggingface_hub.mdx │ │ │ │ │ │ │ │ │ ├── huggingface_hub_embedding_driver.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── nvidia_nim.mdx │ │ │ │ │ │ │ │ │ ├── nvidia_nim_embedding_driver.mdx │ │ │ │ │ │ │ │ │ ├── ollama.mdx │ │ │ │ │ │ │ │ │ ├── ollama_embedding_driver.mdx │ │ │ │ │ │ │ │ │ ├── openai.mdx │ │ │ │ │ │ │ │ │ ├── openai_embedding_driver.mdx │ │ │ │ │ │ │ │ │ ├── voyageai.mdx │ │ │ │ │ │ │ │ │ └── voyageai_embedding_driver.mdx │ │ │ │ │ │ │ │ ├── event_listener │ │ │ │ │ │ │ │ │ ├── amazon_sqs.mdx │ │ │ │ │ │ │ │ │ ├── amazon_sqs_event_listener_driver.mdx │ │ │ │ │ │ │ │ │ ├── aws_iot_core.mdx │ │ │ │ │ │ │ │ │ ├── aws_iot_core_event_listener_driver.mdx │ │ │ │ │ │ │ │ │ ├── base_event_listener_driver.mdx │ │ │ │ │ │ │ │ │ ├── griptape_cloud.mdx │ │ │ │ │ │ │ │ │ ├── griptape_cloud_event_listener_driver.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── pusher.mdx │ │ │ │ │ │ │ │ │ ├── pusher_event_listener_driver.mdx │ │ │ │ │ │ │ │ │ ├── webhook.mdx │ │ │ │ │ │ │ │ │ └── webhook_event_listener_driver.mdx │ │ │ │ │ │ │ │ ├── file_manager │ │ │ │ │ │ │ │ │ ├── amazon_s3.mdx │ │ │ │ │ │ │ │ │ ├── amazon_s3_file_manager_driver.mdx │ │ │ │ │ │ │ │ │ ├── base_file_manager_driver.mdx │ │ │ │ │ │ │ │ │ ├── griptape_cloud.mdx │ │ │ │ │ │ │ │ │ ├── griptape_cloud_file_manager_driver.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── local.mdx │ │ │ │ │ │ │ │ │ └── local_file_manager_driver.mdx │ │ │ │ │ │ │ │ ├── image_generation │ │ │ │ │ │ │ │ │ ├── amazon_bedrock.mdx │ │ │ │ │ │ │ │ │ ├── amazon_bedrock_image_generation_driver.mdx │ │ │ │ │ │ │ │ │ ├── azure_openai_image_generation_driver.mdx │ │ │ │ │ │ │ │ │ ├── base_image_generation_driver.mdx │ │ │ │ │ │ │ │ │ ├── base_multi_model_image_generation_driver.mdx │ │ │ │ │ │ │ │ │ ├── dummy.mdx │ │ │ │ │ │ │ │ │ ├── dummy_image_generation_driver.mdx │ │ │ │ │ │ │ │ │ ├── griptape_cloud.mdx │ │ │ │ │ │ │ │ │ ├── griptape_cloud_image_generation_driver.mdx │ │ │ │ │ │ │ │ │ ├── huggingface_pipeline.mdx │ │ │ │ │ │ │ │ │ ├── huggingface_pipeline_image_generation_driver.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── leonardo.mdx │ │ │ │ │ │ │ │ │ ├── leonardo_image_generation_driver.mdx │ │ │ │ │ │ │ │ │ ├── openai.mdx │ │ │ │ │ │ │ │ │ └── openai_image_generation_driver.mdx │ │ │ │ │ │ │ │ ├── image_generation_model │ │ │ │ │ │ │ │ │ ├── base_image_generation_model_driver.mdx │ │ │ │ │ │ │ │ │ ├── bedrock_stable_diffusion.mdx │ │ │ │ │ │ │ │ │ ├── bedrock_stable_diffusion_image_generation_model_driver.mdx │ │ │ │ │ │ │ │ │ ├── bedrock_titan.mdx │ │ │ │ │ │ │ │ │ ├── bedrock_titan_image_generation_model_driver.mdx │ │ │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ │ ├── image_generation_pipeline │ │ │ │ │ │ │ │ │ ├── base_image_generation_pipeline_driver.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── stable_diffusion_3.mdx │ │ │ │ │ │ │ │ │ ├── stable_diffusion_3_controlnet.mdx │ │ │ │ │ │ │ │ │ ├── stable_diffusion_3_controlnet_image_generation_pipeline_driver.mdx │ │ │ │ │ │ │ │ │ ├── stable_diffusion_3_image_generation_pipeline_driver.mdx │ │ │ │ │ │ │ │ │ ├── stable_diffusion_3_img_2_img.mdx │ │ │ │ │ │ │ │ │ └── stable_diffusion_3_img_2_img_image_generation_pipeline_driver.mdx │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ ├── memory │ │ │ │ │ │ │ │ │ ├── conversation │ │ │ │ │ │ │ │ │ │ ├── amazon_dynamodb.mdx │ │ │ │ │ │ │ │ │ │ ├── amazon_dynamodb_conversation_memory_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── base_conversation_memory_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── griptape_cloud.mdx │ │ │ │ │ │ │ │ │ │ ├── griptape_cloud_conversation_memory_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ ├── local.mdx │ │ │ │ │ │ │ │ │ │ ├── local_conversation_memory_driver.mdx │ │ │ │ │ │ │ │ │ │ ├── redis.mdx │ │ │ │ │ │ │ │ │ │ └── redis_conversation_memory_driver.mdx │ │ │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ │ ├── observability │ │ │ │ │ │ │ │ │ ├── base_observability_driver.mdx │ │ │ │ │ │ │ │ │ ├── datadog.mdx │ │ │ │ │ │ │ │ │ ├── datadog_observability_driver.mdx │ │ │ │ │ │ │ │ │ ├── griptape_cloud.mdx │ │ │ │ │ │ │ │ │ ├── griptape_cloud_observability_driver.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── no_op.mdx │ │ │ │ │ │ │ │ │ ├── no_op_observability_driver.mdx │ │ │ │ │ │ │ │ │ ├── open_telemetry.mdx │ │ │ │ │ │ │ │ │ └── open_telemetry_observability_driver.mdx │ │ │ │ │ │ │ │ ├── prompt │ │ │ │ │ │ │ │ │ ├── amazon_bedrock.mdx │ │ │ │ │ │ │ │ │ ├── amazon_bedrock_prompt_driver.mdx │ │ │ │ │ │ │ │ │ ├── amazon_sagemaker_jumpstart.mdx │ │ │ │ │ │ │ │ │ ├── amazon_sagemaker_jumpstart_prompt_driver.mdx │ │ │ │ │ │ │ │ │ ├── anthropic.mdx │ │ │ │ │ │ │ │ │ ├── anthropic_prompt_driver.mdx │ │ │ │ │ │ │ │ │ ├── azure_openai_chat_prompt_driver.mdx │ │ │ │ │ │ │ │ │ ├── base_prompt_driver.mdx │ │ │ │ │ │ │ │ │ ├── cohere.mdx │ │ │ │ │ │ │ │ │ ├── cohere_prompt_driver.mdx │ │ │ │ │ │ │ │ │ ├── dummy.mdx │ │ │ │ │ │ │ │ │ ├── dummy_prompt_driver.mdx │ │ │ │ │ │ │ │ │ ├── google.mdx │ │ │ │ │ │ │ │ │ ├── google_prompt_driver.mdx │ │ │ │ │ │ │ │ │ ├── griptape_cloud.mdx │ │ │ │ │ │ │ │ │ ├── griptape_cloud_prompt_driver.mdx │ │ │ │ │ │ │ │ │ ├── grok.mdx │ │ │ │ │ │ │ │ │ ├── grok_prompt_driver.mdx │ │ │ │ │ │ │ │ │ ├── huggingface_hub.mdx │ │ │ │ │ │ │ │ │ ├── huggingface_hub_prompt_driver.mdx │ │ │ │ │ │ │ │ │ ├── huggingface_pipeline.mdx │ │ │ │ │ │ │ │ │ ├── huggingface_pipeline_prompt_driver.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── ollama.mdx │ │ │ │ │ │ │ │ │ ├── ollama_prompt_driver.mdx │ │ │ │ │ │ │ │ │ ├── openai.mdx │ │ │ │ │ │ │ │ │ ├── openai_chat_prompt_driver.mdx │ │ │ │ │ │ │ │ │ ├── perplexity.mdx │ │ │ │ │ │ │ │ │ └── perplexity_prompt_driver.mdx │ │ │ │ │ │ │ │ ├── rerank │ │ │ │ │ │ │ │ │ ├── base_rerank_driver.mdx │ │ │ │ │ │ │ │ │ ├── cohere.mdx │ │ │ │ │ │ │ │ │ ├── cohere_rerank_driver.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── local.mdx │ │ │ │ │ │ │ │ │ ├── local_rerank_driver.mdx │ │ │ │ │ │ │ │ │ ├── nvidia_nim.mdx │ │ │ │ │ │ │ │ │ └── nvidia_nim_rerank_driver.mdx │ │ │ │ │ │ │ │ ├── ruleset │ │ │ │ │ │ │ │ │ ├── base_ruleset_driver.mdx │ │ │ │ │ │ │ │ │ ├── griptape_cloud.mdx │ │ │ │ │ │ │ │ │ ├── griptape_cloud_ruleset_driver.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── local.mdx │ │ │ │ │ │ │ │ │ └── local_ruleset_driver.mdx │ │ │ │ │ │ │ │ ├── sql │ │ │ │ │ │ │ │ │ ├── amazon_redshift.mdx │ │ │ │ │ │ │ │ │ ├── amazon_redshift_sql_driver.mdx │ │ │ │ │ │ │ │ │ ├── base_sql_driver.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── snowflake.mdx │ │ │ │ │ │ │ │ │ ├── snowflake_sql_driver.mdx │ │ │ │ │ │ │ │ │ └── sql_driver.mdx │ │ │ │ │ │ │ │ ├── structure_run │ │ │ │ │ │ │ │ │ ├── base_structure_run_driver.mdx │ │ │ │ │ │ │ │ │ ├── griptape_cloud.mdx │ │ │ │ │ │ │ │ │ ├── griptape_cloud_structure_run_driver.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── local.mdx │ │ │ │ │ │ │ │ │ └── local_structure_run_driver.mdx │ │ │ │ │ │ │ │ ├── text_to_speech │ │ │ │ │ │ │ │ │ ├── azure_openai_text_to_speech_driver.mdx │ │ │ │ │ │ │ │ │ ├── base_text_to_speech_driver.mdx │ │ │ │ │ │ │ │ │ ├── dummy.mdx │ │ │ │ │ │ │ │ │ ├── dummy_text_to_speech_driver.mdx │ │ │ │ │ │ │ │ │ ├── elevenlabs.mdx │ │ │ │ │ │ │ │ │ ├── elevenlabs_text_to_speech_driver.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── openai.mdx │ │ │ │ │ │ │ │ │ └── openai_text_to_speech_driver.mdx │ │ │ │ │ │ │ │ ├── vector │ │ │ │ │ │ │ │ │ ├── amazon_opensearch.mdx │ │ │ │ │ │ │ │ │ ├── amazon_opensearch_vector_store_driver.mdx │ │ │ │ │ │ │ │ │ ├── astradb.mdx │ │ │ │ │ │ │ │ │ ├── astradb_vector_store_driver.mdx │ │ │ │ │ │ │ │ │ ├── azure_mongodb.mdx │ │ │ │ │ │ │ │ │ ├── azure_mongodb_vector_store_driver.mdx │ │ │ │ │ │ │ │ │ ├── base_vector_store_driver.mdx │ │ │ │ │ │ │ │ │ ├── dummy.mdx │ │ │ │ │ │ │ │ │ ├── dummy_vector_store_driver.mdx │ │ │ │ │ │ │ │ │ ├── griptape_cloud.mdx │ │ │ │ │ │ │ │ │ ├── griptape_cloud_vector_store_driver.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── local.mdx │ │ │ │ │ │ │ │ │ ├── local_vector_store_driver.mdx │ │ │ │ │ │ │ │ │ ├── marqo.mdx │ │ │ │ │ │ │ │ │ ├── marqo_vector_store_driver.mdx │ │ │ │ │ │ │ │ │ ├── mongodb_atlas.mdx │ │ │ │ │ │ │ │ │ ├── mongodb_atlas_vector_store_driver.mdx │ │ │ │ │ │ │ │ │ ├── opensearch.mdx │ │ │ │ │ │ │ │ │ ├── opensearch_vector_store_driver.mdx │ │ │ │ │ │ │ │ │ ├── pgai.mdx │ │ │ │ │ │ │ │ │ ├── pgai_knowledge_base_vector_store_driver.mdx │ │ │ │ │ │ │ │ │ ├── pgvector.mdx │ │ │ │ │ │ │ │ │ ├── pgvector_vector_store_driver.mdx │ │ │ │ │ │ │ │ │ ├── pinecone.mdx │ │ │ │ │ │ │ │ │ ├── pinecone_vector_store_driver.mdx │ │ │ │ │ │ │ │ │ ├── qdrant.mdx │ │ │ │ │ │ │ │ │ ├── qdrant_vector_store_driver.mdx │ │ │ │ │ │ │ │ │ ├── redis.mdx │ │ │ │ │ │ │ │ │ └── redis_vector_store_driver.mdx │ │ │ │ │ │ │ │ ├── web_scraper │ │ │ │ │ │ │ │ │ ├── base_web_scraper_driver.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── markdownify.mdx │ │ │ │ │ │ │ │ │ ├── markdownify_web_scraper_driver.mdx │ │ │ │ │ │ │ │ │ ├── proxy.mdx │ │ │ │ │ │ │ │ │ ├── proxy_web_scraper_driver.mdx │ │ │ │ │ │ │ │ │ ├── trafilatura.mdx │ │ │ │ │ │ │ │ │ └── trafilatura_web_scraper_driver.mdx │ │ │ │ │ │ │ │ └── web_search │ │ │ │ │ │ │ │ │ ├── base_web_search_driver.mdx │ │ │ │ │ │ │ │ │ ├── duck_duck_go.mdx │ │ │ │ │ │ │ │ │ ├── duck_duck_go_web_search_driver.mdx │ │ │ │ │ │ │ │ │ ├── exa.mdx │ │ │ │ │ │ │ │ │ ├── exa_web_search_driver.mdx │ │ │ │ │ │ │ │ │ ├── google.mdx │ │ │ │ │ │ │ │ │ ├── google_web_search_driver.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── perplexity.mdx │ │ │ │ │ │ │ │ │ ├── perplexity_web_search_driver.mdx │ │ │ │ │ │ │ │ │ ├── tavily.mdx │ │ │ │ │ │ │ │ │ └── tavily_web_search_driver.mdx │ │ │ │ │ │ │ ├── engines │ │ │ │ │ │ │ │ ├── eval │ │ │ │ │ │ │ │ │ ├── base_eval_engine.mdx │ │ │ │ │ │ │ │ │ ├── eval_engine.mdx │ │ │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ │ ├── extraction │ │ │ │ │ │ │ │ │ ├── base_extraction_engine.mdx │ │ │ │ │ │ │ │ │ ├── csv_extraction_engine.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── json_extraction_engine.mdx │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ ├── rag │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── modules │ │ │ │ │ │ │ │ │ │ ├── base_rag_module.mdx │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ ├── query │ │ │ │ │ │ │ │ │ │ │ ├── base_query_rag_module.mdx │ │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ │ └── translate_query_rag_module.mdx │ │ │ │ │ │ │ │ │ │ ├── response │ │ │ │ │ │ │ │ │ │ │ ├── base_after_response_rag_module.mdx │ │ │ │ │ │ │ │ │ │ │ ├── base_before_response_rag_module.mdx │ │ │ │ │ │ │ │ │ │ │ ├── base_response_rag_module.mdx │ │ │ │ │ │ │ │ │ │ │ ├── footnote_prompt_response_rag_module.mdx │ │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ │ ├── prompt_response_rag_module.mdx │ │ │ │ │ │ │ │ │ │ │ └── text_chunks_response_rag_module.mdx │ │ │ │ │ │ │ │ │ │ └── retrieval │ │ │ │ │ │ │ │ │ │ │ ├── base_rerank_rag_module.mdx │ │ │ │ │ │ │ │ │ │ │ ├── base_retrieval_rag_module.mdx │ │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ │ ├── text_chunks_rerank_rag_module.mdx │ │ │ │ │ │ │ │ │ │ │ ├── text_loader_retrieval_rag_module.mdx │ │ │ │ │ │ │ │ │ │ │ └── vector_store_retrieval_rag_module.mdx │ │ │ │ │ │ │ │ │ ├── rag_context.mdx │ │ │ │ │ │ │ │ │ ├── rag_engine.mdx │ │ │ │ │ │ │ │ │ └── stages │ │ │ │ │ │ │ │ │ │ ├── base_rag_stage.mdx │ │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ │ ├── query_rag_stage.mdx │ │ │ │ │ │ │ │ │ │ ├── response_rag_stage.mdx │ │ │ │ │ │ │ │ │ │ └── retrieval_rag_stage.mdx │ │ │ │ │ │ │ │ └── summary │ │ │ │ │ │ │ │ │ ├── base_summary_engine.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── prompt_summary_engine.mdx │ │ │ │ │ │ │ ├── events │ │ │ │ │ │ │ │ ├── action_chunk_event.mdx │ │ │ │ │ │ │ │ ├── audio_chunk_event.mdx │ │ │ │ │ │ │ │ ├── base_actions_subtask_event.mdx │ │ │ │ │ │ │ │ ├── base_audio_transcription_event.mdx │ │ │ │ │ │ │ │ ├── base_chunk_event.mdx │ │ │ │ │ │ │ │ ├── base_event.mdx │ │ │ │ │ │ │ │ ├── base_image_generation_event.mdx │ │ │ │ │ │ │ │ ├── base_image_query_event.mdx │ │ │ │ │ │ │ │ ├── base_media_generation_event.mdx │ │ │ │ │ │ │ │ ├── base_prompt_event.mdx │ │ │ │ │ │ │ │ ├── base_task_event.mdx │ │ │ │ │ │ │ │ ├── base_text_to_speech_event.mdx │ │ │ │ │ │ │ │ ├── event_bus.mdx │ │ │ │ │ │ │ │ ├── event_listener.mdx │ │ │ │ │ │ │ │ ├── finish_actions_subtask_event.mdx │ │ │ │ │ │ │ │ ├── finish_audio_transcription_event.mdx │ │ │ │ │ │ │ │ ├── finish_image_generation_event.mdx │ │ │ │ │ │ │ │ ├── finish_image_query_event.mdx │ │ │ │ │ │ │ │ ├── finish_prompt_event.mdx │ │ │ │ │ │ │ │ ├── finish_structure_run_event.mdx │ │ │ │ │ │ │ │ ├── finish_task_event.mdx │ │ │ │ │ │ │ │ ├── finish_text_to_speech_event.mdx │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ ├── start_actions_subtask_event.mdx │ │ │ │ │ │ │ │ ├── start_audio_transcription_event.mdx │ │ │ │ │ │ │ │ ├── start_image_generation_event.mdx │ │ │ │ │ │ │ │ ├── start_image_query_event.mdx │ │ │ │ │ │ │ │ ├── start_prompt_event.mdx │ │ │ │ │ │ │ │ ├── start_structure_run_event.mdx │ │ │ │ │ │ │ │ ├── start_task_event.mdx │ │ │ │ │ │ │ │ ├── start_text_to_speech_event.mdx │ │ │ │ │ │ │ │ └── text_chunk_event.mdx │ │ │ │ │ │ │ ├── exceptions │ │ │ │ │ │ │ │ ├── dummy_exception.mdx │ │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── loaders │ │ │ │ │ │ │ │ ├── audio_loader.mdx │ │ │ │ │ │ │ │ ├── base_file_loader.mdx │ │ │ │ │ │ │ │ ├── base_loader.mdx │ │ │ │ │ │ │ │ ├── blob_loader.mdx │ │ │ │ │ │ │ │ ├── csv_loader.mdx │ │ │ │ │ │ │ │ ├── email_loader.mdx │ │ │ │ │ │ │ │ ├── image_loader.mdx │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ ├── json_loader.mdx │ │ │ │ │ │ │ │ ├── pdf_loader.mdx │ │ │ │ │ │ │ │ ├── sql_loader.mdx │ │ │ │ │ │ │ │ ├── text_loader.mdx │ │ │ │ │ │ │ │ └── web_loader.mdx │ │ │ │ │ │ │ ├── memory │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ ├── meta │ │ │ │ │ │ │ │ │ ├── action_subtask_meta_entry.mdx │ │ │ │ │ │ │ │ │ ├── base_meta_entry.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── meta_memory.mdx │ │ │ │ │ │ │ │ ├── structure │ │ │ │ │ │ │ │ │ ├── base_conversation_memory.mdx │ │ │ │ │ │ │ │ │ ├── conversation_memory.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── run.mdx │ │ │ │ │ │ │ │ │ └── summary_conversation_memory.mdx │ │ │ │ │ │ │ │ └── task │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ ├── storage │ │ │ │ │ │ │ │ │ ├── base_artifact_storage.mdx │ │ │ │ │ │ │ │ │ ├── blob_artifact_storage.mdx │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── text_artifact_storage.mdx │ │ │ │ │ │ │ │ │ └── task_memory.mdx │ │ │ │ │ │ │ ├── mixins │ │ │ │ │ │ │ │ ├── actions_subtask_origin_mixin.mdx │ │ │ │ │ │ │ │ ├── activity_mixin.mdx │ │ │ │ │ │ │ │ ├── artifact_file_output_mixin.mdx │ │ │ │ │ │ │ │ ├── exponential_backoff_mixin.mdx │ │ │ │ │ │ │ │ ├── futures_executor_mixin.mdx │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ ├── rule_mixin.mdx │ │ │ │ │ │ │ │ ├── runnable_mixin.mdx │ │ │ │ │ │ │ │ ├── serializable_mixin.mdx │ │ │ │ │ │ │ │ └── singleton_mixin.mdx │ │ │ │ │ │ │ ├── observability │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ └── observability.mdx │ │ │ │ │ │ │ ├── rules │ │ │ │ │ │ │ │ ├── base_rule.mdx │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ ├── json_schema_rule.mdx │ │ │ │ │ │ │ │ ├── rule.mdx │ │ │ │ │ │ │ │ └── ruleset.mdx │ │ │ │ │ │ │ ├── schemas │ │ │ │ │ │ │ │ ├── base_schema.mdx │ │ │ │ │ │ │ │ ├── bytes_field.mdx │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ ├── polymorphic_schema.mdx │ │ │ │ │ │ │ │ ├── pydantic_model_field.mdx │ │ │ │ │ │ │ │ └── union_field.mdx │ │ │ │ │ │ │ ├── structures │ │ │ │ │ │ │ │ ├── agent.mdx │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ ├── pipeline.mdx │ │ │ │ │ │ │ │ ├── structure.mdx │ │ │ │ │ │ │ │ └── workflow.mdx │ │ │ │ │ │ │ ├── tasks │ │ │ │ │ │ │ │ ├── actions_subtask.mdx │ │ │ │ │ │ │ │ ├── assistant_task.mdx │ │ │ │ │ │ │ │ ├── audio_transcription_task.mdx │ │ │ │ │ │ │ │ ├── base_audio_generation_task.mdx │ │ │ │ │ │ │ │ ├── base_audio_input_task.mdx │ │ │ │ │ │ │ │ ├── base_image_generation_task.mdx │ │ │ │ │ │ │ │ ├── base_subtask.mdx │ │ │ │ │ │ │ │ ├── base_task.mdx │ │ │ │ │ │ │ │ ├── base_text_input_task.mdx │ │ │ │ │ │ │ │ ├── branch_task.mdx │ │ │ │ │ │ │ │ ├── code_execution_task.mdx │ │ │ │ │ │ │ │ ├── extraction_task.mdx │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ ├── inpainting_image_generation_task.mdx │ │ │ │ │ │ │ │ ├── outpainting_image_generation_task.mdx │ │ │ │ │ │ │ │ ├── output_schema_validation_subtask.mdx │ │ │ │ │ │ │ │ ├── prompt_image_generation_task.mdx │ │ │ │ │ │ │ │ ├── prompt_task.mdx │ │ │ │ │ │ │ │ ├── rag_task.mdx │ │ │ │ │ │ │ │ ├── structure_run_task.mdx │ │ │ │ │ │ │ │ ├── text_summary_task.mdx │ │ │ │ │ │ │ │ ├── text_to_speech_task.mdx │ │ │ │ │ │ │ │ ├── tool_task.mdx │ │ │ │ │ │ │ │ ├── toolkit_task.mdx │ │ │ │ │ │ │ │ └── variation_image_generation_task.mdx │ │ │ │ │ │ │ ├── tokenizers │ │ │ │ │ │ │ │ ├── amazon_bedrock_tokenizer.mdx │ │ │ │ │ │ │ │ ├── anthropic_tokenizer.mdx │ │ │ │ │ │ │ │ ├── base_tokenizer.mdx │ │ │ │ │ │ │ │ ├── cohere_tokenizer.mdx │ │ │ │ │ │ │ │ ├── dummy_tokenizer.mdx │ │ │ │ │ │ │ │ ├── google_tokenizer.mdx │ │ │ │ │ │ │ │ ├── grok_tokenizer.mdx │ │ │ │ │ │ │ │ ├── huggingface_tokenizer.mdx │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ ├── openai_tokenizer.mdx │ │ │ │ │ │ │ │ ├── simple_tokenizer.mdx │ │ │ │ │ │ │ │ └── voyageai_tokenizer.mdx │ │ │ │ │ │ │ ├── tools │ │ │ │ │ │ │ │ ├── audio_transcription │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ ├── base_griptape_cloud_tool.mdx │ │ │ │ │ │ │ │ ├── base_image_generation_tool.mdx │ │ │ │ │ │ │ │ ├── base_tool.mdx │ │ │ │ │ │ │ │ ├── calculator │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ ├── computer │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ ├── date_time │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ ├── email │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ ├── extraction │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ ├── file_manager │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ ├── griptape_cloud_tool │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ ├── image_query │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ ├── inpainting_image_generation │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ ├── outpainting_image_generation │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ ├── prompt_image_generation │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ ├── prompt_summary │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ ├── query │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ ├── rag │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ ├── rest_api │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ ├── sql │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ ├── structure_run │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ ├── structured_output │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ ├── text_to_speech │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ ├── variation_image_generation │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ ├── vector_store │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ ├── web_scraper │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ │ └── web_search │ │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ │ └── tool.mdx │ │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ │ ├── chat.mdx │ │ │ │ │ │ │ │ ├── command_runner.mdx │ │ │ │ │ │ │ │ ├── constants.mdx │ │ │ │ │ │ │ │ ├── contextvars_utils.mdx │ │ │ │ │ │ │ │ ├── conversation.mdx │ │ │ │ │ │ │ │ ├── decorators.mdx │ │ │ │ │ │ │ │ ├── deprecation.mdx │ │ │ │ │ │ │ │ ├── dict_utils.mdx │ │ │ │ │ │ │ │ ├── file_utils.mdx │ │ │ │ │ │ │ │ ├── futures.mdx │ │ │ │ │ │ │ │ ├── griptape_cloud.mdx │ │ │ │ │ │ │ │ ├── hash.mdx │ │ │ │ │ │ │ │ ├── import_utils.mdx │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ ├── j2.mdx │ │ │ │ │ │ │ │ ├── json_schema_utils.mdx │ │ │ │ │ │ │ │ ├── load_artifact_from_memory.mdx │ │ │ │ │ │ │ │ ├── manifest_validator.mdx │ │ │ │ │ │ │ │ ├── paths.mdx │ │ │ │ │ │ │ │ ├── python_runner.mdx │ │ │ │ │ │ │ │ ├── reference_utils.mdx │ │ │ │ │ │ │ │ ├── stream.mdx │ │ │ │ │ │ │ │ ├── structure_visualizer.mdx │ │ │ │ │ │ │ │ └── token_counter.mdx │ │ │ │ │ │ ├── structures │ │ │ │ │ │ │ ├── configs.mdx │ │ │ │ │ │ │ ├── conversation-memory.mdx │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── observability.mdx │ │ │ │ │ │ │ ├── pipelines.mdx │ │ │ │ │ │ │ ├── rulesets.mdx │ │ │ │ │ │ │ ├── task-memory.mdx │ │ │ │ │ │ │ ├── tasks.mdx │ │ │ │ │ │ │ └── workflows.mdx │ │ │ │ │ │ └── tools │ │ │ │ │ │ │ ├── custom-tools │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ └── official-tools │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── structures │ │ │ │ │ │ ├── create-structure.mdx │ │ │ │ │ │ ├── getting-started-with-structures.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── run-structure.mdx │ │ │ │ │ │ ├── structure-config.mdx │ │ │ │ │ │ └── structure-run-events.mdx │ │ │ │ │ ├── threads │ │ │ │ │ │ └── index.mdx │ │ │ │ │ └── tools │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── run-tool.mdx │ │ │ │ │ │ └── tool-config.mdx │ │ │ │ ├── retrievers.mdx │ │ │ │ ├── rulesets.mdx │ │ │ │ ├── structures.mdx │ │ │ │ ├── threads.mdx │ │ │ │ ├── tools.mdx │ │ │ │ └── view-threads.mdx │ │ │ ├── hub-map.mdx │ │ │ ├── index.mdx │ │ │ ├── learn │ │ │ │ ├── 101.mdx │ │ │ │ ├── 201.mdx │ │ │ │ ├── 301.mdx │ │ │ │ ├── explained.mdx │ │ │ │ ├── how-to │ │ │ │ │ └── index.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── learning-paths.mdx │ │ │ │ ├── solutions.mdx │ │ │ │ └── use-cases.mdx │ │ │ ├── model │ │ │ │ ├── access-kserve-endpoints.mdx │ │ │ │ ├── air-gapped-cache-hybrid-manager.mdx │ │ │ │ ├── architecture.mdx │ │ │ │ ├── configure-servingruntime.mdx │ │ │ │ ├── create-inferenceservice.mdx │ │ │ │ ├── define-repository-rules.mdx │ │ │ │ ├── deploy-nim-container.mdx │ │ │ │ ├── deployment.mdx │ │ │ │ ├── faq.mdx │ │ │ │ ├── how-to-deploy-ai-models.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── integrate-private-registry.mdx │ │ │ │ ├── library.mdx │ │ │ │ ├── manage-repository-metadata.mdx │ │ │ │ ├── model-library-explained.mdx │ │ │ │ ├── model-serving-concepts.mdx │ │ │ │ ├── model-serving-explained.mdx │ │ │ │ ├── monitor-inferenceservice.mdx │ │ │ │ ├── observability.mdx │ │ │ │ ├── quickstart-python-using-inference-endpoint.mdx │ │ │ │ ├── samples │ │ │ │ │ └── hm_kserve_quickstart.py │ │ │ │ ├── serving.mdx │ │ │ │ ├── setup-gpu.mdx │ │ │ │ ├── update-gpu-resources.mdx │ │ │ │ ├── use-case-and-personas.mdx │ │ │ │ └── verify-models.mdx │ │ │ ├── pipeline │ │ │ │ ├── capabilities │ │ │ │ │ ├── auto-processing.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── compatibility.mdx │ │ │ │ ├── gettingstarted │ │ │ │ │ └── index.mdx │ │ │ │ ├── images │ │ │ │ │ └── aidb-overview-withbackground.png │ │ │ │ ├── index.mdx │ │ │ │ ├── installing │ │ │ │ │ ├── complete.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── packages.mdx │ │ │ │ │ ├── permissions.mdx │ │ │ │ │ └── upgrading.mdx │ │ │ │ ├── knowledge_base │ │ │ │ │ ├── concepts.mdx │ │ │ │ │ ├── example.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── performance_tuning.mdx │ │ │ │ │ ├── usage.mdx │ │ │ │ │ └── usage_auto_processing.mdx │ │ │ │ ├── licenses.mdx │ │ │ │ ├── limitations.mdx │ │ │ │ ├── models │ │ │ │ │ ├── getting-started.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── primitives.mdx │ │ │ │ │ ├── supported-models │ │ │ │ │ │ ├── bert.mdx │ │ │ │ │ │ ├── clip.mdx │ │ │ │ │ │ ├── completions.mdx │ │ │ │ │ │ ├── embeddings.mdx │ │ │ │ │ │ ├── gemini.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── llama.mdx │ │ │ │ │ │ ├── nim_clip.mdx │ │ │ │ │ │ ├── nim_paddle_ocr.mdx │ │ │ │ │ │ ├── nim_reranking.mdx │ │ │ │ │ │ ├── support_matrix.mdx │ │ │ │ │ │ └── t5.mdx │ │ │ │ │ ├── using-models.mdx │ │ │ │ │ └── using-with │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── openai-api-compatibility.mdx │ │ │ │ │ │ └── using-nvidia-nim │ │ │ │ │ │ ├── files │ │ │ │ │ │ ├── embedding-runtime.yaml │ │ │ │ │ │ ├── embedding-service.yaml │ │ │ │ │ │ ├── image-embed-runtime.yaml │ │ │ │ │ │ ├── image-embed-service.yaml │ │ │ │ │ │ ├── llm-runtime.yaml │ │ │ │ │ │ ├── llm-service.yaml │ │ │ │ │ │ ├── ocr-runtime.yaml │ │ │ │ │ │ ├── ocr-service.yaml │ │ │ │ │ │ ├── rerank-runtime.yaml │ │ │ │ │ │ └── rerank-service.yaml │ │ │ │ │ │ ├── images │ │ │ │ │ │ └── get-api-key.svg │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── using-nim-in-nvidia-ngc.mdx │ │ │ │ │ │ └── using-nim-in-your-environment.mdx │ │ │ │ ├── pgfs │ │ │ │ │ ├── functions │ │ │ │ │ │ ├── gcs.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── local.mdx │ │ │ │ │ │ └── s3.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── settings.mdx │ │ │ │ ├── pipelines-overview.mdx │ │ │ │ ├── preparers │ │ │ │ │ ├── concepts.mdx │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── chained_preparers.mdx │ │ │ │ │ │ ├── chunk_text.mdx │ │ │ │ │ │ ├── chunk_text_auto_processing.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── parse_html.mdx │ │ │ │ │ │ ├── parse_pdf.mdx │ │ │ │ │ │ ├── perform_ocr.mdx │ │ │ │ │ │ └── summarize_text.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── primitives.mdx │ │ │ │ │ ├── usage.mdx │ │ │ │ │ └── volume_destination.mdx │ │ │ │ ├── reference │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── knowledge_bases.mdx │ │ │ │ │ ├── models.mdx │ │ │ │ │ ├── pgfs.mdx │ │ │ │ │ ├── preparers.mdx │ │ │ │ │ └── retrievers.mdx │ │ │ │ ├── rel_notes │ │ │ │ │ ├── ai-accelerator_1.0.7_rel_notes.mdx │ │ │ │ │ ├── ai-accelerator_2.0.0_rel_notes.mdx │ │ │ │ │ ├── ai-accelerator_2.1.1_rel_notes.mdx │ │ │ │ │ ├── ai-accelerator_2.1.2_rel_notes.mdx │ │ │ │ │ ├── ai-accelerator_2.2.1_rel_notes.mdx │ │ │ │ │ ├── ai-accelerator_3.0.1_rel_notes.mdx │ │ │ │ │ ├── ai-accelerator_4.0.0_rel_notes.mdx │ │ │ │ │ ├── ai-accelerator_4.0.1_rel_notes.mdx │ │ │ │ │ ├── ai-accelerator_4.1.0_rel_notes.mdx │ │ │ │ │ ├── ai-accelerator_4.1.1_rel_notes.mdx │ │ │ │ │ ├── ai-accelerator_4.2.0_rel_notes.mdx │ │ │ │ │ ├── ai-accelerator_4.3.0_rel_notes.mdx │ │ │ │ │ ├── ai-accelerator_4.4.0_rel_notes.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── src │ │ │ │ │ │ ├── meta.yml │ │ │ │ │ │ ├── rel_notes_1.0.7.yml │ │ │ │ │ │ ├── rel_notes_2.0.0.yml │ │ │ │ │ │ ├── rel_notes_2.1.1.yml │ │ │ │ │ │ ├── rel_notes_2.1.2.yml │ │ │ │ │ │ ├── rel_notes_2.2.1.yml │ │ │ │ │ │ ├── rel_notes_3.0.1.yml │ │ │ │ │ │ ├── rel_notes_4.0.0.yml │ │ │ │ │ │ ├── rel_notes_4.0.1.yml │ │ │ │ │ │ ├── rel_notes_4.1.0.yml │ │ │ │ │ │ ├── rel_notes_4.1.1.yml │ │ │ │ │ │ ├── rel_notes_4.2.0.yml │ │ │ │ │ │ ├── rel_notes_4.3.0.yml │ │ │ │ │ │ └── rel_notes_4.4.0.yml │ │ │ │ └── volumes.mdx │ │ │ ├── release_notes │ │ │ │ ├── ai_factory_1.3_rel_notes.mdx │ │ │ │ └── index.mdx │ │ │ └── vector-engine │ │ │ │ └── index.mdx │ │ │ ├── analytics │ │ │ ├── 101.mdx │ │ │ ├── 201.mdx │ │ │ ├── 301.mdx │ │ │ ├── analytics-concepts.mdx │ │ │ ├── architecture.mdx │ │ │ ├── create-lakehouse-cluster.mdx │ │ │ ├── delta_lake.mdx │ │ │ ├── generic-concepts.mdx │ │ │ ├── getting-setup.mdx │ │ │ ├── how-to-iceberg-reads-writes-with-catalog.mdx │ │ │ ├── how-to-lakehouse-read-with-without-catalog.mdx │ │ │ ├── how-to-read-write-without-catalog.mdx │ │ │ ├── how-to-third-party-catalog.mdx │ │ │ ├── iceberg.mdx │ │ │ ├── images │ │ │ │ ├── choose-your-path.svg │ │ │ │ ├── create-cluster-dropdown.png │ │ │ │ ├── create-cluster-dropdown.svg │ │ │ │ ├── create-cluster-wizard.png │ │ │ │ ├── custom-build-wizard.svg │ │ │ │ ├── level-100.svg │ │ │ │ ├── level-200.svg │ │ │ │ ├── level-300.svg │ │ │ │ ├── level-50.svg │ │ │ │ ├── msl_list.png │ │ │ │ └── old-level-300.svg │ │ │ ├── index.mdx │ │ │ ├── lakehouse.mdx │ │ │ ├── learn.mdx │ │ │ ├── paths.mdx │ │ │ ├── personas.mdx │ │ │ ├── quick_start.mdx │ │ │ ├── reference │ │ │ │ ├── datasets.mdx │ │ │ │ ├── delta_tables.mdx │ │ │ │ ├── directscan.mdx │ │ │ │ ├── functions.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── instances.mdx │ │ │ │ ├── loadingdata.mdx │ │ │ │ ├── queries.mdx │ │ │ │ └── users.mdx │ │ │ ├── terminology.mdx │ │ │ ├── tiered_tables.mdx │ │ │ └── tiered_tables_howto.mdx │ │ │ ├── hybrid-manager │ │ │ ├── ai-factory │ │ │ │ ├── architecture.mdx │ │ │ │ ├── deploy-with-hm-ui.mdx │ │ │ │ ├── faq.mdx │ │ │ │ ├── gen-ai.mdx │ │ │ │ ├── getting-started.mdx │ │ │ │ ├── gpu-recommended.mdx │ │ │ │ ├── how-to-enable-ai-factory.mdx │ │ │ │ ├── images │ │ │ │ │ ├── first-time-form.png │ │ │ │ │ ├── first-time-setup.png │ │ │ │ │ └── launchpad.png │ │ │ │ ├── index.mdx │ │ │ │ ├── models.mdx │ │ │ │ ├── observability.mdx │ │ │ │ ├── prerequisites.mdx │ │ │ │ ├── quickstart.mdx │ │ │ │ ├── sovereign-ai-on-hm.mdx │ │ │ │ ├── troubleshooting.mdx │ │ │ │ ├── use-cases-and-personas.mdx │ │ │ │ ├── using-models-in-gen-ai-builder.mdx │ │ │ │ └── using-models-in-model-clusters.mdx │ │ │ ├── analytics │ │ │ │ ├── analytics_concepts.mdx │ │ │ │ ├── delta_lake.mdx │ │ │ │ ├── iceberg.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── lakehouse.mdx │ │ │ │ └── tiered_tables.mdx │ │ │ ├── images │ │ │ │ ├── 2dn-1wn-2dn-1wn-1wg.svg │ │ │ │ ├── PGAIHM-backups-img1.png │ │ │ │ ├── PGAIHM-backups-img2.png │ │ │ │ ├── PGAIHM-restores-img1.png │ │ │ │ ├── PGAIHM-restores-img2.png │ │ │ │ ├── PGAIHM-restores-pitr-api-1.png │ │ │ │ ├── PGAIHM-restores-pitr-api-2.png │ │ │ │ ├── PGAIHM-restores-pitr-api-3.png │ │ │ │ ├── PGAIHM-restores-pitr-cli-1.png │ │ │ │ ├── PGAIHM-restores-pitr-cli-2.png │ │ │ │ ├── api_docs.png │ │ │ │ ├── architectures │ │ │ │ │ ├── ahadha-1x3-cluster.svg │ │ │ │ │ ├── dha-3x3-cluster.svg │ │ │ │ │ └── dhaaha-1x2-with-witness.svg │ │ │ │ ├── assetlibrary-home.png │ │ │ │ ├── assetlibrary-image-details-image-tags-tab.png │ │ │ │ ├── assetlibrary-image-details-overview-tab.png │ │ │ │ ├── assetlibrary-image-tag-details.png │ │ │ │ ├── assetlibrary-knowledge-bases.png │ │ │ │ ├── browser_cluster.png │ │ │ │ ├── cert-manager_dashboard.png │ │ │ │ ├── cluster-health-status-dha.png │ │ │ │ ├── cluster-health-status-primary-standby.png │ │ │ │ ├── cluster_types_HM.svg │ │ │ │ ├── default_alerts_hcp.png │ │ │ │ ├── eha.png │ │ │ │ ├── hard_utiliz.png │ │ │ │ ├── hcp-usagereport-1.png │ │ │ │ ├── hcp_high-level_light.svg │ │ │ │ ├── high-availability.svg │ │ │ │ ├── hm_migrations_oracle.svg │ │ │ │ ├── hm_migrations_oracle_dmsagent.svg │ │ │ │ ├── hm_migrations_pg.svg │ │ │ │ ├── hm_migrations_pg_dmsagent.svg │ │ │ │ ├── hm_monitoring_ext.svg │ │ │ │ ├── k8s_compute_dashboard.png │ │ │ │ ├── k8s_coreDNS_dashboard.png │ │ │ │ ├── k8s_kubelet_dashboard.png │ │ │ │ ├── k8s_networking_cluster_dashboard.png │ │ │ │ ├── k8s_persistentvolumes_dashboard.png │ │ │ │ ├── k8s_stateful_dashboard.png │ │ │ │ ├── launchpad.png │ │ │ │ ├── launchpad_access.png │ │ │ │ ├── loki_chunks_dashboard.png │ │ │ │ ├── loki_data_dashboard.png │ │ │ │ ├── loki_ops_dashboard.png │ │ │ │ ├── loki_reads_dashboard.png │ │ │ │ ├── loki_reads_resources_dashboard.png │ │ │ │ ├── loki_retention_dashboard.png │ │ │ │ ├── loki_writes_dashboard.png │ │ │ │ ├── loki_writes_resources_dashboard.png │ │ │ │ ├── mp_ai_copilot_models.svg │ │ │ │ ├── postgres_PGD_dashboard.png │ │ │ │ ├── postgres_estatestats_dashboard.png │ │ │ │ ├── postgres_hardware_dashboard.png │ │ │ │ ├── postgres_k8s_events_dashboard.png │ │ │ │ ├── postgres_status_dashboard.png │ │ │ │ ├── power_emission_dashboard.png │ │ │ │ ├── project-overview.png │ │ │ │ ├── project-spog.png │ │ │ │ ├── region2d1w.png │ │ │ │ ├── region3d.png │ │ │ │ ├── repo-token.png │ │ │ │ ├── single-node.svg │ │ │ │ ├── telemetry_memcached_dashboard.png │ │ │ │ ├── telemetry_node_dashboard.png │ │ │ │ ├── telemetry_prometheus_dashboard.png │ │ │ │ ├── telemetry_thanos_dashboard.png │ │ │ │ └── velero_dashboard.png │ │ │ ├── index.mdx │ │ │ ├── install │ │ │ │ ├── customization │ │ │ │ │ ├── byo_idp │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── ldap.mdx │ │ │ │ │ │ └── saml.mdx │ │ │ │ │ ├── cert-man.mdx │ │ │ │ │ ├── data_catalog_secret.mdx │ │ │ │ │ ├── genai_secret.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── kms_for_tde │ │ │ │ │ │ ├── adding_kms_support.mdx │ │ │ │ │ │ ├── aws_kms.mdx │ │ │ │ │ │ ├── deleting_key.mdx │ │ │ │ │ │ ├── google_cloud_kms.mdx │ │ │ │ │ │ ├── hashicorp.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ └── migration_portal_secrets.mdx │ │ │ │ ├── eks │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── installing │ │ │ │ │ │ ├── assets-helm │ │ │ │ │ │ │ ├── default-env.sh │ │ │ │ │ │ │ ├── eks-fix-auto.sh │ │ │ │ │ │ │ ├── eks-install-secrets.sh │ │ │ │ │ │ │ └── prepare.sh │ │ │ │ │ │ ├── assets-op │ │ │ │ │ │ │ ├── default-env.sh │ │ │ │ │ │ │ ├── eks-fix-auto.sh │ │ │ │ │ │ │ ├── eks-install-operator.sh │ │ │ │ │ │ │ ├── eks-install-secrets.sh │ │ │ │ │ │ │ ├── hm-default.yaml │ │ │ │ │ │ │ └── prepare-op.sh │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── installinghelm.mdx │ │ │ │ │ │ └── installingop.mdx │ │ │ │ │ ├── portalconnection.mdx │ │ │ │ │ ├── prerequisites │ │ │ │ │ │ ├── awsaccount.mdx │ │ │ │ │ │ ├── ekscluster.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── installsystem.mdx │ │ │ │ │ └── uninstall.mdx │ │ │ │ ├── gcp │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── installing │ │ │ │ │ │ ├── dns_and_verify.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── installhelm.mdx │ │ │ │ │ │ └── installop.mdx │ │ │ │ │ ├── portalconnection.mdx │ │ │ │ │ └── prerequisites │ │ │ │ │ │ ├── gcpcluster.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── installsystem.mdx │ │ │ │ │ │ └── setvariables.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── rancher │ │ │ │ │ ├── dns_and_verify.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── installing.mdx │ │ │ │ │ ├── portalconnection.mdx │ │ │ │ │ └── prerequisites │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── rke2cluster.mdx │ │ │ │ └── rhos │ │ │ │ │ ├── dns_and_verify.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── installing.mdx │ │ │ │ │ ├── portalconnection.mdx │ │ │ │ │ └── prerequisites │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── installsystem.mdx │ │ │ │ │ ├── rhoscluster.mdx │ │ │ │ │ └── setvariables.mdx │ │ │ ├── known_issues.mdx │ │ │ ├── overview │ │ │ │ ├── architecture.mdx │ │ │ │ ├── database_types │ │ │ │ │ ├── advanced_highavailability.mdx │ │ │ │ │ ├── distributed_highavailability.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── primary_standby_highavailability.mdx │ │ │ │ │ └── single_node.mdx │ │ │ │ ├── index.mdx │ │ │ │ └── postgres_distributions.mdx │ │ │ ├── release_notes │ │ │ │ ├── hm_2025.11.0_rel_notes.mdx │ │ │ │ └── index.mdx │ │ │ ├── system │ │ │ │ ├── concepts.mdx │ │ │ │ ├── faq.mdx │ │ │ │ ├── glossary.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── specs.mdx │ │ │ │ ├── use-cases.mdx │ │ │ │ └── what-to-expect.mdx │ │ │ └── using_hybrid_manager │ │ │ │ ├── backup_restore │ │ │ │ ├── backups.mdx │ │ │ │ ├── index.mdx │ │ │ │ └── restores.mdx │ │ │ │ ├── cluster_management │ │ │ │ ├── create-clusters │ │ │ │ │ ├── additional-settings.mdx │ │ │ │ │ ├── cluster-info.mdx │ │ │ │ │ ├── cluster-settings.mdx │ │ │ │ │ ├── create-clusters-with-templates.mdx │ │ │ │ │ ├── data-groups.mdx │ │ │ │ │ ├── db-configuration.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── manage-clusters │ │ │ │ │ ├── create-cluster-template.mdx │ │ │ │ │ ├── delete-clusters.mdx │ │ │ │ │ ├── edit-clusters.mdx │ │ │ │ │ ├── formula.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── restore-clusters.mdx │ │ │ │ │ └── trace-clusters.mdx │ │ │ │ ├── managing_db_access │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── ldap.mdx │ │ │ │ └── view_clusters │ │ │ │ │ ├── cluster-backups-tab.mdx │ │ │ │ │ ├── cluster-connect-tab.mdx │ │ │ │ │ ├── cluster-logs-tab.mdx │ │ │ │ │ ├── cluster-monitoring-tab.mdx │ │ │ │ │ ├── cluster-overview-tab.mdx │ │ │ │ │ ├── cluster-properties-tab.mdx │ │ │ │ │ ├── cluster-query-diagnostics-tab.mdx │ │ │ │ │ ├── cluster-recommendations-tab.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── edbctl │ │ │ │ ├── edbctl_backup.mdx │ │ │ │ ├── edbctl_cluster.mdx │ │ │ │ ├── edbctl_config.mdx │ │ │ │ ├── edbctl_credential.mdx │ │ │ │ ├── edbctl_image.mdx │ │ │ │ ├── edbctl_image_pull_secret.mdx │ │ │ │ ├── edbctl_operator.mdx │ │ │ │ ├── edbctl_project.mdx │ │ │ │ └── index.mdx │ │ │ │ ├── enabling_migration_copilot │ │ │ │ ├── index.mdx │ │ │ │ ├── self_hosted_model.mdx │ │ │ │ └── third_party_model.mdx │ │ │ │ ├── hadr │ │ │ │ ├── hadr.mdx │ │ │ │ ├── hadr_recovery.mdx │ │ │ │ └── index.mdx │ │ │ │ ├── hm_overview │ │ │ │ ├── index.mdx │ │ │ │ ├── lakehouse.mdx │ │ │ │ ├── postgres.mdx │ │ │ │ └── using-portal.mdx │ │ │ │ ├── hm_terminology.mdx │ │ │ │ ├── image-management │ │ │ │ ├── asset-library.mdx │ │ │ │ ├── container-images.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── knowledge-bases.mdx │ │ │ │ └── manage-repositories.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── managing_users │ │ │ │ ├── apply_dex_config.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── native_users │ │ │ │ │ ├── change_pw_native_user.mdx │ │ │ │ │ ├── create_native_user.mdx │ │ │ │ │ ├── disable_native_user.mdx │ │ │ │ │ └── index.mdx │ │ │ │ └── user_roles_authz │ │ │ │ │ ├── authz.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── roles.mdx │ │ │ │ ├── migration │ │ │ │ ├── architecture.mdx │ │ │ │ ├── dms_agent_reference.mdx │ │ │ │ ├── features.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── installing_agent │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── linux_arm64 │ │ │ │ │ │ ├── edb-dms-agent_debian_12.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ └── linux_x86_64 │ │ │ │ │ │ ├── edb-dms-agent_debian_11.mdx │ │ │ │ │ │ ├── edb-dms-agent_debian_12.mdx │ │ │ │ │ │ ├── edb-dms-agent_other_linux_8.mdx │ │ │ │ │ │ ├── edb-dms-agent_other_linux_9.mdx │ │ │ │ │ │ ├── edb-dms-agent_rhel_8.mdx │ │ │ │ │ │ ├── edb-dms-agent_rhel_9.mdx │ │ │ │ │ │ ├── edb-dms-agent_sles_15.mdx │ │ │ │ │ │ ├── edb-dms-agent_ubuntu_22.mdx │ │ │ │ │ │ ├── edb-dms-agent_ubuntu_24.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ ├── limitations.mdx │ │ │ │ ├── migrate │ │ │ │ │ ├── credentials.mdx │ │ │ │ │ ├── destinations.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── migrations.mdx │ │ │ │ │ └── sources.mdx │ │ │ │ ├── migration_guides │ │ │ │ │ ├── aws_rds_pg_to_hm_managed │ │ │ │ │ │ ├── agent_postgres.mdx │ │ │ │ │ │ ├── applying_constraints.mdx │ │ │ │ │ │ ├── configuring_reader.mdx │ │ │ │ │ │ ├── creating_destination_db.mdx │ │ │ │ │ │ ├── creating_migration.mdx │ │ │ │ │ │ ├── creating_project_credentials.mdx │ │ │ │ │ │ ├── finalizing_migration.mdx │ │ │ │ │ │ ├── handling_schema.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── migrating_schema.mdx │ │ │ │ │ │ ├── monitoring_migration.mdx │ │ │ │ │ │ ├── preparing_source_pg_db.mdx │ │ │ │ │ │ └── viewing_source.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── oracle_to_hm_managed │ │ │ │ │ │ ├── agent_configuring_oracle.mdx │ │ │ │ │ │ ├── agent_creating_machine_user.mdx │ │ │ │ │ │ ├── agent_installing.mdx │ │ │ │ │ │ ├── agent_preparing_oracle.mdx │ │ │ │ │ │ ├── agent_running.mdx │ │ │ │ │ │ ├── agent_service.mdx │ │ │ │ │ │ ├── agent_verifying_assessment.mdx │ │ │ │ │ │ ├── applying_constraints.mdx │ │ │ │ │ │ ├── configuring_reader.mdx │ │ │ │ │ │ ├── creating_destination_db.mdx │ │ │ │ │ │ ├── creating_migration.mdx │ │ │ │ │ │ ├── creating_project_credentials.mdx │ │ │ │ │ │ ├── finalizing_migration.mdx │ │ │ │ │ │ ├── handling_schema.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── migrating_schema.mdx │ │ │ │ │ │ ├── monitoring_migration.mdx │ │ │ │ │ │ ├── preparing_source_oracle_db.mdx │ │ │ │ │ │ └── viewing_source.mdx │ │ │ │ │ ├── self_managed_pg_to_hm_managed │ │ │ │ │ │ ├── agent_postgres.mdx │ │ │ │ │ │ ├── applying_constraints.mdx │ │ │ │ │ │ ├── configuring_reader.mdx │ │ │ │ │ │ ├── creating_destination_db.mdx │ │ │ │ │ │ ├── creating_migration.mdx │ │ │ │ │ │ ├── creating_project_credentials.mdx │ │ │ │ │ │ ├── finalizing_migration.mdx │ │ │ │ │ │ ├── handling_schema.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── migrating_schema.mdx │ │ │ │ │ │ ├── monitoring_migration.mdx │ │ │ │ │ │ ├── preparing_source_pg_db.mdx │ │ │ │ │ │ └── viewing_source.mdx │ │ │ │ │ ├── self_managed_pg_to_self_managed_pg │ │ │ │ │ │ ├── agent_postgres.mdx │ │ │ │ │ │ ├── applying_constraints.mdx │ │ │ │ │ │ ├── configuring_reader.mdx │ │ │ │ │ │ ├── configuring_writer.mdx │ │ │ │ │ │ ├── creating_destination_db.mdx │ │ │ │ │ │ ├── creating_migration.mdx │ │ │ │ │ │ ├── creating_project_credentials.mdx │ │ │ │ │ │ ├── finalizing_migration.mdx │ │ │ │ │ │ ├── handling_schema.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── migrating_schema.mdx │ │ │ │ │ │ ├── monitoring_migration.mdx │ │ │ │ │ │ ├── preparing_destination_selfpg_db.mdx │ │ │ │ │ │ ├── preparing_source_pg_db.mdx │ │ │ │ │ │ ├── viewing_destination_console.mdx │ │ │ │ │ │ └── viewing_source.mdx │ │ │ │ │ └── snippet_sources │ │ │ │ │ │ ├── 0_creating_destination_db │ │ │ │ │ │ ├── creating_hm_destination_db.mdx │ │ │ │ │ │ ├── creating_selfmanaged_destination_db.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 100_agent_snippets │ │ │ │ │ │ ├── agent_service_oracle.mdx │ │ │ │ │ │ ├── configuring_agent_oracle.mdx │ │ │ │ │ │ ├── configuring_agent_postgres.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── preparing_oracle_database.mdx │ │ │ │ │ │ └── verifying_assessments.mdx │ │ │ │ │ │ ├── 10_creating_migration │ │ │ │ │ │ ├── creating_mig_hm_managed.mdx │ │ │ │ │ │ ├── creating_mig_self_managed.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 11_monitoring_migration │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── monitoring_migration.mdx │ │ │ │ │ │ ├── 12_finalizing_migration │ │ │ │ │ │ ├── finalizing_migration.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 13_apply_constraints │ │ │ │ │ │ ├── applying_constraints.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 1_preparing_source_dbs │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── preparing_oracle_source_databases.mdx │ │ │ │ │ │ ├── preparing_postgres_source_databases.mdx │ │ │ │ │ │ └── preparing_rds_source_databases.mdx │ │ │ │ │ │ ├── 2_preparing_destination_dbs │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── preparing_postgres_destination_databases.mdx │ │ │ │ │ │ ├── 3_schema_considerations │ │ │ │ │ │ ├── constraints.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 4_migrating_schemas │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── preparing_oracle_schemas.mdx │ │ │ │ │ │ └── preparing_postgres_schemas.mdx │ │ │ │ │ │ ├── 5_creating_project_credentials │ │ │ │ │ │ ├── creating_project_credentials.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 6_reader │ │ │ │ │ │ ├── configuring_reader_aws_rds_pg.mdx │ │ │ │ │ │ ├── configuring_reader_oracle.mdx │ │ │ │ │ │ ├── configuring_reader_postgres.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 7_viewing_source_console │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── viewing_source_console.mdx │ │ │ │ │ │ ├── 8_writer │ │ │ │ │ │ ├── configuring_writer_postgres.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 9_viewing_destination │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── viewing_destination_console.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ ├── migration_portal_api.mdx │ │ │ │ ├── migrations │ │ │ │ │ ├── compatibility.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── migration_database_details_view.mdx │ │ │ │ ├── schema_migration │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── migration_portal │ │ │ │ │ │ ├── access_mp.mdx │ │ │ │ │ │ ├── external_schema_migration.mdx │ │ │ │ │ │ ├── hm_schema_migration.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ └── postgres │ │ │ │ │ │ └── index.mdx │ │ │ │ ├── specs.mdx │ │ │ │ ├── supported_versions.mdx │ │ │ │ └── terminology.mdx │ │ │ │ ├── monitoring │ │ │ │ ├── alerts.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── mon_ext_dbs │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── mon_ext_csp │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── rds.mdx │ │ │ │ │ └── mon_with_agent │ │ │ │ │ │ ├── admin_tasks.mdx │ │ │ │ │ │ ├── agent_os_user.mdx │ │ │ │ │ │ ├── configure_agent │ │ │ │ │ │ ├── fine_tune_monitoring.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── multiple_dbs.mdx │ │ │ │ │ │ ├── schema_ingestion.mdx │ │ │ │ │ │ └── usage_reporting.mdx │ │ │ │ │ │ ├── create_machine_user.mdx │ │ │ │ │ │ ├── data_sovereignity.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── install_agent.mdx │ │ │ │ │ │ ├── prepare_postgres_database.mdx │ │ │ │ │ │ ├── run_agent.mdx │ │ │ │ │ │ ├── run_as_service.mdx │ │ │ │ │ │ └── troubleshooting.mdx │ │ │ │ ├── monitoring_console │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── metrics_latency.mdx │ │ │ │ │ └── support_scope.mdx │ │ │ │ ├── monitoring_grafana │ │ │ │ │ ├── grafana_dashboards │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── kubernetes_dashboards.mdx │ │ │ │ │ │ ├── loki_dashboards.mdx │ │ │ │ │ │ ├── other_dashboards.mdx │ │ │ │ │ │ ├── postgres_dashboards.mdx │ │ │ │ │ │ └── telemetry_dashboards.mdx │ │ │ │ │ ├── grafana_explore.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── troubleshooting.mdx │ │ │ │ └── notifications.mdx │ │ │ │ ├── multi-dc.mdx │ │ │ │ ├── projects │ │ │ │ ├── index.mdx │ │ │ │ ├── managing.mdx │ │ │ │ ├── settings │ │ │ │ │ ├── alerts.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── notifications.mdx │ │ │ │ ├── storage-locations.mdx │ │ │ │ └── usage-report.mdx │ │ │ │ ├── query-diagnostics-recommendations.mdx │ │ │ │ ├── troubleshooting.mdx │ │ │ │ ├── upgrading │ │ │ │ ├── index.mdx │ │ │ │ ├── pg_major │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── pgd_major.mdx │ │ │ │ │ ├── pgd_major_blue_green.mdx │ │ │ │ │ └── upgrade_major.mdx │ │ │ │ └── pg_minor.mdx │ │ │ │ └── using_the_api │ │ │ │ ├── access_key.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── using_access_key.mdx │ │ │ │ └── using_the_hm_api.mdx │ │ │ └── index.mdx │ ├── edb_plus │ │ └── 41 │ │ │ ├── 02_release_notes │ │ │ ├── edbplus_41.0_rel_notes.mdx │ │ │ ├── edbplus_41.1_rel_notes.mdx │ │ │ ├── edbplus_41.2_rel_notes.mdx │ │ │ ├── edbplus_41.3_rel_notes.mdx │ │ │ └── index.mdx │ │ │ ├── 02a_supported_platforms.mdx │ │ │ ├── 04_using_edb_plus.mdx │ │ │ ├── 05_using_edb_plus_with_ssl.mdx │ │ │ ├── 06_command_summary.mdx │ │ │ ├── index.mdx │ │ │ └── installing │ │ │ ├── configuring_linux_installation.mdx │ │ │ ├── index.mdx │ │ │ ├── linux_arm64 │ │ │ ├── edbplus_debian_12.mdx │ │ │ ├── edbplus_rhel_9.mdx │ │ │ └── index.mdx │ │ │ ├── linux_ppc64le │ │ │ ├── edbplus_rhel_8.mdx │ │ │ ├── edbplus_rhel_9.mdx │ │ │ ├── edbplus_sles_15.mdx │ │ │ └── index.mdx │ │ │ ├── linux_x86_64 │ │ │ ├── edbplus_debian_11.mdx │ │ │ ├── edbplus_debian_12.mdx │ │ │ ├── edbplus_other_linux_8.mdx │ │ │ ├── edbplus_other_linux_9.mdx │ │ │ ├── edbplus_rhel_8.mdx │ │ │ ├── edbplus_rhel_9.mdx │ │ │ ├── edbplus_sles_15.mdx │ │ │ ├── edbplus_ubuntu_22.mdx │ │ │ ├── edbplus_ubuntu_24.mdx │ │ │ └── index.mdx │ │ │ └── windows.mdx │ ├── efm │ │ └── 5 │ │ │ ├── 04_configuring_efm │ │ │ ├── 01_cluster_properties.mdx │ │ │ ├── 02_encrypting_database_password.mdx │ │ │ ├── 03_cluster_members.mdx │ │ │ ├── 04_extending_efm_permissions.mdx │ │ │ ├── 05_using_vip_addresses.mdx │ │ │ ├── 06_configuring_for_eager_failover.mdx │ │ │ └── index.mdx │ │ │ ├── 05_using_efm.mdx │ │ │ ├── 06_monitoring_efm_cluster.mdx │ │ │ ├── 07_using_efm_utility.mdx │ │ │ ├── 08_controlling_efm_service.mdx │ │ │ ├── 09_controlling_logging.mdx │ │ │ ├── 10_notifications.mdx │ │ │ ├── 11_supported_scenarios.mdx │ │ │ ├── 13_troubleshooting.mdx │ │ │ ├── 14_configuring_streaming_replication.mdx │ │ │ ├── 15_configuring_ssl_authentication.mdx │ │ │ ├── architecture.mdx │ │ │ ├── efm_deploy_arch │ │ │ ├── 03_efm_vip.mdx │ │ │ ├── 04_efm_client_connect_failover.mdx │ │ │ ├── 05_efm_pgbouncer.mdx │ │ │ ├── 06_efm_pgpool.mdx │ │ │ ├── images │ │ │ │ ├── efm_with_client_connection_failover.png │ │ │ │ ├── efm_with_pgbouncer_on_cloud.png │ │ │ │ ├── efm_with_pgbouncer_on_premises.png │ │ │ │ ├── efm_with_pgpool_on_cloud.png │ │ │ │ ├── efm_with_pgpool_on_premises.png │ │ │ │ ├── efm_with_vip.png │ │ │ │ └── failover_manager_overview.png │ │ │ └── index.mdx │ │ │ ├── efm_quick_start │ │ │ ├── images │ │ │ │ ├── edb_logo.png │ │ │ │ ├── edb_logo.svg │ │ │ │ ├── failover_manager_overview.png │ │ │ │ └── placeholder.png │ │ │ └── index.mdx │ │ │ ├── efm_rel_notes │ │ │ ├── 28_efm_51_rel_notes.mdx │ │ │ ├── 29_efm_50_rel_notes.mdx │ │ │ ├── 30_efm_410_rel_notes.mdx │ │ │ ├── 31_efm_49_rel_notes.mdx │ │ │ ├── 32_efm_48_rel_notes.mdx │ │ │ ├── 33_efm_47_rel_notes.mdx │ │ │ ├── 34_efm_46_rel_notes.mdx │ │ │ ├── 35_efm_45_rel_notes.mdx │ │ │ ├── 36_efm_44_rel_notes.mdx │ │ │ ├── 37_efm_43_rel_notes.mdx │ │ │ ├── 38_efm_42_rel_notes.mdx │ │ │ ├── 39_efm_41_rel_notes.mdx │ │ │ ├── 40_efm_40_rel_notes.mdx │ │ │ └── index.mdx │ │ │ ├── images │ │ │ ├── cascading_replication.png │ │ │ ├── failover_manager_overview.png │ │ │ ├── str_replication_dashboard_master.png │ │ │ ├── str_replication_dashboard_standby.png │ │ │ ├── supported_scenarios_master_agent_exits.png │ │ │ ├── supported_scenarios_master_db_down.png │ │ │ ├── supported_scenarios_node_becomes_isolated.png │ │ │ ├── supported_scenarios_standby_agent_exits.png │ │ │ ├── supported_scenarios_standby_db_down.png │ │ │ └── supported_scenarios_witness_agent_exits.png │ │ │ ├── index.mdx │ │ │ ├── installing │ │ │ ├── index.mdx │ │ │ ├── install_details.mdx │ │ │ ├── linux_arm64 │ │ │ │ ├── efm_debian_12.mdx │ │ │ │ ├── efm_rhel_9.mdx │ │ │ │ └── index.mdx │ │ │ ├── linux_ppc64le │ │ │ │ ├── efm_rhel_8.mdx │ │ │ │ ├── efm_rhel_9.mdx │ │ │ │ ├── efm_sles_15.mdx │ │ │ │ └── index.mdx │ │ │ ├── linux_x86_64 │ │ │ │ ├── efm_debian_11.mdx │ │ │ │ ├── efm_debian_12.mdx │ │ │ │ ├── efm_other_linux_8.mdx │ │ │ │ ├── efm_other_linux_9.mdx │ │ │ │ ├── efm_rhel_8.mdx │ │ │ │ ├── efm_rhel_9.mdx │ │ │ │ ├── efm_sles_15.mdx │ │ │ │ ├── efm_ubuntu_22.mdx │ │ │ │ ├── efm_ubuntu_24.mdx │ │ │ │ └── index.mdx │ │ │ └── prerequisites.mdx │ │ │ ├── supported_platforms.mdx │ │ │ └── upgrading.mdx │ ├── epas │ │ ├── 13 │ │ │ ├── ecpgplus_guide │ │ │ │ ├── 02_overview.mdx │ │ │ │ ├── 03_using_embedded_sql.mdx │ │ │ │ ├── 04_using_descriptors.mdx │ │ │ │ ├── 05_building_executing_dynamic_sql_statements.mdx │ │ │ │ ├── 06_error_handling.mdx │ │ │ │ ├── 07_reference.mdx │ │ │ │ ├── epas_platform_support │ │ │ │ │ └── index.mdx │ │ │ │ ├── images │ │ │ │ │ ├── ecpg_path.png │ │ │ │ │ ├── edb_logo.png │ │ │ │ │ └── edb_logo.svg │ │ │ │ └── index.mdx │ │ │ ├── edb_pgadmin_linux_qs │ │ │ │ ├── images │ │ │ │ │ ├── E.ico │ │ │ │ │ ├── EDB_logo.png │ │ │ │ │ ├── connect_to_epas_server.png │ │ │ │ │ ├── edb_logo.svg │ │ │ │ │ ├── edb_pgadmin4_first_look.png │ │ │ │ │ ├── pgadmin4_from_applications_menu.png │ │ │ │ │ └── server_general.png │ │ │ │ └── index.mdx │ │ │ ├── epas_compat_bip_guide │ │ │ │ ├── 02_packages │ │ │ │ │ ├── 01_package_components.mdx │ │ │ │ │ ├── 02_creating_packages.mdx │ │ │ │ │ ├── 03_referencing_a_package.mdx │ │ │ │ │ ├── 04_using_packages_with_user_defined_types.mdx │ │ │ │ │ ├── 05_dropping_a_package.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 03_built-in_packages │ │ │ │ │ ├── 01_dbms_alert.mdx │ │ │ │ │ ├── 02_dbms_aq │ │ │ │ │ │ ├── 01_enqueue.mdx │ │ │ │ │ │ ├── 02_dequeue.mdx │ │ │ │ │ │ ├── 03_register.mdx │ │ │ │ │ │ ├── 04_unregister.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 03_dbms_aqadm │ │ │ │ │ │ ├── 01_alter_queue.mdx │ │ │ │ │ │ ├── 02_alter_queue_table.mdx │ │ │ │ │ │ ├── 03_create_queue.mdx │ │ │ │ │ │ ├── 04_create_queue_table.mdx │ │ │ │ │ │ ├── 05_drop_queue.mdx │ │ │ │ │ │ ├── 06_drop_queue_table.mdx │ │ │ │ │ │ ├── 07_purge_queue_table.mdx │ │ │ │ │ │ ├── 08_start_queue.mdx │ │ │ │ │ │ ├── 09_stop_queue.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 04_dbms_crypto │ │ │ │ │ │ ├── 01_decrypt.mdx │ │ │ │ │ │ ├── 02_encrypt.mdx │ │ │ │ │ │ ├── 03_hash.mdx │ │ │ │ │ │ ├── 04_mac.mdx │ │ │ │ │ │ ├── 05_randombytes.mdx │ │ │ │ │ │ ├── 06_randominteger.mdx │ │ │ │ │ │ ├── 07_randomnumber.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 05_dbms_job │ │ │ │ │ │ ├── 01_broken.mdx │ │ │ │ │ │ ├── 02_change.mdx │ │ │ │ │ │ ├── 03_interval.mdx │ │ │ │ │ │ ├── 04_next_date.mdx │ │ │ │ │ │ ├── 05_remove.mdx │ │ │ │ │ │ ├── 06_run.mdx │ │ │ │ │ │ ├── 07_submit.mdx │ │ │ │ │ │ ├── 08_what.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 06_dbms_lob │ │ │ │ │ │ ├── 01_append.mdx │ │ │ │ │ │ ├── 02_compare.mdx │ │ │ │ │ │ ├── 03_converttoblob.mdx │ │ │ │ │ │ ├── 04_converttoclob.mdx │ │ │ │ │ │ ├── 05_copy.mdx │ │ │ │ │ │ ├── 06_erase.mdx │ │ │ │ │ │ ├── 07_get_storage_limit.mdx │ │ │ │ │ │ ├── 08_getlength.mdx │ │ │ │ │ │ ├── 09_instr.mdx │ │ │ │ │ │ ├── 10_read.mdx │ │ │ │ │ │ ├── 11_substr.mdx │ │ │ │ │ │ ├── 12_trim.mdx │ │ │ │ │ │ ├── 13_write.mdx │ │ │ │ │ │ ├── 14_writeappend.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 07_dbms_lock.mdx │ │ │ │ │ ├── 08_dbms_mview │ │ │ │ │ │ ├── 01_get_mv_dependencies.mdx │ │ │ │ │ │ ├── 02_refresh.mdx │ │ │ │ │ │ ├── 03_refresh_all_mviews.mdx │ │ │ │ │ │ ├── 04_refresh_dependent.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 09_dbms_output.mdx │ │ │ │ │ ├── 10_dbms_pipe │ │ │ │ │ │ ├── 01_create_pipe.mdx │ │ │ │ │ │ ├── 02_next_item_pipe.mdx │ │ │ │ │ │ ├── 03_pack_message.mdx │ │ │ │ │ │ ├── 04_purge.mdx │ │ │ │ │ │ ├── 05_receive_message.mdx │ │ │ │ │ │ ├── 06_remove_pipe.mdx │ │ │ │ │ │ ├── 07_reset_buffer.mdx │ │ │ │ │ │ ├── 08_send_message.mdx │ │ │ │ │ │ ├── 09_unique_session_name.mdx │ │ │ │ │ │ ├── 10_unpack_message.mdx │ │ │ │ │ │ ├── 11_comprehensive_example.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 11_dbms_profiler.mdx │ │ │ │ │ ├── 12_dbms_random.mdx │ │ │ │ │ ├── 13_dbms_redact.mdx │ │ │ │ │ ├── 14_dbms_rls.mdx │ │ │ │ │ ├── 15_dbms_scheduler │ │ │ │ │ │ ├── 01_using_calendar_syntax_to_specify_a_repeating_interval.mdx │ │ │ │ │ │ ├── 02_create_job.mdx │ │ │ │ │ │ ├── 03_create_program.mdx │ │ │ │ │ │ ├── 04_create_schedule.mdx │ │ │ │ │ │ ├── 05_define_program_argument.mdx │ │ │ │ │ │ ├── 06_dbms_scheduler_disable.mdx │ │ │ │ │ │ ├── 07_drop_job.mdx │ │ │ │ │ │ ├── 08_drop_program.mdx │ │ │ │ │ │ ├── 09_drop_program_argument.mdx │ │ │ │ │ │ ├── 10_drop_schedule.mdx │ │ │ │ │ │ ├── 11_dbms_scheduler_enable.mdx │ │ │ │ │ │ ├── 12_evaluate_calendar_string.mdx │ │ │ │ │ │ ├── 13_run_job.mdx │ │ │ │ │ │ ├── 14_set_job_argument_value.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 16_dbms_session.mdx │ │ │ │ │ ├── 17_dbms_sql │ │ │ │ │ │ ├── 01_bind_variable.mdx │ │ │ │ │ │ ├── 02_bind_variable_char.mdx │ │ │ │ │ │ ├── 03_bind_variable_raw.mdx │ │ │ │ │ │ ├── 04_close_cursor.mdx │ │ │ │ │ │ ├── 05_column_value.mdx │ │ │ │ │ │ ├── 06_column_value_char.mdx │ │ │ │ │ │ ├── 07_column_value_raw.mdx │ │ │ │ │ │ ├── 08_define_column.mdx │ │ │ │ │ │ ├── 09_define_column_char.mdx │ │ │ │ │ │ ├── 10_define_column_raw.mdx │ │ │ │ │ │ ├── 11_describe_columns.mdx │ │ │ │ │ │ ├── 12_execute.mdx │ │ │ │ │ │ ├── 13_execute_and_fetch.mdx │ │ │ │ │ │ ├── 14_fetch_rows.mdx │ │ │ │ │ │ ├── 15_is_open.mdx │ │ │ │ │ │ ├── 16_last_row_count.mdx │ │ │ │ │ │ ├── 17_open_cursor.mdx │ │ │ │ │ │ ├── 18_parse.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 18_dbms_utility.mdx │ │ │ │ │ ├── 19_utl_encode │ │ │ │ │ │ ├── 01_base64_decode.mdx │ │ │ │ │ │ ├── 02_base64_encode.mdx │ │ │ │ │ │ ├── 03_mimeheader_decode.mdx │ │ │ │ │ │ ├── 04_mimeheader_encode.mdx │ │ │ │ │ │ ├── 05_quoted_printable_decode.mdx │ │ │ │ │ │ ├── 06_quoted_printable_encode.mdx │ │ │ │ │ │ ├── 07_text_decode.mdx │ │ │ │ │ │ ├── 08_text_encode.mdx │ │ │ │ │ │ ├── 09_uudecode.mdx │ │ │ │ │ │ ├── 10_uuencode.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 20_utl_file.mdx │ │ │ │ │ ├── 21_utl_http.mdx │ │ │ │ │ ├── 22_utl_mail.mdx │ │ │ │ │ ├── 23_utl_raw.mdx │ │ │ │ │ ├── 24_utl_smtp.mdx │ │ │ │ │ ├── 25_utl_url.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── images │ │ │ │ │ ├── EDB_logo.png │ │ │ │ │ ├── edb_logo.svg │ │ │ │ │ ├── edblogo.png │ │ │ │ │ ├── image2.png │ │ │ │ │ └── media │ │ │ │ │ │ └── image2.png │ │ │ │ └── index.mdx │ │ │ ├── epas_compat_cat_views │ │ │ │ ├── 02_all_all_tables.mdx │ │ │ │ ├── 03_all_cons_columns.mdx │ │ │ │ ├── 04_all_constraints.mdx │ │ │ │ ├── 05_all_col_privs.mdx │ │ │ │ ├── 06_all_db_links.mdx │ │ │ │ ├── 07_all_dependencies.mdx │ │ │ │ ├── 08_all_directories.mdx │ │ │ │ ├── 09_all_ind_columns.mdx │ │ │ │ ├── 10_all_indexes.mdx │ │ │ │ ├── 11_all_jobs.mdx │ │ │ │ ├── 12_all_objects.mdx │ │ │ │ ├── 13_all_part_key_columns.mdx │ │ │ │ ├── 14_all_part_tables.mdx │ │ │ │ ├── 15_all_policies.mdx │ │ │ │ ├── 16_all_queues.mdx │ │ │ │ ├── 17_all_queue_tables.mdx │ │ │ │ ├── 18_all_sequences.mdx │ │ │ │ ├── 19_all_source.mdx │ │ │ │ ├── 20_all_subpart_key_columns.mdx │ │ │ │ ├── 21_all_synonyms.mdx │ │ │ │ ├── 22_all_tab_columns.mdx │ │ │ │ ├── 23_all_tab_partitions.mdx │ │ │ │ ├── 24_all_tab_subpartitions.mdx │ │ │ │ ├── 25_all_tab_privs.mdx │ │ │ │ ├── 26_all_tables.mdx │ │ │ │ ├── 27_all_triggers.mdx │ │ │ │ ├── 28_all_types.mdx │ │ │ │ ├── 29_all_users.mdx │ │ │ │ ├── 30_all_view_columns.mdx │ │ │ │ ├── 31_all_views.mdx │ │ │ │ ├── 32_dba_all_tables.mdx │ │ │ │ ├── 33_dba_cons_columns.mdx │ │ │ │ ├── 34_dba_constraints.mdx │ │ │ │ ├── 35_dba_col_privs.mdx │ │ │ │ ├── 36_dba_db_links.mdx │ │ │ │ ├── 37_dba_directories.mdx │ │ │ │ ├── 38_dba_dependencies.mdx │ │ │ │ ├── 39_dba_ind_columns.mdx │ │ │ │ ├── 40_dba_indexes.mdx │ │ │ │ ├── 41_dba_jobs.mdx │ │ │ │ ├── 42_dba_objects.mdx │ │ │ │ ├── 43_dba_part_key_columns.mdx │ │ │ │ ├── 44_dba_part_tables.mdx │ │ │ │ ├── 45_dba_policies.mdx │ │ │ │ ├── 46_dba_profiles.mdx │ │ │ │ ├── 47_dba_queues.mdx │ │ │ │ ├── 48_dba_queue_tables.mdx │ │ │ │ ├── 49_dba_role_privs.mdx │ │ │ │ ├── 50_dba_roles.mdx │ │ │ │ ├── 51_dba_sequences.mdx │ │ │ │ ├── 52_dba_source.mdx │ │ │ │ ├── 53_dba_subpart_key_columns.mdx │ │ │ │ ├── 54_dba_synonyms.mdx │ │ │ │ ├── 55_dba_tab_columns.mdx │ │ │ │ ├── 56_dba_tab_partitions.mdx │ │ │ │ ├── 57_dba_tab_subpartitions.mdx │ │ │ │ ├── 58_dba_tab_privs.mdx │ │ │ │ ├── 59_dba_tables.mdx │ │ │ │ ├── 60_dba_triggers.mdx │ │ │ │ ├── 61_dba_types.mdx │ │ │ │ ├── 62_dba_users.mdx │ │ │ │ ├── 63_dba_view_columns.mdx │ │ │ │ ├── 64_dba_views.mdx │ │ │ │ ├── 65_user_all_tables.mdx │ │ │ │ ├── 66_user_cons_columns.mdx │ │ │ │ ├── 67_user_constraints.mdx │ │ │ │ ├── 68_user_col_privs.mdx │ │ │ │ ├── 69_user_db_links.mdx │ │ │ │ ├── 70_user_dependencies.mdx │ │ │ │ ├── 71_user_indexes.mdx │ │ │ │ ├── 72_user_jobs.mdx │ │ │ │ ├── 73_user_objects.mdx │ │ │ │ ├── 74_user_part_tables.mdx │ │ │ │ ├── 75_user_policies.mdx │ │ │ │ ├── 76_user_queues.mdx │ │ │ │ ├── 77_user_queue_tables.mdx │ │ │ │ ├── 78_user_role_privs.mdx │ │ │ │ ├── 79_user_sequences.mdx │ │ │ │ ├── 80_user_source.mdx │ │ │ │ ├── 81_user_subpart_key_columns.mdx │ │ │ │ ├── 82_user_synonyms.mdx │ │ │ │ ├── 83_user_tab_columns.mdx │ │ │ │ ├── 84_user_tab_partitions.mdx │ │ │ │ ├── 85_user_tab_subpartitions.mdx │ │ │ │ ├── 86_user_tab_privs.mdx │ │ │ │ ├── 87_user_tables.mdx │ │ │ │ ├── 88_user_triggers.mdx │ │ │ │ ├── 89_user_types.mdx │ │ │ │ ├── 90_user_users.mdx │ │ │ │ ├── 91_user_view_columns.mdx │ │ │ │ ├── 92_user_views.mdx │ │ │ │ ├── 93_v_version.mdx │ │ │ │ ├── 94_product_component_version.mdx │ │ │ │ ├── images │ │ │ │ │ ├── edb_logo.png │ │ │ │ │ └── edb_logo.svg │ │ │ │ └── index.mdx │ │ │ ├── epas_compat_ora_dev_guide │ │ │ │ ├── 01_introduction │ │ │ │ │ ├── 01_edb_redwood_date.mdx │ │ │ │ │ ├── 02_edb_redwood_raw_names.mdx │ │ │ │ │ ├── 03_edb_redwood_strings.mdx │ │ │ │ │ ├── 04_edb_stmt_level_tx.mdx │ │ │ │ │ ├── 05_oracle_home.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 02_about_the_examples_used_in_this_guide.mdx │ │ │ │ ├── 02_sql_tutorial │ │ │ │ │ ├── 01_sample_database │ │ │ │ │ │ ├── 01_sample_database_installation.mdx │ │ │ │ │ │ ├── 02_sample_database_description.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 02_creating_a_new_table.mdx │ │ │ │ │ ├── 03_populating_a_table_with_rows.mdx │ │ │ │ │ ├── 04_querying_a_table.mdx │ │ │ │ │ ├── 05_joins_between_tables.mdx │ │ │ │ │ ├── 06_aggregate_functions.mdx │ │ │ │ │ ├── 07_updates.mdx │ │ │ │ │ ├── 08_deletions.mdx │ │ │ │ │ ├── 09_the_sql_language.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 03_advanced_concepts │ │ │ │ │ ├── 01_views.mdx │ │ │ │ │ ├── 02_foreign_keys.mdx │ │ │ │ │ ├── 03_the_rownum_pseudo_column.mdx │ │ │ │ │ ├── 04_synonyms.mdx │ │ │ │ │ ├── 05_hierarchical_queries │ │ │ │ │ │ ├── 01_defining_the_parent_child_relationship.mdx │ │ │ │ │ │ ├── 02_selecting_the_root_nodes.mdx │ │ │ │ │ │ ├── 03_organization_tree_in_the_sample_application.mdx │ │ │ │ │ │ ├── 04_node_level.mdx │ │ │ │ │ │ ├── 05_ordering_the_siblings.mdx │ │ │ │ │ │ ├── 06_retrieving_the_root_node_with_connect_by_root.mdx │ │ │ │ │ │ ├── 07_retrieving_a_path_with_sys_connect_by_path.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 06_multidimensional_analysis │ │ │ │ │ │ ├── 01_rollup_extension.mdx │ │ │ │ │ │ ├── 02_cube_extension.mdx │ │ │ │ │ │ ├── 03_grouping_sets_extension.mdx │ │ │ │ │ │ ├── 04_grouping_function.mdx │ │ │ │ │ │ ├── 05_grouping_id_function.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 04_profile_management │ │ │ │ │ ├── 01_creating_a_new_profile │ │ │ │ │ │ ├── 01_creating_a_password_function.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 02_altering_a_profile.mdx │ │ │ │ │ ├── 03_dropping_a_profile.mdx │ │ │ │ │ ├── 04_associating_a_profile_with_an_existing_role.mdx │ │ │ │ │ ├── 05_unlocking_a_locked_account.mdx │ │ │ │ │ ├── 06_creating_a_new_role_associated_with_a_profile.mdx │ │ │ │ │ ├── 07_backing_up_profile_management_functions.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 05_optimizer_hints │ │ │ │ │ ├── 01_default_optimization_modes.mdx │ │ │ │ │ ├── 02_access_method_hints.mdx │ │ │ │ │ ├── 03_specifying_a_join_order.mdx │ │ │ │ │ ├── 04_joining_relations_hints.mdx │ │ │ │ │ ├── 05_global_hints.mdx │ │ │ │ │ ├── 06_using_the_append_optimizer_hint.mdx │ │ │ │ │ ├── 07_parallelism_hints.mdx │ │ │ │ │ ├── 08_conflicting_hints.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 06_dblink_ora │ │ │ │ │ ├── 01_dblink_ora_functions_and_procedures │ │ │ │ │ │ ├── 01_dblink_ora_connect.mdx │ │ │ │ │ │ ├── 02_dblink_ora_status.mdx │ │ │ │ │ │ ├── 03_dblink_ora_disconnect.mdx │ │ │ │ │ │ ├── 04_dblink_ora_record.mdx │ │ │ │ │ │ ├── 05_dblink_ora_call.mdx │ │ │ │ │ │ ├── 06_dblink_ora_exec.mdx │ │ │ │ │ │ ├── 07_dblink_ora_copy.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 02_calling_dblink_ora_functions.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 07_open_client_library.mdx │ │ │ │ ├── 08_oracle_catalog_views.mdx │ │ │ │ ├── 09_tools_and_utilities.mdx │ │ │ │ ├── 10_ecpgplus.mdx │ │ │ │ ├── 11_system_catalog_tables.mdx │ │ │ │ ├── images │ │ │ │ │ ├── definer's_rights_package.png │ │ │ │ │ ├── definers_rights_package.png │ │ │ │ │ ├── edb_logo.png │ │ │ │ │ ├── edb_logo.svg │ │ │ │ │ ├── edb_postgres.png │ │ │ │ │ ├── employee_organization_hierarchy.png │ │ │ │ │ ├── invokers_rights_programs.png │ │ │ │ │ ├── open_client_library.png │ │ │ │ │ └── sample_database_tables.png │ │ │ │ └── index.mdx │ │ │ ├── epas_compat_reference │ │ │ │ ├── 02_the_sql_language │ │ │ │ │ ├── 01_sql_syntax │ │ │ │ │ │ ├── 01_lexical_structure.mdx │ │ │ │ │ │ ├── 02_identifiers_and_key_words.mdx │ │ │ │ │ │ ├── 03_constants.mdx │ │ │ │ │ │ ├── 04_comments.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 02_data_types │ │ │ │ │ │ ├── 01_numeric_types.mdx │ │ │ │ │ │ ├── 02_character_types.mdx │ │ │ │ │ │ ├── 03_binary_data.mdx │ │ │ │ │ │ ├── 04_date_time_types.mdx │ │ │ │ │ │ ├── 05_boolean_type.mdx │ │ │ │ │ │ ├── 06_xml_type.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 03_functions_and_operators │ │ │ │ │ │ ├── 01_logical_operators.mdx │ │ │ │ │ │ ├── 02_comparison_operators.mdx │ │ │ │ │ │ ├── 03_mathematical_functions_and_operators.mdx │ │ │ │ │ │ ├── 04_string_functions_and_operators.mdx │ │ │ │ │ │ ├── 05_pattern_matching_string_functions.mdx │ │ │ │ │ │ ├── 06_pattern_matching_using_the_like_operator.mdx │ │ │ │ │ │ ├── 07_data_type_formatting_functions.mdx │ │ │ │ │ │ ├── 08_date_time_functions_and_operators.mdx │ │ │ │ │ │ ├── 09_sequence_manipulation_functions.mdx │ │ │ │ │ │ ├── 10_conditional_expressions.mdx │ │ │ │ │ │ ├── 11_aggregate_functions.mdx │ │ │ │ │ │ ├── 12_subquery_expressions.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 03_system_catalog_tables.mdx │ │ │ │ ├── images │ │ │ │ │ ├── edb_logo.png │ │ │ │ │ └── edb_logo.svg │ │ │ │ └── index.mdx │ │ │ ├── epas_compat_spl │ │ │ │ ├── 01_basic_spl_elements │ │ │ │ │ ├── 02_case_sensitivity.mdx │ │ │ │ │ ├── 03_identifiers.mdx │ │ │ │ │ ├── 04_qualifiers.mdx │ │ │ │ │ ├── 05_constants.mdx │ │ │ │ │ ├── 06_user_defined_pl_sql_subtypes.mdx │ │ │ │ │ ├── 07_character_set.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 02_spl_programs │ │ │ │ │ ├── 02_spl_block_structure.mdx │ │ │ │ │ ├── 03_anonymous_blocks.mdx │ │ │ │ │ ├── 04_procedures_overview │ │ │ │ │ │ ├── 01_creating_a_procedure.mdx │ │ │ │ │ │ ├── 02_calling_a_procedure.mdx │ │ │ │ │ │ ├── 03_deleting_a_procedure.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 05_functions_overview │ │ │ │ │ │ ├── 01_creating_a_function.mdx │ │ │ │ │ │ ├── 02_calling_a_function.mdx │ │ │ │ │ │ ├── 03_deleting_a_function.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 06_procedure_and_function_parameters │ │ │ │ │ │ ├── 01_positional_vs_named_parameter_notation.mdx │ │ │ │ │ │ ├── 02_parameter_modes.mdx │ │ │ │ │ │ ├── 03_using_default_values_in_parameters.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 07_subprograms_subprocedures_and_subfunctions │ │ │ │ │ │ ├── 01_creating_a_subprocedure.mdx │ │ │ │ │ │ ├── 02_creating_a_subfunction.mdx │ │ │ │ │ │ ├── 03_block_relationships.mdx │ │ │ │ │ │ ├── 04_invoking_subprograms.mdx │ │ │ │ │ │ ├── 05_using_forward_declarations.mdx │ │ │ │ │ │ ├── 06_overloading_subprograms.mdx │ │ │ │ │ │ ├── 07_accessing_subprogram_variables.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 08_compilation_errors_in_procedures_and_functions.mdx │ │ │ │ │ ├── 09_program_security │ │ │ │ │ │ ├── 01_execute_privilege.mdx │ │ │ │ │ │ ├── 02_database_object_name_resolution.mdx │ │ │ │ │ │ ├── 03_database_object_privileges.mdx │ │ │ │ │ │ ├── 04_definers_vs_invokers_rights.mdx │ │ │ │ │ │ ├── 05_security_example.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 03_variable_declarations │ │ │ │ │ ├── 01_declaring_a_variable.mdx │ │ │ │ │ ├── 02_using__type_in_variable_declarations.mdx │ │ │ │ │ ├── 03_using__row_type_in_record_declarations.mdx │ │ │ │ │ ├── 04_user_defined_record_types_and_record_variables.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 04_basic_statements │ │ │ │ │ ├── 01_assignment.mdx │ │ │ │ │ ├── 02_delete.mdx │ │ │ │ │ ├── 03_insert.mdx │ │ │ │ │ ├── 04_null.mdx │ │ │ │ │ ├── 05_using_the_returning_into_clause.mdx │ │ │ │ │ ├── 06_select_into.mdx │ │ │ │ │ ├── 07_update.mdx │ │ │ │ │ ├── 08_obtaining_the_result_status.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 05_control_structures │ │ │ │ │ ├── 01_if_statement │ │ │ │ │ │ ├── 01_if_then.mdx │ │ │ │ │ │ ├── 02_if_then_else.mdx │ │ │ │ │ │ ├── 03_if_then_else_if.mdx │ │ │ │ │ │ ├── 04_if_then_elseif_else.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 02_return_statement.mdx │ │ │ │ │ ├── 03_goto_statement.mdx │ │ │ │ │ ├── 04_case_expression │ │ │ │ │ │ ├── 01_selector_case_expression.mdx │ │ │ │ │ │ ├── 02_searched_case_expression.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 05_case_statement │ │ │ │ │ │ ├── 01_selector_case_statement.mdx │ │ │ │ │ │ ├── 02_searched_case_statement.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 06_loops │ │ │ │ │ │ ├── 01_loop.mdx │ │ │ │ │ │ ├── 02_exit.mdx │ │ │ │ │ │ ├── 03_continue.mdx │ │ │ │ │ │ ├── 04_while.mdx │ │ │ │ │ │ ├── 05_for_integer_variant.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 07_exception_handling.mdx │ │ │ │ │ ├── 08_user_defined_exceptions.mdx │ │ │ │ │ ├── 09_pragma_exception_init.mdx │ │ │ │ │ ├── 10_raise_application_error.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 06_transaction_control │ │ │ │ │ ├── 01_commit.mdx │ │ │ │ │ ├── 02_rollback.mdx │ │ │ │ │ ├── 03_pragma_autonomous_transaction.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 07_dynamic_sql.mdx │ │ │ │ ├── 08_static_cursors │ │ │ │ │ ├── 01_declaring_a_cursor.mdx │ │ │ │ │ ├── 02_opening_a_cursor.mdx │ │ │ │ │ ├── 03_fetching_rows_from_a_cursor.mdx │ │ │ │ │ ├── 04_closing_a_cursor.mdx │ │ │ │ │ ├── 05_using__rowtype_with_cursors.mdx │ │ │ │ │ ├── 06_cursor_attributes │ │ │ │ │ │ ├── 01_isopen.mdx │ │ │ │ │ │ ├── 02_found.mdx │ │ │ │ │ │ ├── 03_notfound.mdx │ │ │ │ │ │ ├── 04_rowcount.mdx │ │ │ │ │ │ ├── 05_summary_of_cursor_states_and_attributes.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 07_cursor_for_loop.mdx │ │ │ │ │ ├── 08_parameterized_cursors.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 09_ref_cursors_and_cursor_variables │ │ │ │ │ ├── 01_ref_cursor_overview.mdx │ │ │ │ │ ├── 02_declaring_a_cursor_variable │ │ │ │ │ │ ├── 01_declaring_a_sys_refcursor_cursor_variable.mdx │ │ │ │ │ │ ├── 02_declaring_a_user_defined_ref_cursor_type_variable.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 03_opening_a_cursor_variable.mdx │ │ │ │ │ ├── 04_fetching_rows_from_a_cursor_variable.mdx │ │ │ │ │ ├── 05_closing_a_cursor_variable.mdx │ │ │ │ │ ├── 06_usage_restrictions.mdx │ │ │ │ │ ├── 07_examples │ │ │ │ │ │ ├── 01_returning_a_ref_cursor_from_a_function.mdx │ │ │ │ │ │ ├── 02_modularizing_cursor_operations.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 08_dynamic_queries_with_ref_cursors.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 10_collections │ │ │ │ │ ├── 01_associative_arrays.mdx │ │ │ │ │ ├── 02_nested_tables.mdx │ │ │ │ │ ├── 03_varrays.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 11_collection_methods │ │ │ │ │ ├── 01_count.mdx │ │ │ │ │ ├── 02_deletes.mdx │ │ │ │ │ ├── 03_exists.mdx │ │ │ │ │ ├── 04_extend.mdx │ │ │ │ │ ├── 05_first.mdx │ │ │ │ │ ├── 06_last.mdx │ │ │ │ │ ├── 07_limit.mdx │ │ │ │ │ ├── 08_next.mdx │ │ │ │ │ ├── 09_prior.mdx │ │ │ │ │ ├── 10_trim.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 12_working_with_collections │ │ │ │ │ ├── 01_table.mdx │ │ │ │ │ ├── 02_using_the_multiset_union_operator.mdx │ │ │ │ │ ├── 03_using_the_forall_statement.mdx │ │ │ │ │ ├── 04_using_the_bulk_collect_clause │ │ │ │ │ │ ├── 01_select_bulk_collect.mdx │ │ │ │ │ │ ├── 02_fetch_bulk_collect.mdx │ │ │ │ │ │ ├── 03_execute_immediate_bulk_collect.mdx │ │ │ │ │ │ ├── 04_returning_bulk_collect.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 05_errors_and_messages.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 13_triggers │ │ │ │ │ ├── 01_overview.mdx │ │ │ │ │ ├── 02_types_of_triggers.mdx │ │ │ │ │ ├── 03_creating_triggers.mdx │ │ │ │ │ ├── 04_trigger_variables.mdx │ │ │ │ │ ├── 05_transactions_and_exceptions.mdx │ │ │ │ │ ├── 06_compound_triggers.mdx │ │ │ │ │ ├── 07_trigger_examples │ │ │ │ │ │ ├── 01_before_statement_level_trigger.mdx │ │ │ │ │ │ ├── 02_after_statement_level_trigger.mdx │ │ │ │ │ │ ├── 03_before_row_level_trigger.mdx │ │ │ │ │ │ ├── 04_after_row_level_trigger.mdx │ │ │ │ │ │ ├── 05_instead_of_trigger.mdx │ │ │ │ │ │ ├── 06_compound_trigger.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 14_packages.mdx │ │ │ │ ├── 15_object_types_and_objects │ │ │ │ │ ├── 01_basic_object_concepts │ │ │ │ │ │ ├── 01_attributes.mdx │ │ │ │ │ │ ├── 02_methods.mdx │ │ │ │ │ │ ├── 03_overloading_methods.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 02_object_type_components │ │ │ │ │ │ ├── 01_object_type_specification_syntax.mdx │ │ │ │ │ │ ├── 02_object_type_body_syntax.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 03_creating_object_types │ │ │ │ │ │ ├── 01_member_methods.mdx │ │ │ │ │ │ ├── 02_static_methods.mdx │ │ │ │ │ │ ├── 03_constructor_methods.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 04_creating_object_instances.mdx │ │ │ │ │ ├── 05_referencing_an_object.mdx │ │ │ │ │ ├── 06_dropping_an_object_type.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── images │ │ │ │ │ ├── definer's_rights_package.png │ │ │ │ │ ├── definers_rights_package.png │ │ │ │ │ ├── edb_logo.png │ │ │ │ │ ├── edb_logo.svg │ │ │ │ │ ├── employee_organization_hierarchy.png │ │ │ │ │ ├── invokers_rights_programs.png │ │ │ │ │ ├── open_client_library.png │ │ │ │ │ └── sample_database_tables.png │ │ │ │ └── index.mdx │ │ │ ├── epas_compat_sql │ │ │ │ ├── 02_alter_directory.mdx │ │ │ │ ├── 03_alter_index.mdx │ │ │ │ ├── 04_alter_procedure.mdx │ │ │ │ ├── 05_alter_profile.mdx │ │ │ │ ├── 06_alter_queue.mdx │ │ │ │ ├── 07_alter_queue_table.mdx │ │ │ │ ├── 08_alter_role_identified_by.mdx │ │ │ │ ├── 09_alter_role_managing_database_link_and_dbms_rls_privileges.mdx │ │ │ │ ├── 10_alter_sequence.mdx │ │ │ │ ├── 11_alter_session.mdx │ │ │ │ ├── 11a_alter_synonym.mdx │ │ │ │ ├── 12_alter_table.mdx │ │ │ │ ├── 13_alter_trigger.mdx │ │ │ │ ├── 14_alter_tablespace.mdx │ │ │ │ ├── 15_alter_user_identified_by.mdx │ │ │ │ ├── 16_alter_user_role_profile_management_clauses.mdx │ │ │ │ ├── 17_call.mdx │ │ │ │ ├── 18_comment.mdx │ │ │ │ ├── 19_commit.mdx │ │ │ │ ├── 20_create_database.mdx │ │ │ │ ├── 21_create_public_database_link.mdx │ │ │ │ ├── 22_create_directory.mdx │ │ │ │ ├── 23_create_function.mdx │ │ │ │ ├── 24_create_index.mdx │ │ │ │ ├── 25_create_materialized_view.mdx │ │ │ │ ├── 26_create_package.mdx │ │ │ │ ├── 27_create_package_body.mdx │ │ │ │ ├── 28_create_procedure.mdx │ │ │ │ ├── 29_create_profile.mdx │ │ │ │ ├── 30_create_queue.mdx │ │ │ │ ├── 31_create_queue_table.mdx │ │ │ │ ├── 32_create_role.mdx │ │ │ │ ├── 33_create_schema.mdx │ │ │ │ ├── 34_create_sequence.mdx │ │ │ │ ├── 35_create_synonym.mdx │ │ │ │ ├── 36_create_table.mdx │ │ │ │ ├── 37_create_table_as.mdx │ │ │ │ ├── 38_create_trigger.mdx │ │ │ │ ├── 39_create_type.mdx │ │ │ │ ├── 40_create_type_body.mdx │ │ │ │ ├── 41_create_user.mdx │ │ │ │ ├── 42_create_user_role_profile_management_clauses.mdx │ │ │ │ ├── 43_create_view.mdx │ │ │ │ ├── 44_delete.mdx │ │ │ │ ├── 45_drop_public_database_link.mdx │ │ │ │ ├── 46_drop_directory.mdx │ │ │ │ ├── 47_drop_function.mdx │ │ │ │ ├── 48_drop_index.mdx │ │ │ │ ├── 49_drop_package.mdx │ │ │ │ ├── 50_drop_procedure.mdx │ │ │ │ ├── 51_drop_profile.mdx │ │ │ │ ├── 52_drop_queue.mdx │ │ │ │ ├── 53_drop_queue_table.mdx │ │ │ │ ├── 54_drop_synonym.mdx │ │ │ │ ├── 55_drop_role.mdx │ │ │ │ ├── 56_drop_sequence.mdx │ │ │ │ ├── 57_drop_table.mdx │ │ │ │ ├── 58_drop_tablespace.mdx │ │ │ │ ├── 59_drop_trigger.mdx │ │ │ │ ├── 60_drop_type.mdx │ │ │ │ ├── 61_drop_user.mdx │ │ │ │ ├── 62_drop_view.mdx │ │ │ │ ├── 63_exec.mdx │ │ │ │ ├── 64_grant.mdx │ │ │ │ ├── 65_insert.mdx │ │ │ │ ├── 66_lock.mdx │ │ │ │ ├── 67_revoke.mdx │ │ │ │ ├── 68_rollback.mdx │ │ │ │ ├── 69_rollback_to_savepoint.mdx │ │ │ │ ├── 70_savepoint.mdx │ │ │ │ ├── 71_select.mdx │ │ │ │ ├── 72_set_constraints.mdx │ │ │ │ ├── 73_set_role.mdx │ │ │ │ ├── 74_set_transaction.mdx │ │ │ │ ├── 75_truncate.mdx │ │ │ │ ├── 76_update.mdx │ │ │ │ ├── images │ │ │ │ │ ├── edb_logo.png │ │ │ │ │ └── edb_logo.svg │ │ │ │ └── index.mdx │ │ │ ├── epas_compat_table_partitioning │ │ │ │ ├── 02_selecting_a_partition_type │ │ │ │ │ ├── 01_interval_range_partitioning.mdx │ │ │ │ │ ├── 02_automatic_list_partitioning.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 03_using_partition_pruning │ │ │ │ │ ├── 01_example_partition_pruning.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 04_partitioning_commands_compatible_with_oracle_databases │ │ │ │ │ ├── 01_create_table_partition_by │ │ │ │ │ │ ├── 01_example_partition_by_list.mdx │ │ │ │ │ │ ├── 02_example_automatic_list_partition.mdx │ │ │ │ │ │ ├── 03_example_partition_by_range.mdx │ │ │ │ │ │ ├── 04_example_interval_range_partition.mdx │ │ │ │ │ │ ├── 05_example_partition_by_hash.mdx │ │ │ │ │ │ ├── 06_example_partitions_number.mdx │ │ │ │ │ │ ├── 07_example_partition_by_range_subpartition_by_list.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 02_alter_table_add_partition │ │ │ │ │ │ ├── 01_example_adding_a_partition_to_a_list_partitioned_table.mdx │ │ │ │ │ │ ├── 02_example_adding_a_partition_to_a_range_partitioned_table.mdx │ │ │ │ │ │ ├── 03_example_adding_a_partition_with_subpartitions_number.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 03_alter_table_add_subpartition │ │ │ │ │ │ ├── 01_example_adding_a_subpartition_to_a_list_range_partitioned_table.mdx │ │ │ │ │ │ ├── 02_example_adding_a_subpartition_to_a_range_list_partitioned_table.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 04_alter_table_split_partition │ │ │ │ │ │ ├── 01_example_splitting_a_list_partition.mdx │ │ │ │ │ │ ├── 02_example_splitting_a_range_partition.mdx │ │ │ │ │ │ ├── 03_example_splitting_a_range_list_partition.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 05_alter_table_split_subpartition │ │ │ │ │ │ ├── 01_example_splitting_a_list_subpartition.mdx │ │ │ │ │ │ ├── 02_example_splitting_a_range_subpartition.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 06_alter_table_exchange_partition │ │ │ │ │ │ ├── 01_example_exchanging_a_table_for_a_partition.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 07_alter_table_move_partition │ │ │ │ │ │ ├── 01_example_moving_a_partition_to_a_different_tablespace.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 08_alter_table_rename_partition │ │ │ │ │ │ ├── 01_example_renaming_a_partition.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 09_alter_table_set_interval │ │ │ │ │ │ ├── 01_example_setting_an_interval_range_partition.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 10_alter_table_set_partitioning_automatic │ │ │ │ │ │ ├── 01_example_setting_an_automatic_list_partition.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 11_alter_table_set_subpartition_template │ │ │ │ │ │ ├── 01_example_setting_a_subpartition_template.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 12_drop_table.mdx │ │ │ │ │ ├── 13_alter_table_drop_partition │ │ │ │ │ │ ├── 01_example_deleting_a_partition.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 14_alter_table_drop_subpartition │ │ │ │ │ │ ├── 01_example_deleting_a_subpartition.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 15_truncate_table │ │ │ │ │ │ ├── 01_example_emptying_a_table.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 16_alter_table_truncate_partition │ │ │ │ │ │ ├── 01_example_emptying_a_partition.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 17_alter_table_truncate_subpartition │ │ │ │ │ │ ├── 01_example_emptying_a_subpartition.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 05_handling_stray_values_in_a_list_or_range_partitioned_table.mdx │ │ │ │ ├── 06_specifying_multiple_partitioning_keys_in_a_range_partitioned_table.mdx │ │ │ │ ├── 07_retrieving_information_about_a_partitioned_table │ │ │ │ │ ├── 01_table_partitioning_views_reference │ │ │ │ │ │ ├── 01_all_part_tables.mdx │ │ │ │ │ │ ├── 02_all_tab_partitions.mdx │ │ │ │ │ │ ├── 03_all_tab_subpartitions.mdx │ │ │ │ │ │ ├── 04_all_part_key_columns.mdx │ │ │ │ │ │ ├── 05_all_subpart_key_columns.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── images │ │ │ │ │ ├── edb_logo.png │ │ │ │ │ └── edb_logo.svg │ │ │ │ └── index.mdx │ │ │ ├── epas_compat_tools_guide │ │ │ │ ├── 02_edb_loader.mdx │ │ │ │ ├── 03_edb_wrap.mdx │ │ │ │ ├── 04_dynamic_runtime_instrumentation_tools_architecture_DRITA.mdx │ │ │ │ ├── images │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ ├── edb_logo.png │ │ │ │ │ ├── edb_logo.svg │ │ │ │ │ └── epas_tools_utility_edb_wrap.png │ │ │ │ └── index.mdx │ │ │ ├── epas_guide │ │ │ │ ├── 01_introduction │ │ │ │ │ ├── 02_conventions.mdx │ │ │ │ │ ├── 03_examples_used.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 02_enhanced_compatibility_features.mdx │ │ │ │ ├── 03_database_administration │ │ │ │ │ ├── 01_configuration_parameters │ │ │ │ │ │ ├── 01_setting_new_parameters.mdx │ │ │ │ │ │ ├── 02_summary_of_configuration_parameters.mdx │ │ │ │ │ │ ├── 03_configuration_parameters_by_functionality │ │ │ │ │ │ │ ├── 01_top_performance_related_parameters │ │ │ │ │ │ │ │ ├── 01_shared_buffers.mdx │ │ │ │ │ │ │ │ ├── 02_work_mem.mdx │ │ │ │ │ │ │ │ ├── 03_maintenance_work_mem.mdx │ │ │ │ │ │ │ │ ├── 04_wal_buffers.mdx │ │ │ │ │ │ │ │ ├── 05_checkpoint_segments.mdx │ │ │ │ │ │ │ │ ├── 06_checkpoint_completion_target.mdx │ │ │ │ │ │ │ │ ├── 07_checkpoint_timeout.mdx │ │ │ │ │ │ │ │ ├── 08_max_wal_size.mdx │ │ │ │ │ │ │ │ ├── 09_min_wal_size.mdx │ │ │ │ │ │ │ │ ├── 10_bgwriter_delay.mdx │ │ │ │ │ │ │ │ ├── 11_seq_page_cost.mdx │ │ │ │ │ │ │ │ ├── 12_random_page_cost.mdx │ │ │ │ │ │ │ │ ├── 13_effective_cache_size.mdx │ │ │ │ │ │ │ │ ├── 14_synchronous_commit.mdx │ │ │ │ │ │ │ │ ├── 15_edb_max_spins_per_delay.mdx │ │ │ │ │ │ │ │ ├── 16_pg_prewarm.autoprewarm.mdx │ │ │ │ │ │ │ │ ├── 17_pg_prewarm.autoprewarm_interval.mdx │ │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ ├── 02_resource_usage_memory.mdx │ │ │ │ │ │ │ ├── 03_resource_usage_edb_resource_manager.mdx │ │ │ │ │ │ │ ├── 04_query_tuning.mdx │ │ │ │ │ │ │ ├── 05_query_tuning_planner_method_configuration.mdx │ │ │ │ │ │ │ ├── 06_reporting_and_logging_what_to_log.mdx │ │ │ │ │ │ │ ├── 07_auditing_settings │ │ │ │ │ │ │ │ ├── 01_edb_audit.mdx │ │ │ │ │ │ │ │ ├── 02_edb_audit_directory.mdx │ │ │ │ │ │ │ │ ├── 03_edb_audit_filename.mdx │ │ │ │ │ │ │ │ ├── 04_edb_audit_rotation_day.mdx │ │ │ │ │ │ │ │ ├── 05_edb_audit_rotation_size.mdx │ │ │ │ │ │ │ │ ├── 06_edb_audit_rotation_seconds.mdx │ │ │ │ │ │ │ │ ├── 07_edb_audit_connect.mdx │ │ │ │ │ │ │ │ ├── 08_edb_audit_disconnect.mdx │ │ │ │ │ │ │ │ ├── 09_edb_audit_statement.mdx │ │ │ │ │ │ │ │ ├── 10_edb_audit_tag.mdx │ │ │ │ │ │ │ │ ├── 11_edb_audit_destination.mdx │ │ │ │ │ │ │ │ ├── 12_edb_log_every_bulk_value.mdx │ │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ ├── 08_ccd_locale_and_formatting.mdx │ │ │ │ │ │ │ ├── 09_ccd_statement_behaviour.mdx │ │ │ │ │ │ │ ├── 10_ccd_other_defaults.mdx │ │ │ │ │ │ │ ├── 11_compatibility_options.mdx │ │ │ │ │ │ │ ├── 12_customized_options.mdx │ │ │ │ │ │ │ ├── 13_ungrouped.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 02_index_advisor │ │ │ │ │ │ ├── 01_index_advisor_components.mdx │ │ │ │ │ │ ├── 02_index_advisor_configuration.mdx │ │ │ │ │ │ ├── 03_using_index_advisor.mdx │ │ │ │ │ │ ├── 04_reviewing_the_index_advisor_recommendations.mdx │ │ │ │ │ │ ├── 05_index_advisor_limitations.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 03_sql_profiler.mdx │ │ │ │ │ ├── 04_pgsnmpd.mdx │ │ │ │ │ ├── 05_edb_audit_logging │ │ │ │ │ │ ├── 01_audit_logging_configuration_parameters.mdx │ │ │ │ │ │ ├── 02_selecting_sql_statements_to_audit.mdx │ │ │ │ │ │ ├── 03_enabling_audit_logging.mdx │ │ │ │ │ │ ├── 04_audit_log_file.mdx │ │ │ │ │ │ ├── 05_using_error_codes_to_filter_audit_logs.mdx │ │ │ │ │ │ ├── 06_using_command_tags_to_filter_audit_logs.mdx │ │ │ │ │ │ ├── 07_redacting_passwords_from_audit_logs.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 06_unicode_collation_algorithm.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 10_edb_resource_manager.mdx │ │ │ │ ├── 11_libpq_c_library.mdx │ │ │ │ ├── 12_debugger.mdx │ │ │ │ ├── 13_performance_analysis_and_tuning.mdx │ │ │ │ ├── 14_edb_clone_schema.mdx │ │ │ │ ├── 15_enhanced_sql_and_other_misc_features.mdx │ │ │ │ ├── 16_system_catalog_tables.mdx │ │ │ │ ├── 17_advanced_server_keywords.mdx │ │ │ │ ├── images │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ ├── clear_breakpoints.jpg │ │ │ │ │ ├── debugger_window.png │ │ │ │ │ ├── debugging_called_subprogram.png │ │ │ │ │ ├── edb_logo.png │ │ │ │ │ ├── edb_logo.svg │ │ │ │ │ ├── exiting_from_debugger.png │ │ │ │ │ ├── image3.png │ │ │ │ │ ├── local_variables_tab.png │ │ │ │ │ ├── main_debugger_window.png │ │ │ │ │ ├── messages_tab.png │ │ │ │ │ ├── open_client_library.png │ │ │ │ │ ├── parameters_tab.png │ │ │ │ │ ├── program_body.png │ │ │ │ │ ├── results_tab.png │ │ │ │ │ ├── setting_global_breakpoint_from_left-hand_margin.png │ │ │ │ │ ├── setting_global_breakpoint_from_object_menu.png │ │ │ │ │ ├── stack_tab.png │ │ │ │ │ ├── starting_the_debugger_from_context_menu.png │ │ │ │ │ ├── starting_the_debugger_from_object_menu.png │ │ │ │ │ ├── toolbar_icons.jpg │ │ │ │ │ └── waiting_invocation_program_debugged.png │ │ │ │ └── index.mdx │ │ │ ├── epas_limitations │ │ │ │ └── index.mdx │ │ │ ├── epas_platform_support │ │ │ │ └── index.mdx │ │ │ ├── epas_qs_linux_8 │ │ │ │ ├── images │ │ │ │ │ ├── edb_logo.png │ │ │ │ │ └── edb_logo.svg │ │ │ │ └── index.mdx │ │ │ ├── epas_qs_windows │ │ │ │ ├── images │ │ │ │ │ ├── additional_configuration.png │ │ │ │ │ ├── additional_directories.png │ │ │ │ │ ├── advanced_server_dialect.png │ │ │ │ │ ├── advanced_server_installation_completion.png │ │ │ │ │ ├── advanced_server_installer_welcome.png │ │ │ │ │ ├── dynatune_dynamic_tuning_server_utilization.png │ │ │ │ │ ├── dynatune_dynamic_tuning_workload_profile.png │ │ │ │ │ ├── edb_logo.png │ │ │ │ │ ├── edb_logo.svg │ │ │ │ │ ├── enterprisedb_license_agreement.png │ │ │ │ │ ├── installation_directory.png │ │ │ │ │ ├── installing_advanced_server.png │ │ │ │ │ ├── password_window.png │ │ │ │ │ ├── pre_installation_summary.png │ │ │ │ │ ├── ready_to_install.png │ │ │ │ │ ├── select_components.png │ │ │ │ │ ├── setup_wizard.png │ │ │ │ │ └── update_notification_service.png │ │ │ │ └── index.mdx │ │ │ ├── epas_rel_notes │ │ │ │ ├── 13_epas13.6.10_rel_notes.mdx │ │ │ │ ├── 14_epas13.5.9_rel_notes.mdx │ │ │ │ ├── 15_epas13.4.8_rel_notes.mdx │ │ │ │ ├── 16_epas13.3.7_rel_notes.mdx │ │ │ │ ├── 17_epas13.3.6_rel_notes.mdx │ │ │ │ ├── 19_epas13.2.5_rel_notes.mdx │ │ │ │ ├── 20_epas13_rel_notes.mdx │ │ │ │ ├── epas13_10_14_rel_notes.mdx │ │ │ │ ├── epas13_11_15_rel_notes.mdx │ │ │ │ ├── epas13_12_17_rel_notes.mdx │ │ │ │ ├── epas13_12_18_rel_notes.mdx │ │ │ │ ├── epas13_13_19_rel_notes.mdx │ │ │ │ ├── epas13_14_20_rel_notes.mdx │ │ │ │ ├── epas13_15_21_rel_notes.mdx │ │ │ │ ├── epas13_16_22_rel_notes.mdx │ │ │ │ ├── epas13_17_23_rel_notes.mdx │ │ │ │ ├── epas13_18_24_rel_notes.mdx │ │ │ │ ├── epas13_19_25_rel_notes.mdx │ │ │ │ ├── epas13_20_26_rel_notes.mdx │ │ │ │ ├── epas13_21_27_rel_notes.mdx │ │ │ │ ├── epas13_22_28_rel_notes.mdx │ │ │ │ ├── epas13_23_29_rel_notes.mdx │ │ │ │ ├── epas13_7_11_rel_notes.mdx │ │ │ │ ├── epas13_8_12_rel_notes.mdx │ │ │ │ ├── epas13_9_13_rel_notes.mdx │ │ │ │ ├── images │ │ │ │ │ ├── edb_logo.png │ │ │ │ │ └── edb_logo.svg │ │ │ │ └── index.mdx │ │ │ ├── epas_security_guide │ │ │ │ ├── 02_protecting_against_sql_injection_attacks │ │ │ │ │ ├── 01_sql_protect_overview.mdx │ │ │ │ │ ├── 02_configuring_sql_protect.mdx │ │ │ │ │ ├── 03_common_maintenance_operations.mdx │ │ │ │ │ ├── 04_backing_up_restoring_sql_protect.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 03_virtual_private_database.mdx │ │ │ │ ├── 04_sslutils.mdx │ │ │ │ ├── 05_data_redaction.mdx │ │ │ │ ├── images │ │ │ │ │ ├── edb_logo.png │ │ │ │ │ └── edb_logo.svg │ │ │ │ └── index.mdx │ │ │ ├── index.mdx │ │ │ ├── installing │ │ │ │ ├── images │ │ │ │ │ ├── connect_to_epas_server.png │ │ │ │ │ ├── edb_logo.png │ │ │ │ │ ├── edb_logo.svg │ │ │ │ │ ├── epas_linux_advanced_server_service_configuration_file.png │ │ │ │ │ └── pgadmin4_from_applications_menu.png │ │ │ │ ├── index.mdx │ │ │ │ ├── linux_arm64 │ │ │ │ │ ├── epas_rhel_9.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── linux_install_details │ │ │ │ │ ├── component_locations.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── managing_an_advanced_server_installation │ │ │ │ │ │ ├── exclude_include_packages.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ └── rpm_packages.mdx │ │ │ │ ├── linux_ppc64le │ │ │ │ │ ├── epas_rhel_8.mdx │ │ │ │ │ ├── epas_rhel_9.mdx │ │ │ │ │ ├── epas_sles_15.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── linux_x86_64 │ │ │ │ │ ├── epas_debian_11.mdx │ │ │ │ │ ├── epas_other_linux_8.mdx │ │ │ │ │ ├── epas_other_linux_9.mdx │ │ │ │ │ ├── epas_rhel_8.mdx │ │ │ │ │ ├── epas_rhel_9.mdx │ │ │ │ │ ├── epas_sles_15.mdx │ │ │ │ │ ├── epas_ubuntu_22.mdx │ │ │ │ │ ├── epas_ubuntu_24.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── windows │ │ │ │ │ ├── images │ │ │ │ │ │ ├── accessing_configuration_files.png │ │ │ │ │ │ ├── acknowledging_components_removed.png │ │ │ │ │ │ ├── additional_configuration.png │ │ │ │ │ │ ├── additional_directories.png │ │ │ │ │ │ ├── advanced_server_dialect.png │ │ │ │ │ │ ├── advanced_server_installation_completion.png │ │ │ │ │ │ ├── advanced_server_installer_welcome.png │ │ │ │ │ │ ├── advanced_server_services.png │ │ │ │ │ │ ├── advanced_server_startup.png │ │ │ │ │ │ ├── advanced_server_uninstaller.png │ │ │ │ │ │ ├── connecting_server.png │ │ │ │ │ │ ├── connecting_to_advanced_server_database.png │ │ │ │ │ │ ├── connecting_to_server.png │ │ │ │ │ │ ├── download_complete.png │ │ │ │ │ │ ├── dynatune_dynamic_tuning_server_utilization.png │ │ │ │ │ │ ├── dynatune_dynamic_tuning_workload_profile.png │ │ │ │ │ │ ├── edb_logo.png │ │ │ │ │ │ ├── edb_logo.svg │ │ │ │ │ │ ├── enterprisedb_license_agreement.png │ │ │ │ │ │ ├── enterprisedb_technical_alert.png │ │ │ │ │ │ ├── installation_directory.png │ │ │ │ │ │ ├── installing_advanced_server.png │ │ │ │ │ │ ├── password_window.png │ │ │ │ │ │ ├── pgAdmin_installation_directory.png │ │ │ │ │ │ ├── pgAdmin_welcome.png │ │ │ │ │ │ ├── pgadmin4_client_dashboard.png │ │ │ │ │ │ ├── pgadmin_installation.png │ │ │ │ │ │ ├── pre_installation_summary.png │ │ │ │ │ │ ├── proxy_servers.png │ │ │ │ │ │ ├── ready_to_install.png │ │ │ │ │ │ ├── select_components.png │ │ │ │ │ │ ├── setup_wizard.png │ │ │ │ │ │ ├── stackbuilder_category_AS.png │ │ │ │ │ │ ├── stackbuilder_missing_pgAdmin.png │ │ │ │ │ │ ├── stackbuilder_plus_completed_installation.png │ │ │ │ │ │ ├── stackbuilder_plus_module_selection.png │ │ │ │ │ │ ├── stackbuilder_plus_welcome.png │ │ │ │ │ │ ├── summary_window_displaying_selected_packages.png │ │ │ │ │ │ ├── uninstallation_complete.png │ │ │ │ │ │ └── update_notification_service.png │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── installing_advanced_server │ │ │ │ │ │ ├── 01_performing_a_graphical_installation_on_windows.mdx │ │ │ │ │ │ ├── 02_invoking_the_graphical_installer_from_the_command_line │ │ │ │ │ │ │ ├── 01_performing_an_unattended_installation.mdx │ │ │ │ │ │ │ ├── 02_performing_an_installation_with_limited_privileges.mdx │ │ │ │ │ │ │ ├── 03_reference_command_line_options.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 03_using_stackbuilder_plus.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ └── requirements_overview.mdx │ │ │ │ └── windows_install_details │ │ │ │ │ ├── 04_connecting_to_advanced_server_with_the_pgadmin_4_client.mdx │ │ │ │ │ ├── 05_managing_an_advanced_server_installation │ │ │ │ │ ├── 01_using_the_windows_services_applet.mdx │ │ │ │ │ ├── 02_using_pg_ctl_to_control_advanced_server.mdx │ │ │ │ │ ├── 03_controlling_server_startup_behavior_on_windows.mdx │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 06_configuring_advanced_server │ │ │ │ │ ├── 01_setting_advanced_server_environment_variables.mdx │ │ │ │ │ ├── 02_connecting_to_advanced_server_with_psql.mdx │ │ │ │ │ └── index.mdx │ │ │ │ │ └── index.mdx │ │ │ ├── language_pack │ │ │ │ ├── 01_supported_database_server_versions.mdx │ │ │ │ ├── 02_installing_language_pack.mdx │ │ │ │ ├── 03_using_the_procedural_languages.mdx │ │ │ │ ├── 04_uninstalling_language_pack.mdx │ │ │ │ ├── images │ │ │ │ │ ├── EDB_logo.png │ │ │ │ │ ├── complete1.png │ │ │ │ │ ├── edb.png │ │ │ │ │ ├── edb_logo.svg │ │ │ │ │ ├── installation_complete.png │ │ │ │ │ ├── language1.png │ │ │ │ │ ├── language_pack_selected_pacakges.png │ │ │ │ │ ├── language_pack_versions_selection.png │ │ │ │ │ ├── language_pack_welcome.png │ │ │ │ │ ├── lp.2_aug6.png │ │ │ │ │ ├── lp3_aug6.png │ │ │ │ │ ├── lp4_aug6.png │ │ │ │ │ ├── lp_aug6.png │ │ │ │ │ ├── sb2_aug6.png │ │ │ │ │ ├── sb3_aug6.png │ │ │ │ │ ├── sb4_aug6.png │ │ │ │ │ ├── sb_aug6.png │ │ │ │ │ ├── stackbuilder_installation_complete.png │ │ │ │ │ ├── stackbuilder_welcome.png │ │ │ │ │ ├── the_installing_dialog.png │ │ │ │ │ ├── the_language_pack_setup_complete_dialog.png │ │ │ │ │ ├── the_language_pack_welcome_window.png │ │ │ │ │ ├── the_ready_to_install_dialog.png │ │ │ │ │ ├── the_stackbuilder_plus_window.png │ │ │ │ │ ├── uninstall_lp1.png │ │ │ │ │ └── uninstall_lp2.png │ │ │ │ └── index.mdx │ │ │ ├── troubleshooting │ │ │ │ ├── index.mdx │ │ │ │ ├── linux_troubleshooting.mdx │ │ │ │ └── windows_troubleshooting.mdx │ │ │ ├── uninstalling │ │ │ │ ├── index.mdx │ │ │ │ ├── linux_uninstall.mdx │ │ │ │ └── windows_uninstall.mdx │ │ │ └── upgrading │ │ │ │ ├── 03_limitations.mdx │ │ │ │ ├── 04_upgrading_an_installation_with_pg_upgrade │ │ │ │ ├── 01_performing_an_upgrade │ │ │ │ │ ├── 01_linking_versus_copying.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 02_invoking_pg_upgrade │ │ │ │ │ ├── 01_command_line_options_reference.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 03_upgrading_to_advanced_server.mdx │ │ │ │ ├── 04_upgrading_a_pgAgent_installation.mdx │ │ │ │ ├── 05_pg_upgrade_troubleshooting.mdx │ │ │ │ ├── 06_reverting_to_the_old_cluster.mdx │ │ │ │ └── index.mdx │ │ │ │ ├── 05_performing_a_minor_version_update_of_an_rpm_installation.mdx │ │ │ │ ├── 06_using_stackbuilder_plus_to_perform_a_minor_version_update.mdx │ │ │ │ ├── 07_migration.mdx │ │ │ │ ├── images │ │ │ │ ├── configuring_advanced_server_to_use_trust_authentication.png │ │ │ │ ├── download_complete_confirmation.png │ │ │ │ ├── selected_packages_summary_window.png │ │ │ │ ├── stackBuilder_plus_confirms_the_completed_installation.png │ │ │ │ ├── the_proxy_servers_dialog.png │ │ │ │ ├── the_stackBuilder_plus_module_selection_window.png │ │ │ │ ├── the_stackBuilder_plus_registration_window.png │ │ │ │ └── the_stackBuilder_plus_welcome.png │ │ │ │ └── index.mdx │ │ ├── 14 │ │ │ ├── connectors.mdx │ │ │ ├── data_sources.mdx │ │ │ ├── deployment_options │ │ │ │ └── index.mdx │ │ │ ├── ecpgplus_guide │ │ │ │ ├── 02_overview.mdx │ │ │ │ ├── 03_using_embedded_sql.mdx │ │ │ │ ├── 04_using_descriptors.mdx │ │ │ │ ├── 05_building_executing_dynamic_sql_statements.mdx │ │ │ │ ├── 06_error_handling.mdx │ │ │ │ ├── 07_reference.mdx │ │ │ │ ├── images │ │ │ │ │ ├── ecpg_path.png │ │ │ │ │ ├── edb_logo.png │ │ │ │ │ └── edb_logo.svg │ │ │ │ └── index.mdx │ │ │ ├── edb_pgadmin_linux_qs │ │ │ │ ├── images │ │ │ │ │ ├── E.ico │ │ │ │ │ ├── EDB_logo.png │ │ │ │ │ ├── connect_to_epas_server.png │ │ │ │ │ ├── edb_logo.svg │ │ │ │ │ ├── edb_pgadmin4_first_look.png │ │ │ │ │ ├── pgadmin4_from_applications_menu.png │ │ │ │ │ └── server_general.png │ │ │ │ └── index.mdx │ │ │ ├── epas_compat_bip_guide │ │ │ │ ├── 02_packages │ │ │ │ │ ├── 01_package_components.mdx │ │ │ │ │ ├── 02_creating_packages.mdx │ │ │ │ │ ├── 03_referencing_a_package.mdx │ │ │ │ │ ├── 04_using_packages_with_user_defined_types.mdx │ │ │ │ │ ├── 05_dropping_a_package.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 03_built-in_packages │ │ │ │ │ ├── 01_dbms_alert.mdx │ │ │ │ │ ├── 02_dbms_aq │ │ │ │ │ │ ├── 01_enqueue.mdx │ │ │ │ │ │ ├── 02_dequeue.mdx │ │ │ │ │ │ ├── 03_register.mdx │ │ │ │ │ │ ├── 04_unregister.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 03_dbms_aqadm │ │ │ │ │ │ ├── 01_alter_queue.mdx │ │ │ │ │ │ ├── 02_alter_queue_table.mdx │ │ │ │ │ │ ├── 03_create_queue.mdx │ │ │ │ │ │ ├── 04_create_queue_table.mdx │ │ │ │ │ │ ├── 05_drop_queue.mdx │ │ │ │ │ │ ├── 06_drop_queue_table.mdx │ │ │ │ │ │ ├── 07_purge_queue_table.mdx │ │ │ │ │ │ ├── 08_start_queue.mdx │ │ │ │ │ │ ├── 09_stop_queue.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 04_dbms_crypto │ │ │ │ │ │ ├── 01_decrypt.mdx │ │ │ │ │ │ ├── 02_encrypt.mdx │ │ │ │ │ │ ├── 03_hash.mdx │ │ │ │ │ │ ├── 04_mac.mdx │ │ │ │ │ │ ├── 05_randombytes.mdx │ │ │ │ │ │ ├── 06_randominteger.mdx │ │ │ │ │ │ ├── 07_randomnumber.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 05_dbms_job │ │ │ │ │ │ ├── 01_broken.mdx │ │ │ │ │ │ ├── 02_change.mdx │ │ │ │ │ │ ├── 03_interval.mdx │ │ │ │ │ │ ├── 04_next_date.mdx │ │ │ │ │ │ ├── 05_remove.mdx │ │ │ │ │ │ ├── 06_run.mdx │ │ │ │ │ │ ├── 07_submit.mdx │ │ │ │ │ │ ├── 08_what.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 06_dbms_lob │ │ │ │ │ │ ├── 01_append.mdx │ │ │ │ │ │ ├── 02_compare.mdx │ │ │ │ │ │ ├── 03_converttoblob.mdx │ │ │ │ │ │ ├── 04_converttoclob.mdx │ │ │ │ │ │ ├── 05_copy.mdx │ │ │ │ │ │ ├── 06_erase.mdx │ │ │ │ │ │ ├── 07_get_storage_limit.mdx │ │ │ │ │ │ ├── 08_getlength.mdx │ │ │ │ │ │ ├── 09_instr.mdx │ │ │ │ │ │ ├── 10_read.mdx │ │ │ │ │ │ ├── 11_substr.mdx │ │ │ │ │ │ ├── 12_trim.mdx │ │ │ │ │ │ ├── 13_write.mdx │ │ │ │ │ │ ├── 14_writeappend.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 07_dbms_lock.mdx │ │ │ │ │ ├── 08_dbms_mview │ │ │ │ │ │ ├── 01_get_mv_dependencies.mdx │ │ │ │ │ │ ├── 02_refresh.mdx │ │ │ │ │ │ ├── 03_refresh_all_mviews.mdx │ │ │ │ │ │ ├── 04_refresh_dependent.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 09_dbms_output.mdx │ │ │ │ │ ├── 10_dbms_pipe │ │ │ │ │ │ ├── 01_create_pipe.mdx │ │ │ │ │ │ ├── 02_next_item_pipe.mdx │ │ │ │ │ │ ├── 03_pack_message.mdx │ │ │ │ │ │ ├── 04_purge.mdx │ │ │ │ │ │ ├── 05_receive_message.mdx │ │ │ │ │ │ ├── 06_remove_pipe.mdx │ │ │ │ │ │ ├── 07_reset_buffer.mdx │ │ │ │ │ │ ├── 08_send_message.mdx │ │ │ │ │ │ ├── 09_unique_session_name.mdx │ │ │ │ │ │ ├── 10_unpack_message.mdx │ │ │ │ │ │ ├── 11_comprehensive_example.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 11_dbms_profiler.mdx │ │ │ │ │ ├── 12_dbms_random.mdx │ │ │ │ │ ├── 13_dbms_redact.mdx │ │ │ │ │ ├── 14_dbms_rls.mdx │ │ │ │ │ ├── 15_dbms_scheduler │ │ │ │ │ │ ├── 01_using_calendar_syntax_to_specify_a_repeating_interval.mdx │ │ │ │ │ │ ├── 02_create_job.mdx │ │ │ │ │ │ ├── 03_create_program.mdx │ │ │ │ │ │ ├── 04_create_schedule.mdx │ │ │ │ │ │ ├── 05_define_program_argument.mdx │ │ │ │ │ │ ├── 06_dbms_scheduler_disable.mdx │ │ │ │ │ │ ├── 07_drop_job.mdx │ │ │ │ │ │ ├── 08_drop_program.mdx │ │ │ │ │ │ ├── 09_drop_program_argument.mdx │ │ │ │ │ │ ├── 10_drop_schedule.mdx │ │ │ │ │ │ ├── 11_dbms_scheduler_enable.mdx │ │ │ │ │ │ ├── 12_evaluate_calendar_string.mdx │ │ │ │ │ │ ├── 13_run_job.mdx │ │ │ │ │ │ ├── 14_set_job_argument_value.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 16_dbms_session.mdx │ │ │ │ │ ├── 17_dbms_sql │ │ │ │ │ │ ├── 01_bind_variable.mdx │ │ │ │ │ │ ├── 02_bind_variable_char.mdx │ │ │ │ │ │ ├── 03_bind_variable_raw.mdx │ │ │ │ │ │ ├── 04_close_cursor.mdx │ │ │ │ │ │ ├── 05_column_value.mdx │ │ │ │ │ │ ├── 06_column_value_char.mdx │ │ │ │ │ │ ├── 07_column_value_raw.mdx │ │ │ │ │ │ ├── 08_define_column.mdx │ │ │ │ │ │ ├── 09_define_column_char.mdx │ │ │ │ │ │ ├── 10_define_column_raw.mdx │ │ │ │ │ │ ├── 11_describe_columns.mdx │ │ │ │ │ │ ├── 12_execute.mdx │ │ │ │ │ │ ├── 13_execute_and_fetch.mdx │ │ │ │ │ │ ├── 14_fetch_rows.mdx │ │ │ │ │ │ ├── 15_is_open.mdx │ │ │ │ │ │ ├── 16_last_row_count.mdx │ │ │ │ │ │ ├── 17_open_cursor.mdx │ │ │ │ │ │ ├── 18_parse.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 18_dbms_utility.mdx │ │ │ │ │ ├── 19_utl_encode │ │ │ │ │ │ ├── 01_base64_decode.mdx │ │ │ │ │ │ ├── 02_base64_encode.mdx │ │ │ │ │ │ ├── 03_mimeheader_decode.mdx │ │ │ │ │ │ ├── 04_mimeheader_encode.mdx │ │ │ │ │ │ ├── 05_quoted_printable_decode.mdx │ │ │ │ │ │ ├── 06_quoted_printable_encode.mdx │ │ │ │ │ │ ├── 07_text_decode.mdx │ │ │ │ │ │ ├── 08_text_encode.mdx │ │ │ │ │ │ ├── 09_uudecode.mdx │ │ │ │ │ │ ├── 10_uuencode.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 20_utl_file.mdx │ │ │ │ │ ├── 21_utl_http.mdx │ │ │ │ │ ├── 22_utl_mail.mdx │ │ │ │ │ ├── 23_utl_raw.mdx │ │ │ │ │ ├── 24_utl_smtp.mdx │ │ │ │ │ ├── 25_utl_url.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── images │ │ │ │ │ ├── EDB_logo.png │ │ │ │ │ ├── edb_logo.svg │ │ │ │ │ ├── edblogo.png │ │ │ │ │ ├── image2.png │ │ │ │ │ └── media │ │ │ │ │ │ └── image2.png │ │ │ │ └── index.mdx │ │ │ ├── epas_compat_cat_views │ │ │ │ ├── images │ │ │ │ │ ├── edb_logo.png │ │ │ │ │ └── edb_logo.svg │ │ │ │ ├── index.mdx │ │ │ │ ├── oracle_compatible_views │ │ │ │ │ ├── 02_all_all_tables.mdx │ │ │ │ │ ├── 03_all_cons_columns.mdx │ │ │ │ │ ├── 04_all_constraints.mdx │ │ │ │ │ ├── 05_all_col_privs.mdx │ │ │ │ │ ├── 06_all_db_links.mdx │ │ │ │ │ ├── 07_all_dependencies.mdx │ │ │ │ │ ├── 08_all_directories.mdx │ │ │ │ │ ├── 09_all_ind_columns.mdx │ │ │ │ │ ├── 10_all_indexes.mdx │ │ │ │ │ ├── 11_all_jobs.mdx │ │ │ │ │ ├── 12_all_objects.mdx │ │ │ │ │ ├── 13_all_part_key_columns.mdx │ │ │ │ │ ├── 14_all_part_tables.mdx │ │ │ │ │ ├── 15_all_policies.mdx │ │ │ │ │ ├── 16_all_queues.mdx │ │ │ │ │ ├── 17_all_queue_tables.mdx │ │ │ │ │ ├── 18_all_sequences.mdx │ │ │ │ │ ├── 19_all_source.mdx │ │ │ │ │ ├── 20_all_subpart_key_columns.mdx │ │ │ │ │ ├── 21_all_synonyms.mdx │ │ │ │ │ ├── 22_all_tab_columns.mdx │ │ │ │ │ ├── 23_all_tab_partitions.mdx │ │ │ │ │ ├── 24_all_tab_subpartitions.mdx │ │ │ │ │ ├── 25_all_tab_privs.mdx │ │ │ │ │ ├── 26_all_tables.mdx │ │ │ │ │ ├── 27_all_triggers.mdx │ │ │ │ │ ├── 28_all_types.mdx │ │ │ │ │ ├── 29_all_users.mdx │ │ │ │ │ ├── 30_all_view_columns.mdx │ │ │ │ │ ├── 31_all_views.mdx │ │ │ │ │ ├── 32_dba_all_tables.mdx │ │ │ │ │ ├── 33_dba_cons_columns.mdx │ │ │ │ │ ├── 34_dba_constraints.mdx │ │ │ │ │ ├── 35_dba_col_privs.mdx │ │ │ │ │ ├── 36_dba_db_links.mdx │ │ │ │ │ ├── 37_dba_directories.mdx │ │ │ │ │ ├── 38_dba_dependencies.mdx │ │ │ │ │ ├── 39_dba_ind_columns.mdx │ │ │ │ │ ├── 40_dba_indexes.mdx │ │ │ │ │ ├── 41_dba_jobs.mdx │ │ │ │ │ ├── 42_dba_objects.mdx │ │ │ │ │ ├── 43_dba_part_key_columns.mdx │ │ │ │ │ ├── 44_dba_part_tables.mdx │ │ │ │ │ ├── 45_dba_policies.mdx │ │ │ │ │ ├── 46_dba_profiles.mdx │ │ │ │ │ ├── 47_dba_queues.mdx │ │ │ │ │ ├── 48_dba_queue_tables.mdx │ │ │ │ │ ├── 49_dba_role_privs.mdx │ │ │ │ │ ├── 50_dba_roles.mdx │ │ │ │ │ ├── 51_dba_sequences.mdx │ │ │ │ │ ├── 52_dba_source.mdx │ │ │ │ │ ├── 53_dba_subpart_key_columns.mdx │ │ │ │ │ ├── 54_dba_synonyms.mdx │ │ │ │ │ ├── 55_dba_tab_columns.mdx │ │ │ │ │ ├── 56_dba_tab_partitions.mdx │ │ │ │ │ ├── 57_dba_tab_subpartitions.mdx │ │ │ │ │ ├── 58_dba_tab_privs.mdx │ │ │ │ │ ├── 59_dba_tables.mdx │ │ │ │ │ ├── 60_dba_triggers.mdx │ │ │ │ │ ├── 61_dba_types.mdx │ │ │ │ │ ├── 62_dba_users.mdx │ │ │ │ │ ├── 63_dba_view_columns.mdx │ │ │ │ │ ├── 64_dba_views.mdx │ │ │ │ │ ├── 65_user_all_tables.mdx │ │ │ │ │ ├── 66_user_cons_columns.mdx │ │ │ │ │ ├── 67_user_constraints.mdx │ │ │ │ │ ├── 68_user_col_privs.mdx │ │ │ │ │ ├── 69_user_db_links.mdx │ │ │ │ │ ├── 70_user_dependencies.mdx │ │ │ │ │ ├── 71_user_indexes.mdx │ │ │ │ │ ├── 72_user_jobs.mdx │ │ │ │ │ ├── 73_user_objects.mdx │ │ │ │ │ ├── 74_user_part_tables.mdx │ │ │ │ │ ├── 75_user_policies.mdx │ │ │ │ │ ├── 76_user_queues.mdx │ │ │ │ │ ├── 77_user_queue_tables.mdx │ │ │ │ │ ├── 78_user_role_privs.mdx │ │ │ │ │ ├── 79_user_sequences.mdx │ │ │ │ │ ├── 80_user_source.mdx │ │ │ │ │ ├── 81_user_subpart_key_columns.mdx │ │ │ │ │ ├── 82_user_synonyms.mdx │ │ │ │ │ ├── 83_user_tab_columns.mdx │ │ │ │ │ ├── 84_user_tab_partitions.mdx │ │ │ │ │ ├── 85_user_tab_subpartitions.mdx │ │ │ │ │ ├── 86_user_tab_privs.mdx │ │ │ │ │ ├── 87_user_tables.mdx │ │ │ │ │ ├── 88_user_triggers.mdx │ │ │ │ │ ├── 89_user_types.mdx │ │ │ │ │ ├── 90_user_users.mdx │ │ │ │ │ ├── 91_user_view_columns.mdx │ │ │ │ │ ├── 92_user_views.mdx │ │ │ │ │ ├── 93_v_version.mdx │ │ │ │ │ ├── 94_product_component_version.mdx │ │ │ │ │ └── index.mdx │ │ │ │ └── pg_views │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── pg_user.mdx │ │ │ ├── epas_compat_ora_dev_guide │ │ │ │ ├── 01_introduction │ │ │ │ │ ├── 01_edb_redwood_date.mdx │ │ │ │ │ ├── 02_edb_redwood_raw_names.mdx │ │ │ │ │ ├── 03_edb_redwood_strings.mdx │ │ │ │ │ ├── 04_edb_stmt_level_tx.mdx │ │ │ │ │ ├── 05_oracle_home.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 02_about_the_examples_used_in_this_guide.mdx │ │ │ │ ├── 02_sql_tutorial │ │ │ │ │ ├── 01_sample_database │ │ │ │ │ │ ├── 01_sample_database_installation.mdx │ │ │ │ │ │ ├── 02_sample_database_description.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 02_creating_a_new_table.mdx │ │ │ │ │ ├── 03_populating_a_table_with_rows.mdx │ │ │ │ │ ├── 04_querying_a_table.mdx │ │ │ │ │ ├── 05_joins_between_tables.mdx │ │ │ │ │ ├── 06_aggregate_functions.mdx │ │ │ │ │ ├── 07_updates.mdx │ │ │ │ │ ├── 08_deletions.mdx │ │ │ │ │ ├── 09_the_sql_language.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 03_advanced_concepts │ │ │ │ │ ├── 01_views.mdx │ │ │ │ │ ├── 02_foreign_keys.mdx │ │ │ │ │ ├── 03_the_rownum_pseudo_column.mdx │ │ │ │ │ ├── 04_synonyms.mdx │ │ │ │ │ ├── 05_hierarchical_queries │ │ │ │ │ │ ├── 01_defining_the_parent_child_relationship.mdx │ │ │ │ │ │ ├── 02_selecting_the_root_nodes.mdx │ │ │ │ │ │ ├── 03_organization_tree_in_the_sample_application.mdx │ │ │ │ │ │ ├── 04_node_level.mdx │ │ │ │ │ │ ├── 05_ordering_the_siblings.mdx │ │ │ │ │ │ ├── 06_retrieving_the_root_node_with_connect_by_root.mdx │ │ │ │ │ │ ├── 07_retrieving_a_path_with_sys_connect_by_path.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 06_multidimensional_analysis │ │ │ │ │ │ ├── 01_rollup_extension.mdx │ │ │ │ │ │ ├── 02_cube_extension.mdx │ │ │ │ │ │ ├── 03_grouping_sets_extension.mdx │ │ │ │ │ │ ├── 04_grouping_function.mdx │ │ │ │ │ │ ├── 05_grouping_id_function.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 04_profile_management │ │ │ │ │ ├── 01_creating_a_new_profile │ │ │ │ │ │ ├── 01_creating_a_password_function.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 02_altering_a_profile.mdx │ │ │ │ │ ├── 03_dropping_a_profile.mdx │ │ │ │ │ ├── 04_associating_a_profile_with_an_existing_role.mdx │ │ │ │ │ ├── 05_unlocking_a_locked_account.mdx │ │ │ │ │ ├── 06_creating_a_new_role_associated_with_a_profile.mdx │ │ │ │ │ ├── 07_backing_up_profile_management_functions.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 05_optimizer_hints │ │ │ │ │ ├── 01_default_optimization_modes.mdx │ │ │ │ │ ├── 02_access_method_hints.mdx │ │ │ │ │ ├── 03_specifying_a_join_order.mdx │ │ │ │ │ ├── 04_joining_relations_hints.mdx │ │ │ │ │ ├── 05_global_hints.mdx │ │ │ │ │ ├── 06_using_the_append_optimizer_hint.mdx │ │ │ │ │ ├── 07_parallelism_hints.mdx │ │ │ │ │ ├── 08_conflicting_hints.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 06_dblink_ora │ │ │ │ │ ├── 01_dblink_ora_functions_and_procedures │ │ │ │ │ │ ├── 01_dblink_ora_connect.mdx │ │ │ │ │ │ ├── 02_dblink_ora_status.mdx │ │ │ │ │ │ ├── 03_dblink_ora_disconnect.mdx │ │ │ │ │ │ ├── 04_dblink_ora_record.mdx │ │ │ │ │ │ ├── 05_dblink_ora_call.mdx │ │ │ │ │ │ ├── 06_dblink_ora_exec.mdx │ │ │ │ │ │ ├── 07_dblink_ora_copy.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 02_calling_dblink_ora_functions.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 07_open_client_library.mdx │ │ │ │ ├── 08_oracle_catalog_views.mdx │ │ │ │ ├── 09_tools_and_utilities.mdx │ │ │ │ ├── 10_ecpgplus.mdx │ │ │ │ ├── 11_system_catalog_tables.mdx │ │ │ │ ├── images │ │ │ │ │ ├── definer's_rights_package.png │ │ │ │ │ ├── definers_rights_package.png │ │ │ │ │ ├── edb_logo.png │ │ │ │ │ ├── edb_logo.svg │ │ │ │ │ ├── edb_postgres.png │ │ │ │ │ ├── employee_organization_hierarchy.png │ │ │ │ │ ├── invokers_rights_programs.png │ │ │ │ │ ├── open_client_library.png │ │ │ │ │ └── sample_database_tables.png │ │ │ │ └── index.mdx │ │ │ ├── epas_compat_reference │ │ │ │ ├── 02_the_sql_language │ │ │ │ │ ├── 01_sql_syntax │ │ │ │ │ │ ├── 01_lexical_structure.mdx │ │ │ │ │ │ ├── 02_identifiers_and_key_words.mdx │ │ │ │ │ │ ├── 03_constants.mdx │ │ │ │ │ │ ├── 04_comments.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 02_data_types │ │ │ │ │ │ ├── 01_numeric_types.mdx │ │ │ │ │ │ ├── 02_character_types.mdx │ │ │ │ │ │ ├── 03_binary_data.mdx │ │ │ │ │ │ ├── 04_date_time_types.mdx │ │ │ │ │ │ ├── 05_boolean_type.mdx │ │ │ │ │ │ ├── 06_xml_type.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 03_functions_and_operators │ │ │ │ │ │ ├── 01_logical_operators.mdx │ │ │ │ │ │ ├── 02_comparison_operators.mdx │ │ │ │ │ │ ├── 03_mathematical_functions_and_operators.mdx │ │ │ │ │ │ ├── 04_string_functions_and_operators.mdx │ │ │ │ │ │ ├── 05_pattern_matching_string_functions.mdx │ │ │ │ │ │ ├── 06_pattern_matching_using_the_like_operator.mdx │ │ │ │ │ │ ├── 07_data_type_formatting_functions.mdx │ │ │ │ │ │ ├── 08_date_time_functions_and_operators.mdx │ │ │ │ │ │ ├── 09_sequence_manipulation_functions.mdx │ │ │ │ │ │ ├── 10_conditional_expressions.mdx │ │ │ │ │ │ ├── 11_aggregate_functions.mdx │ │ │ │ │ │ ├── 12_subquery_expressions.mdx │ │ │ │ │ │ ├── 13_identifier_functions.mdx │ │ │ │ │ │ ├── 14_bitwise_functions.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 03_system_catalog_tables.mdx │ │ │ │ ├── images │ │ │ │ │ ├── edb_logo.png │ │ │ │ │ └── edb_logo.svg │ │ │ │ └── index.mdx │ │ │ ├── epas_compat_spl │ │ │ │ ├── 01_basic_spl_elements │ │ │ │ │ ├── 02_case_sensitivity.mdx │ │ │ │ │ ├── 03_identifiers.mdx │ │ │ │ │ ├── 04_qualifiers.mdx │ │ │ │ │ ├── 05_constants.mdx │ │ │ │ │ ├── 06_user_defined_pl_sql_subtypes.mdx │ │ │ │ │ ├── 07_character.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 02_spl_programs │ │ │ │ │ ├── 02_spl_block_structure.mdx │ │ │ │ │ ├── 03_anonymous_blocks.mdx │ │ │ │ │ ├── 04_procedures_overview │ │ │ │ │ │ ├── 01_creating_a_procedure.mdx │ │ │ │ │ │ ├── 02_calling_a_procedure.mdx │ │ │ │ │ │ ├── 03_deleting_a_procedure.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 05_functions_overview │ │ │ │ │ │ ├── 01_creating_a_function.mdx │ │ │ │ │ │ ├── 02_calling_a_function.mdx │ │ │ │ │ │ ├── 03_deleting_a_function.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 06_procedure_and_function_parameters │ │ │ │ │ │ ├── 01_positional_vs_named_parameter_notation.mdx │ │ │ │ │ │ ├── 02_parameter_modes.mdx │ │ │ │ │ │ ├── 03_using_default_values_in_parameters.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 07_subprograms_subprocedures_and_subfunctions │ │ │ │ │ │ ├── 01_creating_a_subprocedure.mdx │ │ │ │ │ │ ├── 02_creating_a_subfunction.mdx │ │ │ │ │ │ ├── 03_block_relationships.mdx │ │ │ │ │ │ ├── 04_invoking_subprograms.mdx │ │ │ │ │ │ ├── 05_using_forward_declarations.mdx │ │ │ │ │ │ ├── 06_overloading_subprograms.mdx │ │ │ │ │ │ ├── 07_accessing_subprogram_variables.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 08_compilation_errors_in_procedures_and_functions.mdx │ │ │ │ │ ├── 09_program_security │ │ │ │ │ │ ├── 01_execute_privilege.mdx │ │ │ │ │ │ ├── 02_database_object_name_resolution.mdx │ │ │ │ │ │ ├── 03_database_object_privileges.mdx │ │ │ │ │ │ ├── 04_definers_vs_invokers_rights.mdx │ │ │ │ │ │ ├── 05_security_example.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 03_variable_declarations │ │ │ │ │ ├── 01_declaring_a_variable.mdx │ │ │ │ │ ├── 02_using__type_in_variable_declarations.mdx │ │ │ │ │ ├── 03_using__row_type_in_record_declarations.mdx │ │ │ │ │ ├── 04_user_defined_record_types_and_record_variables.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 04_basic_statements │ │ │ │ │ ├── 01_assignment.mdx │ │ │ │ │ ├── 02_delete.mdx │ │ │ │ │ ├── 03_insert.mdx │ │ │ │ │ ├── 04_null.mdx │ │ │ │ │ ├── 05_using_the_returning_into_clause.mdx │ │ │ │ │ ├── 06_select_into.mdx │ │ │ │ │ ├── 07_update.mdx │ │ │ │ │ ├── 08_obtaining_the_result_status.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 05_control_structures │ │ │ │ │ ├── 01_if_statement │ │ │ │ │ │ ├── 01_if_then.mdx │ │ │ │ │ │ ├── 02_if_then_else.mdx │ │ │ │ │ │ ├── 03_if_then_else_if.mdx │ │ │ │ │ │ ├── 04_if_then_elseif_else.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 02_return_statement.mdx │ │ │ │ │ ├── 03_goto_statement.mdx │ │ │ │ │ ├── 04_case_expression │ │ │ │ │ │ ├── 01_selector_case_expression.mdx │ │ │ │ │ │ ├── 02_searched_case_expression.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 05_case_statement │ │ │ │ │ │ ├── 01_selector_case_statement.mdx │ │ │ │ │ │ ├── 02_searched_case_statement.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 06_loops │ │ │ │ │ │ ├── 01_loop.mdx │ │ │ │ │ │ ├── 02_exit.mdx │ │ │ │ │ │ ├── 03_continue.mdx │ │ │ │ │ │ ├── 04_while.mdx │ │ │ │ │ │ ├── 05_for_integer_variant.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 07_exception_handling.mdx │ │ │ │ │ ├── 08_user_defined_exceptions.mdx │ │ │ │ │ ├── 09_pragma_exception_init.mdx │ │ │ │ │ ├── 10_raise_application_error.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 06_transaction_control │ │ │ │ │ ├── 01_commit.mdx │ │ │ │ │ ├── 02_rollback.mdx │ │ │ │ │ ├── 03_pragma_autonomous_transaction.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 07_dynamic_sql.mdx │ │ │ │ ├── 08_static_cursors │ │ │ │ │ ├── 01_declaring_a_cursor.mdx │ │ │ │ │ ├── 02_opening_a_cursor.mdx │ │ │ │ │ ├── 03_fetching_rows_from_a_cursor.mdx │ │ │ │ │ ├── 04_closing_a_cursor.mdx │ │ │ │ │ ├── 05_using__rowtype_with_cursors.mdx │ │ │ │ │ ├── 06_cursor_attributes │ │ │ │ │ │ ├── 01_isopen.mdx │ │ │ │ │ │ ├── 02_found.mdx │ │ │ │ │ │ ├── 03_notfound.mdx │ │ │ │ │ │ ├── 04_rowcount.mdx │ │ │ │ │ │ ├── 05_summary_of_cursor_states_and_attributes.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 07_cursor_for_loop.mdx │ │ │ │ │ ├── 08_parameterized_cursors.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 09_ref_cursors_and_cursor_variables │ │ │ │ │ ├── 01_ref_cursor_overview.mdx │ │ │ │ │ ├── 02_declaring_a_cursor_variable │ │ │ │ │ │ ├── 01_declaring_a_sys_refcursor_cursor_variable.mdx │ │ │ │ │ │ ├── 02_declaring_a_user_defined_ref_cursor_type_variable.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 03_opening_a_cursor_variable.mdx │ │ │ │ │ ├── 04_fetching_rows_from_a_cursor_variable.mdx │ │ │ │ │ ├── 05_closing_a_cursor_variable.mdx │ │ │ │ │ ├── 06_usage_restrictions.mdx │ │ │ │ │ ├── 07_examples │ │ │ │ │ │ ├── 01_returning_a_ref_cursor_from_a_function.mdx │ │ │ │ │ │ ├── 02_modularizing_cursor_operations.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 08_dynamic_queries_with_ref_cursors.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 10_collections │ │ │ │ │ ├── 01_associative_arrays.mdx │ │ │ │ │ ├── 02_nested_tables.mdx │ │ │ │ │ ├── 03_varrays.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 11_collection_methods │ │ │ │ │ ├── 01_count.mdx │ │ │ │ │ ├── 02_deletes.mdx │ │ │ │ │ ├── 03_exists.mdx │ │ │ │ │ ├── 04_extend.mdx │ │ │ │ │ ├── 05_first.mdx │ │ │ │ │ ├── 06_last.mdx │ │ │ │ │ ├── 07_limit.mdx │ │ │ │ │ ├── 08_next.mdx │ │ │ │ │ ├── 09_prior.mdx │ │ │ │ │ ├── 10_trim.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 12_working_with_collections │ │ │ │ │ ├── 01_table.mdx │ │ │ │ │ ├── 02_using_the_multiset_union_operator.mdx │ │ │ │ │ ├── 03_using_the_forall_statement.mdx │ │ │ │ │ ├── 04_using_the_bulk_collect_clause │ │ │ │ │ │ ├── 01_select_bulk_collect.mdx │ │ │ │ │ │ ├── 02_fetch_bulk_collect.mdx │ │ │ │ │ │ ├── 03_execute_immediate_bulk_collect.mdx │ │ │ │ │ │ ├── 04_returning_bulk_collect.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 05_errors_and_messages.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 13_triggers │ │ │ │ │ ├── 01_overview.mdx │ │ │ │ │ ├── 02_types_of_triggers.mdx │ │ │ │ │ ├── 03_creating_triggers.mdx │ │ │ │ │ ├── 04_trigger_variables.mdx │ │ │ │ │ ├── 05_transactions_and_exceptions.mdx │ │ │ │ │ ├── 06_compound_triggers.mdx │ │ │ │ │ ├── 07_trigger_examples │ │ │ │ │ │ ├── 01_before_statement_level_trigger.mdx │ │ │ │ │ │ ├── 02_after_statement_level_trigger.mdx │ │ │ │ │ │ ├── 03_before_row_level_trigger.mdx │ │ │ │ │ │ ├── 04_after_row_level_trigger.mdx │ │ │ │ │ │ ├── 05_instead_of_trigger.mdx │ │ │ │ │ │ ├── 06_compound_trigger.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 14_packages.mdx │ │ │ │ ├── 15_object_types_and_objects │ │ │ │ │ ├── 01_basic_object_concepts │ │ │ │ │ │ ├── 01_attributes.mdx │ │ │ │ │ │ ├── 02_methods.mdx │ │ │ │ │ │ ├── 03_overloading_methods.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 02_object_type_components │ │ │ │ │ │ ├── 01_object_type_specification_syntax.mdx │ │ │ │ │ │ ├── 02_object_type_body_syntax.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 03_creating_object_types │ │ │ │ │ │ ├── 01_member_methods.mdx │ │ │ │ │ │ ├── 02_static_methods.mdx │ │ │ │ │ │ ├── 03_constructor_methods.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 04_creating_object_instances.mdx │ │ │ │ │ ├── 05_referencing_an_object.mdx │ │ │ │ │ ├── 06_dropping_an_object_type.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── images │ │ │ │ │ ├── definer's_rights_package.png │ │ │ │ │ ├── definers_rights_package.png │ │ │ │ │ ├── edb_logo.png │ │ │ │ │ ├── edb_logo.svg │ │ │ │ │ ├── employee_organization_hierarchy.png │ │ │ │ │ ├── invokers_rights_programs.png │ │ │ │ │ ├── open_client_library.png │ │ │ │ │ └── sample_database_tables.png │ │ │ │ └── index.mdx │ │ │ ├── epas_compat_sql │ │ │ │ ├── 02_alter_directory.mdx │ │ │ │ ├── 03_alter_index.mdx │ │ │ │ ├── 04_alter_procedure.mdx │ │ │ │ ├── 05_alter_profile.mdx │ │ │ │ ├── 06_alter_queue.mdx │ │ │ │ ├── 07_alter_queue_table.mdx │ │ │ │ ├── 08_alter_role_identified_by.mdx │ │ │ │ ├── 09_alter_role_managing_database_link_and_dbms_rls_privileges.mdx │ │ │ │ ├── 10_alter_sequence.mdx │ │ │ │ ├── 11_alter_session.mdx │ │ │ │ ├── 11a_alter_synonym.mdx │ │ │ │ ├── 12_alter_table.mdx │ │ │ │ ├── 13_alter_trigger.mdx │ │ │ │ ├── 14_alter_tablespace.mdx │ │ │ │ ├── 15_alter_user_identified_by.mdx │ │ │ │ ├── 16_alter_user_role_profile_management_clauses.mdx │ │ │ │ ├── 17_call.mdx │ │ │ │ ├── 18_comment.mdx │ │ │ │ ├── 19_commit.mdx │ │ │ │ ├── 20_create_database.mdx │ │ │ │ ├── 21_create_public_database_link.mdx │ │ │ │ ├── 22_create_directory.mdx │ │ │ │ ├── 23_create_function.mdx │ │ │ │ ├── 24_create_index.mdx │ │ │ │ ├── 25_create_materialized_view.mdx │ │ │ │ ├── 26_create_package.mdx │ │ │ │ ├── 27_create_package_body.mdx │ │ │ │ ├── 28_create_procedure.mdx │ │ │ │ ├── 29_create_profile.mdx │ │ │ │ ├── 30_create_queue.mdx │ │ │ │ ├── 31_create_queue_table.mdx │ │ │ │ ├── 32_create_role.mdx │ │ │ │ ├── 33_create_schema.mdx │ │ │ │ ├── 34_create_sequence.mdx │ │ │ │ ├── 35_create_synonym.mdx │ │ │ │ ├── 36_create_table.mdx │ │ │ │ ├── 37_create_table_as.mdx │ │ │ │ ├── 38_create_trigger.mdx │ │ │ │ ├── 39_create_type.mdx │ │ │ │ ├── 40_create_type_body.mdx │ │ │ │ ├── 41_create_user.mdx │ │ │ │ ├── 42_create_user_role_profile_management_clauses.mdx │ │ │ │ ├── 43_create_view.mdx │ │ │ │ ├── 44_delete.mdx │ │ │ │ ├── 45_drop_public_database_link.mdx │ │ │ │ ├── 46_drop_directory.mdx │ │ │ │ ├── 47_drop_function.mdx │ │ │ │ ├── 48_drop_index.mdx │ │ │ │ ├── 49_drop_package.mdx │ │ │ │ ├── 50_drop_procedure.mdx │ │ │ │ ├── 51_drop_profile.mdx │ │ │ │ ├── 52_drop_queue.mdx │ │ │ │ ├── 53_drop_queue_table.mdx │ │ │ │ ├── 54_drop_synonym.mdx │ │ │ │ ├── 55_drop_role.mdx │ │ │ │ ├── 56_drop_sequence.mdx │ │ │ │ ├── 57_drop_table.mdx │ │ │ │ ├── 58_drop_tablespace.mdx │ │ │ │ ├── 59_drop_trigger.mdx │ │ │ │ ├── 60_drop_type.mdx │ │ │ │ ├── 61_drop_user.mdx │ │ │ │ ├── 62_drop_view.mdx │ │ │ │ ├── 63_exec.mdx │ │ │ │ ├── 64_grant.mdx │ │ │ │ ├── 65_insert.mdx │ │ │ │ ├── 66_lock.mdx │ │ │ │ ├── 67_revoke.mdx │ │ │ │ ├── 68_rollback.mdx │ │ │ │ ├── 69_rollback_to_savepoint.mdx │ │ │ │ ├── 70_savepoint.mdx │ │ │ │ ├── 71_select.mdx │ │ │ │ ├── 72_set_constraints.mdx │ │ │ │ ├── 73_set_role.mdx │ │ │ │ ├── 74_set_transaction.mdx │ │ │ │ ├── 75_truncate.mdx │ │ │ │ ├── 76_update.mdx │ │ │ │ ├── images │ │ │ │ │ ├── edb_logo.png │ │ │ │ │ └── edb_logo.svg │ │ │ │ └── index.mdx │ │ │ ├── epas_compat_table_partitioning │ │ │ │ ├── 02_selecting_a_partition_type │ │ │ │ │ ├── 01_interval_range_partitioning.mdx │ │ │ │ │ ├── 02_automatic_list_partitioning.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 03_using_partition_pruning │ │ │ │ │ ├── 01_example_partition_pruning.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 04_partitioning_commands_compatible_with_oracle_databases │ │ │ │ │ ├── 01_create_table_partition_by │ │ │ │ │ │ ├── 01_example_partition_by_list.mdx │ │ │ │ │ │ ├── 02_example_automatic_list_partition.mdx │ │ │ │ │ │ ├── 03_example_partition_by_range.mdx │ │ │ │ │ │ ├── 04_example_interval_range_partition.mdx │ │ │ │ │ │ ├── 05_example_partition_by_hash.mdx │ │ │ │ │ │ ├── 06_example_partitions_number.mdx │ │ │ │ │ │ ├── 07_example_partition_by_range_subpartition_by_list.mdx │ │ │ │ │ │ ├── 08_example_creating_unique_index.mdx │ │ │ │ │ │ ├── 09_example_subpartition_template.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 02_alter_table_add_partition │ │ │ │ │ │ ├── 01_example_adding_a_partition_to_a_list_partitioned_table.mdx │ │ │ │ │ │ ├── 02_example_adding_a_partition_to_a_range_partitioned_table.mdx │ │ │ │ │ │ ├── 03_example_adding_a_partition_with_subpartitions_number.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 03_alter_table_add_subpartition │ │ │ │ │ │ ├── 01_example_adding_a_subpartition_to_a_list_range_partitioned_table.mdx │ │ │ │ │ │ ├── 02_example_adding_a_subpartition_to_a_range_list_partitioned_table.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 04_alter_table_split_partition │ │ │ │ │ │ ├── 01_example_splitting_a_list_partition.mdx │ │ │ │ │ │ ├── 02_example_splitting_a_range_partition.mdx │ │ │ │ │ │ ├── 03_example_splitting_a_range_list_partition.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 05_alter_table_split_subpartition │ │ │ │ │ │ ├── 01_example_splitting_a_list_subpartition.mdx │ │ │ │ │ │ ├── 02_example_splitting_a_range_subpartition.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 06_alter_table_exchange_partition │ │ │ │ │ │ ├── 01_example_exchanging_a_table_for_a_partition.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 07_alter_table_move_partition │ │ │ │ │ │ ├── 01_example_moving_a_partition_to_a_different_tablespace.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 08_alter_table_rename_partition │ │ │ │ │ │ ├── 01_example_renaming_a_partition.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 09_alter_table_set_interval │ │ │ │ │ │ ├── 01_example_setting_an_interval_range_partition.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 10_alter_table_set_partitioning_automatic │ │ │ │ │ │ ├── 01_example_setting_an_automatic_list_partition.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 11_alter_table_set_subpartition_template │ │ │ │ │ │ ├── 01_example_setting_a_subpartition_template.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 12_drop_table.mdx │ │ │ │ │ ├── 13_alter_table_drop_partition │ │ │ │ │ │ ├── 01_example_deleting_a_partition.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 14_alter_table_drop_subpartition │ │ │ │ │ │ ├── 01_example_deleting_a_subpartition.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 15_truncate_table │ │ │ │ │ │ ├── 01_example_emptying_a_table.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 16_alter_table_truncate_partition │ │ │ │ │ │ ├── 01_example_emptying_a_partition.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 17_alter_table_truncate_subpartition │ │ │ │ │ │ ├── 01_example_emptying_a_subpartition.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 18_accessing_partition_table │ │ │ │ │ │ └── index.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 05_handling_stray_values_in_a_list_or_range_partitioned_table.mdx │ │ │ │ ├── 06_specifying_multiple_partitioning_keys_in_a_range_partitioned_table.mdx │ │ │ │ ├── 07_retrieving_information_about_a_partitioned_table │ │ │ │ │ ├── 01_table_partitioning_views_reference │ │ │ │ │ │ ├── 01_all_part_tables.mdx │ │ │ │ │ │ ├── 02_all_tab_partitions.mdx │ │ │ │ │ │ ├── 03_all_tab_subpartitions.mdx │ │ │ │ │ │ ├── 04_all_part_key_columns.mdx │ │ │ │ │ │ ├── 05_all_subpart_key_columns.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── images │ │ │ │ │ ├── edb_logo.png │ │ │ │ │ └── edb_logo.svg │ │ │ │ └── index.mdx │ │ │ ├── epas_compat_tools_guide │ │ │ │ ├── 02_edb_loader.mdx │ │ │ │ ├── 03_edb_wrap.mdx │ │ │ │ ├── 04_dynamic_runtime_instrumentation_tools_architecture_DRITA.mdx │ │ │ │ ├── images │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ ├── edb_logo.png │ │ │ │ │ ├── edb_logo.svg │ │ │ │ │ └── epas_tools_utility_edb_wrap.png │ │ │ │ └── index.mdx │ │ │ ├── epas_guide │ │ │ │ ├── 01_introduction │ │ │ │ │ ├── 02_conventions.mdx │ │ │ │ │ ├── 03_examples_used.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 02_enhanced_compatibility_features.mdx │ │ │ │ ├── 03_database_administration │ │ │ │ │ ├── 01_configuration_parameters │ │ │ │ │ │ ├── 01_setting_new_parameters.mdx │ │ │ │ │ │ ├── 02_summary_of_configuration_parameters.mdx │ │ │ │ │ │ ├── 03_configuration_parameters_by_functionality │ │ │ │ │ │ │ ├── 01_top_performance_related_parameters │ │ │ │ │ │ │ │ ├── 01_shared_buffers.mdx │ │ │ │ │ │ │ │ ├── 02_work_mem.mdx │ │ │ │ │ │ │ │ ├── 03_maintenance_work_mem.mdx │ │ │ │ │ │ │ │ ├── 04_wal_buffers.mdx │ │ │ │ │ │ │ │ ├── 05_checkpoint_segments.mdx │ │ │ │ │ │ │ │ ├── 06_checkpoint_completion_target.mdx │ │ │ │ │ │ │ │ ├── 07_checkpoint_timeout.mdx │ │ │ │ │ │ │ │ ├── 08_max_wal_size.mdx │ │ │ │ │ │ │ │ ├── 09_min_wal_size.mdx │ │ │ │ │ │ │ │ ├── 10_bgwriter_delay.mdx │ │ │ │ │ │ │ │ ├── 11_seq_page_cost.mdx │ │ │ │ │ │ │ │ ├── 12_random_page_cost.mdx │ │ │ │ │ │ │ │ ├── 13_effective_cache_size.mdx │ │ │ │ │ │ │ │ ├── 14_synchronous_commit.mdx │ │ │ │ │ │ │ │ ├── 15_edb_max_spins_per_delay.mdx │ │ │ │ │ │ │ │ ├── 16_pg_prewarm.autoprewarm.mdx │ │ │ │ │ │ │ │ ├── 17_pg_prewarm.autoprewarm_interval.mdx │ │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ ├── 02_resource_usage_memory.mdx │ │ │ │ │ │ │ ├── 03_resource_usage_edb_resource_manager.mdx │ │ │ │ │ │ │ ├── 04_query_tuning.mdx │ │ │ │ │ │ │ ├── 05_query_tuning_planner_method_configuration.mdx │ │ │ │ │ │ │ ├── 06_reporting_and_logging_what_to_log.mdx │ │ │ │ │ │ │ ├── 07_auditing_settings │ │ │ │ │ │ │ │ ├── 01_edb_audit.mdx │ │ │ │ │ │ │ │ ├── 02_edb_audit_directory.mdx │ │ │ │ │ │ │ │ ├── 03_edb_audit_filename.mdx │ │ │ │ │ │ │ │ ├── 04_edb_audit_rotation_day.mdx │ │ │ │ │ │ │ │ ├── 05_edb_audit_rotation_size.mdx │ │ │ │ │ │ │ │ ├── 06_edb_audit_rotation_seconds.mdx │ │ │ │ │ │ │ │ ├── 07_edb_audit_connect.mdx │ │ │ │ │ │ │ │ ├── 08_edb_audit_disconnect.mdx │ │ │ │ │ │ │ │ ├── 09_edb_audit_statement.mdx │ │ │ │ │ │ │ │ ├── 10_edb_audit_tag.mdx │ │ │ │ │ │ │ │ ├── 11_edb_audit_destination.mdx │ │ │ │ │ │ │ │ ├── 12_edb_log_every_bulk_value.mdx │ │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ ├── 08_ccd_locale_and_formatting.mdx │ │ │ │ │ │ │ ├── 09_ccd_statement_behaviour.mdx │ │ │ │ │ │ │ ├── 10_ccd_other_defaults.mdx │ │ │ │ │ │ │ ├── 11_compatibility_options.mdx │ │ │ │ │ │ │ ├── 12_customized_options.mdx │ │ │ │ │ │ │ ├── 13_ungrouped.mdx │ │ │ │ │ │ │ ├── 14_audit_archiver.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 02_index_advisor │ │ │ │ │ │ ├── 01_index_advisor_components.mdx │ │ │ │ │ │ ├── 02_index_advisor_configuration.mdx │ │ │ │ │ │ ├── 03_using_index_advisor.mdx │ │ │ │ │ │ ├── 04_reviewing_the_index_advisor_recommendations.mdx │ │ │ │ │ │ ├── 05_index_advisor_limitations.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 03_sql_profiler.mdx │ │ │ │ │ ├── 04_pgsnmpd.mdx │ │ │ │ │ ├── 05_edb_audit_logging │ │ │ │ │ │ ├── 01_audit_logging_configuration_parameters.mdx │ │ │ │ │ │ ├── 02_selecting_sql_statements_to_audit.mdx │ │ │ │ │ │ ├── 03_enabling_audit_logging.mdx │ │ │ │ │ │ ├── 04_audit_log_file.mdx │ │ │ │ │ │ ├── 05_using_error_codes_to_filter_audit_logs.mdx │ │ │ │ │ │ ├── 06_using_command_tags_to_filter_audit_logs.mdx │ │ │ │ │ │ ├── 07_redacting_passwords_from_audit_logs.mdx │ │ │ │ │ │ ├── 08_audit_log_archiving.mdx │ │ │ │ │ │ ├── 09_object_auditing.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 06_unicode_collation_algorithm.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 10_edb_resource_manager.mdx │ │ │ │ ├── 11_libpq_c_library.mdx │ │ │ │ ├── 12_debugger.mdx │ │ │ │ ├── 13_performance_analysis_and_tuning.mdx │ │ │ │ ├── 14_edb_clone_schema.mdx │ │ │ │ ├── 15_enhanced_sql_and_other_misc_features.mdx │ │ │ │ ├── 16_system_catalog_tables.mdx │ │ │ │ ├── 17_advanced_server_keywords.mdx │ │ │ │ ├── images │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ ├── clear_breakpoints.jpg │ │ │ │ │ ├── debugger_window.png │ │ │ │ │ ├── debugging_called_subprogram.png │ │ │ │ │ ├── edb_logo.png │ │ │ │ │ ├── edb_logo.svg │ │ │ │ │ ├── exiting_from_debugger.png │ │ │ │ │ ├── image3.png │ │ │ │ │ ├── local_variables_tab.png │ │ │ │ │ ├── main_debugger_window.png │ │ │ │ │ ├── messages_tab.png │ │ │ │ │ ├── open_client_library.png │ │ │ │ │ ├── parameters_tab.png │ │ │ │ │ ├── program_body.png │ │ │ │ │ ├── results_tab.png │ │ │ │ │ ├── setting_global_breakpoint_from_left-hand_margin.png │ │ │ │ │ ├── setting_global_breakpoint_from_object_menu.png │ │ │ │ │ ├── stack_tab.png │ │ │ │ │ ├── starting_the_debugger_from_context_menu.png │ │ │ │ │ ├── starting_the_debugger_from_object_menu.png │ │ │ │ │ ├── toolbar_icons.jpg │ │ │ │ │ └── waiting_invocation_program_debugged.png │ │ │ │ └── index.mdx │ │ │ ├── epas_limitations │ │ │ │ └── index.mdx │ │ │ ├── epas_platform_support │ │ │ │ └── index.mdx │ │ │ ├── epas_qs_linux_8 │ │ │ │ ├── images │ │ │ │ │ ├── edb_logo.png │ │ │ │ │ └── edb_logo.svg │ │ │ │ └── index.mdx │ │ │ ├── epas_qs_windows │ │ │ │ ├── images │ │ │ │ │ ├── additional_configuration.png │ │ │ │ │ ├── additional_directories.png │ │ │ │ │ ├── advanced_server_dialect.png │ │ │ │ │ ├── advanced_server_installation_completion.png │ │ │ │ │ ├── advanced_server_installer_welcome.png │ │ │ │ │ ├── dynatune_dynamic_tuning_server_utilization.png │ │ │ │ │ ├── dynatune_dynamic_tuning_workload_profile.png │ │ │ │ │ ├── edb_logo.png │ │ │ │ │ ├── edb_logo.svg │ │ │ │ │ ├── enterprisedb_license_agreement.png │ │ │ │ │ ├── installation_directory.png │ │ │ │ │ ├── installing_advanced_server.png │ │ │ │ │ ├── password_window.png │ │ │ │ │ ├── pre_installation_summary.png │ │ │ │ │ ├── ready_to_install.png │ │ │ │ │ ├── select_components.png │ │ │ │ │ ├── setup_wizard.png │ │ │ │ │ └── update_notification_service.png │ │ │ │ └── index.mdx │ │ │ ├── epas_rel_notes │ │ │ │ ├── 19_epas14.2.1_rel_notes.mdx │ │ │ │ ├── 20_epas14_rel_notes.mdx │ │ │ │ ├── epas14_10_0_rel_notes.mdx │ │ │ │ ├── epas14_11_0_rel_notes.mdx │ │ │ │ ├── epas14_12_0_rel_notes.mdx │ │ │ │ ├── epas14_13_0_rel_notes.mdx │ │ │ │ ├── epas14_13_1_rel_notes.mdx │ │ │ │ ├── epas14_14_0_rel_notes.mdx │ │ │ │ ├── epas14_15_0_rel_notes.mdx │ │ │ │ ├── epas14_16_0_rel_notes.mdx │ │ │ │ ├── epas14_17_0_rel_notes.mdx │ │ │ │ ├── epas14_18_0_rel_notes.mdx │ │ │ │ ├── epas14_19_0_rel_notes.mdx │ │ │ │ ├── epas14_20_0_rel_notes.mdx │ │ │ │ ├── epas14_3_0_rel_notes.mdx │ │ │ │ ├── epas14_4_0_rel_notes.mdx │ │ │ │ ├── epas14_5_0_rel_notes.mdx │ │ │ │ ├── epas14_6_0_rel_notes.mdx │ │ │ │ ├── epas14_7_0_rel_notes.mdx │ │ │ │ ├── epas14_8_0_rel_notes.mdx │ │ │ │ ├── epas14_9_0_rel_notes.mdx │ │ │ │ ├── epas14_9_1_rel_notes.mdx │ │ │ │ ├── images │ │ │ │ │ ├── edb_logo.png │ │ │ │ │ └── edb_logo.svg │ │ │ │ └── index.mdx │ │ │ ├── epas_requirements │ │ │ │ └── index.mdx │ │ │ ├── epas_security_guide │ │ │ │ ├── 02_protecting_against_sql_injection_attacks │ │ │ │ │ ├── 01_sql_protect_overview.mdx │ │ │ │ │ ├── 02_configuring_sql_protect.mdx │ │ │ │ │ ├── 03_common_maintenance_operations.mdx │ │ │ │ │ ├── 04_backing_up_restoring_sql_protect.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 03_virtual_private_database.mdx │ │ │ │ ├── 04_sslutils.mdx │ │ │ │ ├── 05_data_redaction.mdx │ │ │ │ ├── images │ │ │ │ │ ├── edb_logo.png │ │ │ │ │ └── edb_logo.svg │ │ │ │ └── index.mdx │ │ │ ├── index.mdx │ │ │ ├── installing │ │ │ │ ├── images │ │ │ │ │ ├── connect_to_epas_server.png │ │ │ │ │ ├── edb_logo.png │ │ │ │ │ ├── edb_logo.svg │ │ │ │ │ ├── epas_linux_advanced_server_service_configuration_file.png │ │ │ │ │ └── pgadmin4_from_applications_menu.png │ │ │ │ ├── index.mdx │ │ │ │ ├── linux_arm64 │ │ │ │ │ ├── epas_rhel_9.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── linux_install_details │ │ │ │ │ ├── component_locations.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── installing_epas_using_local_repository.mdx │ │ │ │ │ ├── managing_an_advanced_server_installation │ │ │ │ │ │ ├── exclude_include_packages.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ └── rpm_packages.mdx │ │ │ │ ├── linux_ppc64le │ │ │ │ │ ├── epas_rhel_8.mdx │ │ │ │ │ ├── epas_rhel_9.mdx │ │ │ │ │ ├── epas_sles_15.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── linux_x86_64 │ │ │ │ │ ├── epas_debian_11.mdx │ │ │ │ │ ├── epas_other_linux_8.mdx │ │ │ │ │ ├── epas_other_linux_9.mdx │ │ │ │ │ ├── epas_rhel_8.mdx │ │ │ │ │ ├── epas_rhel_9.mdx │ │ │ │ │ ├── epas_sles_15.mdx │ │ │ │ │ ├── epas_ubuntu_22.mdx │ │ │ │ │ ├── epas_ubuntu_24.mdx │ │ │ │ │ └── index.mdx │ │ │ │ └── windows │ │ │ │ │ ├── images │ │ │ │ │ ├── accessing_configuration_files.png │ │ │ │ │ ├── additional_configuration.png │ │ │ │ │ ├── additional_directories.png │ │ │ │ │ ├── advanced_server_dialect.png │ │ │ │ │ ├── advanced_server_installation_completion.png │ │ │ │ │ ├── advanced_server_installer_welcome.png │ │ │ │ │ ├── advanced_server_services.png │ │ │ │ │ ├── advanced_server_startup.png │ │ │ │ │ ├── connecting_server.png │ │ │ │ │ ├── connecting_to_advanced_server_database.png │ │ │ │ │ ├── connecting_to_server.png │ │ │ │ │ ├── download_complete.png │ │ │ │ │ ├── dynatune_dynamic_tuning_server_utilization.png │ │ │ │ │ ├── dynatune_dynamic_tuning_workload_profile.png │ │ │ │ │ ├── edb_logo.png │ │ │ │ │ ├── edb_logo.svg │ │ │ │ │ ├── enterprisedb_license_agreement.png │ │ │ │ │ ├── enterprisedb_technical_alert.png │ │ │ │ │ ├── installation_directory.png │ │ │ │ │ ├── installing_advanced_server.png │ │ │ │ │ ├── password_window.png │ │ │ │ │ ├── pgAdmin_installation_directory.png │ │ │ │ │ ├── pgAdmin_welcome.png │ │ │ │ │ ├── pgadmin4_client_dashboard.png │ │ │ │ │ ├── pgadmin_installation.png │ │ │ │ │ ├── pre_installation_summary.png │ │ │ │ │ ├── proxy_servers.png │ │ │ │ │ ├── ready_to_install.png │ │ │ │ │ ├── select_components.png │ │ │ │ │ ├── setup_wizard.png │ │ │ │ │ ├── stackbuilder_category_AS.png │ │ │ │ │ ├── stackbuilder_missing_pgAdmin.png │ │ │ │ │ ├── stackbuilder_plus_completed_installation.png │ │ │ │ │ ├── stackbuilder_plus_module_selection.png │ │ │ │ │ ├── stackbuilder_plus_welcome.png │ │ │ │ │ ├── summary_window_displaying_selected_packages.png │ │ │ │ │ └── update_notification_service.png │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── installing_advanced_server_with_the_interactive_installer │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── invoking_the_graphical_installer_from_the_command_line │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── performing_an_installation_with_limited_privileges.mdx │ │ │ │ │ │ ├── performing_an_unattended_installation.mdx │ │ │ │ │ │ └── reference_command_line_options.mdx │ │ │ │ │ ├── performing_a_graphical_installation_on_windows.mdx │ │ │ │ │ └── using_stackbuilder_plus.mdx │ │ │ │ │ └── managing_an_advanced_server_installation │ │ │ │ │ ├── configuring_epas.mdx │ │ │ │ │ ├── controlling_server_startup_behavior_on_windows.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── using_pg_ctl_to_control_advanced_server.mdx │ │ │ │ │ └── using_the_windows_services_applet.mdx │ │ │ ├── language_pack │ │ │ │ ├── 01_supported_database_server_versions.mdx │ │ │ │ ├── 02_installing_language_pack.mdx │ │ │ │ ├── 03_using_the_procedural_languages.mdx │ │ │ │ ├── 04_uninstalling_language_pack.mdx │ │ │ │ ├── images │ │ │ │ │ ├── EDB_logo.png │ │ │ │ │ ├── complete1.png │ │ │ │ │ ├── edb.png │ │ │ │ │ ├── edb_logo.svg │ │ │ │ │ ├── installation_complete.png │ │ │ │ │ ├── language1.png │ │ │ │ │ ├── language_pack_selected_pacakges.png │ │ │ │ │ ├── language_pack_versions_selection.png │ │ │ │ │ ├── language_pack_welcome.png │ │ │ │ │ ├── lp.2_aug6.png │ │ │ │ │ ├── lp3_aug6.png │ │ │ │ │ ├── lp4_aug6.png │ │ │ │ │ ├── lp_aug6.png │ │ │ │ │ ├── sb2_aug6.png │ │ │ │ │ ├── sb3_aug6.png │ │ │ │ │ ├── sb4_aug6.png │ │ │ │ │ ├── sb_aug6.png │ │ │ │ │ ├── stackbuilder_installation_complete.png │ │ │ │ │ ├── stackbuilder_welcome.png │ │ │ │ │ ├── the_installing_dialog.png │ │ │ │ │ ├── the_language_pack_setup_complete_dialog.png │ │ │ │ │ ├── the_language_pack_welcome_window.png │ │ │ │ │ ├── the_ready_to_install_dialog.png │ │ │ │ │ ├── the_stackbuilder_plus_window.png │ │ │ │ │ ├── uninstall_lp1.png │ │ │ │ │ └── uninstall_lp2.png │ │ │ │ └── index.mdx │ │ │ ├── managing_connections.mdx │ │ │ ├── troubleshooting │ │ │ │ ├── index.mdx │ │ │ │ ├── linux_troubleshooting │ │ │ │ │ ├── enabling_core_dump.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── installation_troubleshooting_linux.mdx │ │ │ │ └── windows_troubleshooting.mdx │ │ │ ├── uninstalling │ │ │ │ ├── images │ │ │ │ │ ├── acknowledging_components_removed.png │ │ │ │ │ ├── advanced_server_uninstaller.png │ │ │ │ │ └── uninstallation_complete.png │ │ │ │ ├── index.mdx │ │ │ │ ├── linux_uninstall.mdx │ │ │ │ └── windows_uninstall.mdx │ │ │ └── upgrading │ │ │ │ ├── 03_limitations.mdx │ │ │ │ ├── 04_upgrading_an_installation_with_pg_upgrade │ │ │ │ ├── 01_performing_an_upgrade │ │ │ │ │ ├── 01_linking_versus_copying.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 02_invoking_pg_upgrade │ │ │ │ │ ├── 01_command_line_options_reference.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 03_upgrading_to_advanced_server.mdx │ │ │ │ ├── 04_upgrading_a_pgAgent_installation.mdx │ │ │ │ ├── 05_pg_upgrade_troubleshooting.mdx │ │ │ │ ├── 06_reverting_to_the_old_cluster.mdx │ │ │ │ └── index.mdx │ │ │ │ ├── 05_performing_a_minor_version_update_of_an_rpm_installation.mdx │ │ │ │ ├── 06_using_stackbuilder_plus_to_perform_a_minor_version_update.mdx │ │ │ │ ├── images │ │ │ │ ├── configuring_advanced_server_to_use_trust_authentication.png │ │ │ │ ├── download_complete_confirmation.png │ │ │ │ ├── selected_packages_summary_window.png │ │ │ │ ├── stackBuilder_plus_confirms_the_completed_installation.png │ │ │ │ ├── the_proxy_servers_dialog.png │ │ │ │ ├── the_stackBuilder_plus_module_selection_window.png │ │ │ │ ├── the_stackBuilder_plus_registration_window.png │ │ │ │ └── the_stackBuilder_plus_welcome.png │ │ │ │ └── index.mdx │ │ ├── 15 │ │ │ ├── application_programming │ │ │ │ ├── 02_packages │ │ │ │ │ ├── 01_package_components.mdx │ │ │ │ │ ├── 01a_display_packages.mdx │ │ │ │ │ ├── 02_creating_packages.mdx │ │ │ │ │ ├── 03_referencing_a_package.mdx │ │ │ │ │ ├── 04_using_packages_with_user_defined_types.mdx │ │ │ │ │ ├── 05_dropping_a_package.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 12_debugger │ │ │ │ │ ├── configuring_debugger.mdx │ │ │ │ │ ├── debugger_interface.mdx │ │ │ │ │ ├── debugging_a_program.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── starting_debugger.mdx │ │ │ │ ├── 15_enhanced_sql_and_other_misc_features │ │ │ │ │ ├── comment_command.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── logical_decoding.mdx │ │ │ │ │ └── obtaining_version_information.mdx │ │ │ │ ├── ecpgplus_guide │ │ │ │ │ ├── 02_overview.mdx │ │ │ │ │ ├── 03_using_embedded_sql.mdx │ │ │ │ │ ├── 04_using_descriptors.mdx │ │ │ │ │ ├── 05_building_executing_dynamic_sql_statements.mdx │ │ │ │ │ ├── 06_error_handling.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── installing_ecpgplus.mdx │ │ │ │ ├── epas_compat_spl │ │ │ │ │ ├── 02_spl_programs │ │ │ │ │ │ ├── 02_spl_block_structure.mdx │ │ │ │ │ │ ├── 03_anonymous_blocks.mdx │ │ │ │ │ │ ├── 04_procedures_overview │ │ │ │ │ │ │ ├── 01_creating_a_procedure.mdx │ │ │ │ │ │ │ ├── 02_calling_a_procedure.mdx │ │ │ │ │ │ │ ├── 03_deleting_a_procedure.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 05_functions_overview │ │ │ │ │ │ │ ├── 01_creating_a_function.mdx │ │ │ │ │ │ │ ├── 02_calling_a_function.mdx │ │ │ │ │ │ │ ├── 03_deleting_a_function.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 06_procedure_and_function_parameters │ │ │ │ │ │ │ ├── 01_positional_vs_named_parameter_notation.mdx │ │ │ │ │ │ │ ├── 02_parameter_modes.mdx │ │ │ │ │ │ │ ├── 03_using_default_values_in_parameters.mdx │ │ │ │ │ │ │ ├── declaring_parameters.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 07_subprograms_subprocedures_and_subfunctions │ │ │ │ │ │ │ ├── 01_creating_a_subprocedure.mdx │ │ │ │ │ │ │ ├── 02_creating_a_subfunction.mdx │ │ │ │ │ │ │ ├── 03_block_relationships.mdx │ │ │ │ │ │ │ ├── 04_invoking_subprograms.mdx │ │ │ │ │ │ │ ├── 05_using_forward_declarations.mdx │ │ │ │ │ │ │ ├── 06_overloading_subprograms.mdx │ │ │ │ │ │ │ ├── 07_accessing_subprogram_variables.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 08_compilation_errors_in_procedures_and_functions.mdx │ │ │ │ │ │ ├── 09_program_security │ │ │ │ │ │ │ ├── 01_execute_privilege.mdx │ │ │ │ │ │ │ ├── 02_database_object_name_resolution.mdx │ │ │ │ │ │ │ ├── 03_database_object_privileges.mdx │ │ │ │ │ │ │ ├── 04_definers_vs_invokers_rights.mdx │ │ │ │ │ │ │ ├── 05_security_example.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 03_variable_declarations │ │ │ │ │ │ ├── 01_declaring_a_variable.mdx │ │ │ │ │ │ ├── 02_using__type_in_variable_declarations.mdx │ │ │ │ │ │ ├── 03_using__row_type_in_record_declarations.mdx │ │ │ │ │ │ ├── 04_user_defined_record_types_and_record_variables.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 06_transaction_control │ │ │ │ │ │ ├── 01_commit.mdx │ │ │ │ │ │ ├── 02_rollback.mdx │ │ │ │ │ │ ├── 03_pragma_autonomous_transaction.mdx │ │ │ │ │ │ ├── about_transactions.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 07_dynamic_sql.mdx │ │ │ │ │ ├── 08_static_cursors │ │ │ │ │ │ ├── 01_declaring_a_cursor.mdx │ │ │ │ │ │ ├── 02_opening_a_cursor.mdx │ │ │ │ │ │ ├── 03_fetching_rows_from_a_cursor.mdx │ │ │ │ │ │ ├── 04_closing_a_cursor.mdx │ │ │ │ │ │ ├── 05_using__rowtype_with_cursors.mdx │ │ │ │ │ │ ├── 06_cursor_attributes │ │ │ │ │ │ │ ├── 01_isopen.mdx │ │ │ │ │ │ │ ├── 02_found.mdx │ │ │ │ │ │ │ ├── 03_notfound.mdx │ │ │ │ │ │ │ ├── 04_rowcount.mdx │ │ │ │ │ │ │ ├── 05_summary_of_cursor_states_and_attributes.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 07_cursor_for_loop.mdx │ │ │ │ │ │ ├── 08_parameterized_cursors.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 09_ref_cursors_and_cursor_variables │ │ │ │ │ │ ├── 01_ref_cursor_overview.mdx │ │ │ │ │ │ ├── 02_declaring_a_cursor_variable │ │ │ │ │ │ │ ├── 01_declaring_a_sys_refcursor_cursor_variable.mdx │ │ │ │ │ │ │ ├── 02_declaring_a_user_defined_ref_cursor_type_variable.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 03_opening_a_cursor_variable.mdx │ │ │ │ │ │ ├── 04_fetching_rows_from_a_cursor_variable.mdx │ │ │ │ │ │ ├── 05_closing_a_cursor_variable.mdx │ │ │ │ │ │ ├── 06_usage_restrictions.mdx │ │ │ │ │ │ ├── 07_examples │ │ │ │ │ │ │ ├── 01_returning_a_ref_cursor_from_a_function.mdx │ │ │ │ │ │ │ ├── 02_modularizing_cursor_operations.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 08_dynamic_queries_with_ref_cursors.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 10_collections │ │ │ │ │ │ ├── 01_associative_arrays.mdx │ │ │ │ │ │ ├── 02_nested_tables.mdx │ │ │ │ │ │ ├── 03_varrays.mdx │ │ │ │ │ │ ├── about_collections.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 12_working_with_collections │ │ │ │ │ │ ├── 01_table.mdx │ │ │ │ │ │ ├── 02_using_the_multiset_union_operator.mdx │ │ │ │ │ │ ├── 03_using_the_forall_statement.mdx │ │ │ │ │ │ ├── 04_using_the_bulk_collect_clause │ │ │ │ │ │ │ ├── 01_select_bulk_collect.mdx │ │ │ │ │ │ │ ├── 02_fetch_bulk_collect.mdx │ │ │ │ │ │ │ ├── 03_execute_immediate_bulk_collect.mdx │ │ │ │ │ │ │ ├── 04_returning_bulk_collect.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 05_errors_and_messages.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 13_triggers │ │ │ │ │ │ ├── 01_overview.mdx │ │ │ │ │ │ ├── 02_types_of_triggers.mdx │ │ │ │ │ │ ├── 03_creating_triggers.mdx │ │ │ │ │ │ ├── 04_trigger_variables.mdx │ │ │ │ │ │ ├── 05_transactions_and_exceptions.mdx │ │ │ │ │ │ ├── 06_compound_triggers.mdx │ │ │ │ │ │ ├── 07_trigger_examples │ │ │ │ │ │ │ ├── 01_before_statement_level_trigger.mdx │ │ │ │ │ │ │ ├── 02_after_statement_level_trigger.mdx │ │ │ │ │ │ │ ├── 03_before_row_level_trigger.mdx │ │ │ │ │ │ │ ├── 04_after_row_level_trigger.mdx │ │ │ │ │ │ │ ├── 05_instead_of_trigger.mdx │ │ │ │ │ │ │ ├── 06_compound_trigger.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 14_packages.mdx │ │ │ │ │ ├── 15_object_types_and_objects │ │ │ │ │ │ ├── 01_basic_object_concepts │ │ │ │ │ │ │ ├── 01_attributes.mdx │ │ │ │ │ │ │ ├── 02_methods.mdx │ │ │ │ │ │ │ ├── 03_overloading_methods.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 02_object_type_components │ │ │ │ │ │ │ ├── 01_object_type_specification_syntax.mdx │ │ │ │ │ │ │ ├── 02_object_type_body_syntax.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 03_creating_object_types │ │ │ │ │ │ │ ├── 01_member_methods.mdx │ │ │ │ │ │ │ ├── 02_static_methods.mdx │ │ │ │ │ │ │ ├── 03_constructor_methods.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 04_creating_object_instances.mdx │ │ │ │ │ │ ├── 05_referencing_an_object.mdx │ │ │ │ │ │ ├── 06_dropping_an_object_type.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── images │ │ │ │ │ │ ├── definer's_rights_package.png │ │ │ │ │ │ ├── definers_rights_package.png │ │ │ │ │ │ └── invokers_rights_programs.png │ │ │ │ │ └── index.mdx │ │ │ │ ├── epas_compat_table_partitioning │ │ │ │ │ ├── 01_oracle_compat_summary.mdx │ │ │ │ │ ├── 02_selecting_a_partition_type │ │ │ │ │ │ ├── 01_interval_range_partitioning.mdx │ │ │ │ │ │ ├── 02_automatic_list_partitioning.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 03_using_partition_pruning │ │ │ │ │ │ ├── 01_example_partition_pruning.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 05_handling_stray_values_in_a_list_or_range_partitioned_table │ │ │ │ │ │ ├── defining_a_default_partition.mdx │ │ │ │ │ │ ├── defining_a_maxvalue_partition.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 06_specifying_multiple_partitioning_keys_in_a_range_partitioned_table.mdx │ │ │ │ │ ├── 07_retrieving_information_about_a_partitioned_table │ │ │ │ │ │ └── index.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── index.mdx │ │ │ │ └── optimizing_code │ │ │ │ │ ├── 05_optimizer_hints │ │ │ │ │ ├── 01_default_optimization_modes.mdx │ │ │ │ │ ├── 02_access_method_hints.mdx │ │ │ │ │ ├── 03_specifying_a_join_order.mdx │ │ │ │ │ ├── 04_joining_relations_hints.mdx │ │ │ │ │ ├── 05_global_hints.mdx │ │ │ │ │ ├── 06_using_the_append_optimizer_hint.mdx │ │ │ │ │ ├── 07_parallelism_hints.mdx │ │ │ │ │ ├── 08_conflicting_hints.mdx │ │ │ │ │ ├── about_optimizer_hints.mdx │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── optimizing_code.mdx │ │ │ ├── database_administration │ │ │ │ ├── 01_configuration_parameters │ │ │ │ │ ├── 01_setting_new_parameters.mdx │ │ │ │ │ ├── 03_configuration_parameters_by_functionality │ │ │ │ │ │ ├── 01_top_performance_related_parameters │ │ │ │ │ │ │ ├── 01_shared_buffers.mdx │ │ │ │ │ │ │ ├── 02_work_mem.mdx │ │ │ │ │ │ │ ├── 03_maintenance_work_mem.mdx │ │ │ │ │ │ │ ├── 04_wal_buffers.mdx │ │ │ │ │ │ │ ├── 05_checkpoint_segments.mdx │ │ │ │ │ │ │ ├── 06_checkpoint_completion_target.mdx │ │ │ │ │ │ │ ├── 07_checkpoint_timeout.mdx │ │ │ │ │ │ │ ├── 08_max_wal_size.mdx │ │ │ │ │ │ │ ├── 09_min_wal_size.mdx │ │ │ │ │ │ │ ├── 10_bgwriter_delay.mdx │ │ │ │ │ │ │ ├── 11_seq_page_cost.mdx │ │ │ │ │ │ │ ├── 12_random_page_cost.mdx │ │ │ │ │ │ │ ├── 13_effective_cache_size.mdx │ │ │ │ │ │ │ ├── 14_synchronous_commit.mdx │ │ │ │ │ │ │ ├── 15_edb_max_spins_per_delay.mdx │ │ │ │ │ │ │ ├── 16_pg_prewarm.autoprewarm.mdx │ │ │ │ │ │ │ ├── 17_pg_prewarm.autoprewarm_interval.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 02_resource_usage_memory.mdx │ │ │ │ │ │ ├── 03_resource_usage_edb_resource_manager.mdx │ │ │ │ │ │ ├── 04_query_tuning.mdx │ │ │ │ │ │ ├── 05_query_tuning_planner_method_configuration.mdx │ │ │ │ │ │ ├── 06_reporting_and_logging_what_to_log.mdx │ │ │ │ │ │ ├── 07_auditing_settings │ │ │ │ │ │ │ ├── 01_edb_audit.mdx │ │ │ │ │ │ │ ├── 02_edb_audit_directory.mdx │ │ │ │ │ │ │ ├── 03_edb_audit_filename.mdx │ │ │ │ │ │ │ ├── 04_edb_audit_rotation_day.mdx │ │ │ │ │ │ │ ├── 05_edb_audit_rotation_size.mdx │ │ │ │ │ │ │ ├── 06_edb_audit_rotation_seconds.mdx │ │ │ │ │ │ │ ├── 07_edb_audit_connect.mdx │ │ │ │ │ │ │ ├── 08_edb_audit_disconnect.mdx │ │ │ │ │ │ │ ├── 09_edb_audit_statement.mdx │ │ │ │ │ │ │ ├── 10_edb_audit_tag.mdx │ │ │ │ │ │ │ ├── 11_edb_audit_destination.mdx │ │ │ │ │ │ │ ├── 12_edb_log_every_bulk_value.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 08_ccd_locale_and_formatting.mdx │ │ │ │ │ │ ├── 09_ccd_statement_behaviour.mdx │ │ │ │ │ │ ├── 10_ccd_other_defaults.mdx │ │ │ │ │ │ ├── 11_compatibility_options.mdx │ │ │ │ │ │ ├── 12_customized_options.mdx │ │ │ │ │ │ ├── 13_ungrouped.mdx │ │ │ │ │ │ ├── 14_audit_archiver.mdx │ │ │ │ │ │ ├── attribute_descriptions.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 02_edb_loader │ │ │ │ │ ├── building_the_control_file │ │ │ │ │ │ ├── control_file_examples.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── data_loading_methods.mdx │ │ │ │ │ ├── edb_loader_overview_and_restrictions.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── invoking_edb_loader │ │ │ │ │ │ ├── conventional_path_load.mdx │ │ │ │ │ │ ├── direct_path_load.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── parallel_direct_path_load.mdx │ │ │ │ │ │ ├── performing_remote_loading.mdx │ │ │ │ │ │ └── running_edb_loader.mdx │ │ │ │ │ └── using_edb_loader.mdx │ │ │ │ ├── 10_edb_resource_manager │ │ │ │ │ ├── cpu_usage_throttling.mdx │ │ │ │ │ ├── creating_resource_groups.mdx │ │ │ │ │ ├── dirty_buffer_throttling.mdx │ │ │ │ │ ├── edb_resource_manager_key_concepts.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 14_edb_clone_schema │ │ │ │ │ ├── checking_the_status.mdx │ │ │ │ │ ├── cloning_with_a_non_super_user.mdx │ │ │ │ │ ├── copying_a_remote_schema.mdx │ │ │ │ │ ├── copying_a_schema.mdx │ │ │ │ │ ├── edb_clone_schema_overview.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── performing_cleanup_tasks.mdx │ │ │ │ │ └── setting_up_edb_clone_schema.mdx │ │ │ │ └── index.mdx │ │ │ ├── epas_platform_support │ │ │ │ └── index.mdx │ │ │ ├── epas_rel_notes │ │ │ │ ├── epas15_10_0_rel_notes.mdx │ │ │ │ ├── epas15_11_0_rel_notes.mdx │ │ │ │ ├── epas15_12_0_rel_notes.mdx │ │ │ │ ├── epas15_13_0_rel_notes.mdx │ │ │ │ ├── epas15_14_0_rel_notes.mdx │ │ │ │ ├── epas15_15_0_rel_notes.mdx │ │ │ │ ├── epas15_2_0_rel_notes.mdx │ │ │ │ ├── epas15_3_0_rel_notes.mdx │ │ │ │ ├── epas15_4_0_rel_notes.mdx │ │ │ │ ├── epas15_4_1_rel_notes.mdx │ │ │ │ ├── epas15_5_0_rel_notes.mdx │ │ │ │ ├── epas15_6_0_rel_notes.mdx │ │ │ │ ├── epas15_7_0_rel_notes.mdx │ │ │ │ ├── epas15_8_0_rel_notes.mdx │ │ │ │ ├── epas15_8_1_rel_notes.mdx │ │ │ │ ├── epas15_9_0_rel_notes.mdx │ │ │ │ └── index.mdx │ │ │ ├── epas_security_guide │ │ │ │ ├── 02_protecting_against_sql_injection_attacks │ │ │ │ │ ├── 01_sql_protect_overview.mdx │ │ │ │ │ ├── 02_configuring_sql_protect.mdx │ │ │ │ │ ├── 03_common_maintenance_operations.mdx │ │ │ │ │ ├── 04_backing_up_restoring_sql_protect.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 03_edb_wrap │ │ │ │ │ ├── edb_wrap_key_concepts.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── obfuscating_source_code.mdx │ │ │ │ ├── 03_virtual_private_database.mdx │ │ │ │ ├── 04_profile_management │ │ │ │ │ ├── 01_creating_a_new_profile │ │ │ │ │ │ ├── 01_creating_a_password_function.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 02_altering_a_profile.mdx │ │ │ │ │ ├── 03_dropping_a_profile.mdx │ │ │ │ │ ├── 04_associating_a_profile_with_an_existing_role.mdx │ │ │ │ │ ├── 05_unlocking_a_locked_account.mdx │ │ │ │ │ ├── 06_creating_a_new_role_associated_with_a_profile.mdx │ │ │ │ │ ├── 07_backing_up_profile_management_functions.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── profile_overview.mdx │ │ │ │ ├── 04_sslutils.mdx │ │ │ │ ├── 05_data_redaction │ │ │ │ │ ├── creating_a_data_redaction_policy.mdx │ │ │ │ │ ├── data_redaction_key_concepts.mdx │ │ │ │ │ ├── data_redaction_system_catalogs.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── modifying_a_data_redaction_policy.mdx │ │ │ │ │ └── removing_a_data_redaction_policy.mdx │ │ │ │ ├── 05_edb_audit_logging │ │ │ │ │ ├── 02_selecting_sql_statements_to_audit.mdx │ │ │ │ │ ├── 03_enabling_audit_logging.mdx │ │ │ │ │ ├── 05_using_error_codes_to_filter_audit_logs.mdx │ │ │ │ │ ├── 06_using_command_tags_to_filter_audit_logs.mdx │ │ │ │ │ ├── 07_redacting_passwords_from_audit_logs.mdx │ │ │ │ │ ├── 08_audit_log_archiving.mdx │ │ │ │ │ ├── 09_object_auditing.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── index.mdx │ │ │ │ └── tde_feature.mdx │ │ │ ├── fundamentals │ │ │ │ ├── epas_fundamentals │ │ │ │ │ ├── benefits_epas.mdx │ │ │ │ │ ├── epas_compat_ora_dev_guide │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── terminology.mdx │ │ │ │ ├── index.mdx │ │ │ │ └── sql_fundamentals │ │ │ │ │ ├── 02_about_the_examples_used_in_this_guide.mdx │ │ │ │ │ ├── 02_conventions.mdx │ │ │ │ │ ├── 02_sql_tutorial │ │ │ │ │ ├── 01_sample_database │ │ │ │ │ │ ├── 01_sample_database_installation.mdx │ │ │ │ │ │ ├── 02_sample_database_description.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 02_creating_a_new_table.mdx │ │ │ │ │ ├── 03_populating_a_table_with_rows.mdx │ │ │ │ │ ├── 04_querying_a_table.mdx │ │ │ │ │ ├── 05_joins_between_tables.mdx │ │ │ │ │ ├── 06_aggregate_functions.mdx │ │ │ │ │ ├── 07_updates.mdx │ │ │ │ │ ├── 08_deletions.mdx │ │ │ │ │ ├── 09_the_sql_language.mdx │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 03_advanced_concepts │ │ │ │ │ ├── 01_views.mdx │ │ │ │ │ ├── 02_foreign_keys.mdx │ │ │ │ │ ├── 03_the_rownum_pseudo_column.mdx │ │ │ │ │ ├── 04_synonyms.mdx │ │ │ │ │ ├── 05_hierarchical_queries │ │ │ │ │ │ ├── 01_defining_the_parent_child_relationship.mdx │ │ │ │ │ │ ├── 02_selecting_the_root_nodes.mdx │ │ │ │ │ │ ├── 03_organization_tree_in_the_sample_application.mdx │ │ │ │ │ │ ├── 04_node_level.mdx │ │ │ │ │ │ ├── 05_ordering_the_siblings.mdx │ │ │ │ │ │ ├── 06_retrieving_the_root_node_with_connect_by_root.mdx │ │ │ │ │ │ ├── 07_retrieving_a_path_with_sys_connect_by_path.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 06_multidimensional_analysis │ │ │ │ │ │ ├── 01_rollup_extension.mdx │ │ │ │ │ │ ├── 02_cube_extension.mdx │ │ │ │ │ │ ├── 03_grouping_sets_extension.mdx │ │ │ │ │ │ ├── 04_grouping_function.mdx │ │ │ │ │ │ ├── 05_grouping_id_function.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 03_examples_used.mdx │ │ │ │ │ └── index.mdx │ │ │ ├── images │ │ │ │ ├── accessing_configuration_files.png │ │ │ │ ├── acknowledging_components_removed.png │ │ │ │ ├── additional_configuration.png │ │ │ │ ├── additional_directories.png │ │ │ │ ├── advanced_server_dialect.png │ │ │ │ ├── advanced_server_installation_completion.png │ │ │ │ ├── advanced_server_installer_welcome.png │ │ │ │ ├── advanced_server_services.png │ │ │ │ ├── advanced_server_startup.png │ │ │ │ ├── advanced_server_uninstaller.png │ │ │ │ ├── clear_breakpoints.jpg │ │ │ │ ├── configuring_advanced_server_to_use_trust_authentication.png │ │ │ │ ├── connect_to_epas_server.png │ │ │ │ ├── connecting_server.png │ │ │ │ ├── connecting_to_advanced_server_database.png │ │ │ │ ├── connecting_to_server.png │ │ │ │ ├── debugger_window.png │ │ │ │ ├── debugging_called_subprogram.png │ │ │ │ ├── definer's_rights_package.png │ │ │ │ ├── definers_rights_package.png │ │ │ │ ├── download_complete.png │ │ │ │ ├── download_complete_confirmation.png │ │ │ │ ├── dynatune_dynamic_tuning_server_utilization.png │ │ │ │ ├── dynatune_dynamic_tuning_workload_profile.png │ │ │ │ ├── ecpg_path.png │ │ │ │ ├── edb_logo.png │ │ │ │ ├── edb_logo.svg │ │ │ │ ├── edb_postgres.png │ │ │ │ ├── employee_organization_hierarchy.png │ │ │ │ ├── enterprisedb_license_agreement.png │ │ │ │ ├── enterprisedb_technical_alert.png │ │ │ │ ├── epas_linux_advanced_server_service_configuration_file.png │ │ │ │ ├── epas_tools_utility_edb_wrap.png │ │ │ │ ├── exiting_from_debugger.png │ │ │ │ ├── image3.png │ │ │ │ ├── installation_directory.png │ │ │ │ ├── installing_advanced_server.png │ │ │ │ ├── invokers_rights_programs.png │ │ │ │ ├── local_variables_tab.png │ │ │ │ ├── main_debugger_window.png │ │ │ │ ├── messages_tab.png │ │ │ │ ├── open_client_library.png │ │ │ │ ├── parameters_tab.png │ │ │ │ ├── password_window.png │ │ │ │ ├── pgAdmin_installation_directory.png │ │ │ │ ├── pgAdmin_welcome.png │ │ │ │ ├── pgadmin4_client_dashboard.png │ │ │ │ ├── pgadmin4_from_applications_menu.png │ │ │ │ ├── pgadmin_installation.png │ │ │ │ ├── pre_installation_summary.png │ │ │ │ ├── program_body.png │ │ │ │ ├── proxy_servers.png │ │ │ │ ├── ready_to_install.png │ │ │ │ ├── results_tab.png │ │ │ │ ├── sample_database_tables.png │ │ │ │ ├── select_components.png │ │ │ │ ├── selected_packages_summary_window.png │ │ │ │ ├── setting_global_breakpoint_from_left-hand_margin.png │ │ │ │ ├── setting_global_breakpoint_from_object_menu.png │ │ │ │ ├── setup_wizard.png │ │ │ │ ├── stackBuilder_plus_confirms_the_completed_installation.png │ │ │ │ ├── stack_tab.png │ │ │ │ ├── stackbuilder_category_AS.png │ │ │ │ ├── stackbuilder_missing_pgAdmin.png │ │ │ │ ├── stackbuilder_plus_completed_installation.png │ │ │ │ ├── stackbuilder_plus_module_selection.png │ │ │ │ ├── stackbuilder_plus_welcome.png │ │ │ │ ├── starting_the_debugger_from_context_menu.png │ │ │ │ ├── starting_the_debugger_from_object_menu.png │ │ │ │ ├── summary_window_displaying_selected_packages.png │ │ │ │ ├── the_proxy_servers_dialog.png │ │ │ │ ├── the_stackBuilder_plus_module_selection_window.png │ │ │ │ ├── the_stackBuilder_plus_registration_window.png │ │ │ │ ├── the_stackBuilder_plus_welcome.png │ │ │ │ ├── toolbar_icons.jpg │ │ │ │ ├── uninstallation_complete.png │ │ │ │ ├── update_notification_service.png │ │ │ │ └── waiting_invocation_program_debugged.png │ │ │ ├── index.mdx │ │ │ ├── installing │ │ │ │ ├── index.mdx │ │ │ │ ├── linux_arm64 │ │ │ │ │ ├── epas_rhel_9.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── linux_install_details │ │ │ │ │ ├── component_locations.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── installing_epas_using_local_repository.mdx │ │ │ │ │ ├── managing_an_advanced_server_installation │ │ │ │ │ │ ├── configuring_a_package_installation.mdx │ │ │ │ │ │ ├── connecting_to_epas.mdx │ │ │ │ │ │ ├── exclude_include_packages.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── modifying_the_data_directory_location.mdx │ │ │ │ │ │ ├── specifying_cluster_options.mdx │ │ │ │ │ │ ├── starting_and_stopping_services.mdx │ │ │ │ │ │ └── starting_multiple_postmasters.mdx │ │ │ │ │ ├── rpm_packages.mdx │ │ │ │ │ └── updating_an_rpm_installation.mdx │ │ │ │ ├── linux_ppc64le │ │ │ │ │ ├── epas_rhel_8.mdx │ │ │ │ │ ├── epas_rhel_9.mdx │ │ │ │ │ ├── epas_sles_15.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── linux_x86_64 │ │ │ │ │ ├── epas_debian_11.mdx │ │ │ │ │ ├── epas_other_linux_8.mdx │ │ │ │ │ ├── epas_other_linux_9.mdx │ │ │ │ │ ├── epas_rhel_8.mdx │ │ │ │ │ ├── epas_rhel_9.mdx │ │ │ │ │ ├── epas_sles_15.mdx │ │ │ │ │ ├── epas_ubuntu_22.mdx │ │ │ │ │ ├── epas_ubuntu_24.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── troubleshooting │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── linux_troubleshooting │ │ │ │ │ │ ├── enabling_core_dump.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── installation_troubleshooting_linux.mdx │ │ │ │ │ └── windows_troubleshooting.mdx │ │ │ │ ├── uninstalling │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── linux_uninstall.mdx │ │ │ │ │ └── windows_uninstall.mdx │ │ │ │ └── windows │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── installing_advanced_server_with_the_interactive_installer │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── invoking_the_graphical_installer_from_the_command_line │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── performing_an_installation_with_limited_privileges.mdx │ │ │ │ │ │ ├── performing_an_unattended_installation.mdx │ │ │ │ │ │ └── reference_command_line_options.mdx │ │ │ │ │ ├── performing_a_graphical_installation_on_windows.mdx │ │ │ │ │ ├── setting_cluster_preferences.mdx │ │ │ │ │ └── using_stackbuilder_plus.mdx │ │ │ │ │ └── managing_an_advanced_server_installation │ │ │ │ │ ├── configuring_epas.mdx │ │ │ │ │ ├── controlling_server_startup_behavior_on_windows.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── starting_and_stopping_epas.mdx │ │ │ │ │ ├── using_pg_ctl_to_control_advanced_server.mdx │ │ │ │ │ └── using_the_windows_services_applet.mdx │ │ │ ├── managing_performance │ │ │ │ ├── 02_index_advisor │ │ │ │ │ ├── 02_index_advisor_configuration.mdx │ │ │ │ │ ├── 03_using_index_advisor.mdx │ │ │ │ │ ├── 04_reviewing_the_index_advisor_recommendations.mdx │ │ │ │ │ ├── 05_index_advisor_limitations.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── index_advisor_overview.mdx │ │ │ │ │ └── installing_index_advisor.mdx │ │ │ │ ├── 03_sql_profiler.mdx │ │ │ │ ├── 04_dynamic_runtime_instrumentation_tools_architecture_DRITA │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── performance_tuning_recommendations.mdx │ │ │ │ │ ├── simulating_statspack_reports.mdx │ │ │ │ │ ├── taking_a_snapshot.mdx │ │ │ │ │ └── using_drita_functions.mdx │ │ │ │ ├── evaluating_wait_states.mdx │ │ │ │ ├── index.mdx │ │ │ │ └── using_dynatune.mdx │ │ │ ├── planning │ │ │ │ ├── configuration_mode.mdx │ │ │ │ ├── deployment_options │ │ │ │ │ ├── aws_epas.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── index.mdx │ │ │ │ └── planning_prerequisites │ │ │ │ │ ├── epas_limitations │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── epas_requirements │ │ │ │ │ └── index.mdx │ │ │ │ │ └── index.mdx │ │ │ ├── reference │ │ │ │ ├── application_programmer_reference │ │ │ │ │ ├── 01_table_partitioning_views_reference │ │ │ │ │ │ ├── 01_all_part_tables.mdx │ │ │ │ │ │ ├── 02_all_tab_partitions.mdx │ │ │ │ │ │ ├── 03_all_tab_subpartitions.mdx │ │ │ │ │ │ ├── 04_all_part_key_columns.mdx │ │ │ │ │ │ ├── 05_all_subpart_key_columns.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 03_system_catalog_tables.mdx │ │ │ │ │ ├── 07_reference │ │ │ │ │ │ ├── c_preprocessor_directives.mdx │ │ │ │ │ │ ├── ecpgplus_statements.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── sqlda_structure.mdx │ │ │ │ │ │ ├── supported_c_data_types.mdx │ │ │ │ │ │ └── type_codes.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── stored_procedural_language_reference │ │ │ │ │ │ ├── 01_basic_spl_elements │ │ │ │ │ │ ├── 02_case_sensitivity.mdx │ │ │ │ │ │ ├── 03_identifiers.mdx │ │ │ │ │ │ ├── 04_qualifiers.mdx │ │ │ │ │ │ ├── 05_constants.mdx │ │ │ │ │ │ ├── 06_user_defined_pl_sql_subtypes.mdx │ │ │ │ │ │ ├── 07_character.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 04_basic_statements │ │ │ │ │ │ ├── 01_assignment.mdx │ │ │ │ │ │ ├── 02_delete.mdx │ │ │ │ │ │ ├── 03_insert.mdx │ │ │ │ │ │ ├── 04_null.mdx │ │ │ │ │ │ ├── 05_using_the_returning_into_clause.mdx │ │ │ │ │ │ ├── 06_select_into.mdx │ │ │ │ │ │ ├── 07_update.mdx │ │ │ │ │ │ ├── 08_obtaining_the_result_status.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 05_control_structures │ │ │ │ │ │ ├── 01_if_statement │ │ │ │ │ │ │ ├── 01_if_then.mdx │ │ │ │ │ │ │ ├── 02_if_then_else.mdx │ │ │ │ │ │ │ ├── 03_if_then_else_if.mdx │ │ │ │ │ │ │ ├── 04_if_then_elseif_else.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 02_return_statement.mdx │ │ │ │ │ │ ├── 03_goto_statement.mdx │ │ │ │ │ │ ├── 04_case_expression │ │ │ │ │ │ │ ├── 01_selector_case_expression.mdx │ │ │ │ │ │ │ ├── 02_searched_case_expression.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 05_case_statement │ │ │ │ │ │ │ ├── 01_selector_case_statement.mdx │ │ │ │ │ │ │ ├── 02_searched_case_statement.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 06_loops │ │ │ │ │ │ │ ├── 01_loop.mdx │ │ │ │ │ │ │ ├── 02_exit.mdx │ │ │ │ │ │ │ ├── 03_continue.mdx │ │ │ │ │ │ │ ├── 04_while.mdx │ │ │ │ │ │ │ ├── 05_for_integer_variant.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 07_exception_handling.mdx │ │ │ │ │ │ ├── 08_user_defined_exceptions.mdx │ │ │ │ │ │ ├── 09_pragma_exception_init.mdx │ │ │ │ │ │ ├── 10_raise_application_error.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 11_collection_methods │ │ │ │ │ │ ├── 01_count.mdx │ │ │ │ │ │ ├── 02_deletes.mdx │ │ │ │ │ │ ├── 03_exists.mdx │ │ │ │ │ │ ├── 04_extend.mdx │ │ │ │ │ │ ├── 05_first.mdx │ │ │ │ │ │ ├── 06_last.mdx │ │ │ │ │ │ ├── 07_limit.mdx │ │ │ │ │ │ ├── 08_next.mdx │ │ │ │ │ │ ├── 09_prior.mdx │ │ │ │ │ │ ├── 10_trim.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 17_advanced_server_keywords.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ ├── database_administrator_reference │ │ │ │ │ ├── 01_audit_logging_configuration_parameters.mdx │ │ │ │ │ ├── 01_index_advisor_components.mdx │ │ │ │ │ ├── 01_introduction │ │ │ │ │ │ ├── 01_edb_redwood_date.mdx │ │ │ │ │ │ ├── 02_edb_redwood_raw_names.mdx │ │ │ │ │ │ ├── 03_edb_redwood_strings.mdx │ │ │ │ │ │ ├── 04_edb_stmt_level_tx.mdx │ │ │ │ │ │ ├── 05_oracle_home.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 02_summary_of_configuration_parameters.mdx │ │ │ │ │ ├── 04_audit_log_file.mdx │ │ │ │ │ ├── edb_loader_control_file_parameters.mdx │ │ │ │ │ ├── edb_resource_manager_system_catalogs.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── oracle_compatibility_reference │ │ │ │ │ ├── 01_dblink_ora_functions_and_procedures │ │ │ │ │ │ ├── 01_dblink_ora_connect.mdx │ │ │ │ │ │ ├── 02_dblink_ora_status.mdx │ │ │ │ │ │ ├── 03_dblink_ora_disconnect.mdx │ │ │ │ │ │ ├── 04_dblink_ora_record.mdx │ │ │ │ │ │ ├── 05_dblink_ora_call.mdx │ │ │ │ │ │ ├── 06_dblink_ora_exec.mdx │ │ │ │ │ │ ├── 07_dblink_ora_copy.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 04_partitioning_commands_compatible_with_oracle_databases │ │ │ │ │ │ ├── 01_create_table_partition_by │ │ │ │ │ │ │ ├── 01_example_partition_by_list.mdx │ │ │ │ │ │ │ ├── 02_example_automatic_list_partition.mdx │ │ │ │ │ │ │ ├── 03_example_partition_by_range.mdx │ │ │ │ │ │ │ ├── 04_example_interval_range_partition.mdx │ │ │ │ │ │ │ ├── 05_example_partition_by_hash.mdx │ │ │ │ │ │ │ ├── 06_example_partitions_number.mdx │ │ │ │ │ │ │ ├── 07_example_partition_by_range_subpartition_by_list.mdx │ │ │ │ │ │ │ ├── 08_example_creating_unique_index.mdx │ │ │ │ │ │ │ ├── 09_example_subpartition_template.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 02_alter_table_add_partition │ │ │ │ │ │ │ ├── 01_example_adding_a_partition_to_a_list_partitioned_table.mdx │ │ │ │ │ │ │ ├── 02_example_adding_a_partition_to_a_range_partitioned_table.mdx │ │ │ │ │ │ │ ├── 03_example_adding_a_partition_with_subpartitions_number.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 03_alter_table_add_subpartition │ │ │ │ │ │ │ ├── 01_example_adding_a_subpartition_to_a_list_range_partitioned_table.mdx │ │ │ │ │ │ │ ├── 02_example_adding_a_subpartition_to_a_range_list_partitioned_table.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 04_alter_table_split_partition │ │ │ │ │ │ │ ├── 01_example_splitting_a_list_partition.mdx │ │ │ │ │ │ │ ├── 02_example_splitting_a_range_partition.mdx │ │ │ │ │ │ │ ├── 03_example_splitting_a_range_list_partition.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 05_alter_table_split_subpartition │ │ │ │ │ │ │ ├── 01_example_splitting_a_list_subpartition.mdx │ │ │ │ │ │ │ ├── 02_example_splitting_a_range_subpartition.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 06_alter_table_exchange_partition │ │ │ │ │ │ │ ├── 01_example_exchanging_a_table_for_a_partition.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 07_alter_table_move_partition │ │ │ │ │ │ │ ├── 01_example_moving_a_partition_to_a_different_tablespace.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 08_alter_table_rename_partition │ │ │ │ │ │ │ ├── 01_example_renaming_a_partition.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 09_alter_table_set_interval │ │ │ │ │ │ │ ├── 01_example_setting_an_interval_range_partition.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 10_alter_table_set_partitioning_automatic │ │ │ │ │ │ │ ├── 01_example_setting_an_automatic_list_partition.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 11_alter_table_set_subpartition_template │ │ │ │ │ │ │ ├── 01_example_setting_a_subpartition_template.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 12_drop_table.mdx │ │ │ │ │ │ ├── 13_alter_table_drop_partition │ │ │ │ │ │ │ ├── 01_example_deleting_a_partition.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 14_alter_table_drop_subpartition │ │ │ │ │ │ │ ├── 01_example_deleting_a_subpartition.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 15_truncate_table │ │ │ │ │ │ │ ├── 01_example_emptying_a_table.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 16_alter_table_truncate_partition │ │ │ │ │ │ │ ├── 01_example_emptying_a_partition.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 17_alter_table_truncate_subpartition │ │ │ │ │ │ │ ├── 01_example_emptying_a_subpartition.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 18_accessing_partition_table │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── epas_compat_bip_guide │ │ │ │ │ │ ├── 03_built-in_packages │ │ │ │ │ │ │ ├── 01_dbms_alert.mdx │ │ │ │ │ │ │ ├── 02_dbms_aq │ │ │ │ │ │ │ │ ├── 01_enqueue.mdx │ │ │ │ │ │ │ │ ├── 02_dequeue.mdx │ │ │ │ │ │ │ │ ├── 03_register.mdx │ │ │ │ │ │ │ │ ├── 04_unregister.mdx │ │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ ├── 03_dbms_aqadm │ │ │ │ │ │ │ │ ├── 01_alter_queue.mdx │ │ │ │ │ │ │ │ ├── 02_alter_queue_table.mdx │ │ │ │ │ │ │ │ ├── 03_create_queue.mdx │ │ │ │ │ │ │ │ ├── 04_create_queue_table.mdx │ │ │ │ │ │ │ │ ├── 05_drop_queue.mdx │ │ │ │ │ │ │ │ ├── 06_drop_queue_table.mdx │ │ │ │ │ │ │ │ ├── 07_purge_queue_table.mdx │ │ │ │ │ │ │ │ ├── 08_start_queue.mdx │ │ │ │ │ │ │ │ ├── 09_stop_queue.mdx │ │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ ├── 04_dbms_crypto │ │ │ │ │ │ │ │ ├── 01_decrypt.mdx │ │ │ │ │ │ │ │ ├── 02_encrypt.mdx │ │ │ │ │ │ │ │ ├── 03_hash.mdx │ │ │ │ │ │ │ │ ├── 04_mac.mdx │ │ │ │ │ │ │ │ ├── 05_randombytes.mdx │ │ │ │ │ │ │ │ ├── 06_randominteger.mdx │ │ │ │ │ │ │ │ ├── 07_randomnumber.mdx │ │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ ├── 05_dbms_job │ │ │ │ │ │ │ │ ├── 01_broken.mdx │ │ │ │ │ │ │ │ ├── 02_change.mdx │ │ │ │ │ │ │ │ ├── 03_interval.mdx │ │ │ │ │ │ │ │ ├── 04_next_date.mdx │ │ │ │ │ │ │ │ ├── 05_remove.mdx │ │ │ │ │ │ │ │ ├── 06_run.mdx │ │ │ │ │ │ │ │ ├── 07_submit.mdx │ │ │ │ │ │ │ │ ├── 08_what.mdx │ │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ ├── 06_dbms_lob │ │ │ │ │ │ │ │ ├── 01_append.mdx │ │ │ │ │ │ │ │ ├── 02_compare.mdx │ │ │ │ │ │ │ │ ├── 03_converttoblob.mdx │ │ │ │ │ │ │ │ ├── 04_converttoclob.mdx │ │ │ │ │ │ │ │ ├── 05_copy.mdx │ │ │ │ │ │ │ │ ├── 06_erase.mdx │ │ │ │ │ │ │ │ ├── 07_get_storage_limit.mdx │ │ │ │ │ │ │ │ ├── 08_getlength.mdx │ │ │ │ │ │ │ │ ├── 09_instr.mdx │ │ │ │ │ │ │ │ ├── 10_read.mdx │ │ │ │ │ │ │ │ ├── 11_substr.mdx │ │ │ │ │ │ │ │ ├── 12_trim.mdx │ │ │ │ │ │ │ │ ├── 13_write.mdx │ │ │ │ │ │ │ │ ├── 14_writeappend.mdx │ │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ ├── 07_dbms_lock.mdx │ │ │ │ │ │ │ ├── 08_dbms_mview │ │ │ │ │ │ │ │ ├── 01_get_mv_dependencies.mdx │ │ │ │ │ │ │ │ ├── 02_refresh.mdx │ │ │ │ │ │ │ │ ├── 03_refresh_all_mviews.mdx │ │ │ │ │ │ │ │ ├── 04_refresh_dependent.mdx │ │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ ├── 09_dbms_output.mdx │ │ │ │ │ │ │ ├── 10_dbms_pipe │ │ │ │ │ │ │ │ ├── 01_create_pipe.mdx │ │ │ │ │ │ │ │ ├── 02_next_item_pipe.mdx │ │ │ │ │ │ │ │ ├── 03_pack_message.mdx │ │ │ │ │ │ │ │ ├── 04_purge.mdx │ │ │ │ │ │ │ │ ├── 05_receive_message.mdx │ │ │ │ │ │ │ │ ├── 06_remove_pipe.mdx │ │ │ │ │ │ │ │ ├── 07_reset_buffer.mdx │ │ │ │ │ │ │ │ ├── 08_send_message.mdx │ │ │ │ │ │ │ │ ├── 09_unique_session_name.mdx │ │ │ │ │ │ │ │ ├── 10_unpack_message.mdx │ │ │ │ │ │ │ │ ├── 11_comprehensive_example.mdx │ │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ ├── 11_dbms_profiler.mdx │ │ │ │ │ │ │ ├── 12_dbms_random.mdx │ │ │ │ │ │ │ ├── 13_dbms_redact.mdx │ │ │ │ │ │ │ ├── 14_dbms_rls.mdx │ │ │ │ │ │ │ ├── 15_dbms_scheduler │ │ │ │ │ │ │ │ ├── 01_using_calendar_syntax_to_specify_a_repeating_interval.mdx │ │ │ │ │ │ │ │ ├── 02_create_job.mdx │ │ │ │ │ │ │ │ ├── 03_create_program.mdx │ │ │ │ │ │ │ │ ├── 04_create_schedule.mdx │ │ │ │ │ │ │ │ ├── 05_define_program_argument.mdx │ │ │ │ │ │ │ │ ├── 06_dbms_scheduler_disable.mdx │ │ │ │ │ │ │ │ ├── 07_drop_job.mdx │ │ │ │ │ │ │ │ ├── 08_drop_program.mdx │ │ │ │ │ │ │ │ ├── 09_drop_program_argument.mdx │ │ │ │ │ │ │ │ ├── 10_drop_schedule.mdx │ │ │ │ │ │ │ │ ├── 11_dbms_scheduler_enable.mdx │ │ │ │ │ │ │ │ ├── 12_evaluate_calendar_string.mdx │ │ │ │ │ │ │ │ ├── 13_run_job.mdx │ │ │ │ │ │ │ │ ├── 14_set_job_argument_value.mdx │ │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ ├── 16_dbms_session.mdx │ │ │ │ │ │ │ ├── 17_dbms_sql │ │ │ │ │ │ │ │ ├── 01_bind_variable.mdx │ │ │ │ │ │ │ │ ├── 02_bind_variable_char.mdx │ │ │ │ │ │ │ │ ├── 03_bind_variable_raw.mdx │ │ │ │ │ │ │ │ ├── 04_close_cursor.mdx │ │ │ │ │ │ │ │ ├── 05_column_value.mdx │ │ │ │ │ │ │ │ ├── 06_column_value_char.mdx │ │ │ │ │ │ │ │ ├── 07_column_value_raw.mdx │ │ │ │ │ │ │ │ ├── 08_define_column.mdx │ │ │ │ │ │ │ │ ├── 09_define_column_char.mdx │ │ │ │ │ │ │ │ ├── 10_define_column_raw.mdx │ │ │ │ │ │ │ │ ├── 11_describe_columns.mdx │ │ │ │ │ │ │ │ ├── 12_execute.mdx │ │ │ │ │ │ │ │ ├── 13_execute_and_fetch.mdx │ │ │ │ │ │ │ │ ├── 14_fetch_rows.mdx │ │ │ │ │ │ │ │ ├── 15_is_open.mdx │ │ │ │ │ │ │ │ ├── 16_last_row_count.mdx │ │ │ │ │ │ │ │ ├── 17_open_cursor.mdx │ │ │ │ │ │ │ │ ├── 18_parse.mdx │ │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ ├── 18_dbms_utility.mdx │ │ │ │ │ │ │ ├── 19_utl_encode │ │ │ │ │ │ │ │ ├── 01_base64_decode.mdx │ │ │ │ │ │ │ │ ├── 02_base64_encode.mdx │ │ │ │ │ │ │ │ ├── 03_mimeheader_decode.mdx │ │ │ │ │ │ │ │ ├── 04_mimeheader_encode.mdx │ │ │ │ │ │ │ │ ├── 05_quoted_printable_decode.mdx │ │ │ │ │ │ │ │ ├── 06_quoted_printable_encode.mdx │ │ │ │ │ │ │ │ ├── 07_text_decode.mdx │ │ │ │ │ │ │ │ ├── 08_text_encode.mdx │ │ │ │ │ │ │ │ ├── 09_uudecode.mdx │ │ │ │ │ │ │ │ ├── 10_uuencode.mdx │ │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ ├── 20_utl_file.mdx │ │ │ │ │ │ │ ├── 21_utl_http.mdx │ │ │ │ │ │ │ ├── 22_utl_mail.mdx │ │ │ │ │ │ │ ├── 23_utl_raw.mdx │ │ │ │ │ │ │ ├── 24_utl_smtp.mdx │ │ │ │ │ │ │ ├── 25_utl_url.mdx │ │ │ │ │ │ │ ├── htp_and_htf │ │ │ │ │ │ │ │ ├── address.mdx │ │ │ │ │ │ │ │ ├── anchor.mdx │ │ │ │ │ │ │ │ ├── applet.mdx │ │ │ │ │ │ │ │ ├── area.mdx │ │ │ │ │ │ │ │ ├── base.mdx │ │ │ │ │ │ │ │ ├── basefont.mdx │ │ │ │ │ │ │ │ ├── bgsound.mdx │ │ │ │ │ │ │ │ ├── big.mdx │ │ │ │ │ │ │ │ ├── blockquote.mdx │ │ │ │ │ │ │ │ ├── body.mdx │ │ │ │ │ │ │ │ ├── bold.mdx │ │ │ │ │ │ │ │ ├── br_and_nl.mdx │ │ │ │ │ │ │ │ ├── caption.mdx │ │ │ │ │ │ │ │ ├── center.mdx │ │ │ │ │ │ │ │ ├── centeropen_and_centerclose.mdx │ │ │ │ │ │ │ │ ├── cite.mdx │ │ │ │ │ │ │ │ ├── code.mdx │ │ │ │ │ │ │ │ ├── comment.mdx │ │ │ │ │ │ │ │ ├── dfn.mdx │ │ │ │ │ │ │ │ ├── dirlist.mdx │ │ │ │ │ │ │ │ ├── div.mdx │ │ │ │ │ │ │ │ ├── dlistdef.mdx │ │ │ │ │ │ │ │ ├── dlistopen_and_dlistclose.mdx │ │ │ │ │ │ │ │ ├── dlistterm.mdx │ │ │ │ │ │ │ │ ├── em_and_emphasis.mdx │ │ │ │ │ │ │ │ ├── escape_sc.mdx │ │ │ │ │ │ │ │ ├── font.mdx │ │ │ │ │ │ │ │ ├── formcheckbox.mdx │ │ │ │ │ │ │ │ ├── formfile.mdx │ │ │ │ │ │ │ │ ├── formhidden.mdx │ │ │ │ │ │ │ │ ├── formimage.mdx │ │ │ │ │ │ │ │ ├── formopen_and_formclose.mdx │ │ │ │ │ │ │ │ ├── formpassword.mdx │ │ │ │ │ │ │ │ ├── formradio.mdx │ │ │ │ │ │ │ │ ├── formreset.mdx │ │ │ │ │ │ │ │ ├── formselectopen_and_formselectclose.mdx │ │ │ │ │ │ │ │ ├── formselectoption.mdx │ │ │ │ │ │ │ │ ├── formsubmit.mdx │ │ │ │ │ │ │ │ ├── formtext.mdx │ │ │ │ │ │ │ │ ├── formtextarea.mdx │ │ │ │ │ │ │ │ ├── formtextarea_and_formtextarea2.mdx │ │ │ │ │ │ │ │ ├── frame.mdx │ │ │ │ │ │ │ │ ├── framesetopen_and_framsetclose.mdx │ │ │ │ │ │ │ │ ├── header.mdx │ │ │ │ │ │ │ │ ├── headopen_and_headclose.mdx │ │ │ │ │ │ │ │ ├── hr.mdx │ │ │ │ │ │ │ │ ├── htmlopen_and_htmlclose.mdx │ │ │ │ │ │ │ │ ├── img.mdx │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ ├── isindex.mdx │ │ │ │ │ │ │ │ ├── italic.mdx │ │ │ │ │ │ │ │ ├── kbd_and_keyboard.mdx │ │ │ │ │ │ │ │ ├── linkrel.mdx │ │ │ │ │ │ │ │ ├── linkrev.mdx │ │ │ │ │ │ │ │ ├── listheader.mdx │ │ │ │ │ │ │ │ ├── listingopen_and_listingclose.mdx │ │ │ │ │ │ │ │ ├── listitem.mdx │ │ │ │ │ │ │ │ ├── mailto.mdx │ │ │ │ │ │ │ │ ├── mapopen_and_mapclose.mdx │ │ │ │ │ │ │ │ ├── menulistopen_and_menulistclose.mdx │ │ │ │ │ │ │ │ ├── meta.mdx │ │ │ │ │ │ │ │ ├── nobr.mdx │ │ │ │ │ │ │ │ ├── noframesopen_and_noframesclose.mdx │ │ │ │ │ │ │ │ ├── olistopen_and_olistclose.mdx │ │ │ │ │ │ │ │ ├── para_and_paragraph.mdx │ │ │ │ │ │ │ │ ├── param.mdx │ │ │ │ │ │ │ │ ├── plaintext.mdx │ │ │ │ │ │ │ │ ├── preopen_and_preclose.mdx │ │ │ │ │ │ │ │ ├── print_and_prn.mdx │ │ │ │ │ │ │ │ ├── prints_and_ps.mdx │ │ │ │ │ │ │ │ ├── s.mdx │ │ │ │ │ │ │ │ ├── sample.mdx │ │ │ │ │ │ │ │ ├── small.mdx │ │ │ │ │ │ │ │ ├── strike.mdx │ │ │ │ │ │ │ │ ├── strong.mdx │ │ │ │ │ │ │ │ ├── style.mdx │ │ │ │ │ │ │ │ ├── sub.mdx │ │ │ │ │ │ │ │ ├── sup.mdx │ │ │ │ │ │ │ │ ├── tabledata.mdx │ │ │ │ │ │ │ │ ├── tableheader.mdx │ │ │ │ │ │ │ │ ├── tableopen_and_tableclose.mdx │ │ │ │ │ │ │ │ ├── tablerow.mdx │ │ │ │ │ │ │ │ ├── teletype.mdx │ │ │ │ │ │ │ │ ├── title.mdx │ │ │ │ │ │ │ │ ├── ulist.mdx │ │ │ │ │ │ │ │ ├── underline.mdx │ │ │ │ │ │ │ │ ├── variable.mdx │ │ │ │ │ │ │ │ └── wbr.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── epas_compat_cat_views │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── oracle_compatible_views │ │ │ │ │ │ │ ├── 02_all_all_tables.mdx │ │ │ │ │ │ │ ├── 03_all_cons_columns.mdx │ │ │ │ │ │ │ ├── 04_all_constraints.mdx │ │ │ │ │ │ │ ├── 05_all_col_privs.mdx │ │ │ │ │ │ │ ├── 06_all_db_links.mdx │ │ │ │ │ │ │ ├── 07_all_dependencies.mdx │ │ │ │ │ │ │ ├── 08_all_directories.mdx │ │ │ │ │ │ │ ├── 09_all_ind_columns.mdx │ │ │ │ │ │ │ ├── 10_all_indexes.mdx │ │ │ │ │ │ │ ├── 11_all_jobs.mdx │ │ │ │ │ │ │ ├── 12_all_objects.mdx │ │ │ │ │ │ │ ├── 13_all_part_key_columns.mdx │ │ │ │ │ │ │ ├── 14_all_part_tables.mdx │ │ │ │ │ │ │ ├── 15_all_policies.mdx │ │ │ │ │ │ │ ├── 16_all_queues.mdx │ │ │ │ │ │ │ ├── 17_all_queue_tables.mdx │ │ │ │ │ │ │ ├── 18_all_sequences.mdx │ │ │ │ │ │ │ ├── 19_all_source.mdx │ │ │ │ │ │ │ ├── 20_all_subpart_key_columns.mdx │ │ │ │ │ │ │ ├── 21_all_synonyms.mdx │ │ │ │ │ │ │ ├── 22_all_tab_columns.mdx │ │ │ │ │ │ │ ├── 23_all_tab_partitions.mdx │ │ │ │ │ │ │ ├── 24_all_tab_subpartitions.mdx │ │ │ │ │ │ │ ├── 25_all_tab_privs.mdx │ │ │ │ │ │ │ ├── 26_all_tables.mdx │ │ │ │ │ │ │ ├── 27_all_triggers.mdx │ │ │ │ │ │ │ ├── 28_all_types.mdx │ │ │ │ │ │ │ ├── 29_all_users.mdx │ │ │ │ │ │ │ ├── 30_all_view_columns.mdx │ │ │ │ │ │ │ ├── 31_all_views.mdx │ │ │ │ │ │ │ ├── 32_dba_all_tables.mdx │ │ │ │ │ │ │ ├── 33_dba_cons_columns.mdx │ │ │ │ │ │ │ ├── 34_dba_constraints.mdx │ │ │ │ │ │ │ ├── 35_dba_col_privs.mdx │ │ │ │ │ │ │ ├── 36_dba_db_links.mdx │ │ │ │ │ │ │ ├── 37_dba_directories.mdx │ │ │ │ │ │ │ ├── 38_dba_dependencies.mdx │ │ │ │ │ │ │ ├── 39_dba_ind_columns.mdx │ │ │ │ │ │ │ ├── 40_dba_indexes.mdx │ │ │ │ │ │ │ ├── 41_dba_jobs.mdx │ │ │ │ │ │ │ ├── 42_dba_objects.mdx │ │ │ │ │ │ │ ├── 43_dba_part_key_columns.mdx │ │ │ │ │ │ │ ├── 44_dba_part_tables.mdx │ │ │ │ │ │ │ ├── 45_dba_policies.mdx │ │ │ │ │ │ │ ├── 46_dba_profiles.mdx │ │ │ │ │ │ │ ├── 47_dba_queues.mdx │ │ │ │ │ │ │ ├── 48_dba_queue_tables.mdx │ │ │ │ │ │ │ ├── 49_dba_role_privs.mdx │ │ │ │ │ │ │ ├── 50_dba_roles.mdx │ │ │ │ │ │ │ ├── 51_dba_sequences.mdx │ │ │ │ │ │ │ ├── 52_dba_source.mdx │ │ │ │ │ │ │ ├── 53_dba_subpart_key_columns.mdx │ │ │ │ │ │ │ ├── 54_dba_synonyms.mdx │ │ │ │ │ │ │ ├── 55_dba_tab_columns.mdx │ │ │ │ │ │ │ ├── 56_dba_tab_partitions.mdx │ │ │ │ │ │ │ ├── 57_dba_tab_subpartitions.mdx │ │ │ │ │ │ │ ├── 58_dba_tab_privs.mdx │ │ │ │ │ │ │ ├── 59_dba_tables.mdx │ │ │ │ │ │ │ ├── 60_dba_triggers.mdx │ │ │ │ │ │ │ ├── 61_dba_types.mdx │ │ │ │ │ │ │ ├── 62_dba_users.mdx │ │ │ │ │ │ │ ├── 63_dba_view_columns.mdx │ │ │ │ │ │ │ ├── 64_dba_views.mdx │ │ │ │ │ │ │ ├── 65_user_all_tables.mdx │ │ │ │ │ │ │ ├── 66_user_cons_columns.mdx │ │ │ │ │ │ │ ├── 67_user_constraints.mdx │ │ │ │ │ │ │ ├── 68_user_col_privs.mdx │ │ │ │ │ │ │ ├── 69_user_db_links.mdx │ │ │ │ │ │ │ ├── 70_user_dependencies.mdx │ │ │ │ │ │ │ ├── 71_user_indexes.mdx │ │ │ │ │ │ │ ├── 72_user_jobs.mdx │ │ │ │ │ │ │ ├── 73_user_objects.mdx │ │ │ │ │ │ │ ├── 74_user_part_tables.mdx │ │ │ │ │ │ │ ├── 75_user_policies.mdx │ │ │ │ │ │ │ ├── 76_user_queues.mdx │ │ │ │ │ │ │ ├── 77_user_queue_tables.mdx │ │ │ │ │ │ │ ├── 78_user_role_privs.mdx │ │ │ │ │ │ │ ├── 79_user_sequences.mdx │ │ │ │ │ │ │ ├── 80_user_source.mdx │ │ │ │ │ │ │ ├── 81_user_subpart_key_columns.mdx │ │ │ │ │ │ │ ├── 82_user_synonyms.mdx │ │ │ │ │ │ │ ├── 83_user_tab_columns.mdx │ │ │ │ │ │ │ ├── 84_user_tab_partitions.mdx │ │ │ │ │ │ │ ├── 85_user_tab_subpartitions.mdx │ │ │ │ │ │ │ ├── 86_user_tab_privs.mdx │ │ │ │ │ │ │ ├── 87_user_tables.mdx │ │ │ │ │ │ │ ├── 88_user_triggers.mdx │ │ │ │ │ │ │ ├── 89_user_types.mdx │ │ │ │ │ │ │ ├── 90_user_users.mdx │ │ │ │ │ │ │ ├── 91_user_view_columns.mdx │ │ │ │ │ │ │ ├── 92_user_views.mdx │ │ │ │ │ │ │ ├── 93_v_version.mdx │ │ │ │ │ │ │ ├── 94_product_component_version.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ └── pg_views │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ └── pg_user.mdx │ │ │ │ │ ├── epas_compat_sql │ │ │ │ │ │ ├── 02_alter_directory.mdx │ │ │ │ │ │ ├── 03_alter_index.mdx │ │ │ │ │ │ ├── 04_alter_procedure.mdx │ │ │ │ │ │ ├── 05_alter_profile.mdx │ │ │ │ │ │ ├── 06_alter_queue.mdx │ │ │ │ │ │ ├── 07_alter_queue_table.mdx │ │ │ │ │ │ ├── 08_alter_role_identified_by.mdx │ │ │ │ │ │ ├── 09_alter_role_managing_database_link_and_dbms_rls_privileges.mdx │ │ │ │ │ │ ├── 10_alter_sequence.mdx │ │ │ │ │ │ ├── 11_alter_session.mdx │ │ │ │ │ │ ├── 11a_alter_synonym.mdx │ │ │ │ │ │ ├── 12_alter_table.mdx │ │ │ │ │ │ ├── 13_alter_trigger.mdx │ │ │ │ │ │ ├── 14_alter_tablespace.mdx │ │ │ │ │ │ ├── 15_alter_user_identified_by.mdx │ │ │ │ │ │ ├── 16_alter_user_role_profile_management_clauses.mdx │ │ │ │ │ │ ├── 17_call.mdx │ │ │ │ │ │ ├── 18_comment.mdx │ │ │ │ │ │ ├── 19_commit.mdx │ │ │ │ │ │ ├── 20_create_database.mdx │ │ │ │ │ │ ├── 21_create_public_database_link.mdx │ │ │ │ │ │ ├── 22_create_directory.mdx │ │ │ │ │ │ ├── 23_create_function.mdx │ │ │ │ │ │ ├── 24_create_index.mdx │ │ │ │ │ │ ├── 25_create_materialized_view.mdx │ │ │ │ │ │ ├── 26_create_package.mdx │ │ │ │ │ │ ├── 27_create_package_body.mdx │ │ │ │ │ │ ├── 28_create_procedure.mdx │ │ │ │ │ │ ├── 29_create_profile.mdx │ │ │ │ │ │ ├── 30_create_queue.mdx │ │ │ │ │ │ ├── 31_create_queue_table.mdx │ │ │ │ │ │ ├── 32_create_role.mdx │ │ │ │ │ │ ├── 33_create_schema.mdx │ │ │ │ │ │ ├── 34_create_sequence.mdx │ │ │ │ │ │ ├── 35_create_synonym.mdx │ │ │ │ │ │ ├── 36_create_table.mdx │ │ │ │ │ │ ├── 37_create_table_as.mdx │ │ │ │ │ │ ├── 38_create_trigger.mdx │ │ │ │ │ │ ├── 39_create_type.mdx │ │ │ │ │ │ ├── 40_create_type_body.mdx │ │ │ │ │ │ ├── 41_create_user.mdx │ │ │ │ │ │ ├── 42_create_user_role_profile_management_clauses.mdx │ │ │ │ │ │ ├── 43_create_view.mdx │ │ │ │ │ │ ├── 44_delete.mdx │ │ │ │ │ │ ├── 45_drop_public_database_link.mdx │ │ │ │ │ │ ├── 46_drop_directory.mdx │ │ │ │ │ │ ├── 47_drop_function.mdx │ │ │ │ │ │ ├── 48_drop_index.mdx │ │ │ │ │ │ ├── 49_drop_package.mdx │ │ │ │ │ │ ├── 50_drop_procedure.mdx │ │ │ │ │ │ ├── 51_drop_profile.mdx │ │ │ │ │ │ ├── 52_drop_queue.mdx │ │ │ │ │ │ ├── 53_drop_queue_table.mdx │ │ │ │ │ │ ├── 54_drop_synonym.mdx │ │ │ │ │ │ ├── 55_drop_role.mdx │ │ │ │ │ │ ├── 56_drop_sequence.mdx │ │ │ │ │ │ ├── 57_drop_table.mdx │ │ │ │ │ │ ├── 58_drop_tablespace.mdx │ │ │ │ │ │ ├── 59_drop_trigger.mdx │ │ │ │ │ │ ├── 60_drop_type.mdx │ │ │ │ │ │ ├── 61_drop_user.mdx │ │ │ │ │ │ ├── 62_drop_view.mdx │ │ │ │ │ │ ├── 63_exec.mdx │ │ │ │ │ │ ├── 64_grant.mdx │ │ │ │ │ │ ├── 65_insert.mdx │ │ │ │ │ │ ├── 65a_merge.mdx │ │ │ │ │ │ ├── 66_lock.mdx │ │ │ │ │ │ ├── 67_revoke.mdx │ │ │ │ │ │ ├── 68_rollback.mdx │ │ │ │ │ │ ├── 69_rollback_to_savepoint.mdx │ │ │ │ │ │ ├── 70_savepoint.mdx │ │ │ │ │ │ ├── 71_select.mdx │ │ │ │ │ │ ├── 72_set_constraints.mdx │ │ │ │ │ │ ├── 73_set_role.mdx │ │ │ │ │ │ ├── 74_set_transaction.mdx │ │ │ │ │ │ ├── 75_truncate.mdx │ │ │ │ │ │ ├── 76_update.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── summary_oracle_config_parameters.mdx │ │ │ │ └── sql_reference │ │ │ │ │ ├── 01_sql_syntax │ │ │ │ │ ├── 01_lexical_structure.mdx │ │ │ │ │ ├── 02_identifiers_and_key_words.mdx │ │ │ │ │ ├── 03_constants.mdx │ │ │ │ │ ├── 04_comments.mdx │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 02_data_types │ │ │ │ │ ├── 01_numeric_types.mdx │ │ │ │ │ ├── 02_character_types.mdx │ │ │ │ │ ├── 03_binary_data.mdx │ │ │ │ │ ├── 04_date_time_types.mdx │ │ │ │ │ ├── 05_boolean_type.mdx │ │ │ │ │ ├── 06_xml_type.mdx │ │ │ │ │ ├── array_types.mdx │ │ │ │ │ ├── composite_types.mdx │ │ │ │ │ ├── enumerated_types.mdx │ │ │ │ │ ├── geometric_types.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── monetary_types.mdx │ │ │ │ │ ├── network_address_types.mdx │ │ │ │ │ ├── object_identifier_types.mdx │ │ │ │ │ ├── pseudo_types.mdx │ │ │ │ │ └── range_types.mdx │ │ │ │ │ ├── 03_functions_and_operators │ │ │ │ │ ├── 01_logical_operators.mdx │ │ │ │ │ ├── 02_comparison_operators.mdx │ │ │ │ │ ├── 03_mathematical_functions_and_operators.mdx │ │ │ │ │ ├── 04_string_functions_and_operators.mdx │ │ │ │ │ ├── 05_pattern_matching_string_functions.mdx │ │ │ │ │ ├── 06_pattern_matching_using_the_like_operator.mdx │ │ │ │ │ ├── 07_data_type_formatting_functions.mdx │ │ │ │ │ ├── 08_date_time_functions_and_operators.mdx │ │ │ │ │ ├── 09_sequence_manipulation_functions.mdx │ │ │ │ │ ├── 10_conditional_expressions.mdx │ │ │ │ │ ├── 11_aggregate_functions.mdx │ │ │ │ │ ├── 12_subquery_expressions.mdx │ │ │ │ │ ├── 13_identifier_functions.mdx │ │ │ │ │ ├── 14_bitwise_functions.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── to_multi_byte.mdx │ │ │ │ │ └── to_single_byte.mdx │ │ │ │ │ └── index.mdx │ │ │ ├── tools_utilities_and_components │ │ │ │ ├── application_developer_tools │ │ │ │ │ ├── 06_unicode_collation_algorithm.mdx │ │ │ │ │ ├── 10_ecpgplus.mdx │ │ │ │ │ ├── 11_libpq_c_library.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── connectivity_tools │ │ │ │ │ ├── connectors.mdx │ │ │ │ │ ├── data_sources.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── managing_connections.mdx │ │ │ │ ├── database_administration_tools │ │ │ │ │ ├── 09_tools_and_utilities.mdx │ │ │ │ │ ├── edb_clone_schema_overview.mdx │ │ │ │ │ ├── edb_loader_overview.mdx │ │ │ │ │ ├── edb_resource_manager_overview.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── epas_compat_tools_guide │ │ │ │ │ └── index.mdx │ │ │ │ └── index.mdx │ │ │ ├── upgrading │ │ │ │ ├── 03_limitations.mdx │ │ │ │ ├── 04_upgrading_an_installation_with_pg_upgrade │ │ │ │ │ ├── 01_performing_an_upgrade │ │ │ │ │ │ ├── 01_linking_versus_copying.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 02_invoking_pg_upgrade │ │ │ │ │ │ ├── 01_command_line_options_reference.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 03_upgrading_to_advanced_server.mdx │ │ │ │ │ ├── 04_upgrading_a_pgAgent_installation.mdx │ │ │ │ │ ├── 05_pg_upgrade_troubleshooting.mdx │ │ │ │ │ ├── 06_reverting_to_the_old_cluster.mdx │ │ │ │ │ ├── how_pg_upgrade_works.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 05_performing_a_minor_version_update_of_an_rpm_installation.mdx │ │ │ │ ├── 06_using_stackbuilder_plus_to_perform_a_minor_version_update.mdx │ │ │ │ └── index.mdx │ │ │ └── working_with_oracle_data │ │ │ │ ├── 02_enhanced_compatibility_features.mdx │ │ │ │ ├── 06_dblink_ora │ │ │ │ ├── 02_calling_dblink_ora_functions.mdx │ │ │ │ ├── connecting_to_oracle.mdx │ │ │ │ └── index.mdx │ │ │ │ ├── 07_open_client_library.mdx │ │ │ │ ├── embedded_sql_commands.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── loading_bulk_data.mdx │ │ │ │ └── proprietary_source_code.mdx │ │ ├── 16 │ │ │ ├── application_programming │ │ │ │ ├── 02_packages │ │ │ │ │ ├── 01_package_components.mdx │ │ │ │ │ ├── 01a_display_packages.mdx │ │ │ │ │ ├── 02_creating_packages.mdx │ │ │ │ │ ├── 03_referencing_a_package.mdx │ │ │ │ │ ├── 04_using_packages_with_user_defined_types.mdx │ │ │ │ │ ├── 05_dropping_a_package.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 12_debugger │ │ │ │ │ ├── configuring_debugger.mdx │ │ │ │ │ ├── debugger_interface.mdx │ │ │ │ │ ├── debugging_a_program.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── starting_debugger.mdx │ │ │ │ ├── 15_enhanced_sql_and_other_misc_features │ │ │ │ │ ├── comment_command.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── logical_decoding.mdx │ │ │ │ │ └── obtaining_version_information.mdx │ │ │ │ ├── ecpgplus_guide │ │ │ │ │ ├── 02_overview.mdx │ │ │ │ │ ├── 03_using_embedded_sql.mdx │ │ │ │ │ ├── 04_using_descriptors.mdx │ │ │ │ │ ├── 05_building_executing_dynamic_sql_statements.mdx │ │ │ │ │ ├── 06_error_handling.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── installing_ecpgplus.mdx │ │ │ │ ├── epas_compat_spl │ │ │ │ │ ├── 02_spl_programs │ │ │ │ │ │ ├── 02_spl_block_structure.mdx │ │ │ │ │ │ ├── 03_anonymous_blocks.mdx │ │ │ │ │ │ ├── 04_procedures_overview │ │ │ │ │ │ │ ├── 01_creating_a_procedure.mdx │ │ │ │ │ │ │ ├── 02_calling_a_procedure.mdx │ │ │ │ │ │ │ ├── 03_deleting_a_procedure.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 05_functions_overview │ │ │ │ │ │ │ ├── 01_creating_a_function.mdx │ │ │ │ │ │ │ ├── 02_calling_a_function.mdx │ │ │ │ │ │ │ ├── 03_deleting_a_function.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 06_procedure_and_function_parameters │ │ │ │ │ │ │ ├── 01_positional_vs_named_parameter_notation.mdx │ │ │ │ │ │ │ ├── 02_parameter_modes.mdx │ │ │ │ │ │ │ ├── 03_using_default_values_in_parameters.mdx │ │ │ │ │ │ │ ├── declaring_parameters.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 07_subprograms_subprocedures_and_subfunctions │ │ │ │ │ │ │ ├── 01_creating_a_subprocedure.mdx │ │ │ │ │ │ │ ├── 02_creating_a_subfunction.mdx │ │ │ │ │ │ │ ├── 03_block_relationships.mdx │ │ │ │ │ │ │ ├── 04_invoking_subprograms.mdx │ │ │ │ │ │ │ ├── 05_using_forward_declarations.mdx │ │ │ │ │ │ │ ├── 06_overloading_subprograms.mdx │ │ │ │ │ │ │ ├── 07_accessing_subprogram_variables.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 08_compilation_errors_in_procedures_and_functions.mdx │ │ │ │ │ │ ├── 09_program_security │ │ │ │ │ │ │ ├── 01_execute_privilege.mdx │ │ │ │ │ │ │ ├── 02_database_object_name_resolution.mdx │ │ │ │ │ │ │ ├── 03_database_object_privileges.mdx │ │ │ │ │ │ │ ├── 04_definers_vs_invokers_rights.mdx │ │ │ │ │ │ │ ├── 05_security_example.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 03_variable_declarations │ │ │ │ │ │ ├── 01_declaring_a_variable.mdx │ │ │ │ │ │ ├── 02_using__type_in_variable_declarations.mdx │ │ │ │ │ │ ├── 03_using__row_type_in_record_declarations.mdx │ │ │ │ │ │ ├── 04_user_defined_record_types_and_record_variables.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 06_transaction_control │ │ │ │ │ │ ├── 01_commit.mdx │ │ │ │ │ │ ├── 02_rollback.mdx │ │ │ │ │ │ ├── 03_pragma_autonomous_transaction.mdx │ │ │ │ │ │ ├── about_transactions.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 07_dynamic_sql.mdx │ │ │ │ │ ├── 08_static_cursors │ │ │ │ │ │ ├── 01_declaring_a_cursor.mdx │ │ │ │ │ │ ├── 02_opening_a_cursor.mdx │ │ │ │ │ │ ├── 03_fetching_rows_from_a_cursor.mdx │ │ │ │ │ │ ├── 04_closing_a_cursor.mdx │ │ │ │ │ │ ├── 05_using__rowtype_with_cursors.mdx │ │ │ │ │ │ ├── 06_cursor_attributes │ │ │ │ │ │ │ ├── 01_isopen.mdx │ │ │ │ │ │ │ ├── 02_found.mdx │ │ │ │ │ │ │ ├── 03_notfound.mdx │ │ │ │ │ │ │ ├── 04_rowcount.mdx │ │ │ │ │ │ │ ├── 05_summary_of_cursor_states_and_attributes.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 07_cursor_for_loop.mdx │ │ │ │ │ │ ├── 08_parameterized_cursors.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 09_ref_cursors_and_cursor_variables │ │ │ │ │ │ ├── 01_ref_cursor_overview.mdx │ │ │ │ │ │ ├── 02_declaring_a_cursor_variable │ │ │ │ │ │ │ ├── 01_declaring_a_sys_refcursor_cursor_variable.mdx │ │ │ │ │ │ │ ├── 02_declaring_a_user_defined_ref_cursor_type_variable.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 03_opening_a_cursor_variable.mdx │ │ │ │ │ │ ├── 04_fetching_rows_from_a_cursor_variable.mdx │ │ │ │ │ │ ├── 05_closing_a_cursor_variable.mdx │ │ │ │ │ │ ├── 06_usage_restrictions.mdx │ │ │ │ │ │ ├── 07_examples │ │ │ │ │ │ │ ├── 01_returning_a_ref_cursor_from_a_function.mdx │ │ │ │ │ │ │ ├── 02_modularizing_cursor_operations.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 08_dynamic_queries_with_ref_cursors.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 10_collections │ │ │ │ │ │ ├── 01_associative_arrays.mdx │ │ │ │ │ │ ├── 02_nested_tables.mdx │ │ │ │ │ │ ├── 03_varrays.mdx │ │ │ │ │ │ ├── about_collections.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 12_working_with_collections │ │ │ │ │ │ ├── 01_table.mdx │ │ │ │ │ │ ├── 02_using_the_multiset_union_operator.mdx │ │ │ │ │ │ ├── 03_using_the_forall_statement.mdx │ │ │ │ │ │ ├── 04_using_the_bulk_collect_clause │ │ │ │ │ │ │ ├── 01_select_bulk_collect.mdx │ │ │ │ │ │ │ ├── 02_fetch_bulk_collect.mdx │ │ │ │ │ │ │ ├── 03_execute_immediate_bulk_collect.mdx │ │ │ │ │ │ │ ├── 04_returning_bulk_collect.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 05_errors_and_messages.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 13_triggers │ │ │ │ │ │ ├── 01_overview.mdx │ │ │ │ │ │ ├── 02_types_of_triggers.mdx │ │ │ │ │ │ ├── 03_creating_triggers.mdx │ │ │ │ │ │ ├── 04_trigger_variables.mdx │ │ │ │ │ │ ├── 05_transactions_and_exceptions.mdx │ │ │ │ │ │ ├── 06_compound_triggers.mdx │ │ │ │ │ │ ├── 07_trigger_examples │ │ │ │ │ │ │ ├── 01_before_statement_level_trigger.mdx │ │ │ │ │ │ │ ├── 02_after_statement_level_trigger.mdx │ │ │ │ │ │ │ ├── 03_before_row_level_trigger.mdx │ │ │ │ │ │ │ ├── 04_after_row_level_trigger.mdx │ │ │ │ │ │ │ ├── 05_instead_of_trigger.mdx │ │ │ │ │ │ │ ├── 06_compound_trigger.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 14_packages.mdx │ │ │ │ │ ├── 15_object_types_and_objects │ │ │ │ │ │ ├── 01_basic_object_concepts │ │ │ │ │ │ │ ├── 01_attributes.mdx │ │ │ │ │ │ │ ├── 02_methods.mdx │ │ │ │ │ │ │ ├── 03_overloading_methods.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 02_object_type_components │ │ │ │ │ │ │ ├── 01_object_type_specification_syntax.mdx │ │ │ │ │ │ │ ├── 02_object_type_body_syntax.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 03_creating_object_types │ │ │ │ │ │ │ ├── 01_member_methods.mdx │ │ │ │ │ │ │ ├── 02_static_methods.mdx │ │ │ │ │ │ │ ├── 03_constructor_methods.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 04_creating_object_instances.mdx │ │ │ │ │ │ ├── 05_referencing_an_object.mdx │ │ │ │ │ │ ├── 06_dropping_an_object_type.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── images │ │ │ │ │ │ ├── definer's_rights_package.png │ │ │ │ │ │ ├── definers_rights_package.png │ │ │ │ │ │ └── invokers_rights_programs.png │ │ │ │ │ └── index.mdx │ │ │ │ ├── epas_compat_table_partitioning │ │ │ │ │ ├── 01_oracle_compat_summary.mdx │ │ │ │ │ ├── 02_selecting_a_partition_type │ │ │ │ │ │ ├── 01_interval_range_partitioning.mdx │ │ │ │ │ │ ├── 02_automatic_list_partitioning.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 03_using_partition_pruning │ │ │ │ │ │ ├── 01_example_partition_pruning.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 05_handling_stray_values_in_a_list_or_range_partitioned_table │ │ │ │ │ │ ├── defining_a_default_partition.mdx │ │ │ │ │ │ ├── defining_a_maxvalue_partition.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 06_specifying_multiple_partitioning_keys_in_a_range_partitioned_table.mdx │ │ │ │ │ ├── 07_retrieving_information_about_a_partitioned_table │ │ │ │ │ │ └── index.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── index.mdx │ │ │ │ └── optimizing_code │ │ │ │ │ ├── 05_optimizer_hints │ │ │ │ │ ├── 01_default_optimization_modes.mdx │ │ │ │ │ ├── 02_access_method_hints.mdx │ │ │ │ │ ├── 03_specifying_a_join_order.mdx │ │ │ │ │ ├── 04_joining_relations_hints.mdx │ │ │ │ │ ├── 05_global_hints.mdx │ │ │ │ │ ├── 06_using_the_append_optimizer_hint.mdx │ │ │ │ │ ├── 07_parallelism_hints.mdx │ │ │ │ │ ├── 08_conflicting_hints.mdx │ │ │ │ │ ├── about_optimizer_hints.mdx │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── optimizing_code.mdx │ │ │ ├── database_administration │ │ │ │ ├── 01_configuration_parameters │ │ │ │ │ ├── 01_setting_new_parameters.mdx │ │ │ │ │ ├── 03_configuration_parameters_by_functionality │ │ │ │ │ │ ├── 01_top_performance_related_parameters │ │ │ │ │ │ │ ├── 01_shared_buffers.mdx │ │ │ │ │ │ │ ├── 02_work_mem.mdx │ │ │ │ │ │ │ ├── 03_maintenance_work_mem.mdx │ │ │ │ │ │ │ ├── 04_wal_buffers.mdx │ │ │ │ │ │ │ ├── 05_checkpoint_segments.mdx │ │ │ │ │ │ │ ├── 06_checkpoint_completion_target.mdx │ │ │ │ │ │ │ ├── 07_checkpoint_timeout.mdx │ │ │ │ │ │ │ ├── 08_max_wal_size.mdx │ │ │ │ │ │ │ ├── 09_min_wal_size.mdx │ │ │ │ │ │ │ ├── 10_bgwriter_delay.mdx │ │ │ │ │ │ │ ├── 11_seq_page_cost.mdx │ │ │ │ │ │ │ ├── 12_random_page_cost.mdx │ │ │ │ │ │ │ ├── 13_effective_cache_size.mdx │ │ │ │ │ │ │ ├── 14_synchronous_commit.mdx │ │ │ │ │ │ │ ├── 15_edb_max_spins_per_delay.mdx │ │ │ │ │ │ │ ├── 16_pg_prewarm.autoprewarm.mdx │ │ │ │ │ │ │ ├── 17_pg_prewarm.autoprewarm_interval.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 02_resource_usage_memory.mdx │ │ │ │ │ │ ├── 03_resource_usage_edb_resource_manager.mdx │ │ │ │ │ │ ├── 04_query_tuning.mdx │ │ │ │ │ │ ├── 05_query_tuning_planner_method_configuration.mdx │ │ │ │ │ │ ├── 06_reporting_and_logging_what_to_log.mdx │ │ │ │ │ │ ├── 07_auditing_settings │ │ │ │ │ │ │ ├── 01_edb_audit.mdx │ │ │ │ │ │ │ ├── 02_edb_audit_directory.mdx │ │ │ │ │ │ │ ├── 03_edb_audit_filename.mdx │ │ │ │ │ │ │ ├── 04_edb_audit_rotation_day.mdx │ │ │ │ │ │ │ ├── 05_edb_audit_rotation_size.mdx │ │ │ │ │ │ │ ├── 06_edb_audit_rotation_seconds.mdx │ │ │ │ │ │ │ ├── 07_edb_audit_connect.mdx │ │ │ │ │ │ │ ├── 08_edb_audit_disconnect.mdx │ │ │ │ │ │ │ ├── 09_edb_audit_statement.mdx │ │ │ │ │ │ │ ├── 10_edb_audit_tag.mdx │ │ │ │ │ │ │ ├── 11_edb_audit_destination.mdx │ │ │ │ │ │ │ ├── 12_edb_log_every_bulk_value.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 08_ccd_locale_and_formatting.mdx │ │ │ │ │ │ ├── 09_ccd_statement_behaviour.mdx │ │ │ │ │ │ ├── 10_ccd_other_defaults.mdx │ │ │ │ │ │ ├── 11_compatibility_options.mdx │ │ │ │ │ │ ├── 12_customized_options.mdx │ │ │ │ │ │ ├── 13_ungrouped.mdx │ │ │ │ │ │ ├── 14_audit_archiver.mdx │ │ │ │ │ │ ├── attribute_descriptions.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 02_edb_loader │ │ │ │ │ ├── building_the_control_file │ │ │ │ │ │ ├── control_file_examples.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── data_loading_methods.mdx │ │ │ │ │ ├── edb_loader_overview_and_restrictions.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── invoking_edb_loader │ │ │ │ │ │ ├── conventional_path_load.mdx │ │ │ │ │ │ ├── direct_path_load.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── parallel_direct_path_load.mdx │ │ │ │ │ │ ├── performing_remote_loading.mdx │ │ │ │ │ │ └── running_edb_loader.mdx │ │ │ │ │ └── using_edb_loader.mdx │ │ │ │ ├── 10_edb_resource_manager │ │ │ │ │ ├── cpu_usage_throttling.mdx │ │ │ │ │ ├── creating_resource_groups.mdx │ │ │ │ │ ├── dirty_buffer_throttling.mdx │ │ │ │ │ ├── edb_resource_manager_key_concepts.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 14_edb_clone_schema │ │ │ │ │ ├── checking_the_status.mdx │ │ │ │ │ ├── cloning_with_a_non_super_user.mdx │ │ │ │ │ ├── copying_a_remote_schema.mdx │ │ │ │ │ ├── copying_a_schema.mdx │ │ │ │ │ ├── edb_clone_schema_overview.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── performing_cleanup_tasks.mdx │ │ │ │ │ └── setting_up_edb_clone_schema.mdx │ │ │ │ └── index.mdx │ │ │ ├── epas_platform_support │ │ │ │ └── index.mdx │ │ │ ├── epas_rel_notes │ │ │ │ ├── epas16_10_0_rel_notes.mdx │ │ │ │ ├── epas16_11_0_rel_notes.mdx │ │ │ │ ├── epas16_2_0_rel_notes.mdx │ │ │ │ ├── epas16_3_0_rel_notes.mdx │ │ │ │ ├── epas16_4_0_rel_notes.mdx │ │ │ │ ├── epas16_4_1_rel_notes.mdx │ │ │ │ ├── epas16_5_0_rel_notes.mdx │ │ │ │ ├── epas16_6_0_rel_notes.mdx │ │ │ │ ├── epas16_7_0_rel_notes.mdx │ │ │ │ ├── epas16_8_0_rel_notes.mdx │ │ │ │ ├── epas16_9_0_rel_notes.mdx │ │ │ │ ├── epas16_rel_notes.mdx │ │ │ │ └── index.mdx │ │ │ ├── epas_security_guide │ │ │ │ ├── 02_protecting_against_sql_injection_attacks │ │ │ │ │ ├── 01_sql_protect_overview.mdx │ │ │ │ │ ├── 02_configuring_sql_protect.mdx │ │ │ │ │ ├── 03_common_maintenance_operations.mdx │ │ │ │ │ ├── 04_backing_up_restoring_sql_protect.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 03_edb_wrap │ │ │ │ │ ├── edb_wrap_key_concepts.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── obfuscating_source_code.mdx │ │ │ │ ├── 03_virtual_private_database.mdx │ │ │ │ ├── 04_profile_management │ │ │ │ │ ├── 01_creating_a_new_profile │ │ │ │ │ │ ├── 01_creating_a_password_function.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 02_altering_a_profile.mdx │ │ │ │ │ ├── 03_dropping_a_profile.mdx │ │ │ │ │ ├── 04_associating_a_profile_with_an_existing_role.mdx │ │ │ │ │ ├── 05_unlocking_a_locked_account.mdx │ │ │ │ │ ├── 06_creating_a_new_role_associated_with_a_profile.mdx │ │ │ │ │ ├── 07_backing_up_profile_management_functions.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── profile_overview.mdx │ │ │ │ ├── 04_sslutils.mdx │ │ │ │ ├── 05_data_redaction │ │ │ │ │ ├── creating_a_data_redaction_policy.mdx │ │ │ │ │ ├── data_redaction_key_concepts.mdx │ │ │ │ │ ├── data_redaction_system_catalogs.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── modifying_a_data_redaction_policy.mdx │ │ │ │ │ └── removing_a_data_redaction_policy.mdx │ │ │ │ ├── 05_edb_audit_logging │ │ │ │ │ ├── 02_selecting_sql_statements_to_audit.mdx │ │ │ │ │ ├── 03_enabling_audit_logging.mdx │ │ │ │ │ ├── 05_using_error_codes_to_filter_audit_logs.mdx │ │ │ │ │ ├── 06_using_command_tags_to_filter_audit_logs.mdx │ │ │ │ │ ├── 07_redacting_passwords_from_audit_logs.mdx │ │ │ │ │ ├── 08_audit_log_archiving.mdx │ │ │ │ │ ├── 09_object_auditing.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── index.mdx │ │ │ │ └── tde_feature.mdx │ │ │ ├── fundamentals │ │ │ │ ├── epas_fundamentals │ │ │ │ │ ├── benefits_epas.mdx │ │ │ │ │ ├── epas_compat_ora_dev_guide │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── terminology.mdx │ │ │ │ ├── index.mdx │ │ │ │ └── sql_fundamentals │ │ │ │ │ ├── 02_about_the_examples_used_in_this_guide.mdx │ │ │ │ │ ├── 02_conventions.mdx │ │ │ │ │ ├── 02_sql_tutorial │ │ │ │ │ ├── 01_sample_database │ │ │ │ │ │ ├── 01_sample_database_installation.mdx │ │ │ │ │ │ ├── 02_sample_database_description.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 02_creating_a_new_table.mdx │ │ │ │ │ ├── 03_populating_a_table_with_rows.mdx │ │ │ │ │ ├── 04_querying_a_table.mdx │ │ │ │ │ ├── 05_joins_between_tables.mdx │ │ │ │ │ ├── 06_aggregate_functions.mdx │ │ │ │ │ ├── 07_updates.mdx │ │ │ │ │ ├── 08_deletions.mdx │ │ │ │ │ ├── 09_the_sql_language.mdx │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 03_advanced_concepts │ │ │ │ │ ├── 01_views.mdx │ │ │ │ │ ├── 02_foreign_keys.mdx │ │ │ │ │ ├── 03_the_rownum_pseudo_column.mdx │ │ │ │ │ ├── 04_synonyms.mdx │ │ │ │ │ ├── 05_hierarchical_queries │ │ │ │ │ │ ├── 01_defining_the_parent_child_relationship.mdx │ │ │ │ │ │ ├── 02_selecting_the_root_nodes.mdx │ │ │ │ │ │ ├── 03_organization_tree_in_the_sample_application.mdx │ │ │ │ │ │ ├── 04_node_level.mdx │ │ │ │ │ │ ├── 05_ordering_the_siblings.mdx │ │ │ │ │ │ ├── 06_retrieving_the_root_node_with_connect_by_root.mdx │ │ │ │ │ │ ├── 07_retrieving_a_path_with_sys_connect_by_path.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 06_multidimensional_analysis │ │ │ │ │ │ ├── 01_rollup_extension.mdx │ │ │ │ │ │ ├── 02_cube_extension.mdx │ │ │ │ │ │ ├── 03_grouping_sets_extension.mdx │ │ │ │ │ │ ├── 04_grouping_function.mdx │ │ │ │ │ │ ├── 05_grouping_id_function.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 03_examples_used.mdx │ │ │ │ │ └── index.mdx │ │ │ ├── images │ │ │ │ ├── accessing_configuration_files.png │ │ │ │ ├── acknowledging_components_removed.png │ │ │ │ ├── additional_configuration.png │ │ │ │ ├── additional_directories.png │ │ │ │ ├── advanced_server_dialect.png │ │ │ │ ├── advanced_server_installation_completion.png │ │ │ │ ├── advanced_server_installer_welcome.png │ │ │ │ ├── advanced_server_services.png │ │ │ │ ├── advanced_server_startup.png │ │ │ │ ├── advanced_server_uninstaller.png │ │ │ │ ├── configuring_advanced_server_to_use_trust_authentication.png │ │ │ │ ├── connecting_server.png │ │ │ │ ├── connecting_to_advanced_server_database.png │ │ │ │ ├── connecting_to_server.png │ │ │ │ ├── definer's_rights_package.png │ │ │ │ ├── download-complete-confirmation.png │ │ │ │ ├── download_complete.png │ │ │ │ ├── dynatune_dynamic_tuning_server_utilization.png │ │ │ │ ├── dynatune_dynamic_tuning_workload_profile.png │ │ │ │ ├── ecpg_path.png │ │ │ │ ├── employee_organization_hierarchy.png │ │ │ │ ├── enterprisedb_license_agreement.png │ │ │ │ ├── epas_tools_utility_edb_wrap.png │ │ │ │ ├── installation_directory.png │ │ │ │ ├── installing_advanced_server.png │ │ │ │ ├── invokers_rights_programs.png │ │ │ │ ├── open_client_library.png │ │ │ │ ├── parameters_tab.png │ │ │ │ ├── password_window.png │ │ │ │ ├── pgadmin4_client_dashboard.png │ │ │ │ ├── pre_installation_summary.png │ │ │ │ ├── program_body.png │ │ │ │ ├── proxy_servers.png │ │ │ │ ├── ready_to_install.png │ │ │ │ ├── sample_database_tables.png │ │ │ │ ├── select_components.png │ │ │ │ ├── selected-packages-summary-window.png │ │ │ │ ├── setting_global_breakpoint_from_left-hand_margin.png │ │ │ │ ├── setup_wizard.png │ │ │ │ ├── stack_tab.png │ │ │ │ ├── stackbuilder-plus-confirms-the-completed-installation.png │ │ │ │ ├── stackbuilder_plus_completed_installation.png │ │ │ │ ├── stackbuilder_plus_module_selection.png │ │ │ │ ├── stackbuilder_plus_welcome.png │ │ │ │ ├── summary-window-displaying-selected-packages.png │ │ │ │ ├── the-proxy-servers-dialog.png │ │ │ │ ├── the-stackbuilder-plus-module-selection-window.png │ │ │ │ ├── the-stackbuilder-plus-welcome.png │ │ │ │ └── uninstallation_complete.png │ │ │ ├── index.mdx │ │ │ ├── installing │ │ │ │ ├── index.mdx │ │ │ │ ├── linux_arm64 │ │ │ │ │ ├── epas_debian_12.mdx │ │ │ │ │ ├── epas_rhel_9.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── linux_install_details │ │ │ │ │ ├── component_locations.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── installing_epas_using_local_repository.mdx │ │ │ │ │ ├── managing_an_advanced_server_installation │ │ │ │ │ │ ├── configuring_a_package_installation.mdx │ │ │ │ │ │ ├── connecting_to_epas.mdx │ │ │ │ │ │ ├── exclude_include_packages.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── modifying_the_data_directory_location.mdx │ │ │ │ │ │ ├── specifying_cluster_options.mdx │ │ │ │ │ │ ├── starting_and_stopping_services.mdx │ │ │ │ │ │ └── starting_multiple_postmasters.mdx │ │ │ │ │ ├── rpm_packages.mdx │ │ │ │ │ └── updating_an_rpm_installation.mdx │ │ │ │ ├── linux_ppc64le │ │ │ │ │ ├── epas_rhel_8.mdx │ │ │ │ │ ├── epas_rhel_9.mdx │ │ │ │ │ ├── epas_sles_15.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── linux_x86_64 │ │ │ │ │ ├── epas_debian_11.mdx │ │ │ │ │ ├── epas_debian_12.mdx │ │ │ │ │ ├── epas_other_linux_8.mdx │ │ │ │ │ ├── epas_other_linux_9.mdx │ │ │ │ │ ├── epas_rhel_8.mdx │ │ │ │ │ ├── epas_rhel_9.mdx │ │ │ │ │ ├── epas_sles_15.mdx │ │ │ │ │ ├── epas_ubuntu_22.mdx │ │ │ │ │ ├── epas_ubuntu_24.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── troubleshooting │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── linux_troubleshooting │ │ │ │ │ │ ├── enabling_core_dump.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── installation_troubleshooting_linux.mdx │ │ │ │ │ └── windows_troubleshooting.mdx │ │ │ │ ├── uninstalling │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── linux_uninstall.mdx │ │ │ │ │ └── windows_uninstall.mdx │ │ │ │ └── windows │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── installing_advanced_server_with_the_interactive_installer │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── invoking_the_graphical_installer_from_the_command_line │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── performing_an_installation_with_limited_privileges.mdx │ │ │ │ │ │ ├── performing_an_unattended_installation.mdx │ │ │ │ │ │ └── reference_command_line_options.mdx │ │ │ │ │ ├── performing_a_graphical_installation_on_windows.mdx │ │ │ │ │ ├── setting_cluster_preferences.mdx │ │ │ │ │ └── using_stackbuilder_plus.mdx │ │ │ │ │ └── managing_an_advanced_server_installation │ │ │ │ │ ├── configuring_epas.mdx │ │ │ │ │ ├── controlling_server_startup_behavior_on_windows.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── starting_and_stopping_epas.mdx │ │ │ │ │ ├── using_pg_ctl_to_control_advanced_server.mdx │ │ │ │ │ └── using_the_windows_services_applet.mdx │ │ │ ├── managing_performance │ │ │ │ ├── 03_sql_profiler.mdx │ │ │ │ ├── 04_dynamic_runtime_instrumentation_tools_architecture_DRITA │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── performance_tuning_recommendations.mdx │ │ │ │ │ ├── simulating_statspack_reports.mdx │ │ │ │ │ ├── taking_a_snapshot.mdx │ │ │ │ │ └── using_drita_functions.mdx │ │ │ │ ├── evaluating_wait_states.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── query_advisor.mdx │ │ │ │ └── using_dynatune.mdx │ │ │ ├── planning │ │ │ │ ├── configuration_mode.mdx │ │ │ │ ├── deployment_options │ │ │ │ │ └── index.mdx │ │ │ │ ├── index.mdx │ │ │ │ └── planning_prerequisites │ │ │ │ │ ├── epas_limitations │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── epas_requirements │ │ │ │ │ └── index.mdx │ │ │ │ │ └── index.mdx │ │ │ ├── reference │ │ │ │ ├── application_programmer_reference │ │ │ │ │ ├── 01_table_partitioning_views_reference │ │ │ │ │ │ ├── 01_all_part_tables.mdx │ │ │ │ │ │ ├── 02_all_tab_partitions.mdx │ │ │ │ │ │ ├── 03_all_tab_subpartitions.mdx │ │ │ │ │ │ ├── 04_all_part_key_columns.mdx │ │ │ │ │ │ ├── 05_all_subpart_key_columns.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 03_system_catalog_tables.mdx │ │ │ │ │ ├── 07_reference │ │ │ │ │ │ ├── c_preprocessor_directives.mdx │ │ │ │ │ │ ├── ecpgplus_statements.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── sqlda_structure.mdx │ │ │ │ │ │ ├── supported_c_data_types.mdx │ │ │ │ │ │ └── type_codes.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── stored_procedural_language_reference │ │ │ │ │ │ ├── 01_basic_spl_elements │ │ │ │ │ │ ├── 02_case_sensitivity.mdx │ │ │ │ │ │ ├── 03_identifiers.mdx │ │ │ │ │ │ ├── 04_qualifiers.mdx │ │ │ │ │ │ ├── 05_constants.mdx │ │ │ │ │ │ ├── 06_user_defined_pl_sql_subtypes.mdx │ │ │ │ │ │ ├── 07_character.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 04_basic_statements │ │ │ │ │ │ ├── 01_assignment.mdx │ │ │ │ │ │ ├── 02_delete.mdx │ │ │ │ │ │ ├── 03_insert.mdx │ │ │ │ │ │ ├── 04_null.mdx │ │ │ │ │ │ ├── 05_using_the_returning_into_clause.mdx │ │ │ │ │ │ ├── 06_select_into.mdx │ │ │ │ │ │ ├── 07_update.mdx │ │ │ │ │ │ ├── 08_obtaining_the_result_status.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 05_control_structures │ │ │ │ │ │ ├── 01_if_statement │ │ │ │ │ │ │ ├── 01_if_then.mdx │ │ │ │ │ │ │ ├── 02_if_then_else.mdx │ │ │ │ │ │ │ ├── 03_if_then_else_if.mdx │ │ │ │ │ │ │ ├── 04_if_then_elseif_else.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 02_return_statement.mdx │ │ │ │ │ │ ├── 03_goto_statement.mdx │ │ │ │ │ │ ├── 04_case_expression │ │ │ │ │ │ │ ├── 01_selector_case_expression.mdx │ │ │ │ │ │ │ ├── 02_searched_case_expression.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 05_case_statement │ │ │ │ │ │ │ ├── 01_selector_case_statement.mdx │ │ │ │ │ │ │ ├── 02_searched_case_statement.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 06_loops │ │ │ │ │ │ │ ├── 01_loop.mdx │ │ │ │ │ │ │ ├── 02_exit.mdx │ │ │ │ │ │ │ ├── 03_continue.mdx │ │ │ │ │ │ │ ├── 04_while.mdx │ │ │ │ │ │ │ ├── 05_for_integer_variant.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 07_exception_handling.mdx │ │ │ │ │ │ ├── 08_user_defined_exceptions.mdx │ │ │ │ │ │ ├── 09_pragma_exception_init.mdx │ │ │ │ │ │ ├── 10_raise_application_error.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 11_collection_methods │ │ │ │ │ │ ├── 01_count.mdx │ │ │ │ │ │ ├── 02_deletes.mdx │ │ │ │ │ │ ├── 03_exists.mdx │ │ │ │ │ │ ├── 04_extend.mdx │ │ │ │ │ │ ├── 05_first.mdx │ │ │ │ │ │ ├── 06_last.mdx │ │ │ │ │ │ ├── 07_limit.mdx │ │ │ │ │ │ ├── 08_next.mdx │ │ │ │ │ │ ├── 09_prior.mdx │ │ │ │ │ │ ├── 10_trim.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 17_advanced_server_keywords.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ ├── database_administrator_reference │ │ │ │ │ ├── 01_audit_logging_configuration_parameters.mdx │ │ │ │ │ ├── 01_introduction │ │ │ │ │ │ ├── 01_edb_redwood_date.mdx │ │ │ │ │ │ ├── 02_edb_redwood_raw_names.mdx │ │ │ │ │ │ ├── 03_edb_redwood_strings.mdx │ │ │ │ │ │ ├── 04_edb_stmt_level_tx.mdx │ │ │ │ │ │ ├── 05_oracle_home.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 02_summary_of_configuration_parameters.mdx │ │ │ │ │ ├── 04_audit_log_file.mdx │ │ │ │ │ ├── edb_loader_control_file_parameters.mdx │ │ │ │ │ ├── edb_resource_manager_system_catalogs.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── oracle_compatibility_reference │ │ │ │ │ ├── 01_dblink_ora_functions_and_procedures │ │ │ │ │ │ ├── 01_dblink_ora_connect.mdx │ │ │ │ │ │ ├── 02_dblink_ora_status.mdx │ │ │ │ │ │ ├── 03_dblink_ora_disconnect.mdx │ │ │ │ │ │ ├── 04_dblink_ora_record.mdx │ │ │ │ │ │ ├── 05_dblink_ora_call.mdx │ │ │ │ │ │ ├── 06_dblink_ora_exec.mdx │ │ │ │ │ │ ├── 07_dblink_ora_copy.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 04_partitioning_commands_compatible_with_oracle_databases │ │ │ │ │ │ ├── 01_create_table_partition_by │ │ │ │ │ │ │ ├── 01_example_partition_by_list.mdx │ │ │ │ │ │ │ ├── 02_example_automatic_list_partition.mdx │ │ │ │ │ │ │ ├── 03_example_partition_by_range.mdx │ │ │ │ │ │ │ ├── 04_example_interval_range_partition.mdx │ │ │ │ │ │ │ ├── 05_example_partition_by_hash.mdx │ │ │ │ │ │ │ ├── 06_example_partitions_number.mdx │ │ │ │ │ │ │ ├── 07_example_partition_by_range_subpartition_by_list.mdx │ │ │ │ │ │ │ ├── 08_example_creating_unique_index.mdx │ │ │ │ │ │ │ ├── 09_example_subpartition_template.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 02_alter_table_add_partition │ │ │ │ │ │ │ ├── 01_example_adding_a_partition_to_a_list_partitioned_table.mdx │ │ │ │ │ │ │ ├── 02_example_adding_a_partition_to_a_range_partitioned_table.mdx │ │ │ │ │ │ │ ├── 03_example_adding_a_partition_with_subpartitions_number.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 03_alter_table_add_subpartition │ │ │ │ │ │ │ ├── 01_example_adding_a_subpartition_to_a_list_range_partitioned_table.mdx │ │ │ │ │ │ │ ├── 02_example_adding_a_subpartition_to_a_range_list_partitioned_table.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 04_alter_table_split_partition │ │ │ │ │ │ │ ├── 01_example_splitting_a_list_partition.mdx │ │ │ │ │ │ │ ├── 02_example_splitting_a_range_partition.mdx │ │ │ │ │ │ │ ├── 03_example_splitting_a_range_list_partition.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 05_alter_table_split_subpartition │ │ │ │ │ │ │ ├── 01_example_splitting_a_list_subpartition.mdx │ │ │ │ │ │ │ ├── 02_example_splitting_a_range_subpartition.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 06_alter_table_exchange_partition │ │ │ │ │ │ │ ├── 01_example_exchanging_a_table_for_a_partition.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 07_alter_table_move_partition │ │ │ │ │ │ │ ├── 01_example_moving_a_partition_to_a_different_tablespace.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 08_alter_table_rename_partition │ │ │ │ │ │ │ ├── 01_example_renaming_a_partition.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 09_alter_table_set_interval │ │ │ │ │ │ │ ├── 01_example_setting_an_interval_range_partition.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 10_alter_table_set_partitioning_automatic │ │ │ │ │ │ │ ├── 01_example_setting_an_automatic_list_partition.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 11_alter_table_set_subpartition_template │ │ │ │ │ │ │ ├── 01_example_setting_a_subpartition_template.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 12_drop_table.mdx │ │ │ │ │ │ ├── 13_alter_table_drop_partition │ │ │ │ │ │ │ ├── 01_example_deleting_a_partition.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 14_alter_table_drop_subpartition │ │ │ │ │ │ │ ├── 01_example_deleting_a_subpartition.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 15_truncate_table │ │ │ │ │ │ │ ├── 01_example_emptying_a_table.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 16_alter_table_truncate_partition │ │ │ │ │ │ │ ├── 01_example_emptying_a_partition.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 17_alter_table_truncate_subpartition │ │ │ │ │ │ │ ├── 01_example_emptying_a_subpartition.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 18_accessing_partition_table │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── limitations.mdx │ │ │ │ │ ├── epas_compat_bip_guide │ │ │ │ │ │ ├── 03_built-in_packages │ │ │ │ │ │ │ ├── 01_dbms_alert.mdx │ │ │ │ │ │ │ ├── 02_dbms_aq │ │ │ │ │ │ │ │ ├── 01_enqueue.mdx │ │ │ │ │ │ │ │ ├── 02_dequeue.mdx │ │ │ │ │ │ │ │ ├── 03_register.mdx │ │ │ │ │ │ │ │ ├── 04_unregister.mdx │ │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ ├── 03_dbms_aqadm │ │ │ │ │ │ │ │ ├── 01_alter_queue.mdx │ │ │ │ │ │ │ │ ├── 02_alter_queue_table.mdx │ │ │ │ │ │ │ │ ├── 03_create_queue.mdx │ │ │ │ │ │ │ │ ├── 04_create_queue_table.mdx │ │ │ │ │ │ │ │ ├── 05_drop_queue.mdx │ │ │ │ │ │ │ │ ├── 06_drop_queue_table.mdx │ │ │ │ │ │ │ │ ├── 07_purge_queue_table.mdx │ │ │ │ │ │ │ │ ├── 08_start_queue.mdx │ │ │ │ │ │ │ │ ├── 09_stop_queue.mdx │ │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ ├── 04_dbms_crypto │ │ │ │ │ │ │ │ ├── 01_decrypt.mdx │ │ │ │ │ │ │ │ ├── 02_encrypt.mdx │ │ │ │ │ │ │ │ ├── 03_hash.mdx │ │ │ │ │ │ │ │ ├── 04_mac.mdx │ │ │ │ │ │ │ │ ├── 05_randombytes.mdx │ │ │ │ │ │ │ │ ├── 06_randominteger.mdx │ │ │ │ │ │ │ │ ├── 07_randomnumber.mdx │ │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ ├── 05_dbms_job │ │ │ │ │ │ │ │ ├── 01_broken.mdx │ │ │ │ │ │ │ │ ├── 02_change.mdx │ │ │ │ │ │ │ │ ├── 03_interval.mdx │ │ │ │ │ │ │ │ ├── 04_next_date.mdx │ │ │ │ │ │ │ │ ├── 05_remove.mdx │ │ │ │ │ │ │ │ ├── 06_run.mdx │ │ │ │ │ │ │ │ ├── 07_submit.mdx │ │ │ │ │ │ │ │ ├── 08_what.mdx │ │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ ├── 06_dbms_lob │ │ │ │ │ │ │ │ ├── 01_append.mdx │ │ │ │ │ │ │ │ ├── 02_compare.mdx │ │ │ │ │ │ │ │ ├── 03_converttoblob.mdx │ │ │ │ │ │ │ │ ├── 04_converttoclob.mdx │ │ │ │ │ │ │ │ ├── 05_copy.mdx │ │ │ │ │ │ │ │ ├── 06_erase.mdx │ │ │ │ │ │ │ │ ├── 07_get_storage_limit.mdx │ │ │ │ │ │ │ │ ├── 08_getlength.mdx │ │ │ │ │ │ │ │ ├── 09_instr.mdx │ │ │ │ │ │ │ │ ├── 10_read.mdx │ │ │ │ │ │ │ │ ├── 11_substr.mdx │ │ │ │ │ │ │ │ ├── 12_trim.mdx │ │ │ │ │ │ │ │ ├── 13_write.mdx │ │ │ │ │ │ │ │ ├── 14_writeappend.mdx │ │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ ├── 07_dbms_lock.mdx │ │ │ │ │ │ │ ├── 08_dbms_mview │ │ │ │ │ │ │ │ ├── 01_get_mv_dependencies.mdx │ │ │ │ │ │ │ │ ├── 02_refresh.mdx │ │ │ │ │ │ │ │ ├── 03_refresh_all_mviews.mdx │ │ │ │ │ │ │ │ ├── 04_refresh_dependent.mdx │ │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ ├── 09_dbms_output.mdx │ │ │ │ │ │ │ ├── 10_dbms_pipe │ │ │ │ │ │ │ │ ├── 01_create_pipe.mdx │ │ │ │ │ │ │ │ ├── 02_next_item_pipe.mdx │ │ │ │ │ │ │ │ ├── 03_pack_message.mdx │ │ │ │ │ │ │ │ ├── 04_purge.mdx │ │ │ │ │ │ │ │ ├── 05_receive_message.mdx │ │ │ │ │ │ │ │ ├── 06_remove_pipe.mdx │ │ │ │ │ │ │ │ ├── 07_reset_buffer.mdx │ │ │ │ │ │ │ │ ├── 08_send_message.mdx │ │ │ │ │ │ │ │ ├── 09_unique_session_name.mdx │ │ │ │ │ │ │ │ ├── 10_unpack_message.mdx │ │ │ │ │ │ │ │ ├── 11_comprehensive_example.mdx │ │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ ├── 10_dbms_privilege_capture.mdx │ │ │ │ │ │ │ ├── 11_dbms_profiler.mdx │ │ │ │ │ │ │ ├── 12_dbms_random.mdx │ │ │ │ │ │ │ ├── 13_dbms_redact.mdx │ │ │ │ │ │ │ ├── 14_dbms_rls.mdx │ │ │ │ │ │ │ ├── 15_dbms_scheduler │ │ │ │ │ │ │ │ ├── 01_using_calendar_syntax_to_specify_a_repeating_interval.mdx │ │ │ │ │ │ │ │ ├── 02_create_job.mdx │ │ │ │ │ │ │ │ ├── 03_create_program.mdx │ │ │ │ │ │ │ │ ├── 04_create_schedule.mdx │ │ │ │ │ │ │ │ ├── 05_define_program_argument.mdx │ │ │ │ │ │ │ │ ├── 06_dbms_scheduler_disable.mdx │ │ │ │ │ │ │ │ ├── 07_drop_job.mdx │ │ │ │ │ │ │ │ ├── 08_drop_program.mdx │ │ │ │ │ │ │ │ ├── 09_drop_program_argument.mdx │ │ │ │ │ │ │ │ ├── 10_drop_schedule.mdx │ │ │ │ │ │ │ │ ├── 11_dbms_scheduler_enable.mdx │ │ │ │ │ │ │ │ ├── 12_evaluate_calendar_string.mdx │ │ │ │ │ │ │ │ ├── 13_run_job.mdx │ │ │ │ │ │ │ │ ├── 14_set_job_argument_value.mdx │ │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ ├── 16_dbms_session.mdx │ │ │ │ │ │ │ ├── 17_dbms_sql │ │ │ │ │ │ │ │ ├── 001_bind_array.mdx │ │ │ │ │ │ │ │ ├── 01_bind_variable.mdx │ │ │ │ │ │ │ │ ├── 02_bind_variable_char.mdx │ │ │ │ │ │ │ │ ├── 03_bind_variable_raw.mdx │ │ │ │ │ │ │ │ ├── 04_close_cursor.mdx │ │ │ │ │ │ │ │ ├── 05_column_value.mdx │ │ │ │ │ │ │ │ ├── 06_column_value_char.mdx │ │ │ │ │ │ │ │ ├── 07_column_value_raw.mdx │ │ │ │ │ │ │ │ ├── 07a_column_value_long.mdx │ │ │ │ │ │ │ │ ├── 07b_column_value_rowid.mdx │ │ │ │ │ │ │ │ ├── 07c_define_array.mdx │ │ │ │ │ │ │ │ ├── 08_define_column.mdx │ │ │ │ │ │ │ │ ├── 09_define_column_char.mdx │ │ │ │ │ │ │ │ ├── 10_define_column_raw.mdx │ │ │ │ │ │ │ │ ├── 10a_define_column_long.mdx │ │ │ │ │ │ │ │ ├── 10b_define_column_rowid.mdx │ │ │ │ │ │ │ │ ├── 11_describe_columns.mdx │ │ │ │ │ │ │ │ ├── 11a_describe_columns2.mdx │ │ │ │ │ │ │ │ ├── 11b_describe_columns3.mdx │ │ │ │ │ │ │ │ ├── 12_execute.mdx │ │ │ │ │ │ │ │ ├── 13_execute_and_fetch.mdx │ │ │ │ │ │ │ │ ├── 14_fetch_rows.mdx │ │ │ │ │ │ │ │ ├── 15_is_open.mdx │ │ │ │ │ │ │ │ ├── 16_last_row_count.mdx │ │ │ │ │ │ │ │ ├── 17_open_cursor.mdx │ │ │ │ │ │ │ │ ├── 18_parse.mdx │ │ │ │ │ │ │ │ ├── 19_to_cursor_number.mdx │ │ │ │ │ │ │ │ ├── 20_to_refcursor.mdx │ │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ ├── 18_dbms_utility.mdx │ │ │ │ │ │ │ ├── 19_utl_encode │ │ │ │ │ │ │ │ ├── 01_base64_decode.mdx │ │ │ │ │ │ │ │ ├── 02_base64_encode.mdx │ │ │ │ │ │ │ │ ├── 03_mimeheader_decode.mdx │ │ │ │ │ │ │ │ ├── 04_mimeheader_encode.mdx │ │ │ │ │ │ │ │ ├── 05_quoted_printable_decode.mdx │ │ │ │ │ │ │ │ ├── 06_quoted_printable_encode.mdx │ │ │ │ │ │ │ │ ├── 07_text_decode.mdx │ │ │ │ │ │ │ │ ├── 08_text_encode.mdx │ │ │ │ │ │ │ │ ├── 09_uudecode.mdx │ │ │ │ │ │ │ │ ├── 10_uuencode.mdx │ │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ ├── 20_utl_file.mdx │ │ │ │ │ │ │ ├── 21_utl_http.mdx │ │ │ │ │ │ │ ├── 22_utl_mail.mdx │ │ │ │ │ │ │ ├── 23_utl_raw.mdx │ │ │ │ │ │ │ ├── 24_utl_smtp.mdx │ │ │ │ │ │ │ ├── 25_utl_url.mdx │ │ │ │ │ │ │ ├── htp_and_htf │ │ │ │ │ │ │ │ ├── address.mdx │ │ │ │ │ │ │ │ ├── anchor.mdx │ │ │ │ │ │ │ │ ├── applet.mdx │ │ │ │ │ │ │ │ ├── area.mdx │ │ │ │ │ │ │ │ ├── base.mdx │ │ │ │ │ │ │ │ ├── basefont.mdx │ │ │ │ │ │ │ │ ├── bgsound.mdx │ │ │ │ │ │ │ │ ├── big.mdx │ │ │ │ │ │ │ │ ├── blockquote.mdx │ │ │ │ │ │ │ │ ├── body.mdx │ │ │ │ │ │ │ │ ├── bold.mdx │ │ │ │ │ │ │ │ ├── br_and_nl.mdx │ │ │ │ │ │ │ │ ├── caption.mdx │ │ │ │ │ │ │ │ ├── center.mdx │ │ │ │ │ │ │ │ ├── centeropen_and_centerclose.mdx │ │ │ │ │ │ │ │ ├── cite.mdx │ │ │ │ │ │ │ │ ├── code.mdx │ │ │ │ │ │ │ │ ├── comment.mdx │ │ │ │ │ │ │ │ ├── dfn.mdx │ │ │ │ │ │ │ │ ├── dirlist.mdx │ │ │ │ │ │ │ │ ├── div.mdx │ │ │ │ │ │ │ │ ├── dlistdef.mdx │ │ │ │ │ │ │ │ ├── dlistopen_and_dlistclose.mdx │ │ │ │ │ │ │ │ ├── dlistterm.mdx │ │ │ │ │ │ │ │ ├── em_and_emphasis.mdx │ │ │ │ │ │ │ │ ├── escape_sc.mdx │ │ │ │ │ │ │ │ ├── font.mdx │ │ │ │ │ │ │ │ ├── formcheckbox.mdx │ │ │ │ │ │ │ │ ├── formfile.mdx │ │ │ │ │ │ │ │ ├── formhidden.mdx │ │ │ │ │ │ │ │ ├── formimage.mdx │ │ │ │ │ │ │ │ ├── formopen_and_formclose.mdx │ │ │ │ │ │ │ │ ├── formpassword.mdx │ │ │ │ │ │ │ │ ├── formradio.mdx │ │ │ │ │ │ │ │ ├── formreset.mdx │ │ │ │ │ │ │ │ ├── formselectopen_and_formselectclose.mdx │ │ │ │ │ │ │ │ ├── formselectoption.mdx │ │ │ │ │ │ │ │ ├── formsubmit.mdx │ │ │ │ │ │ │ │ ├── formtext.mdx │ │ │ │ │ │ │ │ ├── formtextarea.mdx │ │ │ │ │ │ │ │ ├── formtextarea_and_formtextarea2.mdx │ │ │ │ │ │ │ │ ├── frame.mdx │ │ │ │ │ │ │ │ ├── framesetopen_and_framsetclose.mdx │ │ │ │ │ │ │ │ ├── header.mdx │ │ │ │ │ │ │ │ ├── headopen_and_headclose.mdx │ │ │ │ │ │ │ │ ├── hr.mdx │ │ │ │ │ │ │ │ ├── htmlopen_and_htmlclose.mdx │ │ │ │ │ │ │ │ ├── img.mdx │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ ├── isindex.mdx │ │ │ │ │ │ │ │ ├── italic.mdx │ │ │ │ │ │ │ │ ├── kbd_and_keyboard.mdx │ │ │ │ │ │ │ │ ├── linkrel.mdx │ │ │ │ │ │ │ │ ├── linkrev.mdx │ │ │ │ │ │ │ │ ├── listheader.mdx │ │ │ │ │ │ │ │ ├── listingopen_and_listingclose.mdx │ │ │ │ │ │ │ │ ├── listitem.mdx │ │ │ │ │ │ │ │ ├── mailto.mdx │ │ │ │ │ │ │ │ ├── mapopen_and_mapclose.mdx │ │ │ │ │ │ │ │ ├── menulistopen_and_menulistclose.mdx │ │ │ │ │ │ │ │ ├── meta.mdx │ │ │ │ │ │ │ │ ├── nobr.mdx │ │ │ │ │ │ │ │ ├── noframesopen_and_noframesclose.mdx │ │ │ │ │ │ │ │ ├── olistopen_and_olistclose.mdx │ │ │ │ │ │ │ │ ├── para_and_paragraph.mdx │ │ │ │ │ │ │ │ ├── param.mdx │ │ │ │ │ │ │ │ ├── plaintext.mdx │ │ │ │ │ │ │ │ ├── preopen_and_preclose.mdx │ │ │ │ │ │ │ │ ├── print_and_prn.mdx │ │ │ │ │ │ │ │ ├── prints_and_ps.mdx │ │ │ │ │ │ │ │ ├── s.mdx │ │ │ │ │ │ │ │ ├── sample.mdx │ │ │ │ │ │ │ │ ├── small.mdx │ │ │ │ │ │ │ │ ├── strike.mdx │ │ │ │ │ │ │ │ ├── strong.mdx │ │ │ │ │ │ │ │ ├── style.mdx │ │ │ │ │ │ │ │ ├── sub.mdx │ │ │ │ │ │ │ │ ├── sup.mdx │ │ │ │ │ │ │ │ ├── tabledata.mdx │ │ │ │ │ │ │ │ ├── tableheader.mdx │ │ │ │ │ │ │ │ ├── tableopen_and_tableclose.mdx │ │ │ │ │ │ │ │ ├── tablerow.mdx │ │ │ │ │ │ │ │ ├── teletype.mdx │ │ │ │ │ │ │ │ ├── title.mdx │ │ │ │ │ │ │ │ ├── ulist.mdx │ │ │ │ │ │ │ │ ├── underline.mdx │ │ │ │ │ │ │ │ ├── variable.mdx │ │ │ │ │ │ │ │ └── wbr.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── epas_compat_cat_views │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── oracle_compatible_views │ │ │ │ │ │ │ ├── 02_all_all_tables.mdx │ │ │ │ │ │ │ ├── 03_all_cons_columns.mdx │ │ │ │ │ │ │ ├── 04_all_constraints.mdx │ │ │ │ │ │ │ ├── 05_all_col_privs.mdx │ │ │ │ │ │ │ ├── 06_all_db_links.mdx │ │ │ │ │ │ │ ├── 07_all_dependencies.mdx │ │ │ │ │ │ │ ├── 08_all_directories.mdx │ │ │ │ │ │ │ ├── 09_all_ind_columns.mdx │ │ │ │ │ │ │ ├── 10_all_indexes.mdx │ │ │ │ │ │ │ ├── 11_all_jobs.mdx │ │ │ │ │ │ │ ├── 12_all_objects.mdx │ │ │ │ │ │ │ ├── 13_all_part_key_columns.mdx │ │ │ │ │ │ │ ├── 14_all_part_tables.mdx │ │ │ │ │ │ │ ├── 15_all_policies.mdx │ │ │ │ │ │ │ ├── 16_all_queues.mdx │ │ │ │ │ │ │ ├── 17_all_queue_tables.mdx │ │ │ │ │ │ │ ├── 18_all_sequences.mdx │ │ │ │ │ │ │ ├── 19_all_source.mdx │ │ │ │ │ │ │ ├── 20_all_subpart_key_columns.mdx │ │ │ │ │ │ │ ├── 21_all_synonyms.mdx │ │ │ │ │ │ │ ├── 22_all_tab_columns.mdx │ │ │ │ │ │ │ ├── 23_all_tab_partitions.mdx │ │ │ │ │ │ │ ├── 24_all_tab_subpartitions.mdx │ │ │ │ │ │ │ ├── 25_all_tab_privs.mdx │ │ │ │ │ │ │ ├── 26_all_tables.mdx │ │ │ │ │ │ │ ├── 27_all_triggers.mdx │ │ │ │ │ │ │ ├── 28_all_types.mdx │ │ │ │ │ │ │ ├── 29_all_users.mdx │ │ │ │ │ │ │ ├── 30_all_view_columns.mdx │ │ │ │ │ │ │ ├── 31_all_views.mdx │ │ │ │ │ │ │ ├── 32_dba_all_tables.mdx │ │ │ │ │ │ │ ├── 33_dba_cons_columns.mdx │ │ │ │ │ │ │ ├── 34_dba_constraints.mdx │ │ │ │ │ │ │ ├── 35_dba_col_privs.mdx │ │ │ │ │ │ │ ├── 36_dba_db_links.mdx │ │ │ │ │ │ │ ├── 37_dba_directories.mdx │ │ │ │ │ │ │ ├── 38_dba_dependencies.mdx │ │ │ │ │ │ │ ├── 39_dba_ind_columns.mdx │ │ │ │ │ │ │ ├── 40_dba_indexes.mdx │ │ │ │ │ │ │ ├── 41_dba_jobs.mdx │ │ │ │ │ │ │ ├── 42_dba_objects.mdx │ │ │ │ │ │ │ ├── 43_dba_part_key_columns.mdx │ │ │ │ │ │ │ ├── 44_dba_part_tables.mdx │ │ │ │ │ │ │ ├── 45_dba_policies.mdx │ │ │ │ │ │ │ ├── 45a_dba_privs_capture.mdx │ │ │ │ │ │ │ ├── 46_dba_profiles.mdx │ │ │ │ │ │ │ ├── 47_dba_queues.mdx │ │ │ │ │ │ │ ├── 48_dba_queue_tables.mdx │ │ │ │ │ │ │ ├── 49_dba_role_privs.mdx │ │ │ │ │ │ │ ├── 50_dba_roles.mdx │ │ │ │ │ │ │ ├── 51_dba_sequences.mdx │ │ │ │ │ │ │ ├── 52_dba_source.mdx │ │ │ │ │ │ │ ├── 53_dba_subpart_key_columns.mdx │ │ │ │ │ │ │ ├── 54_dba_synonyms.mdx │ │ │ │ │ │ │ ├── 55_dba_tab_columns.mdx │ │ │ │ │ │ │ ├── 56_dba_tab_partitions.mdx │ │ │ │ │ │ │ ├── 57_dba_tab_subpartitions.mdx │ │ │ │ │ │ │ ├── 58_dba_tab_privs.mdx │ │ │ │ │ │ │ ├── 59_dba_tables.mdx │ │ │ │ │ │ │ ├── 60_dba_triggers.mdx │ │ │ │ │ │ │ ├── 61_dba_types.mdx │ │ │ │ │ │ │ ├── 62_dba_users.mdx │ │ │ │ │ │ │ ├── 62a_dba_used_privs.mdx │ │ │ │ │ │ │ ├── 62b_dba_unused_privs.mdx │ │ │ │ │ │ │ ├── 63_dba_view_columns.mdx │ │ │ │ │ │ │ ├── 64_dba_views.mdx │ │ │ │ │ │ │ ├── 65_user_all_tables.mdx │ │ │ │ │ │ │ ├── 66_user_cons_columns.mdx │ │ │ │ │ │ │ ├── 67_user_constraints.mdx │ │ │ │ │ │ │ ├── 68_user_col_privs.mdx │ │ │ │ │ │ │ ├── 69_user_db_links.mdx │ │ │ │ │ │ │ ├── 70_user_dependencies.mdx │ │ │ │ │ │ │ ├── 71_user_indexes.mdx │ │ │ │ │ │ │ ├── 72_user_jobs.mdx │ │ │ │ │ │ │ ├── 73_user_objects.mdx │ │ │ │ │ │ │ ├── 74_user_part_tables.mdx │ │ │ │ │ │ │ ├── 75_user_policies.mdx │ │ │ │ │ │ │ ├── 76_user_queues.mdx │ │ │ │ │ │ │ ├── 77_user_queue_tables.mdx │ │ │ │ │ │ │ ├── 78_user_role_privs.mdx │ │ │ │ │ │ │ ├── 79_user_sequences.mdx │ │ │ │ │ │ │ ├── 80_user_source.mdx │ │ │ │ │ │ │ ├── 81_user_subpart_key_columns.mdx │ │ │ │ │ │ │ ├── 82_user_synonyms.mdx │ │ │ │ │ │ │ ├── 83_user_tab_columns.mdx │ │ │ │ │ │ │ ├── 84_user_tab_partitions.mdx │ │ │ │ │ │ │ ├── 85_user_tab_subpartitions.mdx │ │ │ │ │ │ │ ├── 86_user_tab_privs.mdx │ │ │ │ │ │ │ ├── 87_user_tables.mdx │ │ │ │ │ │ │ ├── 88_user_triggers.mdx │ │ │ │ │ │ │ ├── 89_user_types.mdx │ │ │ │ │ │ │ ├── 90_user_users.mdx │ │ │ │ │ │ │ ├── 91_user_view_columns.mdx │ │ │ │ │ │ │ ├── 92_user_views.mdx │ │ │ │ │ │ │ ├── 93_v_version.mdx │ │ │ │ │ │ │ ├── 94_product_component_version.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ └── pg_views │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── pg_attribute.mdx │ │ │ │ │ │ │ ├── pg_authid.mdx │ │ │ │ │ │ │ ├── pg_class.mdx │ │ │ │ │ │ │ ├── pg_collation.mdx │ │ │ │ │ │ │ ├── pg_database.mdx │ │ │ │ │ │ │ ├── pg_namespace.mdx │ │ │ │ │ │ │ ├── pg_partitioned_table.mdx │ │ │ │ │ │ │ ├── pg_proc.mdx │ │ │ │ │ │ │ ├── pg_subscription.mdx │ │ │ │ │ │ │ ├── pg_synonym.mdx │ │ │ │ │ │ │ ├── pg_trigger.mdx │ │ │ │ │ │ │ ├── pg_type.mdx │ │ │ │ │ │ │ └── pg_user.mdx │ │ │ │ │ ├── epas_compat_sql │ │ │ │ │ │ ├── 01_alter_capture_privilege.mdx │ │ │ │ │ │ ├── 02_alter_directory.mdx │ │ │ │ │ │ ├── 03_alter_index.mdx │ │ │ │ │ │ ├── 04_alter_procedure.mdx │ │ │ │ │ │ ├── 05_alter_profile.mdx │ │ │ │ │ │ ├── 06_alter_queue.mdx │ │ │ │ │ │ ├── 07_alter_queue_table.mdx │ │ │ │ │ │ ├── 08_alter_role_identified_by.mdx │ │ │ │ │ │ ├── 09_alter_role_managing_database_link_and_dbms_rls_privileges.mdx │ │ │ │ │ │ ├── 10_alter_sequence.mdx │ │ │ │ │ │ ├── 11_alter_session.mdx │ │ │ │ │ │ ├── 11a_alter_synonym.mdx │ │ │ │ │ │ ├── 12_alter_table.mdx │ │ │ │ │ │ ├── 13_alter_trigger.mdx │ │ │ │ │ │ ├── 14_alter_tablespace.mdx │ │ │ │ │ │ ├── 15_alter_user_identified_by.mdx │ │ │ │ │ │ ├── 16_alter_user_role_profile_management_clauses.mdx │ │ │ │ │ │ ├── 17_call.mdx │ │ │ │ │ │ ├── 18_comment.mdx │ │ │ │ │ │ ├── 19_commit.mdx │ │ │ │ │ │ ├── 19a_create_capture_privilege.mdx │ │ │ │ │ │ ├── 20_create_database.mdx │ │ │ │ │ │ ├── 21_create_public_database_link.mdx │ │ │ │ │ │ ├── 22_create_directory.mdx │ │ │ │ │ │ ├── 23_create_function.mdx │ │ │ │ │ │ ├── 24_create_index.mdx │ │ │ │ │ │ ├── 25_create_materialized_view.mdx │ │ │ │ │ │ ├── 26_create_package.mdx │ │ │ │ │ │ ├── 27_create_package_body.mdx │ │ │ │ │ │ ├── 28_create_procedure.mdx │ │ │ │ │ │ ├── 29_create_profile.mdx │ │ │ │ │ │ ├── 30_create_queue.mdx │ │ │ │ │ │ ├── 31_create_queue_table.mdx │ │ │ │ │ │ ├── 32_create_role.mdx │ │ │ │ │ │ ├── 33_create_schema.mdx │ │ │ │ │ │ ├── 34_create_sequence.mdx │ │ │ │ │ │ ├── 35_create_synonym.mdx │ │ │ │ │ │ ├── 36_create_table.mdx │ │ │ │ │ │ ├── 37_create_table_as.mdx │ │ │ │ │ │ ├── 38_create_trigger.mdx │ │ │ │ │ │ ├── 39_create_type.mdx │ │ │ │ │ │ ├── 40_create_type_body.mdx │ │ │ │ │ │ ├── 41_create_user.mdx │ │ │ │ │ │ ├── 42_create_user_role_profile_management_clauses.mdx │ │ │ │ │ │ ├── 43_create_view.mdx │ │ │ │ │ │ ├── 44_delete.mdx │ │ │ │ │ │ ├── 44a_drop_capture_privilege.mdx │ │ │ │ │ │ ├── 45_drop_public_database_link.mdx │ │ │ │ │ │ ├── 46_drop_directory.mdx │ │ │ │ │ │ ├── 47_drop_function.mdx │ │ │ │ │ │ ├── 48_drop_index.mdx │ │ │ │ │ │ ├── 49_drop_package.mdx │ │ │ │ │ │ ├── 50_drop_procedure.mdx │ │ │ │ │ │ ├── 51_drop_profile.mdx │ │ │ │ │ │ ├── 52_drop_queue.mdx │ │ │ │ │ │ ├── 53_drop_queue_table.mdx │ │ │ │ │ │ ├── 54_drop_synonym.mdx │ │ │ │ │ │ ├── 55_drop_role.mdx │ │ │ │ │ │ ├── 56_drop_sequence.mdx │ │ │ │ │ │ ├── 57_drop_table.mdx │ │ │ │ │ │ ├── 58_drop_tablespace.mdx │ │ │ │ │ │ ├── 59_drop_trigger.mdx │ │ │ │ │ │ ├── 60_drop_type.mdx │ │ │ │ │ │ ├── 61_drop_user.mdx │ │ │ │ │ │ ├── 62_drop_view.mdx │ │ │ │ │ │ ├── 63_exec.mdx │ │ │ │ │ │ ├── 64_grant.mdx │ │ │ │ │ │ ├── 65_insert.mdx │ │ │ │ │ │ ├── 65a_merge.mdx │ │ │ │ │ │ ├── 66_lock.mdx │ │ │ │ │ │ ├── 67_revoke.mdx │ │ │ │ │ │ ├── 68_rollback.mdx │ │ │ │ │ │ ├── 69_rollback_to_savepoint.mdx │ │ │ │ │ │ ├── 70_savepoint.mdx │ │ │ │ │ │ ├── 71_select.mdx │ │ │ │ │ │ ├── 72_set_constraints.mdx │ │ │ │ │ │ ├── 73_set_role.mdx │ │ │ │ │ │ ├── 74_set_transaction.mdx │ │ │ │ │ │ ├── 75_truncate.mdx │ │ │ │ │ │ ├── 76_update.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── summary_oracle_config_parameters.mdx │ │ │ │ └── sql_reference │ │ │ │ │ ├── 01_sql_syntax │ │ │ │ │ ├── 01_lexical_structure.mdx │ │ │ │ │ ├── 02_identifiers_and_key_words.mdx │ │ │ │ │ ├── 03_constants.mdx │ │ │ │ │ ├── 04_comments.mdx │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 02_data_types │ │ │ │ │ ├── 01_numeric_types.mdx │ │ │ │ │ ├── 02_character_types.mdx │ │ │ │ │ ├── 03_binary_data.mdx │ │ │ │ │ ├── 04_date_time_types.mdx │ │ │ │ │ ├── 05_boolean_type.mdx │ │ │ │ │ ├── 06_xml_type.mdx │ │ │ │ │ ├── array_types.mdx │ │ │ │ │ ├── composite_types.mdx │ │ │ │ │ ├── enumerated_types.mdx │ │ │ │ │ ├── geometric_types.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── monetary_types.mdx │ │ │ │ │ ├── network_address_types.mdx │ │ │ │ │ ├── object_identifier_types.mdx │ │ │ │ │ ├── pseudo_types.mdx │ │ │ │ │ └── range_types.mdx │ │ │ │ │ ├── 03_functions_and_operators │ │ │ │ │ ├── 01_logical_operators.mdx │ │ │ │ │ ├── 02_comparison_operators.mdx │ │ │ │ │ ├── 03_mathematical_functions_and_operators.mdx │ │ │ │ │ ├── 04_string_functions_and_operators.mdx │ │ │ │ │ ├── 05_pattern_matching_string_functions.mdx │ │ │ │ │ ├── 06_pattern_matching_using_the_like_operator.mdx │ │ │ │ │ ├── 07_data_type_formatting_functions.mdx │ │ │ │ │ ├── 08_date_time_functions_and_operators.mdx │ │ │ │ │ ├── 09_sequence_manipulation_functions.mdx │ │ │ │ │ ├── 10_conditional_expressions.mdx │ │ │ │ │ ├── 11_aggregate_functions.mdx │ │ │ │ │ ├── 12_subquery_expressions.mdx │ │ │ │ │ ├── 13_identifier_functions.mdx │ │ │ │ │ ├── 14_bitwise_functions.mdx │ │ │ │ │ ├── dump_function.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── to_multi_byte.mdx │ │ │ │ │ └── to_single_byte.mdx │ │ │ │ │ └── index.mdx │ │ │ ├── tools_utilities_and_components │ │ │ │ ├── application_developer_tools │ │ │ │ │ ├── 06_unicode_collation_algorithm.mdx │ │ │ │ │ ├── 10_ecpgplus.mdx │ │ │ │ │ ├── 11_libpq_c_library.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── connectivity_tools │ │ │ │ │ ├── connectors.mdx │ │ │ │ │ ├── data_sources.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── managing_connections.mdx │ │ │ │ ├── database_administration_tools │ │ │ │ │ ├── 09_tools_and_utilities.mdx │ │ │ │ │ ├── edb_clone_schema_overview.mdx │ │ │ │ │ ├── edb_loader_overview.mdx │ │ │ │ │ ├── edb_resource_manager_overview.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── epas_compat_tools_guide │ │ │ │ │ └── index.mdx │ │ │ │ └── index.mdx │ │ │ ├── upgrading │ │ │ │ ├── index.mdx │ │ │ │ ├── major_upgrade │ │ │ │ │ ├── 01_performing_an_upgrade │ │ │ │ │ │ ├── 01_linking_versus_copying.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 02_invoking_pg_upgrade │ │ │ │ │ │ ├── 01_command_line_options_reference.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 03_limitations.mdx │ │ │ │ │ ├── 03_upgrading_to_advanced_server.mdx │ │ │ │ │ ├── 04_upgrading_a_pgAgent_installation.mdx │ │ │ │ │ ├── 05_pg_upgrade_troubleshooting.mdx │ │ │ │ │ ├── 06_reverting_to_the_old_cluster.mdx │ │ │ │ │ ├── how_pg_upgrade_works.mdx │ │ │ │ │ └── index.mdx │ │ │ │ └── minor_upgrade │ │ │ │ │ ├── 05_performing_a_minor_version_update_of_an_rpm_installation.mdx │ │ │ │ │ ├── 06_using_stackbuilder_plus_to_perform_a_minor_version_update.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── performing_a_minor_version_update_of_deb_installation.mdx │ │ │ └── working_with_oracle_data │ │ │ │ ├── 02_enhanced_compatibility_features.mdx │ │ │ │ ├── 06_dblink_ora │ │ │ │ ├── 02_calling_dblink_ora_functions.mdx │ │ │ │ ├── connecting_to_oracle.mdx │ │ │ │ └── index.mdx │ │ │ │ ├── 07_open_client_library.mdx │ │ │ │ ├── embedded_sql_commands.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── loading_bulk_data.mdx │ │ │ │ └── proprietary_source_code.mdx │ │ ├── 17 │ │ │ ├── application_programming │ │ │ │ ├── 02_packages │ │ │ │ │ ├── 01_package_components.mdx │ │ │ │ │ ├── 01a_display_packages.mdx │ │ │ │ │ ├── 02_creating_packages.mdx │ │ │ │ │ ├── 03_referencing_a_package.mdx │ │ │ │ │ ├── 04_using_packages_with_user_defined_types.mdx │ │ │ │ │ ├── 05_dropping_a_package.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 12_debugger │ │ │ │ │ ├── configuring_debugger.mdx │ │ │ │ │ ├── debugger_interface.mdx │ │ │ │ │ ├── debugging_a_program.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── starting_debugger.mdx │ │ │ │ ├── 15_enhanced_sql_and_other_misc_features │ │ │ │ │ ├── comment_command.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── logical_decoding.mdx │ │ │ │ │ └── obtaining_version_information.mdx │ │ │ │ ├── ecpgplus_guide │ │ │ │ │ ├── 02_overview.mdx │ │ │ │ │ ├── 03_using_embedded_sql.mdx │ │ │ │ │ ├── 04_using_descriptors.mdx │ │ │ │ │ ├── 05_building_executing_dynamic_sql_statements.mdx │ │ │ │ │ ├── 06_error_handling.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── installing_ecpgplus.mdx │ │ │ │ ├── epas_compat_spl │ │ │ │ │ ├── 02_spl_programs │ │ │ │ │ │ ├── 02_spl_block_structure.mdx │ │ │ │ │ │ ├── 03_anonymous_blocks.mdx │ │ │ │ │ │ ├── 04_procedures_overview │ │ │ │ │ │ │ ├── 01_creating_a_procedure.mdx │ │ │ │ │ │ │ ├── 02_calling_a_procedure.mdx │ │ │ │ │ │ │ ├── 03_deleting_a_procedure.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 05_functions_overview │ │ │ │ │ │ │ ├── 01_creating_a_function.mdx │ │ │ │ │ │ │ ├── 02_calling_a_function.mdx │ │ │ │ │ │ │ ├── 03_deleting_a_function.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 06_procedure_and_function_parameters │ │ │ │ │ │ │ ├── 01_positional_vs_named_parameter_notation.mdx │ │ │ │ │ │ │ ├── 02_parameter_modes.mdx │ │ │ │ │ │ │ ├── 03_using_default_values_in_parameters.mdx │ │ │ │ │ │ │ ├── declaring_parameters.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 07_subprograms_subprocedures_and_subfunctions │ │ │ │ │ │ │ ├── 01_creating_a_subprocedure.mdx │ │ │ │ │ │ │ ├── 02_creating_a_subfunction.mdx │ │ │ │ │ │ │ ├── 03_block_relationships.mdx │ │ │ │ │ │ │ ├── 04_invoking_subprograms.mdx │ │ │ │ │ │ │ ├── 05_using_forward_declarations.mdx │ │ │ │ │ │ │ ├── 06_overloading_subprograms.mdx │ │ │ │ │ │ │ ├── 07_accessing_subprogram_variables.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 08_compilation_errors_in_procedures_and_functions.mdx │ │ │ │ │ │ ├── 09_program_security │ │ │ │ │ │ │ ├── 01_execute_privilege.mdx │ │ │ │ │ │ │ ├── 02_database_object_name_resolution.mdx │ │ │ │ │ │ │ ├── 03_database_object_privileges.mdx │ │ │ │ │ │ │ ├── 04_definers_vs_invokers_rights.mdx │ │ │ │ │ │ │ ├── 05_security_example.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 03_variable_declarations │ │ │ │ │ │ ├── 01_declaring_a_variable.mdx │ │ │ │ │ │ ├── 02_using__type_in_variable_declarations.mdx │ │ │ │ │ │ ├── 03_using__row_type_in_record_declarations.mdx │ │ │ │ │ │ ├── 04_user_defined_record_types_and_record_variables.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 06_transaction_control │ │ │ │ │ │ ├── 01_commit.mdx │ │ │ │ │ │ ├── 02_rollback.mdx │ │ │ │ │ │ ├── 03_pragma_autonomous_transaction.mdx │ │ │ │ │ │ ├── about_transactions.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 07_dynamic_sql.mdx │ │ │ │ │ ├── 08_static_cursors │ │ │ │ │ │ ├── 01_declaring_a_cursor.mdx │ │ │ │ │ │ ├── 02_opening_a_cursor.mdx │ │ │ │ │ │ ├── 03_fetching_rows_from_a_cursor.mdx │ │ │ │ │ │ ├── 04_closing_a_cursor.mdx │ │ │ │ │ │ ├── 05_using__rowtype_with_cursors.mdx │ │ │ │ │ │ ├── 06_cursor_attributes │ │ │ │ │ │ │ ├── 01_isopen.mdx │ │ │ │ │ │ │ ├── 02_found.mdx │ │ │ │ │ │ │ ├── 03_notfound.mdx │ │ │ │ │ │ │ ├── 04_rowcount.mdx │ │ │ │ │ │ │ ├── 05_summary_of_cursor_states_and_attributes.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 07_cursor_for_loop.mdx │ │ │ │ │ │ ├── 08_parameterized_cursors.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 09_ref_cursors_and_cursor_variables │ │ │ │ │ │ ├── 01_ref_cursor_overview.mdx │ │ │ │ │ │ ├── 02_declaring_a_cursor_variable │ │ │ │ │ │ │ ├── 01_declaring_a_sys_refcursor_cursor_variable.mdx │ │ │ │ │ │ │ ├── 02_declaring_a_user_defined_ref_cursor_type_variable.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 03_opening_a_cursor_variable.mdx │ │ │ │ │ │ ├── 04_fetching_rows_from_a_cursor_variable.mdx │ │ │ │ │ │ ├── 05_closing_a_cursor_variable.mdx │ │ │ │ │ │ ├── 06_usage_restrictions.mdx │ │ │ │ │ │ ├── 07_examples │ │ │ │ │ │ │ ├── 01_returning_a_ref_cursor_from_a_function.mdx │ │ │ │ │ │ │ ├── 02_modularizing_cursor_operations.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 08_dynamic_queries_with_ref_cursors.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 10_collections │ │ │ │ │ │ ├── 01_associative_arrays.mdx │ │ │ │ │ │ ├── 02_nested_tables.mdx │ │ │ │ │ │ ├── 03_varrays.mdx │ │ │ │ │ │ ├── about_collections.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 12_working_with_collections │ │ │ │ │ │ ├── 01_table.mdx │ │ │ │ │ │ ├── 02_using_the_multiset_union_operator.mdx │ │ │ │ │ │ ├── 03_using_the_forall_statement.mdx │ │ │ │ │ │ ├── 04_using_the_bulk_collect_clause │ │ │ │ │ │ │ ├── 01_select_bulk_collect.mdx │ │ │ │ │ │ │ ├── 02_fetch_bulk_collect.mdx │ │ │ │ │ │ │ ├── 03_execute_immediate_bulk_collect.mdx │ │ │ │ │ │ │ ├── 04_returning_bulk_collect.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 05_errors_and_messages.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 13_triggers │ │ │ │ │ │ ├── 01_overview.mdx │ │ │ │ │ │ ├── 02_types_of_triggers.mdx │ │ │ │ │ │ ├── 03_creating_triggers.mdx │ │ │ │ │ │ ├── 04_trigger_variables.mdx │ │ │ │ │ │ ├── 05_transactions_and_exceptions.mdx │ │ │ │ │ │ ├── 06_compound_triggers.mdx │ │ │ │ │ │ ├── 07_trigger_examples │ │ │ │ │ │ │ ├── 01_before_statement_level_trigger.mdx │ │ │ │ │ │ │ ├── 02_after_statement_level_trigger.mdx │ │ │ │ │ │ │ ├── 03_before_row_level_trigger.mdx │ │ │ │ │ │ │ ├── 04_after_row_level_trigger.mdx │ │ │ │ │ │ │ ├── 05_instead_of_trigger.mdx │ │ │ │ │ │ │ ├── 06_compound_trigger.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 14_packages.mdx │ │ │ │ │ ├── 15_object_types_and_objects │ │ │ │ │ │ ├── 01_basic_object_concepts │ │ │ │ │ │ │ ├── 01_attributes.mdx │ │ │ │ │ │ │ ├── 02_methods.mdx │ │ │ │ │ │ │ ├── 03_overloading_methods.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 02_object_type_components │ │ │ │ │ │ │ ├── 01_object_type_specification_syntax.mdx │ │ │ │ │ │ │ ├── 02_object_type_body_syntax.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 03_creating_object_types │ │ │ │ │ │ │ ├── 01_member_methods.mdx │ │ │ │ │ │ │ ├── 02_static_methods.mdx │ │ │ │ │ │ │ ├── 03_constructor_methods.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 04_creating_object_instances.mdx │ │ │ │ │ │ ├── 05_referencing_an_object.mdx │ │ │ │ │ │ ├── 06_dropping_an_object_type.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── images │ │ │ │ │ │ ├── definer's_rights_package.png │ │ │ │ │ │ ├── definers_rights_package.png │ │ │ │ │ │ └── invokers_rights_programs.png │ │ │ │ │ └── index.mdx │ │ │ │ ├── epas_compat_table_partitioning │ │ │ │ │ ├── 01_oracle_compat_summary.mdx │ │ │ │ │ ├── 02_selecting_a_partition_type │ │ │ │ │ │ ├── 01_interval_range_partitioning.mdx │ │ │ │ │ │ ├── 02_automatic_list_partitioning.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 03_using_partition_pruning │ │ │ │ │ │ ├── 01_example_partition_pruning.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 05_handling_stray_values_in_a_list_or_range_partitioned_table │ │ │ │ │ │ ├── defining_a_default_partition.mdx │ │ │ │ │ │ ├── defining_a_maxvalue_partition.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 06_specifying_multiple_partitioning_keys_in_a_range_partitioned_table.mdx │ │ │ │ │ ├── 07_retrieving_information_about_a_partitioned_table │ │ │ │ │ │ └── index.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── index.mdx │ │ │ │ └── optimizing_code │ │ │ │ │ ├── 05_optimizer_hints │ │ │ │ │ ├── 01_default_optimization_modes.mdx │ │ │ │ │ ├── 02_access_method_hints.mdx │ │ │ │ │ ├── 03_specifying_a_join_order.mdx │ │ │ │ │ ├── 04_joining_relations_hints.mdx │ │ │ │ │ ├── 05_global_hints.mdx │ │ │ │ │ ├── 06_using_the_append_optimizer_hint.mdx │ │ │ │ │ ├── 07_parallelism_hints.mdx │ │ │ │ │ ├── 08_conflicting_hints.mdx │ │ │ │ │ ├── about_optimizer_hints.mdx │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── optimizing_code.mdx │ │ │ ├── database_administration │ │ │ │ ├── 01_configuration_parameters │ │ │ │ │ ├── 01_setting_new_parameters.mdx │ │ │ │ │ ├── 03_configuration_parameters_by_functionality │ │ │ │ │ │ ├── 01_top_performance_related_parameters │ │ │ │ │ │ │ ├── 01_shared_buffers.mdx │ │ │ │ │ │ │ ├── 02_work_mem.mdx │ │ │ │ │ │ │ ├── 03_maintenance_work_mem.mdx │ │ │ │ │ │ │ ├── 04_wal_buffers.mdx │ │ │ │ │ │ │ ├── 05_checkpoint_segments.mdx │ │ │ │ │ │ │ ├── 06_checkpoint_completion_target.mdx │ │ │ │ │ │ │ ├── 07_checkpoint_timeout.mdx │ │ │ │ │ │ │ ├── 08_max_wal_size.mdx │ │ │ │ │ │ │ ├── 09_min_wal_size.mdx │ │ │ │ │ │ │ ├── 10_bgwriter_delay.mdx │ │ │ │ │ │ │ ├── 11_seq_page_cost.mdx │ │ │ │ │ │ │ ├── 12_random_page_cost.mdx │ │ │ │ │ │ │ ├── 13_effective_cache_size.mdx │ │ │ │ │ │ │ ├── 14_synchronous_commit.mdx │ │ │ │ │ │ │ ├── 15_edb_max_spins_per_delay.mdx │ │ │ │ │ │ │ ├── 16_pg_prewarm.autoprewarm.mdx │ │ │ │ │ │ │ ├── 17_pg_prewarm.autoprewarm_interval.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 02_resource_usage_memory.mdx │ │ │ │ │ │ ├── 03_resource_usage_edb_resource_manager.mdx │ │ │ │ │ │ ├── 04_query_tuning.mdx │ │ │ │ │ │ ├── 05_query_tuning_planner_method_configuration.mdx │ │ │ │ │ │ ├── 06_reporting_and_logging_what_to_log.mdx │ │ │ │ │ │ ├── 07_auditing_settings │ │ │ │ │ │ │ ├── 01_edb_audit.mdx │ │ │ │ │ │ │ ├── 02_edb_audit_directory.mdx │ │ │ │ │ │ │ ├── 03_edb_audit_filename.mdx │ │ │ │ │ │ │ ├── 04_edb_audit_rotation_day.mdx │ │ │ │ │ │ │ ├── 05_edb_audit_rotation_size.mdx │ │ │ │ │ │ │ ├── 06_edb_audit_rotation_seconds.mdx │ │ │ │ │ │ │ ├── 07_edb_audit_connect.mdx │ │ │ │ │ │ │ ├── 08_edb_audit_disconnect.mdx │ │ │ │ │ │ │ ├── 09_edb_audit_statement.mdx │ │ │ │ │ │ │ ├── 10_edb_audit_tag.mdx │ │ │ │ │ │ │ ├── 11_edb_audit_destination.mdx │ │ │ │ │ │ │ ├── 12_edb_log_every_bulk_value.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 08_ccd_locale_and_formatting.mdx │ │ │ │ │ │ ├── 09_ccd_statement_behaviour.mdx │ │ │ │ │ │ ├── 10_ccd_other_defaults.mdx │ │ │ │ │ │ ├── 11_compatibility_options.mdx │ │ │ │ │ │ ├── 12_customized_options.mdx │ │ │ │ │ │ ├── 13_ungrouped.mdx │ │ │ │ │ │ ├── 14_audit_archiver.mdx │ │ │ │ │ │ ├── attribute_descriptions.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 02_edb_loader │ │ │ │ │ ├── building_the_control_file │ │ │ │ │ │ ├── control_file_examples.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── data_loading_methods.mdx │ │ │ │ │ ├── edb_loader_overview_and_restrictions.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── invoking_edb_loader │ │ │ │ │ │ ├── conventional_path_load.mdx │ │ │ │ │ │ ├── direct_path_load.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── parallel_direct_path_load.mdx │ │ │ │ │ │ ├── performing_remote_loading.mdx │ │ │ │ │ │ └── running_edb_loader.mdx │ │ │ │ │ └── using_edb_loader.mdx │ │ │ │ ├── 10_edb_resource_manager │ │ │ │ │ ├── cpu_usage_throttling.mdx │ │ │ │ │ ├── creating_resource_groups.mdx │ │ │ │ │ ├── dirty_buffer_throttling.mdx │ │ │ │ │ ├── edb_resource_manager_key_concepts.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 14_edb_clone_schema │ │ │ │ │ ├── checking_the_status.mdx │ │ │ │ │ ├── cloning_with_non_super_user.mdx │ │ │ │ │ ├── copying_a_remote_schema.mdx │ │ │ │ │ ├── copying_a_schema.mdx │ │ │ │ │ ├── edb_clone_schema_overview.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── performing_cleanup_tasks.mdx │ │ │ │ │ └── setting_up_edb_clone_schema.mdx │ │ │ │ ├── index.mdx │ │ │ │ └── roles.mdx │ │ │ ├── epas_platform_support │ │ │ │ └── index.mdx │ │ │ ├── epas_rel_notes │ │ │ │ ├── epas17_2_rel_notes.mdx │ │ │ │ ├── epas17_3_rel_notes.mdx │ │ │ │ ├── epas17_4_rel_notes.mdx │ │ │ │ ├── epas17_5_rel_notes.mdx │ │ │ │ ├── epas17_6_rel_notes.mdx │ │ │ │ ├── epas17_7_rel_notes.mdx │ │ │ │ └── index.mdx │ │ │ ├── epas_security_guide │ │ │ │ ├── 02_protecting_against_sql_injection_attacks │ │ │ │ │ ├── 01_sql_protect_overview.mdx │ │ │ │ │ ├── 02_configuring_sql_protect.mdx │ │ │ │ │ ├── 03_common_maintenance_operations.mdx │ │ │ │ │ ├── 04_backing_up_restoring_sql_protect.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 03_edb_wrap │ │ │ │ │ ├── edb_wrap_key_concepts.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── obfuscating_source_code.mdx │ │ │ │ ├── 03_virtual_private_database.mdx │ │ │ │ ├── 04_profile_management │ │ │ │ │ ├── 01_creating_a_new_profile │ │ │ │ │ │ ├── 01_creating_a_password_function.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 02_altering_a_profile.mdx │ │ │ │ │ ├── 03_dropping_a_profile.mdx │ │ │ │ │ ├── 04_associating_a_profile_with_an_existing_role.mdx │ │ │ │ │ ├── 05_unlocking_a_locked_account.mdx │ │ │ │ │ ├── 06_creating_a_new_role_associated_with_a_profile.mdx │ │ │ │ │ ├── 07_backing_up_profile_management_functions.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── profile_overview.mdx │ │ │ │ ├── 04_sslutils.mdx │ │ │ │ ├── 05_data_redaction │ │ │ │ │ ├── creating_a_data_redaction_policy.mdx │ │ │ │ │ ├── data_redaction_key_concepts.mdx │ │ │ │ │ ├── data_redaction_system_catalogs.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── modifying_a_data_redaction_policy.mdx │ │ │ │ │ └── removing_a_data_redaction_policy.mdx │ │ │ │ ├── 05_edb_audit_logging │ │ │ │ │ ├── 02_selecting_sql_statements_to_audit.mdx │ │ │ │ │ ├── 03_enabling_audit_logging.mdx │ │ │ │ │ ├── 05_using_error_codes_to_filter_audit_logs.mdx │ │ │ │ │ ├── 06_using_command_tags_to_filter_audit_logs.mdx │ │ │ │ │ ├── 07_redacting_passwords_from_audit_logs.mdx │ │ │ │ │ ├── 08_audit_log_archiving.mdx │ │ │ │ │ ├── 09_object_auditing.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── index.mdx │ │ │ │ └── tde_feature.mdx │ │ │ ├── fundamentals │ │ │ │ ├── epas_fundamentals │ │ │ │ │ ├── benefits_epas.mdx │ │ │ │ │ ├── epas_compat_ora_dev_guide │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── terminology.mdx │ │ │ │ ├── index.mdx │ │ │ │ └── sql_fundamentals │ │ │ │ │ ├── 02_about_the_examples_used_in_this_guide.mdx │ │ │ │ │ ├── 02_conventions.mdx │ │ │ │ │ ├── 02_sql_tutorial │ │ │ │ │ ├── 01_sample_database │ │ │ │ │ │ ├── 01_sample_database_installation.mdx │ │ │ │ │ │ ├── 02_sample_database_description.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 02_creating_a_new_table.mdx │ │ │ │ │ ├── 03_populating_a_table_with_rows.mdx │ │ │ │ │ ├── 04_querying_a_table.mdx │ │ │ │ │ ├── 05_joins_between_tables.mdx │ │ │ │ │ ├── 06_aggregate_functions.mdx │ │ │ │ │ ├── 07_updates.mdx │ │ │ │ │ ├── 08_deletions.mdx │ │ │ │ │ ├── 09_the_sql_language.mdx │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 03_advanced_concepts │ │ │ │ │ ├── 01_views.mdx │ │ │ │ │ ├── 02_foreign_keys.mdx │ │ │ │ │ ├── 03_the_rownum_pseudo_column.mdx │ │ │ │ │ ├── 04_synonyms.mdx │ │ │ │ │ ├── 05_hierarchical_queries │ │ │ │ │ │ ├── 01_defining_the_parent_child_relationship.mdx │ │ │ │ │ │ ├── 02_selecting_the_root_nodes.mdx │ │ │ │ │ │ ├── 03_organization_tree_in_the_sample_application.mdx │ │ │ │ │ │ ├── 04_node_level.mdx │ │ │ │ │ │ ├── 05_ordering_the_siblings.mdx │ │ │ │ │ │ ├── 06_retrieving_the_root_node_with_connect_by_root.mdx │ │ │ │ │ │ ├── 07_retrieving_a_path_with_sys_connect_by_path.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 06_multidimensional_analysis │ │ │ │ │ │ ├── 01_rollup_extension.mdx │ │ │ │ │ │ ├── 02_cube_extension.mdx │ │ │ │ │ │ ├── 03_grouping_sets_extension.mdx │ │ │ │ │ │ ├── 04_grouping_function.mdx │ │ │ │ │ │ ├── 05_grouping_id_function.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 03_examples_used.mdx │ │ │ │ │ └── index.mdx │ │ │ ├── images │ │ │ │ ├── accessing_configuration_files.png │ │ │ │ ├── acknowledging_components_removed.png │ │ │ │ ├── additional_configuration.png │ │ │ │ ├── additional_directories.png │ │ │ │ ├── advanced_server_dialect.png │ │ │ │ ├── advanced_server_installation_completion.png │ │ │ │ ├── advanced_server_installer_welcome.png │ │ │ │ ├── advanced_server_services.png │ │ │ │ ├── advanced_server_startup.png │ │ │ │ ├── advanced_server_uninstaller.png │ │ │ │ ├── configuring_advanced_server_to_use_trust_authentication.png │ │ │ │ ├── connecting_server.png │ │ │ │ ├── connecting_to_advanced_server_database.png │ │ │ │ ├── connecting_to_server.png │ │ │ │ ├── definer's_rights_package.png │ │ │ │ ├── download-complete-confirmation.png │ │ │ │ ├── download_complete.png │ │ │ │ ├── download_complete_confirmation.png │ │ │ │ ├── dynatune_dynamic_tuning_server_utilization.png │ │ │ │ ├── dynatune_dynamic_tuning_workload_profile.png │ │ │ │ ├── ecpg_path.png │ │ │ │ ├── employee_organization_hierarchy.png │ │ │ │ ├── enterprisedb_license_agreement.png │ │ │ │ ├── epas_tools_utility_edb_wrap.png │ │ │ │ ├── installation_directory.png │ │ │ │ ├── installing_advanced_server.png │ │ │ │ ├── invokers_rights_programs.png │ │ │ │ ├── open_client_library.png │ │ │ │ ├── parameters_tab.png │ │ │ │ ├── password_window.png │ │ │ │ ├── pgadmin4_client_dashboard.png │ │ │ │ ├── pre_installation_summary.png │ │ │ │ ├── program_body.png │ │ │ │ ├── proxy_servers.png │ │ │ │ ├── ready_to_install.png │ │ │ │ ├── sample_database_tables.png │ │ │ │ ├── select_components.png │ │ │ │ ├── selected-packages-summary-window.png │ │ │ │ ├── selected_packages_summary_window.png │ │ │ │ ├── setting_global_breakpoint_from_left-hand_margin.png │ │ │ │ ├── setup_wizard.png │ │ │ │ ├── stackBuilder_plus_confirms_the_completed_installation.png │ │ │ │ ├── stack_tab.png │ │ │ │ ├── stackbuilder-plus-confirms-the-completed-installation.png │ │ │ │ ├── stackbuilder_plus_completed_installation.png │ │ │ │ ├── stackbuilder_plus_module_selection.png │ │ │ │ ├── stackbuilder_plus_welcome.png │ │ │ │ ├── summary-window-displaying-selected-packages.png │ │ │ │ ├── summary_window_displaying_selected_packages.png │ │ │ │ ├── the-proxy-servers-dialog.png │ │ │ │ ├── the-stackbuilder-plus-module-selection-window.png │ │ │ │ ├── the-stackbuilder-plus-welcome.png │ │ │ │ ├── the_proxy_servers_dialog.png │ │ │ │ ├── the_stackBuilder_plus_module_selection_window.png │ │ │ │ ├── the_stackBuilder_plus_welcome.png │ │ │ │ └── uninstallation_complete.png │ │ │ ├── index.mdx │ │ │ ├── installing │ │ │ │ ├── index.mdx │ │ │ │ ├── linux_arm64 │ │ │ │ │ ├── epas_debian_12.mdx │ │ │ │ │ ├── epas_rhel_9.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── linux_install_details │ │ │ │ │ ├── component_locations.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── installing_epas_using_local_repository.mdx │ │ │ │ │ ├── managing_an_advanced_server_installation │ │ │ │ │ │ ├── configuring_a_package_installation.mdx │ │ │ │ │ │ ├── connecting_to_epas.mdx │ │ │ │ │ │ ├── exclude_include_packages.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── modifying_the_data_directory_location.mdx │ │ │ │ │ │ ├── specifying_cluster_options.mdx │ │ │ │ │ │ ├── starting_and_stopping_services.mdx │ │ │ │ │ │ └── starting_multiple_postmasters.mdx │ │ │ │ │ ├── rpm_packages.mdx │ │ │ │ │ └── updating_an_rpm_installation.mdx │ │ │ │ ├── linux_ppc64le │ │ │ │ │ ├── epas_rhel_8.mdx │ │ │ │ │ ├── epas_rhel_9.mdx │ │ │ │ │ ├── epas_sles_15.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── linux_x86_64 │ │ │ │ │ ├── epas_debian_11.mdx │ │ │ │ │ ├── epas_debian_12.mdx │ │ │ │ │ ├── epas_other_linux_8.mdx │ │ │ │ │ ├── epas_other_linux_9.mdx │ │ │ │ │ ├── epas_rhel_8.mdx │ │ │ │ │ ├── epas_rhel_9.mdx │ │ │ │ │ ├── epas_sles_15.mdx │ │ │ │ │ ├── epas_ubuntu_22.mdx │ │ │ │ │ ├── epas_ubuntu_24.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── troubleshooting │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── linux_troubleshooting │ │ │ │ │ │ ├── enabling_core_dump.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── installation_troubleshooting_linux.mdx │ │ │ │ │ └── windows_troubleshooting.mdx │ │ │ │ ├── uninstalling │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── linux_uninstall.mdx │ │ │ │ │ └── windows_uninstall.mdx │ │ │ │ └── windows │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── installing_advanced_server_with_the_interactive_installer │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── invoking_the_graphical_installer_from_the_command_line │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── performing_an_installation_with_limited_privileges.mdx │ │ │ │ │ │ ├── performing_an_unattended_installation.mdx │ │ │ │ │ │ └── reference_command_line_options.mdx │ │ │ │ │ ├── performing_a_graphical_installation_on_windows.mdx │ │ │ │ │ ├── setting_cluster_preferences.mdx │ │ │ │ │ └── using_stackbuilder_plus.mdx │ │ │ │ │ └── managing_an_advanced_server_installation │ │ │ │ │ ├── configuring_epas.mdx │ │ │ │ │ ├── controlling_server_startup_behavior_on_windows.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── starting_and_stopping_epas.mdx │ │ │ │ │ ├── using_pg_ctl_to_control_advanced_server.mdx │ │ │ │ │ └── using_the_windows_services_applet.mdx │ │ │ ├── managing_performance │ │ │ │ ├── 03_sql_profiler.mdx │ │ │ │ ├── 04_dynamic_runtime_instrumentation_tools_architecture_DRITA │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── performance_tuning_recommendations.mdx │ │ │ │ │ ├── simulating_statspack_reports.mdx │ │ │ │ │ ├── taking_a_snapshot.mdx │ │ │ │ │ └── using_drita_functions.mdx │ │ │ │ ├── evaluating_wait_states.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── query_advisor.mdx │ │ │ │ └── using_dynatune.mdx │ │ │ ├── planning │ │ │ │ ├── configuration_mode.mdx │ │ │ │ ├── deployment_options │ │ │ │ │ └── index.mdx │ │ │ │ ├── index.mdx │ │ │ │ └── planning_prerequisites │ │ │ │ │ ├── epas_limitations │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── epas_requirements │ │ │ │ │ └── index.mdx │ │ │ │ │ └── index.mdx │ │ │ ├── reference │ │ │ │ ├── application_programmer_reference │ │ │ │ │ ├── 01_table_partitioning_views_reference │ │ │ │ │ │ ├── 01_all_part_tables.mdx │ │ │ │ │ │ ├── 02_all_tab_partitions.mdx │ │ │ │ │ │ ├── 03_all_tab_subpartitions.mdx │ │ │ │ │ │ ├── 04_all_part_key_columns.mdx │ │ │ │ │ │ ├── 05_all_subpart_key_columns.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 03_system_catalog_tables.mdx │ │ │ │ │ ├── 07_reference │ │ │ │ │ │ ├── c_preprocessor_directives.mdx │ │ │ │ │ │ ├── ecpgplus_statements.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── sqlda_structure.mdx │ │ │ │ │ │ ├── supported_c_data_types.mdx │ │ │ │ │ │ └── type_codes.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── stored_procedural_language_reference │ │ │ │ │ │ ├── 01_basic_spl_elements │ │ │ │ │ │ ├── 02_case_sensitivity.mdx │ │ │ │ │ │ ├── 03_identifiers.mdx │ │ │ │ │ │ ├── 04_qualifiers.mdx │ │ │ │ │ │ ├── 05_constants.mdx │ │ │ │ │ │ ├── 06_user_defined_pl_sql_subtypes.mdx │ │ │ │ │ │ ├── 07_character.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 04_basic_statements │ │ │ │ │ │ ├── 01_assignment.mdx │ │ │ │ │ │ ├── 02_delete.mdx │ │ │ │ │ │ ├── 03_insert.mdx │ │ │ │ │ │ ├── 04_null.mdx │ │ │ │ │ │ ├── 05_using_the_returning_into_clause.mdx │ │ │ │ │ │ ├── 06_select_into.mdx │ │ │ │ │ │ ├── 07_update.mdx │ │ │ │ │ │ ├── 08_obtaining_the_result_status.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 05_control_structures │ │ │ │ │ │ ├── 01_if_statement │ │ │ │ │ │ │ ├── 01_if_then.mdx │ │ │ │ │ │ │ ├── 02_if_then_else.mdx │ │ │ │ │ │ │ ├── 03_if_then_else_if.mdx │ │ │ │ │ │ │ ├── 04_if_then_elseif_else.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 02_return_statement.mdx │ │ │ │ │ │ ├── 03_goto_statement.mdx │ │ │ │ │ │ ├── 04_case_expression │ │ │ │ │ │ │ ├── 01_selector_case_expression.mdx │ │ │ │ │ │ │ ├── 02_searched_case_expression.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 05_case_statement │ │ │ │ │ │ │ ├── 01_selector_case_statement.mdx │ │ │ │ │ │ │ ├── 02_searched_case_statement.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 06_loops │ │ │ │ │ │ │ ├── 01_loop.mdx │ │ │ │ │ │ │ ├── 02_exit.mdx │ │ │ │ │ │ │ ├── 03_continue.mdx │ │ │ │ │ │ │ ├── 04_while.mdx │ │ │ │ │ │ │ ├── 05_for_integer_variant.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 07_exception_handling.mdx │ │ │ │ │ │ ├── 08_user_defined_exceptions.mdx │ │ │ │ │ │ ├── 09_pragma_exception_init.mdx │ │ │ │ │ │ ├── 10_raise_application_error.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 11_collection_methods │ │ │ │ │ │ ├── 01_count.mdx │ │ │ │ │ │ ├── 02_deletes.mdx │ │ │ │ │ │ ├── 03_exists.mdx │ │ │ │ │ │ ├── 04_extend.mdx │ │ │ │ │ │ ├── 05_first.mdx │ │ │ │ │ │ ├── 06_last.mdx │ │ │ │ │ │ ├── 07_limit.mdx │ │ │ │ │ │ ├── 08_next.mdx │ │ │ │ │ │ ├── 09_prior.mdx │ │ │ │ │ │ ├── 10_trim.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 17_advanced_server_keywords.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ ├── database_administrator_reference │ │ │ │ │ ├── 01_audit_logging_configuration_parameters.mdx │ │ │ │ │ ├── 01_introduction │ │ │ │ │ │ ├── 01_edb_redwood_date.mdx │ │ │ │ │ │ ├── 02_edb_redwood_raw_names.mdx │ │ │ │ │ │ ├── 03_edb_redwood_strings.mdx │ │ │ │ │ │ ├── 04_edb_stmt_level_tx.mdx │ │ │ │ │ │ ├── 05_oracle_home.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 02_summary_of_configuration_parameters.mdx │ │ │ │ │ ├── 04_audit_log_file.mdx │ │ │ │ │ ├── edb_loader_control_file_parameters.mdx │ │ │ │ │ ├── edb_resource_manager_system_catalogs.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── oracle_compatibility_reference │ │ │ │ │ ├── 01_dblink_ora_functions_and_procedures │ │ │ │ │ │ ├── 01_dblink_ora_connect.mdx │ │ │ │ │ │ ├── 02_dblink_ora_status.mdx │ │ │ │ │ │ ├── 03_dblink_ora_disconnect.mdx │ │ │ │ │ │ ├── 04_dblink_ora_record.mdx │ │ │ │ │ │ ├── 05_dblink_ora_call.mdx │ │ │ │ │ │ ├── 06_dblink_ora_exec.mdx │ │ │ │ │ │ ├── 07_dblink_ora_copy.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 04_partitioning_commands_compatible_with_oracle_databases │ │ │ │ │ │ ├── 01_create_table_partition_by │ │ │ │ │ │ │ ├── 01_example_partition_by_list.mdx │ │ │ │ │ │ │ ├── 02_example_automatic_list_partition.mdx │ │ │ │ │ │ │ ├── 03_example_partition_by_range.mdx │ │ │ │ │ │ │ ├── 04_example_interval_range_partition.mdx │ │ │ │ │ │ │ ├── 05_example_partition_by_hash.mdx │ │ │ │ │ │ │ ├── 06_example_partitions_number.mdx │ │ │ │ │ │ │ ├── 07_example_partition_by_range_subpartition_by_list.mdx │ │ │ │ │ │ │ ├── 08_example_creating_unique_index.mdx │ │ │ │ │ │ │ ├── 09_example_subpartition_template.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 02_alter_table_add_partition │ │ │ │ │ │ │ ├── 01_example_adding_a_partition_to_a_list_partitioned_table.mdx │ │ │ │ │ │ │ ├── 02_example_adding_a_partition_to_a_range_partitioned_table.mdx │ │ │ │ │ │ │ ├── 03_example_adding_a_partition_with_subpartitions_number.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 03_alter_table_add_subpartition │ │ │ │ │ │ │ ├── 01_example_adding_a_subpartition_to_a_list_range_partitioned_table.mdx │ │ │ │ │ │ │ ├── 02_example_adding_a_subpartition_to_a_range_list_partitioned_table.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 04_alter_table_split_partition │ │ │ │ │ │ │ ├── 01_example_splitting_a_list_partition.mdx │ │ │ │ │ │ │ ├── 02_example_splitting_a_range_partition.mdx │ │ │ │ │ │ │ ├── 03_example_splitting_a_range_list_partition.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 05_alter_table_split_subpartition │ │ │ │ │ │ │ ├── 01_example_splitting_a_list_subpartition.mdx │ │ │ │ │ │ │ ├── 02_example_splitting_a_range_subpartition.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 06_alter_table_exchange_partition │ │ │ │ │ │ │ ├── 01_example_exchanging_a_table_for_a_partition.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 07_alter_table_move_partition │ │ │ │ │ │ │ ├── 01_example_moving_a_partition_to_a_different_tablespace.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 08_alter_table_rename_partition │ │ │ │ │ │ │ ├── 01_example_renaming_a_partition.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 09_alter_table_set_interval │ │ │ │ │ │ │ ├── 01_example_setting_an_interval_range_partition.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 10_alter_table_set_partitioning_automatic │ │ │ │ │ │ │ ├── 01_example_setting_an_automatic_list_partition.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 11_alter_table_set_subpartition_template │ │ │ │ │ │ │ ├── 01_example_setting_a_subpartition_template.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 12_drop_table.mdx │ │ │ │ │ │ ├── 13_alter_table_drop_partition │ │ │ │ │ │ │ ├── 01_example_deleting_a_partition.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 14_alter_table_drop_subpartition │ │ │ │ │ │ │ ├── 01_example_deleting_a_subpartition.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 15_truncate_table │ │ │ │ │ │ │ ├── 01_example_emptying_a_table.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 16_alter_table_truncate_partition │ │ │ │ │ │ │ ├── 01_example_emptying_a_partition.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 17_alter_table_truncate_subpartition │ │ │ │ │ │ │ ├── 01_example_emptying_a_subpartition.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 18_accessing_partition_table │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── limitations.mdx │ │ │ │ │ ├── epas_compat_bip_guide │ │ │ │ │ │ ├── 03_built-in_packages │ │ │ │ │ │ │ ├── 01_dbms_alert.mdx │ │ │ │ │ │ │ ├── 01a_dbms_assert │ │ │ │ │ │ │ │ ├── enquote_literal.mdx │ │ │ │ │ │ │ │ ├── enquote_name.mdx │ │ │ │ │ │ │ │ ├── examples.mdx │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ ├── noop.mdx │ │ │ │ │ │ │ │ ├── qualified_sql_name.mdx │ │ │ │ │ │ │ │ ├── schema_name.mdx │ │ │ │ │ │ │ │ ├── simple_sql_name.mdx │ │ │ │ │ │ │ │ └── sql_object_name.mdx │ │ │ │ │ │ │ ├── 02_dbms_aq │ │ │ │ │ │ │ │ ├── 01_enqueue.mdx │ │ │ │ │ │ │ │ ├── 02_dequeue.mdx │ │ │ │ │ │ │ │ ├── 03_register.mdx │ │ │ │ │ │ │ │ ├── 04_unregister.mdx │ │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ ├── 03_dbms_aqadm │ │ │ │ │ │ │ │ ├── 01_alter_queue.mdx │ │ │ │ │ │ │ │ ├── 02_alter_queue_table.mdx │ │ │ │ │ │ │ │ ├── 03_create_queue.mdx │ │ │ │ │ │ │ │ ├── 04_create_queue_table.mdx │ │ │ │ │ │ │ │ ├── 05_drop_queue.mdx │ │ │ │ │ │ │ │ ├── 06_drop_queue_table.mdx │ │ │ │ │ │ │ │ ├── 07_purge_queue_table.mdx │ │ │ │ │ │ │ │ ├── 08_start_queue.mdx │ │ │ │ │ │ │ │ ├── 09_stop_queue.mdx │ │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ ├── 04_dbms_crypto │ │ │ │ │ │ │ │ ├── 01_decrypt.mdx │ │ │ │ │ │ │ │ ├── 02_encrypt.mdx │ │ │ │ │ │ │ │ ├── 03_hash.mdx │ │ │ │ │ │ │ │ ├── 04_mac.mdx │ │ │ │ │ │ │ │ ├── 05_randombytes.mdx │ │ │ │ │ │ │ │ ├── 06_randominteger.mdx │ │ │ │ │ │ │ │ ├── 07_randomnumber.mdx │ │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ ├── 05_dbms_job │ │ │ │ │ │ │ │ ├── 01_broken.mdx │ │ │ │ │ │ │ │ ├── 02_change.mdx │ │ │ │ │ │ │ │ ├── 03_interval.mdx │ │ │ │ │ │ │ │ ├── 04_next_date.mdx │ │ │ │ │ │ │ │ ├── 05_remove.mdx │ │ │ │ │ │ │ │ ├── 06_run.mdx │ │ │ │ │ │ │ │ ├── 07_submit.mdx │ │ │ │ │ │ │ │ ├── 08_what.mdx │ │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ ├── 06_dbms_lob │ │ │ │ │ │ │ │ ├── 01_append.mdx │ │ │ │ │ │ │ │ ├── 02_compare.mdx │ │ │ │ │ │ │ │ ├── 03_converttoblob.mdx │ │ │ │ │ │ │ │ ├── 04_converttoclob.mdx │ │ │ │ │ │ │ │ ├── 05_copy.mdx │ │ │ │ │ │ │ │ ├── 06_erase.mdx │ │ │ │ │ │ │ │ ├── 07_get_storage_limit.mdx │ │ │ │ │ │ │ │ ├── 08_getlength.mdx │ │ │ │ │ │ │ │ ├── 09_instr.mdx │ │ │ │ │ │ │ │ ├── 10_read.mdx │ │ │ │ │ │ │ │ ├── 11_substr.mdx │ │ │ │ │ │ │ │ ├── 12_trim.mdx │ │ │ │ │ │ │ │ ├── 13_write.mdx │ │ │ │ │ │ │ │ ├── 14_writeappend.mdx │ │ │ │ │ │ │ │ ├── fileclose.mdx │ │ │ │ │ │ │ │ ├── filecloseall.mdx │ │ │ │ │ │ │ │ ├── fileexists.mdx │ │ │ │ │ │ │ │ ├── filegetname.mdx │ │ │ │ │ │ │ │ ├── fileisopen.mdx │ │ │ │ │ │ │ │ ├── fileopen.mdx │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ ├── loadblobfromfile.mdx │ │ │ │ │ │ │ │ └── loadclobfromfile.mdx │ │ │ │ │ │ │ ├── 07_dbms_lock.mdx │ │ │ │ │ │ │ ├── 08_dbms_mview │ │ │ │ │ │ │ │ ├── 01_get_mv_dependencies.mdx │ │ │ │ │ │ │ │ ├── 02_refresh.mdx │ │ │ │ │ │ │ │ ├── 03_refresh_all_mviews.mdx │ │ │ │ │ │ │ │ ├── 04_refresh_dependent.mdx │ │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ ├── 09_dbms_output.mdx │ │ │ │ │ │ │ ├── 10_dbms_pipe │ │ │ │ │ │ │ │ ├── 01_create_pipe.mdx │ │ │ │ │ │ │ │ ├── 02_next_item_pipe.mdx │ │ │ │ │ │ │ │ ├── 03_pack_message.mdx │ │ │ │ │ │ │ │ ├── 04_purge.mdx │ │ │ │ │ │ │ │ ├── 05_receive_message.mdx │ │ │ │ │ │ │ │ ├── 06_remove_pipe.mdx │ │ │ │ │ │ │ │ ├── 07_reset_buffer.mdx │ │ │ │ │ │ │ │ ├── 08_send_message.mdx │ │ │ │ │ │ │ │ ├── 09_unique_session_name.mdx │ │ │ │ │ │ │ │ ├── 10_unpack_message.mdx │ │ │ │ │ │ │ │ ├── 11_comprehensive_example.mdx │ │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ ├── 10_dbms_privilege_capture.mdx │ │ │ │ │ │ │ ├── 11_dbms_profiler.mdx │ │ │ │ │ │ │ ├── 12_dbms_random.mdx │ │ │ │ │ │ │ ├── 13_dbms_redact.mdx │ │ │ │ │ │ │ ├── 14_dbms_rls.mdx │ │ │ │ │ │ │ ├── 15_dbms_scheduler │ │ │ │ │ │ │ │ ├── 01_using_calendar_syntax_to_specify_a_repeating_interval.mdx │ │ │ │ │ │ │ │ ├── 02_create_job.mdx │ │ │ │ │ │ │ │ ├── 03_create_program.mdx │ │ │ │ │ │ │ │ ├── 04_create_schedule.mdx │ │ │ │ │ │ │ │ ├── 05_define_program_argument.mdx │ │ │ │ │ │ │ │ ├── 06_dbms_scheduler_disable.mdx │ │ │ │ │ │ │ │ ├── 07_drop_job.mdx │ │ │ │ │ │ │ │ ├── 08_drop_program.mdx │ │ │ │ │ │ │ │ ├── 09_drop_program_argument.mdx │ │ │ │ │ │ │ │ ├── 10_drop_schedule.mdx │ │ │ │ │ │ │ │ ├── 11_dbms_scheduler_enable.mdx │ │ │ │ │ │ │ │ ├── 12_evaluate_calendar_string.mdx │ │ │ │ │ │ │ │ ├── 13_run_job.mdx │ │ │ │ │ │ │ │ ├── 14_set_job_argument_value.mdx │ │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ ├── 16_dbms_session.mdx │ │ │ │ │ │ │ ├── 17_dbms_sql │ │ │ │ │ │ │ │ ├── 001_bind_array.mdx │ │ │ │ │ │ │ │ ├── 01_bind_variable.mdx │ │ │ │ │ │ │ │ ├── 02_bind_variable_char.mdx │ │ │ │ │ │ │ │ ├── 03_bind_variable_raw.mdx │ │ │ │ │ │ │ │ ├── 04_close_cursor.mdx │ │ │ │ │ │ │ │ ├── 05_column_value.mdx │ │ │ │ │ │ │ │ ├── 06_column_value_char.mdx │ │ │ │ │ │ │ │ ├── 07_column_value_raw.mdx │ │ │ │ │ │ │ │ ├── 07a_column_value_long.mdx │ │ │ │ │ │ │ │ ├── 07b_column_value_rowid.mdx │ │ │ │ │ │ │ │ ├── 07c_define_array.mdx │ │ │ │ │ │ │ │ ├── 08_define_column.mdx │ │ │ │ │ │ │ │ ├── 09_define_column_char.mdx │ │ │ │ │ │ │ │ ├── 10_define_column_raw.mdx │ │ │ │ │ │ │ │ ├── 10a_define_column_long.mdx │ │ │ │ │ │ │ │ ├── 10b_define_column_rowid.mdx │ │ │ │ │ │ │ │ ├── 11_describe_columns.mdx │ │ │ │ │ │ │ │ ├── 11a_describe_columns2.mdx │ │ │ │ │ │ │ │ ├── 11b_describe_columns3.mdx │ │ │ │ │ │ │ │ ├── 12_execute.mdx │ │ │ │ │ │ │ │ ├── 13_execute_and_fetch.mdx │ │ │ │ │ │ │ │ ├── 14_fetch_rows.mdx │ │ │ │ │ │ │ │ ├── 15_is_open.mdx │ │ │ │ │ │ │ │ ├── 16_last_row_count.mdx │ │ │ │ │ │ │ │ ├── 17_open_cursor.mdx │ │ │ │ │ │ │ │ ├── 18_parse.mdx │ │ │ │ │ │ │ │ ├── 19_to_cursor_number.mdx │ │ │ │ │ │ │ │ ├── 20_to_refcursor.mdx │ │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ ├── 18_dbms_utility.mdx │ │ │ │ │ │ │ ├── 18_dbms_xmldom │ │ │ │ │ │ │ │ ├── appendchild.mdx │ │ │ │ │ │ │ │ ├── createelement.mdx │ │ │ │ │ │ │ │ ├── createtextnode.mdx │ │ │ │ │ │ │ │ ├── freedocument.mdx │ │ │ │ │ │ │ │ ├── getattribute.mdx │ │ │ │ │ │ │ │ ├── getchildnodes.mdx │ │ │ │ │ │ │ │ ├── getfirstchild.mdx │ │ │ │ │ │ │ │ ├── getlength.mdx │ │ │ │ │ │ │ │ ├── getnodename.mdx │ │ │ │ │ │ │ │ ├── getnodevalue.mdx │ │ │ │ │ │ │ │ ├── getxmltype.mdx │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ ├── item.mdx │ │ │ │ │ │ │ │ ├── makeelement.mdx │ │ │ │ │ │ │ │ ├── makenode.mdx │ │ │ │ │ │ │ │ ├── newdomdocument.mdx │ │ │ │ │ │ │ │ ├── setattribute.mdx │ │ │ │ │ │ │ │ └── setversion.mdx │ │ │ │ │ │ │ ├── 19_utl_encode │ │ │ │ │ │ │ │ ├── 01_base64_decode.mdx │ │ │ │ │ │ │ │ ├── 02_base64_encode.mdx │ │ │ │ │ │ │ │ ├── 03_mimeheader_decode.mdx │ │ │ │ │ │ │ │ ├── 04_mimeheader_encode.mdx │ │ │ │ │ │ │ │ ├── 05_quoted_printable_decode.mdx │ │ │ │ │ │ │ │ ├── 06_quoted_printable_encode.mdx │ │ │ │ │ │ │ │ ├── 07_text_decode.mdx │ │ │ │ │ │ │ │ ├── 08_text_encode.mdx │ │ │ │ │ │ │ │ ├── 09_uudecode.mdx │ │ │ │ │ │ │ │ ├── 10_uuencode.mdx │ │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ │ ├── 20_utl_file.mdx │ │ │ │ │ │ │ ├── 21_utl_http.mdx │ │ │ │ │ │ │ ├── 22_utl_mail.mdx │ │ │ │ │ │ │ ├── 23_utl_raw.mdx │ │ │ │ │ │ │ ├── 24_utl_smtp.mdx │ │ │ │ │ │ │ ├── 25_utl_url.mdx │ │ │ │ │ │ │ ├── htp_and_htf │ │ │ │ │ │ │ │ ├── address.mdx │ │ │ │ │ │ │ │ ├── anchor.mdx │ │ │ │ │ │ │ │ ├── applet.mdx │ │ │ │ │ │ │ │ ├── area.mdx │ │ │ │ │ │ │ │ ├── base.mdx │ │ │ │ │ │ │ │ ├── basefont.mdx │ │ │ │ │ │ │ │ ├── bgsound.mdx │ │ │ │ │ │ │ │ ├── big.mdx │ │ │ │ │ │ │ │ ├── blockquote.mdx │ │ │ │ │ │ │ │ ├── body.mdx │ │ │ │ │ │ │ │ ├── bold.mdx │ │ │ │ │ │ │ │ ├── br_and_nl.mdx │ │ │ │ │ │ │ │ ├── caption.mdx │ │ │ │ │ │ │ │ ├── center.mdx │ │ │ │ │ │ │ │ ├── centeropen_and_centerclose.mdx │ │ │ │ │ │ │ │ ├── cite.mdx │ │ │ │ │ │ │ │ ├── code.mdx │ │ │ │ │ │ │ │ ├── comment.mdx │ │ │ │ │ │ │ │ ├── dfn.mdx │ │ │ │ │ │ │ │ ├── dirlist.mdx │ │ │ │ │ │ │ │ ├── div.mdx │ │ │ │ │ │ │ │ ├── dlistdef.mdx │ │ │ │ │ │ │ │ ├── dlistopen_and_dlistclose.mdx │ │ │ │ │ │ │ │ ├── dlistterm.mdx │ │ │ │ │ │ │ │ ├── em_and_emphasis.mdx │ │ │ │ │ │ │ │ ├── escape_sc.mdx │ │ │ │ │ │ │ │ ├── font.mdx │ │ │ │ │ │ │ │ ├── formcheckbox.mdx │ │ │ │ │ │ │ │ ├── formfile.mdx │ │ │ │ │ │ │ │ ├── formhidden.mdx │ │ │ │ │ │ │ │ ├── formimage.mdx │ │ │ │ │ │ │ │ ├── formopen_and_formclose.mdx │ │ │ │ │ │ │ │ ├── formpassword.mdx │ │ │ │ │ │ │ │ ├── formradio.mdx │ │ │ │ │ │ │ │ ├── formreset.mdx │ │ │ │ │ │ │ │ ├── formselectopen_and_formselectclose.mdx │ │ │ │ │ │ │ │ ├── formselectoption.mdx │ │ │ │ │ │ │ │ ├── formsubmit.mdx │ │ │ │ │ │ │ │ ├── formtext.mdx │ │ │ │ │ │ │ │ ├── formtextarea.mdx │ │ │ │ │ │ │ │ ├── formtextarea_and_formtextarea2.mdx │ │ │ │ │ │ │ │ ├── frame.mdx │ │ │ │ │ │ │ │ ├── framesetopen_and_framsetclose.mdx │ │ │ │ │ │ │ │ ├── header.mdx │ │ │ │ │ │ │ │ ├── headopen_and_headclose.mdx │ │ │ │ │ │ │ │ ├── hr.mdx │ │ │ │ │ │ │ │ ├── htmlopen_and_htmlclose.mdx │ │ │ │ │ │ │ │ ├── img.mdx │ │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ │ ├── isindex.mdx │ │ │ │ │ │ │ │ ├── italic.mdx │ │ │ │ │ │ │ │ ├── kbd_and_keyboard.mdx │ │ │ │ │ │ │ │ ├── linkrel.mdx │ │ │ │ │ │ │ │ ├── linkrev.mdx │ │ │ │ │ │ │ │ ├── listheader.mdx │ │ │ │ │ │ │ │ ├── listingopen_and_listingclose.mdx │ │ │ │ │ │ │ │ ├── listitem.mdx │ │ │ │ │ │ │ │ ├── mailto.mdx │ │ │ │ │ │ │ │ ├── mapopen_and_mapclose.mdx │ │ │ │ │ │ │ │ ├── menulistopen_and_menulistclose.mdx │ │ │ │ │ │ │ │ ├── meta.mdx │ │ │ │ │ │ │ │ ├── nobr.mdx │ │ │ │ │ │ │ │ ├── noframesopen_and_noframesclose.mdx │ │ │ │ │ │ │ │ ├── olistopen_and_olistclose.mdx │ │ │ │ │ │ │ │ ├── para_and_paragraph.mdx │ │ │ │ │ │ │ │ ├── param.mdx │ │ │ │ │ │ │ │ ├── plaintext.mdx │ │ │ │ │ │ │ │ ├── preopen_and_preclose.mdx │ │ │ │ │ │ │ │ ├── print_and_prn.mdx │ │ │ │ │ │ │ │ ├── prints_and_ps.mdx │ │ │ │ │ │ │ │ ├── s.mdx │ │ │ │ │ │ │ │ ├── sample.mdx │ │ │ │ │ │ │ │ ├── small.mdx │ │ │ │ │ │ │ │ ├── strike.mdx │ │ │ │ │ │ │ │ ├── strong.mdx │ │ │ │ │ │ │ │ ├── style.mdx │ │ │ │ │ │ │ │ ├── sub.mdx │ │ │ │ │ │ │ │ ├── sup.mdx │ │ │ │ │ │ │ │ ├── tabledata.mdx │ │ │ │ │ │ │ │ ├── tableheader.mdx │ │ │ │ │ │ │ │ ├── tableopen_and_tableclose.mdx │ │ │ │ │ │ │ │ ├── tablerow.mdx │ │ │ │ │ │ │ │ ├── teletype.mdx │ │ │ │ │ │ │ │ ├── title.mdx │ │ │ │ │ │ │ │ ├── ulist.mdx │ │ │ │ │ │ │ │ ├── underline.mdx │ │ │ │ │ │ │ │ ├── variable.mdx │ │ │ │ │ │ │ │ └── wbr.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── epas_compat_cat_views │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── oracle_compatible_views │ │ │ │ │ │ │ ├── 02_all_all_tables.mdx │ │ │ │ │ │ │ ├── 03_all_cons_columns.mdx │ │ │ │ │ │ │ ├── 04_all_constraints.mdx │ │ │ │ │ │ │ ├── 05_all_col_privs.mdx │ │ │ │ │ │ │ ├── 06_all_db_links.mdx │ │ │ │ │ │ │ ├── 07_all_dependencies.mdx │ │ │ │ │ │ │ ├── 08_all_directories.mdx │ │ │ │ │ │ │ ├── 09_all_ind_columns.mdx │ │ │ │ │ │ │ ├── 10_all_indexes.mdx │ │ │ │ │ │ │ ├── 11_all_jobs.mdx │ │ │ │ │ │ │ ├── 12_all_objects.mdx │ │ │ │ │ │ │ ├── 13_all_part_key_columns.mdx │ │ │ │ │ │ │ ├── 14_all_part_tables.mdx │ │ │ │ │ │ │ ├── 15_all_policies.mdx │ │ │ │ │ │ │ ├── 16_all_queues.mdx │ │ │ │ │ │ │ ├── 17_all_queue_tables.mdx │ │ │ │ │ │ │ ├── 18_all_sequences.mdx │ │ │ │ │ │ │ ├── 19_all_source.mdx │ │ │ │ │ │ │ ├── 20_all_subpart_key_columns.mdx │ │ │ │ │ │ │ ├── 21_all_synonyms.mdx │ │ │ │ │ │ │ ├── 22_all_tab_columns.mdx │ │ │ │ │ │ │ ├── 23_all_tab_partitions.mdx │ │ │ │ │ │ │ ├── 24_all_tab_subpartitions.mdx │ │ │ │ │ │ │ ├── 25_all_tab_privs.mdx │ │ │ │ │ │ │ ├── 26_all_tables.mdx │ │ │ │ │ │ │ ├── 27_all_triggers.mdx │ │ │ │ │ │ │ ├── 28_all_types.mdx │ │ │ │ │ │ │ ├── 29_all_users.mdx │ │ │ │ │ │ │ ├── 30_all_view_columns.mdx │ │ │ │ │ │ │ ├── 31_all_views.mdx │ │ │ │ │ │ │ ├── 32_dba_all_tables.mdx │ │ │ │ │ │ │ ├── 33_dba_cons_columns.mdx │ │ │ │ │ │ │ ├── 34_dba_constraints.mdx │ │ │ │ │ │ │ ├── 35_dba_col_privs.mdx │ │ │ │ │ │ │ ├── 36_dba_db_links.mdx │ │ │ │ │ │ │ ├── 37_dba_directories.mdx │ │ │ │ │ │ │ ├── 38_dba_dependencies.mdx │ │ │ │ │ │ │ ├── 39_dba_ind_columns.mdx │ │ │ │ │ │ │ ├── 40_dba_indexes.mdx │ │ │ │ │ │ │ ├── 41_dba_jobs.mdx │ │ │ │ │ │ │ ├── 42_dba_objects.mdx │ │ │ │ │ │ │ ├── 43_dba_part_key_columns.mdx │ │ │ │ │ │ │ ├── 44_dba_part_tables.mdx │ │ │ │ │ │ │ ├── 45_dba_policies.mdx │ │ │ │ │ │ │ ├── 45a_dba_privs_capture.mdx │ │ │ │ │ │ │ ├── 46_dba_profiles.mdx │ │ │ │ │ │ │ ├── 47_dba_queues.mdx │ │ │ │ │ │ │ ├── 48_dba_queue_tables.mdx │ │ │ │ │ │ │ ├── 49_dba_role_privs.mdx │ │ │ │ │ │ │ ├── 50_dba_roles.mdx │ │ │ │ │ │ │ ├── 51_dba_sequences.mdx │ │ │ │ │ │ │ ├── 52_dba_source.mdx │ │ │ │ │ │ │ ├── 53_dba_subpart_key_columns.mdx │ │ │ │ │ │ │ ├── 54_dba_synonyms.mdx │ │ │ │ │ │ │ ├── 55_dba_tab_columns.mdx │ │ │ │ │ │ │ ├── 56_dba_tab_partitions.mdx │ │ │ │ │ │ │ ├── 57_dba_tab_subpartitions.mdx │ │ │ │ │ │ │ ├── 58_dba_tab_privs.mdx │ │ │ │ │ │ │ ├── 59_dba_tables.mdx │ │ │ │ │ │ │ ├── 60_dba_triggers.mdx │ │ │ │ │ │ │ ├── 61_dba_types.mdx │ │ │ │ │ │ │ ├── 62_dba_users.mdx │ │ │ │ │ │ │ ├── 62a_dba_used_privs.mdx │ │ │ │ │ │ │ ├── 62b_dba_unused_privs.mdx │ │ │ │ │ │ │ ├── 63_dba_view_columns.mdx │ │ │ │ │ │ │ ├── 64_dba_views.mdx │ │ │ │ │ │ │ ├── 65_user_all_tables.mdx │ │ │ │ │ │ │ ├── 66_user_cons_columns.mdx │ │ │ │ │ │ │ ├── 67_user_constraints.mdx │ │ │ │ │ │ │ ├── 68_user_col_privs.mdx │ │ │ │ │ │ │ ├── 69_user_db_links.mdx │ │ │ │ │ │ │ ├── 70_user_dependencies.mdx │ │ │ │ │ │ │ ├── 71_user_indexes.mdx │ │ │ │ │ │ │ ├── 72_user_jobs.mdx │ │ │ │ │ │ │ ├── 73_user_objects.mdx │ │ │ │ │ │ │ ├── 74_user_part_tables.mdx │ │ │ │ │ │ │ ├── 75_user_policies.mdx │ │ │ │ │ │ │ ├── 76_user_queues.mdx │ │ │ │ │ │ │ ├── 77_user_queue_tables.mdx │ │ │ │ │ │ │ ├── 78_user_role_privs.mdx │ │ │ │ │ │ │ ├── 79_user_sequences.mdx │ │ │ │ │ │ │ ├── 80_user_source.mdx │ │ │ │ │ │ │ ├── 81_user_subpart_key_columns.mdx │ │ │ │ │ │ │ ├── 82_user_synonyms.mdx │ │ │ │ │ │ │ ├── 83_user_tab_columns.mdx │ │ │ │ │ │ │ ├── 84_user_tab_partitions.mdx │ │ │ │ │ │ │ ├── 85_user_tab_subpartitions.mdx │ │ │ │ │ │ │ ├── 86_user_tab_privs.mdx │ │ │ │ │ │ │ ├── 87_user_tables.mdx │ │ │ │ │ │ │ ├── 88_user_triggers.mdx │ │ │ │ │ │ │ ├── 89_user_types.mdx │ │ │ │ │ │ │ ├── 90_user_users.mdx │ │ │ │ │ │ │ ├── 91_user_view_columns.mdx │ │ │ │ │ │ │ ├── 92_user_views.mdx │ │ │ │ │ │ │ ├── 93_v_version.mdx │ │ │ │ │ │ │ ├── 94_product_component_version.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ └── pg_views │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── pg_attribute.mdx │ │ │ │ │ │ │ ├── pg_authid.mdx │ │ │ │ │ │ │ ├── pg_class.mdx │ │ │ │ │ │ │ ├── pg_collation.mdx │ │ │ │ │ │ │ ├── pg_database.mdx │ │ │ │ │ │ │ ├── pg_namespace.mdx │ │ │ │ │ │ │ ├── pg_partitioned_table.mdx │ │ │ │ │ │ │ ├── pg_proc.mdx │ │ │ │ │ │ │ ├── pg_subscription.mdx │ │ │ │ │ │ │ ├── pg_synonym.mdx │ │ │ │ │ │ │ ├── pg_trigger.mdx │ │ │ │ │ │ │ ├── pg_type.mdx │ │ │ │ │ │ │ └── pg_user.mdx │ │ │ │ │ ├── epas_compat_sql │ │ │ │ │ │ ├── 01_alter_capture_privilege.mdx │ │ │ │ │ │ ├── 02_alter_directory.mdx │ │ │ │ │ │ ├── 03_alter_index.mdx │ │ │ │ │ │ ├── 04_alter_procedure.mdx │ │ │ │ │ │ ├── 05_alter_profile.mdx │ │ │ │ │ │ ├── 06_alter_queue.mdx │ │ │ │ │ │ ├── 07_alter_queue_table.mdx │ │ │ │ │ │ ├── 08_alter_role_identified_by.mdx │ │ │ │ │ │ ├── 09_alter_role_managing_database_link_and_dbms_rls_privileges.mdx │ │ │ │ │ │ ├── 10_alter_sequence.mdx │ │ │ │ │ │ ├── 11_alter_session.mdx │ │ │ │ │ │ ├── 11a_alter_synonym.mdx │ │ │ │ │ │ ├── 12_alter_table.mdx │ │ │ │ │ │ ├── 13_alter_trigger.mdx │ │ │ │ │ │ ├── 14_alter_tablespace.mdx │ │ │ │ │ │ ├── 15_alter_user_identified_by.mdx │ │ │ │ │ │ ├── 16_alter_user_role_profile_management_clauses.mdx │ │ │ │ │ │ ├── 17_call.mdx │ │ │ │ │ │ ├── 18_comment.mdx │ │ │ │ │ │ ├── 19_commit.mdx │ │ │ │ │ │ ├── 19a_create_capture_privilege.mdx │ │ │ │ │ │ ├── 20_create_database.mdx │ │ │ │ │ │ ├── 21_create_public_database_link.mdx │ │ │ │ │ │ ├── 22_create_directory.mdx │ │ │ │ │ │ ├── 23_create_function.mdx │ │ │ │ │ │ ├── 24_create_index.mdx │ │ │ │ │ │ ├── 25_create_materialized_view.mdx │ │ │ │ │ │ ├── 26_create_package.mdx │ │ │ │ │ │ ├── 27_create_package_body.mdx │ │ │ │ │ │ ├── 28_create_procedure.mdx │ │ │ │ │ │ ├── 29_create_profile.mdx │ │ │ │ │ │ ├── 30_create_queue.mdx │ │ │ │ │ │ ├── 31_create_queue_table.mdx │ │ │ │ │ │ ├── 32_create_role.mdx │ │ │ │ │ │ ├── 33_create_schema.mdx │ │ │ │ │ │ ├── 34_create_sequence.mdx │ │ │ │ │ │ ├── 35_create_synonym.mdx │ │ │ │ │ │ ├── 36_create_table.mdx │ │ │ │ │ │ ├── 37_create_table_as.mdx │ │ │ │ │ │ ├── 38_create_trigger.mdx │ │ │ │ │ │ ├── 39_create_type.mdx │ │ │ │ │ │ ├── 40_create_type_body.mdx │ │ │ │ │ │ ├── 41_create_user.mdx │ │ │ │ │ │ ├── 42_create_user_role_profile_management_clauses.mdx │ │ │ │ │ │ ├── 43_create_view.mdx │ │ │ │ │ │ ├── 44_delete.mdx │ │ │ │ │ │ ├── 44a_drop_capture_privilege.mdx │ │ │ │ │ │ ├── 45_drop_public_database_link.mdx │ │ │ │ │ │ ├── 46_drop_directory.mdx │ │ │ │ │ │ ├── 47_drop_function.mdx │ │ │ │ │ │ ├── 48_drop_index.mdx │ │ │ │ │ │ ├── 49_drop_package.mdx │ │ │ │ │ │ ├── 50_drop_procedure.mdx │ │ │ │ │ │ ├── 51_drop_profile.mdx │ │ │ │ │ │ ├── 52_drop_queue.mdx │ │ │ │ │ │ ├── 53_drop_queue_table.mdx │ │ │ │ │ │ ├── 54_drop_synonym.mdx │ │ │ │ │ │ ├── 55_drop_role.mdx │ │ │ │ │ │ ├── 56_drop_sequence.mdx │ │ │ │ │ │ ├── 57_drop_table.mdx │ │ │ │ │ │ ├── 58_drop_tablespace.mdx │ │ │ │ │ │ ├── 59_drop_trigger.mdx │ │ │ │ │ │ ├── 60_drop_type.mdx │ │ │ │ │ │ ├── 61_drop_user.mdx │ │ │ │ │ │ ├── 62_drop_view.mdx │ │ │ │ │ │ ├── 63_exec.mdx │ │ │ │ │ │ ├── 64_grant.mdx │ │ │ │ │ │ ├── 65_insert.mdx │ │ │ │ │ │ ├── 65a_import_foreign_schema.mdx │ │ │ │ │ │ ├── 65a_merge.mdx │ │ │ │ │ │ ├── 66_lock.mdx │ │ │ │ │ │ ├── 67_revoke.mdx │ │ │ │ │ │ ├── 68_rollback.mdx │ │ │ │ │ │ ├── 69_rollback_to_savepoint.mdx │ │ │ │ │ │ ├── 70_savepoint.mdx │ │ │ │ │ │ ├── 71_select.mdx │ │ │ │ │ │ ├── 72_set_constraints.mdx │ │ │ │ │ │ ├── 73_set_role.mdx │ │ │ │ │ │ ├── 74_set_transaction.mdx │ │ │ │ │ │ ├── 75_truncate.mdx │ │ │ │ │ │ ├── 76_update.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── summary_oracle_config_parameters.mdx │ │ │ │ └── sql_reference │ │ │ │ │ ├── 01_sql_syntax │ │ │ │ │ ├── 01_lexical_structure.mdx │ │ │ │ │ ├── 02_identifiers_and_key_words.mdx │ │ │ │ │ ├── 03_constants.mdx │ │ │ │ │ ├── 04_comments.mdx │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 02_data_types │ │ │ │ │ ├── 01_numeric_types.mdx │ │ │ │ │ ├── 02_character_types.mdx │ │ │ │ │ ├── 03_binary_data.mdx │ │ │ │ │ ├── 03a_bfiles.mdx │ │ │ │ │ ├── 04_date_time_types.mdx │ │ │ │ │ ├── 05_boolean_type.mdx │ │ │ │ │ ├── 06_xml_type.mdx │ │ │ │ │ ├── array_types.mdx │ │ │ │ │ ├── composite_types.mdx │ │ │ │ │ ├── enumerated_types.mdx │ │ │ │ │ ├── geometric_types.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── monetary_types.mdx │ │ │ │ │ ├── network_address_types.mdx │ │ │ │ │ ├── object_identifier_types.mdx │ │ │ │ │ ├── pseudo_types.mdx │ │ │ │ │ └── range_types.mdx │ │ │ │ │ ├── 03_functions_and_operators │ │ │ │ │ ├── 01_logical_operators.mdx │ │ │ │ │ ├── 02_comparison_operators.mdx │ │ │ │ │ ├── 03_mathematical_functions_and_operators.mdx │ │ │ │ │ ├── 04_string_functions_and_operators.mdx │ │ │ │ │ ├── 05_pattern_matching_string_functions.mdx │ │ │ │ │ ├── 06_pattern_matching_using_the_like_operator.mdx │ │ │ │ │ ├── 07_data_type_formatting_functions.mdx │ │ │ │ │ ├── 08_date_time_functions_and_operators.mdx │ │ │ │ │ ├── 09_sequence_manipulation_functions.mdx │ │ │ │ │ ├── 10_conditional_expressions.mdx │ │ │ │ │ ├── 11_aggregate_functions.mdx │ │ │ │ │ ├── 12_subquery_expressions.mdx │ │ │ │ │ ├── 13_identifier_functions.mdx │ │ │ │ │ ├── 14_bitwise_functions.mdx │ │ │ │ │ ├── dump_function.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── nls_functions │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── nls_initcap.mdx │ │ │ │ │ │ ├── nls_lower.mdx │ │ │ │ │ │ └── nls_upper.mdx │ │ │ │ │ ├── to_multi_byte.mdx │ │ │ │ │ └── to_single_byte.mdx │ │ │ │ │ └── index.mdx │ │ │ ├── tools_utilities_and_components │ │ │ │ ├── application_developer_tools │ │ │ │ │ ├── 06_unicode_collation_algorithm.mdx │ │ │ │ │ ├── 10_ecpgplus.mdx │ │ │ │ │ ├── 11_libpq_c_library.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── connectivity_tools │ │ │ │ │ ├── connectors.mdx │ │ │ │ │ ├── data_sources.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── managing_connections.mdx │ │ │ │ ├── database_administration_tools │ │ │ │ │ ├── 09_tools_and_utilities.mdx │ │ │ │ │ ├── edb_clone_schema_overview.mdx │ │ │ │ │ ├── edb_loader_overview.mdx │ │ │ │ │ ├── edb_resource_manager_overview.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── epas_compat_tools_guide │ │ │ │ │ └── index.mdx │ │ │ │ └── index.mdx │ │ │ ├── upgrading │ │ │ │ ├── index.mdx │ │ │ │ ├── major_upgrade │ │ │ │ │ ├── 01_performing_an_upgrade │ │ │ │ │ │ ├── 01_linking_versus_copying.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 02_invoking_pg_upgrade │ │ │ │ │ │ ├── 01_command_line_options_reference.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 03_limitations.mdx │ │ │ │ │ ├── 03_upgrading_to_advanced_server.mdx │ │ │ │ │ ├── 05_pg_upgrade_troubleshooting.mdx │ │ │ │ │ ├── 06_reverting_to_the_old_cluster.mdx │ │ │ │ │ ├── how_pg_upgrade_works.mdx │ │ │ │ │ └── index.mdx │ │ │ │ └── minor_upgrade │ │ │ │ │ ├── 05_performing_a_minor_version_update_of_an_rpm_installation.mdx │ │ │ │ │ ├── 06_using_stackbuilder_plus_to_perform_a_minor_version_update.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── performing_a_minor_version_update_of_deb_installation.mdx │ │ │ └── working_with_oracle_data │ │ │ │ ├── 02_enhanced_compatibility_features.mdx │ │ │ │ ├── 06_dblink_ora │ │ │ │ ├── 02_calling_dblink_ora_functions.mdx │ │ │ │ ├── connecting_to_oracle.mdx │ │ │ │ └── index.mdx │ │ │ │ ├── 07_open_client_library.mdx │ │ │ │ ├── embedded_sql_commands.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── loading_bulk_data.mdx │ │ │ │ └── proprietary_source_code.mdx │ │ └── 18 │ │ │ ├── application_programming │ │ │ ├── 02_packages │ │ │ │ ├── 01_package_components.mdx │ │ │ │ ├── 01a_display_packages.mdx │ │ │ │ ├── 02_creating_packages.mdx │ │ │ │ ├── 03_referencing_a_package.mdx │ │ │ │ ├── 04_using_packages_with_user_defined_types.mdx │ │ │ │ ├── 05_dropping_a_package.mdx │ │ │ │ └── index.mdx │ │ │ ├── 12_debugger │ │ │ │ ├── configuring_debugger.mdx │ │ │ │ ├── debugger_interface.mdx │ │ │ │ ├── debugging_a_program.mdx │ │ │ │ ├── index.mdx │ │ │ │ └── starting_debugger.mdx │ │ │ ├── 15_enhanced_sql_and_other_misc_features │ │ │ │ ├── comment_command.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── logical_decoding.mdx │ │ │ │ └── obtaining_version_information.mdx │ │ │ ├── ecpgplus_guide │ │ │ │ ├── 02_overview.mdx │ │ │ │ ├── 03_using_embedded_sql.mdx │ │ │ │ ├── 04_using_descriptors.mdx │ │ │ │ ├── 05_building_executing_dynamic_sql_statements.mdx │ │ │ │ ├── 06_error_handling.mdx │ │ │ │ ├── index.mdx │ │ │ │ └── installing_ecpgplus.mdx │ │ │ ├── epas_compat_spl │ │ │ │ ├── 02_spl_programs │ │ │ │ │ ├── 02_spl_block_structure.mdx │ │ │ │ │ ├── 03_anonymous_blocks.mdx │ │ │ │ │ ├── 04_procedures_overview │ │ │ │ │ │ ├── 01_creating_a_procedure.mdx │ │ │ │ │ │ ├── 02_calling_a_procedure.mdx │ │ │ │ │ │ ├── 03_deleting_a_procedure.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 05_functions_overview │ │ │ │ │ │ ├── 01_creating_a_function.mdx │ │ │ │ │ │ ├── 02_calling_a_function.mdx │ │ │ │ │ │ ├── 03_deleting_a_function.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 06_procedure_and_function_parameters │ │ │ │ │ │ ├── 01_positional_vs_named_parameter_notation.mdx │ │ │ │ │ │ ├── 02_parameter_modes.mdx │ │ │ │ │ │ ├── 03_using_default_values_in_parameters.mdx │ │ │ │ │ │ ├── declaring_parameters.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 07_subprograms_subprocedures_and_subfunctions │ │ │ │ │ │ ├── 01_creating_a_subprocedure.mdx │ │ │ │ │ │ ├── 02_creating_a_subfunction.mdx │ │ │ │ │ │ ├── 03_block_relationships.mdx │ │ │ │ │ │ ├── 04_invoking_subprograms.mdx │ │ │ │ │ │ ├── 05_using_forward_declarations.mdx │ │ │ │ │ │ ├── 06_overloading_subprograms.mdx │ │ │ │ │ │ ├── 07_accessing_subprogram_variables.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 08_compilation_errors_in_procedures_and_functions.mdx │ │ │ │ │ ├── 09_program_security │ │ │ │ │ │ ├── 01_execute_privilege.mdx │ │ │ │ │ │ ├── 02_database_object_name_resolution.mdx │ │ │ │ │ │ ├── 03_database_object_privileges.mdx │ │ │ │ │ │ ├── 04_definers_vs_invokers_rights.mdx │ │ │ │ │ │ ├── 05_security_example.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 03_variable_declarations │ │ │ │ │ ├── 01_declaring_a_variable.mdx │ │ │ │ │ ├── 02_using__type_in_variable_declarations.mdx │ │ │ │ │ ├── 03_using__row_type_in_record_declarations.mdx │ │ │ │ │ ├── 04_user_defined_record_types_and_record_variables.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 06_transaction_control │ │ │ │ │ ├── 01_commit.mdx │ │ │ │ │ ├── 02_rollback.mdx │ │ │ │ │ ├── 03_pragma_autonomous_transaction.mdx │ │ │ │ │ ├── about_transactions.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 07_dynamic_sql.mdx │ │ │ │ ├── 08_static_cursors │ │ │ │ │ ├── 01_declaring_a_cursor.mdx │ │ │ │ │ ├── 02_opening_a_cursor.mdx │ │ │ │ │ ├── 03_fetching_rows_from_a_cursor.mdx │ │ │ │ │ ├── 04_closing_a_cursor.mdx │ │ │ │ │ ├── 05_using__rowtype_with_cursors.mdx │ │ │ │ │ ├── 06_cursor_attributes │ │ │ │ │ │ ├── 01_isopen.mdx │ │ │ │ │ │ ├── 02_found.mdx │ │ │ │ │ │ ├── 03_notfound.mdx │ │ │ │ │ │ ├── 04_rowcount.mdx │ │ │ │ │ │ ├── 05_summary_of_cursor_states_and_attributes.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 07_cursor_for_loop.mdx │ │ │ │ │ ├── 08_parameterized_cursors.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 09_ref_cursors_and_cursor_variables │ │ │ │ │ ├── 01_ref_cursor_overview.mdx │ │ │ │ │ ├── 02_declaring_a_cursor_variable │ │ │ │ │ │ ├── 01_declaring_a_sys_refcursor_cursor_variable.mdx │ │ │ │ │ │ ├── 02_declaring_a_user_defined_ref_cursor_type_variable.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 03_opening_a_cursor_variable.mdx │ │ │ │ │ ├── 04_fetching_rows_from_a_cursor_variable.mdx │ │ │ │ │ ├── 05_closing_a_cursor_variable.mdx │ │ │ │ │ ├── 06_usage_restrictions.mdx │ │ │ │ │ ├── 07_examples │ │ │ │ │ │ ├── 01_returning_a_ref_cursor_from_a_function.mdx │ │ │ │ │ │ ├── 02_modularizing_cursor_operations.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 08_dynamic_queries_with_ref_cursors.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 10_collections │ │ │ │ │ ├── 01_associative_arrays.mdx │ │ │ │ │ ├── 02_nested_tables.mdx │ │ │ │ │ ├── 03_varrays.mdx │ │ │ │ │ ├── about_collections.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 12_working_with_collections │ │ │ │ │ ├── 01_table.mdx │ │ │ │ │ ├── 02_using_the_multiset_union_operator.mdx │ │ │ │ │ ├── 03_using_the_forall_statement.mdx │ │ │ │ │ ├── 04_using_the_bulk_collect_clause │ │ │ │ │ │ ├── 01_select_bulk_collect.mdx │ │ │ │ │ │ ├── 02_fetch_bulk_collect.mdx │ │ │ │ │ │ ├── 03_execute_immediate_bulk_collect.mdx │ │ │ │ │ │ ├── 04_returning_bulk_collect.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 05_errors_and_messages.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 13_triggers │ │ │ │ │ ├── 01_overview.mdx │ │ │ │ │ ├── 02_types_of_triggers.mdx │ │ │ │ │ ├── 03_creating_triggers.mdx │ │ │ │ │ ├── 04_trigger_variables.mdx │ │ │ │ │ ├── 05_transactions_and_exceptions.mdx │ │ │ │ │ ├── 06_compound_triggers.mdx │ │ │ │ │ ├── 07_trigger_examples │ │ │ │ │ │ ├── 01_before_statement_level_trigger.mdx │ │ │ │ │ │ ├── 02_after_statement_level_trigger.mdx │ │ │ │ │ │ ├── 03_before_row_level_trigger.mdx │ │ │ │ │ │ ├── 04_after_row_level_trigger.mdx │ │ │ │ │ │ ├── 05_instead_of_trigger.mdx │ │ │ │ │ │ ├── 06_compound_trigger.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 14_packages.mdx │ │ │ │ ├── 15_object_types_and_objects │ │ │ │ │ ├── 01_basic_object_concepts │ │ │ │ │ │ ├── 01_attributes.mdx │ │ │ │ │ │ ├── 02_methods.mdx │ │ │ │ │ │ ├── 03_overloading_methods.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 02_object_type_components │ │ │ │ │ │ ├── 01_object_type_specification_syntax.mdx │ │ │ │ │ │ ├── 02_object_type_body_syntax.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 03_creating_object_types │ │ │ │ │ │ ├── 01_member_methods.mdx │ │ │ │ │ │ ├── 02_static_methods.mdx │ │ │ │ │ │ ├── 03_constructor_methods.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 04_creating_object_instances.mdx │ │ │ │ │ ├── 05_referencing_an_object.mdx │ │ │ │ │ ├── 06_dropping_an_object_type.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── images │ │ │ │ │ ├── definer's_rights_package.png │ │ │ │ │ ├── definers_rights_package.png │ │ │ │ │ └── invokers_rights_programs.png │ │ │ │ └── index.mdx │ │ │ ├── epas_compat_table_partitioning │ │ │ │ ├── 01_oracle_compat_summary.mdx │ │ │ │ ├── 02_selecting_a_partition_type │ │ │ │ │ ├── 01_interval_range_partitioning.mdx │ │ │ │ │ ├── 02_automatic_list_partitioning.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 03_using_partition_pruning │ │ │ │ │ ├── 01_example_partition_pruning.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 05_handling_stray_values_in_a_list_or_range_partitioned_table │ │ │ │ │ ├── defining_a_default_partition.mdx │ │ │ │ │ ├── defining_a_maxvalue_partition.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 06_specifying_multiple_partitioning_keys_in_a_range_partitioned_table.mdx │ │ │ │ ├── 07_retrieving_information_about_a_partitioned_table │ │ │ │ │ └── index.mdx │ │ │ │ └── index.mdx │ │ │ ├── index.mdx │ │ │ └── optimizing_code │ │ │ │ ├── 05_optimizer_hints │ │ │ │ ├── 01_default_optimization_modes.mdx │ │ │ │ ├── 02_access_method_hints.mdx │ │ │ │ ├── 03_specifying_a_join_order.mdx │ │ │ │ ├── 04_joining_relations_hints.mdx │ │ │ │ ├── 05_global_hints.mdx │ │ │ │ ├── 06_using_the_append_optimizer_hint.mdx │ │ │ │ ├── 07_parallelism_hints.mdx │ │ │ │ ├── 08_conflicting_hints.mdx │ │ │ │ ├── about_optimizer_hints.mdx │ │ │ │ └── index.mdx │ │ │ │ ├── index.mdx │ │ │ │ └── optimizing_code.mdx │ │ │ ├── database_administration │ │ │ ├── 01_configuration_parameters │ │ │ │ ├── 01_setting_new_parameters.mdx │ │ │ │ ├── 03_configuration_parameters_by_functionality │ │ │ │ │ ├── 01_top_performance_related_parameters │ │ │ │ │ │ ├── 01_shared_buffers.mdx │ │ │ │ │ │ ├── 02_work_mem.mdx │ │ │ │ │ │ ├── 03_maintenance_work_mem.mdx │ │ │ │ │ │ ├── 04_wal_buffers.mdx │ │ │ │ │ │ ├── 05_checkpoint_segments.mdx │ │ │ │ │ │ ├── 06_checkpoint_completion_target.mdx │ │ │ │ │ │ ├── 07_checkpoint_timeout.mdx │ │ │ │ │ │ ├── 08_max_wal_size.mdx │ │ │ │ │ │ ├── 09_min_wal_size.mdx │ │ │ │ │ │ ├── 10_bgwriter_delay.mdx │ │ │ │ │ │ ├── 11_seq_page_cost.mdx │ │ │ │ │ │ ├── 12_random_page_cost.mdx │ │ │ │ │ │ ├── 13_effective_cache_size.mdx │ │ │ │ │ │ ├── 14_synchronous_commit.mdx │ │ │ │ │ │ ├── 15_edb_max_spins_per_delay.mdx │ │ │ │ │ │ ├── 16_pg_prewarm.autoprewarm.mdx │ │ │ │ │ │ ├── 17_pg_prewarm.autoprewarm_interval.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 02_resource_usage_memory.mdx │ │ │ │ │ ├── 03_resource_usage_edb_resource_manager.mdx │ │ │ │ │ ├── 04_query_tuning.mdx │ │ │ │ │ ├── 05_query_tuning_planner_method_configuration.mdx │ │ │ │ │ ├── 06_reporting_and_logging_what_to_log.mdx │ │ │ │ │ ├── 07_auditing_settings │ │ │ │ │ │ ├── 01_edb_audit.mdx │ │ │ │ │ │ ├── 02_edb_audit_directory.mdx │ │ │ │ │ │ ├── 03_edb_audit_filename.mdx │ │ │ │ │ │ ├── 04_edb_audit_rotation_day.mdx │ │ │ │ │ │ ├── 05_edb_audit_rotation_size.mdx │ │ │ │ │ │ ├── 06_edb_audit_rotation_seconds.mdx │ │ │ │ │ │ ├── 07_edb_audit_connect.mdx │ │ │ │ │ │ ├── 08_edb_audit_disconnect.mdx │ │ │ │ │ │ ├── 09_edb_audit_statement.mdx │ │ │ │ │ │ ├── 10_edb_audit_tag.mdx │ │ │ │ │ │ ├── 11_edb_audit_destination.mdx │ │ │ │ │ │ ├── 12_edb_log_every_bulk_value.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 08_ccd_locale_and_formatting.mdx │ │ │ │ │ ├── 09_ccd_statement_behaviour.mdx │ │ │ │ │ ├── 10_ccd_other_defaults.mdx │ │ │ │ │ ├── 11_compatibility_options.mdx │ │ │ │ │ ├── 12_customized_options.mdx │ │ │ │ │ ├── 13_ungrouped.mdx │ │ │ │ │ ├── 14_audit_archiver.mdx │ │ │ │ │ ├── attribute_descriptions.mdx │ │ │ │ │ └── index.mdx │ │ │ │ └── index.mdx │ │ │ ├── 02_edb_loader │ │ │ │ ├── building_the_control_file │ │ │ │ │ ├── control_file_examples.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── data_loading_methods.mdx │ │ │ │ ├── edb_loader_overview_and_restrictions.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── invoking_edb_loader │ │ │ │ │ ├── conventional_path_load.mdx │ │ │ │ │ ├── direct_path_load.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── parallel_direct_path_load.mdx │ │ │ │ │ ├── performing_remote_loading.mdx │ │ │ │ │ └── running_edb_loader.mdx │ │ │ │ └── using_edb_loader.mdx │ │ │ ├── 10_edb_resource_manager │ │ │ │ ├── cpu_usage_throttling.mdx │ │ │ │ ├── creating_resource_groups.mdx │ │ │ │ ├── dirty_buffer_throttling.mdx │ │ │ │ ├── edb_resource_manager_key_concepts.mdx │ │ │ │ └── index.mdx │ │ │ ├── 14_edb_clone_schema │ │ │ │ ├── checking_the_status.mdx │ │ │ │ ├── cloning_with_non_super_user.mdx │ │ │ │ ├── copying_a_remote_schema.mdx │ │ │ │ ├── copying_a_schema.mdx │ │ │ │ ├── edb_clone_schema_overview.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── performing_cleanup_tasks.mdx │ │ │ │ └── setting_up_edb_clone_schema.mdx │ │ │ ├── index.mdx │ │ │ └── roles.mdx │ │ │ ├── epas_platform_support │ │ │ └── index.mdx │ │ │ ├── epas_rel_notes │ │ │ ├── epas18_1_rel_notes.mdx │ │ │ └── index.mdx │ │ │ ├── epas_security_guide │ │ │ ├── 02_protecting_against_sql_injection_attacks │ │ │ │ ├── 01_sql_protect_overview.mdx │ │ │ │ ├── 02_configuring_sql_protect.mdx │ │ │ │ ├── 03_common_maintenance_operations.mdx │ │ │ │ ├── 04_backing_up_restoring_sql_protect.mdx │ │ │ │ └── index.mdx │ │ │ ├── 03_edb_wrap │ │ │ │ ├── edb_wrap_key_concepts.mdx │ │ │ │ ├── index.mdx │ │ │ │ └── obfuscating_source_code.mdx │ │ │ ├── 03_virtual_private_database.mdx │ │ │ ├── 04_profile_management │ │ │ │ ├── 01_creating_a_new_profile │ │ │ │ │ ├── 01_creating_a_password_function.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 02_altering_a_profile.mdx │ │ │ │ ├── 03_dropping_a_profile.mdx │ │ │ │ ├── 04_associating_a_profile_with_an_existing_role.mdx │ │ │ │ ├── 05_unlocking_a_locked_account.mdx │ │ │ │ ├── 06_creating_a_new_role_associated_with_a_profile.mdx │ │ │ │ ├── 07_backing_up_profile_management_functions.mdx │ │ │ │ ├── index.mdx │ │ │ │ └── profile_overview.mdx │ │ │ ├── 04_sslutils.mdx │ │ │ ├── 05_data_redaction │ │ │ │ ├── creating_a_data_redaction_policy.mdx │ │ │ │ ├── data_redaction_key_concepts.mdx │ │ │ │ ├── data_redaction_system_catalogs.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── modifying_a_data_redaction_policy.mdx │ │ │ │ └── removing_a_data_redaction_policy.mdx │ │ │ ├── 05_edb_audit_logging │ │ │ │ ├── 02_selecting_sql_statements_to_audit.mdx │ │ │ │ ├── 03_enabling_audit_logging.mdx │ │ │ │ ├── 05_using_error_codes_to_filter_audit_logs.mdx │ │ │ │ ├── 06_using_command_tags_to_filter_audit_logs.mdx │ │ │ │ ├── 07_redacting_passwords_from_audit_logs.mdx │ │ │ │ ├── 08_audit_log_archiving.mdx │ │ │ │ ├── 09_object_auditing.mdx │ │ │ │ └── index.mdx │ │ │ ├── index.mdx │ │ │ └── tde_feature.mdx │ │ │ ├── fundamentals │ │ │ ├── epas_fundamentals │ │ │ │ ├── benefits_epas.mdx │ │ │ │ ├── epas_compat_ora_dev_guide │ │ │ │ │ └── index.mdx │ │ │ │ ├── index.mdx │ │ │ │ └── terminology.mdx │ │ │ ├── index.mdx │ │ │ └── sql_fundamentals │ │ │ │ ├── 02_about_the_examples_used_in_this_guide.mdx │ │ │ │ ├── 02_conventions.mdx │ │ │ │ ├── 02_sql_tutorial │ │ │ │ ├── 01_sample_database │ │ │ │ │ ├── 01_sample_database_installation.mdx │ │ │ │ │ ├── 02_sample_database_description.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 02_creating_a_new_table.mdx │ │ │ │ ├── 03_populating_a_table_with_rows.mdx │ │ │ │ ├── 04_querying_a_table.mdx │ │ │ │ ├── 05_joins_between_tables.mdx │ │ │ │ ├── 06_aggregate_functions.mdx │ │ │ │ ├── 07_updates.mdx │ │ │ │ ├── 08_deletions.mdx │ │ │ │ ├── 09_the_sql_language.mdx │ │ │ │ └── index.mdx │ │ │ │ ├── 03_advanced_concepts │ │ │ │ ├── 01_views.mdx │ │ │ │ ├── 02_foreign_keys.mdx │ │ │ │ ├── 03_the_rownum_pseudo_column.mdx │ │ │ │ ├── 04_synonyms.mdx │ │ │ │ ├── 05_hierarchical_queries │ │ │ │ │ ├── 01_defining_the_parent_child_relationship.mdx │ │ │ │ │ ├── 02_selecting_the_root_nodes.mdx │ │ │ │ │ ├── 03_organization_tree_in_the_sample_application.mdx │ │ │ │ │ ├── 04_node_level.mdx │ │ │ │ │ ├── 05_ordering_the_siblings.mdx │ │ │ │ │ ├── 06_retrieving_the_root_node_with_connect_by_root.mdx │ │ │ │ │ ├── 07_retrieving_a_path_with_sys_connect_by_path.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 06_multidimensional_analysis │ │ │ │ │ ├── 01_rollup_extension.mdx │ │ │ │ │ ├── 02_cube_extension.mdx │ │ │ │ │ ├── 03_grouping_sets_extension.mdx │ │ │ │ │ ├── 04_grouping_function.mdx │ │ │ │ │ ├── 05_grouping_id_function.mdx │ │ │ │ │ └── index.mdx │ │ │ │ └── index.mdx │ │ │ │ ├── 03_examples_used.mdx │ │ │ │ └── index.mdx │ │ │ ├── images │ │ │ ├── accessing_configuration_files.png │ │ │ ├── acknowledging_components_removed.png │ │ │ ├── additional_configuration.png │ │ │ ├── additional_directories.png │ │ │ ├── advanced_server_dialect.png │ │ │ ├── advanced_server_installation_completion.png │ │ │ ├── advanced_server_installer_welcome.png │ │ │ ├── advanced_server_services.png │ │ │ ├── advanced_server_startup.png │ │ │ ├── advanced_server_uninstaller.png │ │ │ ├── configuring_advanced_server_to_use_trust_authentication.png │ │ │ ├── connecting_server.png │ │ │ ├── connecting_to_advanced_server_database.png │ │ │ ├── connecting_to_server.png │ │ │ ├── definer's_rights_package.png │ │ │ ├── download-complete-confirmation.png │ │ │ ├── download_complete.png │ │ │ ├── download_complete_confirmation.png │ │ │ ├── dynatune_dynamic_tuning_server_utilization.png │ │ │ ├── dynatune_dynamic_tuning_workload_profile.png │ │ │ ├── ecpg_path.png │ │ │ ├── employee_organization_hierarchy.png │ │ │ ├── enterprisedb_license_agreement.png │ │ │ ├── epas_tools_utility_edb_wrap.png │ │ │ ├── installation_directory.png │ │ │ ├── installing_advanced_server.png │ │ │ ├── invokers_rights_programs.png │ │ │ ├── open_client_library.png │ │ │ ├── parameters_tab.png │ │ │ ├── password_window.png │ │ │ ├── pgadmin4_client_dashboard.png │ │ │ ├── pre_installation_summary.png │ │ │ ├── program_body.png │ │ │ ├── proxy_servers.png │ │ │ ├── ready_to_install.png │ │ │ ├── sample_database_tables.png │ │ │ ├── select_components.png │ │ │ ├── selected-packages-summary-window.png │ │ │ ├── selected_packages_summary_window.png │ │ │ ├── setting_global_breakpoint_from_left-hand_margin.png │ │ │ ├── setup_wizard.png │ │ │ ├── stackBuilder_plus_confirms_the_completed_installation.png │ │ │ ├── stack_tab.png │ │ │ ├── stackbuilder-plus-confirms-the-completed-installation.png │ │ │ ├── stackbuilder_plus_completed_installation.png │ │ │ ├── stackbuilder_plus_module_selection.png │ │ │ ├── stackbuilder_plus_welcome.png │ │ │ ├── summary-window-displaying-selected-packages.png │ │ │ ├── summary_window_displaying_selected_packages.png │ │ │ ├── the-proxy-servers-dialog.png │ │ │ ├── the-stackbuilder-plus-module-selection-window.png │ │ │ ├── the-stackbuilder-plus-welcome.png │ │ │ ├── the_proxy_servers_dialog.png │ │ │ ├── the_stackBuilder_plus_module_selection_window.png │ │ │ ├── the_stackBuilder_plus_welcome.png │ │ │ └── uninstallation_complete.png │ │ │ ├── index.mdx │ │ │ ├── installing │ │ │ ├── index.mdx │ │ │ ├── linux_arm64 │ │ │ │ ├── epas_debian_12.mdx │ │ │ │ ├── epas_rhel_9.mdx │ │ │ │ └── index.mdx │ │ │ ├── linux_install_details │ │ │ │ ├── component_locations.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── installing_epas_using_local_repository.mdx │ │ │ │ ├── managing_an_advanced_server_installation │ │ │ │ │ ├── configuring_a_package_installation.mdx │ │ │ │ │ ├── connecting_to_epas.mdx │ │ │ │ │ ├── exclude_include_packages.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── modifying_the_data_directory_location.mdx │ │ │ │ │ ├── specifying_cluster_options.mdx │ │ │ │ │ ├── starting_and_stopping_services.mdx │ │ │ │ │ └── starting_multiple_postmasters.mdx │ │ │ │ ├── rpm_packages.mdx │ │ │ │ └── updating_an_rpm_installation.mdx │ │ │ ├── linux_ppc64le │ │ │ │ ├── epas_rhel_8.mdx │ │ │ │ ├── epas_rhel_9.mdx │ │ │ │ ├── epas_sles_15.mdx │ │ │ │ └── index.mdx │ │ │ ├── linux_x86_64 │ │ │ │ ├── epas_debian_11.mdx │ │ │ │ ├── epas_debian_12.mdx │ │ │ │ ├── epas_other_linux_8.mdx │ │ │ │ ├── epas_other_linux_9.mdx │ │ │ │ ├── epas_rhel_8.mdx │ │ │ │ ├── epas_rhel_9.mdx │ │ │ │ ├── epas_sles_15.mdx │ │ │ │ ├── epas_ubuntu_22.mdx │ │ │ │ ├── epas_ubuntu_24.mdx │ │ │ │ └── index.mdx │ │ │ ├── troubleshooting │ │ │ │ ├── index.mdx │ │ │ │ ├── linux_troubleshooting │ │ │ │ │ ├── enabling_core_dump.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── installation_troubleshooting_linux.mdx │ │ │ │ └── windows_troubleshooting.mdx │ │ │ ├── uninstalling │ │ │ │ ├── index.mdx │ │ │ │ ├── linux_uninstall.mdx │ │ │ │ └── windows_uninstall.mdx │ │ │ └── windows │ │ │ │ ├── index.mdx │ │ │ │ ├── installing_advanced_server_with_the_interactive_installer │ │ │ │ ├── index.mdx │ │ │ │ ├── invoking_the_graphical_installer_from_the_command_line │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── performing_an_installation_with_limited_privileges.mdx │ │ │ │ │ ├── performing_an_unattended_installation.mdx │ │ │ │ │ └── reference_command_line_options.mdx │ │ │ │ ├── performing_a_graphical_installation_on_windows.mdx │ │ │ │ ├── setting_cluster_preferences.mdx │ │ │ │ └── using_stackbuilder_plus.mdx │ │ │ │ └── managing_an_advanced_server_installation │ │ │ │ ├── configuring_epas.mdx │ │ │ │ ├── controlling_server_startup_behavior_on_windows.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── starting_and_stopping_epas.mdx │ │ │ │ ├── using_pg_ctl_to_control_advanced_server.mdx │ │ │ │ └── using_the_windows_services_applet.mdx │ │ │ ├── managing_performance │ │ │ ├── 03_sql_profiler.mdx │ │ │ ├── 04_dynamic_runtime_instrumentation_tools_architecture_DRITA │ │ │ │ ├── index.mdx │ │ │ │ ├── performance_tuning_recommendations.mdx │ │ │ │ ├── simulating_statspack_reports.mdx │ │ │ │ ├── taking_a_snapshot.mdx │ │ │ │ └── using_drita_functions.mdx │ │ │ ├── evaluating_wait_states.mdx │ │ │ ├── index.mdx │ │ │ ├── query_advisor.mdx │ │ │ └── using_dynatune.mdx │ │ │ ├── planning │ │ │ ├── configuration_mode.mdx │ │ │ ├── deployment_options │ │ │ │ └── index.mdx │ │ │ ├── index.mdx │ │ │ └── planning_prerequisites │ │ │ │ ├── epas_limitations │ │ │ │ └── index.mdx │ │ │ │ ├── epas_requirements │ │ │ │ └── index.mdx │ │ │ │ └── index.mdx │ │ │ ├── reference │ │ │ ├── application_programmer_reference │ │ │ │ ├── 01_table_partitioning_views_reference │ │ │ │ │ ├── 01_all_part_tables.mdx │ │ │ │ │ ├── 02_all_tab_partitions.mdx │ │ │ │ │ ├── 03_all_tab_subpartitions.mdx │ │ │ │ │ ├── 04_all_part_key_columns.mdx │ │ │ │ │ ├── 05_all_subpart_key_columns.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 03_system_catalog_tables.mdx │ │ │ │ ├── 07_reference │ │ │ │ │ ├── c_preprocessor_directives.mdx │ │ │ │ │ ├── ecpgplus_statements.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── sqlda_structure.mdx │ │ │ │ │ ├── supported_c_data_types.mdx │ │ │ │ │ └── type_codes.mdx │ │ │ │ ├── index.mdx │ │ │ │ └── stored_procedural_language_reference │ │ │ │ │ ├── 01_basic_spl_elements │ │ │ │ │ ├── 02_case_sensitivity.mdx │ │ │ │ │ ├── 03_identifiers.mdx │ │ │ │ │ ├── 04_qualifiers.mdx │ │ │ │ │ ├── 05_constants.mdx │ │ │ │ │ ├── 06_user_defined_pl_sql_subtypes.mdx │ │ │ │ │ ├── 07_character.mdx │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 04_basic_statements │ │ │ │ │ ├── 01_assignment.mdx │ │ │ │ │ ├── 02_delete.mdx │ │ │ │ │ ├── 03_insert.mdx │ │ │ │ │ ├── 04_null.mdx │ │ │ │ │ ├── 05_using_the_returning_into_clause.mdx │ │ │ │ │ ├── 06_select_into.mdx │ │ │ │ │ ├── 07_update.mdx │ │ │ │ │ ├── 08_obtaining_the_result_status.mdx │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 05_control_structures │ │ │ │ │ ├── 01_if_statement │ │ │ │ │ │ ├── 01_if_then.mdx │ │ │ │ │ │ ├── 02_if_then_else.mdx │ │ │ │ │ │ ├── 03_if_then_else_if.mdx │ │ │ │ │ │ ├── 04_if_then_elseif_else.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 02_return_statement.mdx │ │ │ │ │ ├── 03_goto_statement.mdx │ │ │ │ │ ├── 04_case_expression │ │ │ │ │ │ ├── 01_selector_case_expression.mdx │ │ │ │ │ │ ├── 02_searched_case_expression.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 05_case_statement │ │ │ │ │ │ ├── 01_selector_case_statement.mdx │ │ │ │ │ │ ├── 02_searched_case_statement.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 06_loops │ │ │ │ │ │ ├── 01_loop.mdx │ │ │ │ │ │ ├── 02_exit.mdx │ │ │ │ │ │ ├── 03_continue.mdx │ │ │ │ │ │ ├── 04_while.mdx │ │ │ │ │ │ ├── 05_for_integer_variant.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 07_exception_handling.mdx │ │ │ │ │ ├── 08_user_defined_exceptions.mdx │ │ │ │ │ ├── 09_pragma_exception_init.mdx │ │ │ │ │ ├── 10_raise_application_error.mdx │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 11_collection_methods │ │ │ │ │ ├── 01_count.mdx │ │ │ │ │ ├── 02_deletes.mdx │ │ │ │ │ ├── 03_exists.mdx │ │ │ │ │ ├── 04_extend.mdx │ │ │ │ │ ├── 05_first.mdx │ │ │ │ │ ├── 06_last.mdx │ │ │ │ │ ├── 07_limit.mdx │ │ │ │ │ ├── 08_next.mdx │ │ │ │ │ ├── 09_prior.mdx │ │ │ │ │ ├── 10_trim.mdx │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 17_advanced_server_keywords.mdx │ │ │ │ │ └── index.mdx │ │ │ ├── database_administrator_reference │ │ │ │ ├── 01_audit_logging_configuration_parameters.mdx │ │ │ │ ├── 01_introduction │ │ │ │ │ ├── 01_edb_redwood_date.mdx │ │ │ │ │ ├── 02_edb_redwood_raw_names.mdx │ │ │ │ │ ├── 03_edb_redwood_strings.mdx │ │ │ │ │ ├── 04_edb_stmt_level_tx.mdx │ │ │ │ │ ├── 05_oracle_home.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 02_summary_of_configuration_parameters.mdx │ │ │ │ ├── 04_audit_log_file.mdx │ │ │ │ ├── edb_loader_control_file_parameters.mdx │ │ │ │ ├── edb_resource_manager_system_catalogs.mdx │ │ │ │ └── index.mdx │ │ │ ├── index.mdx │ │ │ ├── oracle_compatibility_reference │ │ │ │ ├── 01_dblink_ora_functions_and_procedures │ │ │ │ │ ├── 01_dblink_ora_connect.mdx │ │ │ │ │ ├── 02_dblink_ora_status.mdx │ │ │ │ │ ├── 03_dblink_ora_disconnect.mdx │ │ │ │ │ ├── 04_dblink_ora_record.mdx │ │ │ │ │ ├── 05_dblink_ora_call.mdx │ │ │ │ │ ├── 06_dblink_ora_exec.mdx │ │ │ │ │ ├── 07_dblink_ora_copy.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 04_partitioning_commands_compatible_with_oracle_databases │ │ │ │ │ ├── 01_create_table_partition_by │ │ │ │ │ │ ├── 01_example_partition_by_list.mdx │ │ │ │ │ │ ├── 02_example_automatic_list_partition.mdx │ │ │ │ │ │ ├── 03_example_partition_by_range.mdx │ │ │ │ │ │ ├── 04_example_interval_range_partition.mdx │ │ │ │ │ │ ├── 05_example_partition_by_hash.mdx │ │ │ │ │ │ ├── 06_example_partitions_number.mdx │ │ │ │ │ │ ├── 07_example_partition_by_range_subpartition_by_list.mdx │ │ │ │ │ │ ├── 08_example_creating_unique_index.mdx │ │ │ │ │ │ ├── 09_example_subpartition_template.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 02_alter_table_add_partition │ │ │ │ │ │ ├── 01_example_adding_a_partition_to_a_list_partitioned_table.mdx │ │ │ │ │ │ ├── 02_example_adding_a_partition_to_a_range_partitioned_table.mdx │ │ │ │ │ │ ├── 03_example_adding_a_partition_with_subpartitions_number.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 03_alter_table_add_subpartition │ │ │ │ │ │ ├── 01_example_adding_a_subpartition_to_a_list_range_partitioned_table.mdx │ │ │ │ │ │ ├── 02_example_adding_a_subpartition_to_a_range_list_partitioned_table.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 04_alter_table_split_partition │ │ │ │ │ │ ├── 01_example_splitting_a_list_partition.mdx │ │ │ │ │ │ ├── 02_example_splitting_a_range_partition.mdx │ │ │ │ │ │ ├── 03_example_splitting_a_range_list_partition.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 05_alter_table_split_subpartition │ │ │ │ │ │ ├── 01_example_splitting_a_list_subpartition.mdx │ │ │ │ │ │ ├── 02_example_splitting_a_range_subpartition.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 06_alter_table_exchange_partition │ │ │ │ │ │ ├── 01_example_exchanging_a_table_for_a_partition.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 07_alter_table_move_partition │ │ │ │ │ │ ├── 01_example_moving_a_partition_to_a_different_tablespace.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 08_alter_table_rename_partition │ │ │ │ │ │ ├── 01_example_renaming_a_partition.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 09_alter_table_set_interval │ │ │ │ │ │ ├── 01_example_setting_an_interval_range_partition.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 10_alter_table_set_partitioning_automatic │ │ │ │ │ │ ├── 01_example_setting_an_automatic_list_partition.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 11_alter_table_set_subpartition_template │ │ │ │ │ │ ├── 01_example_setting_a_subpartition_template.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 12_drop_table.mdx │ │ │ │ │ ├── 13_alter_table_drop_partition │ │ │ │ │ │ ├── 01_example_deleting_a_partition.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 14_alter_table_drop_subpartition │ │ │ │ │ │ ├── 01_example_deleting_a_subpartition.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 15_truncate_table │ │ │ │ │ │ ├── 01_example_emptying_a_table.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 16_alter_table_truncate_partition │ │ │ │ │ │ ├── 01_example_emptying_a_partition.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 17_alter_table_truncate_subpartition │ │ │ │ │ │ ├── 01_example_emptying_a_subpartition.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── 18_accessing_partition_table │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── limitations.mdx │ │ │ │ ├── epas_compat_bip_guide │ │ │ │ │ ├── 03_built-in_packages │ │ │ │ │ │ ├── 01_dbms_alert.mdx │ │ │ │ │ │ ├── 01a_dbms_assert │ │ │ │ │ │ │ ├── enquote_literal.mdx │ │ │ │ │ │ │ ├── enquote_name.mdx │ │ │ │ │ │ │ ├── examples.mdx │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── noop.mdx │ │ │ │ │ │ │ ├── qualified_sql_name.mdx │ │ │ │ │ │ │ ├── schema_name.mdx │ │ │ │ │ │ │ ├── simple_sql_name.mdx │ │ │ │ │ │ │ └── sql_object_name.mdx │ │ │ │ │ │ ├── 02_dbms_aq │ │ │ │ │ │ │ ├── 01_enqueue.mdx │ │ │ │ │ │ │ ├── 02_dequeue.mdx │ │ │ │ │ │ │ ├── 03_register.mdx │ │ │ │ │ │ │ ├── 04_unregister.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 03_dbms_aqadm │ │ │ │ │ │ │ ├── 01_alter_queue.mdx │ │ │ │ │ │ │ ├── 02_alter_queue_table.mdx │ │ │ │ │ │ │ ├── 03_create_queue.mdx │ │ │ │ │ │ │ ├── 04_create_queue_table.mdx │ │ │ │ │ │ │ ├── 05_drop_queue.mdx │ │ │ │ │ │ │ ├── 06_drop_queue_table.mdx │ │ │ │ │ │ │ ├── 07_purge_queue_table.mdx │ │ │ │ │ │ │ ├── 08_start_queue.mdx │ │ │ │ │ │ │ ├── 09_stop_queue.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 04_dbms_crypto │ │ │ │ │ │ │ ├── 01_decrypt.mdx │ │ │ │ │ │ │ ├── 02_encrypt.mdx │ │ │ │ │ │ │ ├── 03_hash.mdx │ │ │ │ │ │ │ ├── 04_mac.mdx │ │ │ │ │ │ │ ├── 05_randombytes.mdx │ │ │ │ │ │ │ ├── 06_randominteger.mdx │ │ │ │ │ │ │ ├── 07_randomnumber.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 05_dbms_job │ │ │ │ │ │ │ ├── 01_broken.mdx │ │ │ │ │ │ │ ├── 02_change.mdx │ │ │ │ │ │ │ ├── 03_interval.mdx │ │ │ │ │ │ │ ├── 04_next_date.mdx │ │ │ │ │ │ │ ├── 05_remove.mdx │ │ │ │ │ │ │ ├── 06_run.mdx │ │ │ │ │ │ │ ├── 07_submit.mdx │ │ │ │ │ │ │ ├── 08_what.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 06_dbms_lob │ │ │ │ │ │ │ ├── 01_append.mdx │ │ │ │ │ │ │ ├── 02_compare.mdx │ │ │ │ │ │ │ ├── 03_converttoblob.mdx │ │ │ │ │ │ │ ├── 04_converttoclob.mdx │ │ │ │ │ │ │ ├── 05_copy.mdx │ │ │ │ │ │ │ ├── 06_erase.mdx │ │ │ │ │ │ │ ├── 07_get_storage_limit.mdx │ │ │ │ │ │ │ ├── 08_getlength.mdx │ │ │ │ │ │ │ ├── 09_instr.mdx │ │ │ │ │ │ │ ├── 10_read.mdx │ │ │ │ │ │ │ ├── 11_substr.mdx │ │ │ │ │ │ │ ├── 12_trim.mdx │ │ │ │ │ │ │ ├── 13_write.mdx │ │ │ │ │ │ │ ├── 14_writeappend.mdx │ │ │ │ │ │ │ ├── fileclose.mdx │ │ │ │ │ │ │ ├── filecloseall.mdx │ │ │ │ │ │ │ ├── fileexists.mdx │ │ │ │ │ │ │ ├── filegetname.mdx │ │ │ │ │ │ │ ├── fileisopen.mdx │ │ │ │ │ │ │ ├── fileopen.mdx │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── loadblobfromfile.mdx │ │ │ │ │ │ │ └── loadclobfromfile.mdx │ │ │ │ │ │ ├── 07_dbms_lock.mdx │ │ │ │ │ │ ├── 08_dbms_mview │ │ │ │ │ │ │ ├── 01_get_mv_dependencies.mdx │ │ │ │ │ │ │ ├── 02_refresh.mdx │ │ │ │ │ │ │ ├── 03_refresh_all_mviews.mdx │ │ │ │ │ │ │ ├── 04_refresh_dependent.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 09_dbms_output.mdx │ │ │ │ │ │ ├── 10_dbms_pipe │ │ │ │ │ │ │ ├── 01_create_pipe.mdx │ │ │ │ │ │ │ ├── 02_next_item_pipe.mdx │ │ │ │ │ │ │ ├── 03_pack_message.mdx │ │ │ │ │ │ │ ├── 04_purge.mdx │ │ │ │ │ │ │ ├── 05_receive_message.mdx │ │ │ │ │ │ │ ├── 06_remove_pipe.mdx │ │ │ │ │ │ │ ├── 07_reset_buffer.mdx │ │ │ │ │ │ │ ├── 08_send_message.mdx │ │ │ │ │ │ │ ├── 09_unique_session_name.mdx │ │ │ │ │ │ │ ├── 10_unpack_message.mdx │ │ │ │ │ │ │ ├── 11_comprehensive_example.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 10_dbms_privilege_capture.mdx │ │ │ │ │ │ ├── 11_dbms_profiler.mdx │ │ │ │ │ │ ├── 12_dbms_random.mdx │ │ │ │ │ │ ├── 13_dbms_redact.mdx │ │ │ │ │ │ ├── 14_dbms_rls.mdx │ │ │ │ │ │ ├── 15_dbms_scheduler │ │ │ │ │ │ │ ├── 01_using_calendar_syntax_to_specify_a_repeating_interval.mdx │ │ │ │ │ │ │ ├── 02_create_job.mdx │ │ │ │ │ │ │ ├── 03_create_program.mdx │ │ │ │ │ │ │ ├── 04_create_schedule.mdx │ │ │ │ │ │ │ ├── 05_define_program_argument.mdx │ │ │ │ │ │ │ ├── 06_dbms_scheduler_disable.mdx │ │ │ │ │ │ │ ├── 07_drop_job.mdx │ │ │ │ │ │ │ ├── 08_drop_program.mdx │ │ │ │ │ │ │ ├── 09_drop_program_argument.mdx │ │ │ │ │ │ │ ├── 10_drop_schedule.mdx │ │ │ │ │ │ │ ├── 11_dbms_scheduler_enable.mdx │ │ │ │ │ │ │ ├── 12_evaluate_calendar_string.mdx │ │ │ │ │ │ │ ├── 13_run_job.mdx │ │ │ │ │ │ │ ├── 14_set_job_argument_value.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 16_dbms_session.mdx │ │ │ │ │ │ ├── 17_dbms_sql │ │ │ │ │ │ │ ├── 001_bind_array.mdx │ │ │ │ │ │ │ ├── 01_bind_variable.mdx │ │ │ │ │ │ │ ├── 02_bind_variable_char.mdx │ │ │ │ │ │ │ ├── 03_bind_variable_raw.mdx │ │ │ │ │ │ │ ├── 04_close_cursor.mdx │ │ │ │ │ │ │ ├── 05_column_value.mdx │ │ │ │ │ │ │ ├── 06_column_value_char.mdx │ │ │ │ │ │ │ ├── 07_column_value_raw.mdx │ │ │ │ │ │ │ ├── 07a_column_value_long.mdx │ │ │ │ │ │ │ ├── 07b_column_value_rowid.mdx │ │ │ │ │ │ │ ├── 07c_define_array.mdx │ │ │ │ │ │ │ ├── 08_define_column.mdx │ │ │ │ │ │ │ ├── 09_define_column_char.mdx │ │ │ │ │ │ │ ├── 10_define_column_raw.mdx │ │ │ │ │ │ │ ├── 10a_define_column_long.mdx │ │ │ │ │ │ │ ├── 10b_define_column_rowid.mdx │ │ │ │ │ │ │ ├── 11_describe_columns.mdx │ │ │ │ │ │ │ ├── 11a_describe_columns2.mdx │ │ │ │ │ │ │ ├── 11b_describe_columns3.mdx │ │ │ │ │ │ │ ├── 12_execute.mdx │ │ │ │ │ │ │ ├── 13_execute_and_fetch.mdx │ │ │ │ │ │ │ ├── 14_fetch_rows.mdx │ │ │ │ │ │ │ ├── 15_is_open.mdx │ │ │ │ │ │ │ ├── 16_last_row_count.mdx │ │ │ │ │ │ │ ├── 17_open_cursor.mdx │ │ │ │ │ │ │ ├── 18_parse.mdx │ │ │ │ │ │ │ ├── 19_to_cursor_number.mdx │ │ │ │ │ │ │ ├── 20_to_refcursor.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 18_dbms_utility.mdx │ │ │ │ │ │ ├── 18_dbms_xmldom │ │ │ │ │ │ │ ├── appendchild.mdx │ │ │ │ │ │ │ ├── createelement.mdx │ │ │ │ │ │ │ ├── createtextnode.mdx │ │ │ │ │ │ │ ├── freedocument.mdx │ │ │ │ │ │ │ ├── getattribute.mdx │ │ │ │ │ │ │ ├── getchildnodes.mdx │ │ │ │ │ │ │ ├── getfirstchild.mdx │ │ │ │ │ │ │ ├── getlength.mdx │ │ │ │ │ │ │ ├── getnodename.mdx │ │ │ │ │ │ │ ├── getnodevalue.mdx │ │ │ │ │ │ │ ├── getxmltype.mdx │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── item.mdx │ │ │ │ │ │ │ ├── makeelement.mdx │ │ │ │ │ │ │ ├── makenode.mdx │ │ │ │ │ │ │ ├── newdomdocument.mdx │ │ │ │ │ │ │ ├── setattribute.mdx │ │ │ │ │ │ │ └── setversion.mdx │ │ │ │ │ │ ├── 19_utl_encode │ │ │ │ │ │ │ ├── 01_base64_decode.mdx │ │ │ │ │ │ │ ├── 02_base64_encode.mdx │ │ │ │ │ │ │ ├── 03_mimeheader_decode.mdx │ │ │ │ │ │ │ ├── 04_mimeheader_encode.mdx │ │ │ │ │ │ │ ├── 05_quoted_printable_decode.mdx │ │ │ │ │ │ │ ├── 06_quoted_printable_encode.mdx │ │ │ │ │ │ │ ├── 07_text_decode.mdx │ │ │ │ │ │ │ ├── 08_text_encode.mdx │ │ │ │ │ │ │ ├── 09_uudecode.mdx │ │ │ │ │ │ │ ├── 10_uuencode.mdx │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── 20_utl_file.mdx │ │ │ │ │ │ ├── 21_utl_http.mdx │ │ │ │ │ │ ├── 22_utl_mail.mdx │ │ │ │ │ │ ├── 23_utl_raw.mdx │ │ │ │ │ │ ├── 24_utl_smtp.mdx │ │ │ │ │ │ ├── 25_utl_url.mdx │ │ │ │ │ │ ├── htp_and_htf │ │ │ │ │ │ │ ├── address.mdx │ │ │ │ │ │ │ ├── anchor.mdx │ │ │ │ │ │ │ ├── applet.mdx │ │ │ │ │ │ │ ├── area.mdx │ │ │ │ │ │ │ ├── base.mdx │ │ │ │ │ │ │ ├── basefont.mdx │ │ │ │ │ │ │ ├── bgsound.mdx │ │ │ │ │ │ │ ├── big.mdx │ │ │ │ │ │ │ ├── blockquote.mdx │ │ │ │ │ │ │ ├── body.mdx │ │ │ │ │ │ │ ├── bold.mdx │ │ │ │ │ │ │ ├── br_and_nl.mdx │ │ │ │ │ │ │ ├── caption.mdx │ │ │ │ │ │ │ ├── center.mdx │ │ │ │ │ │ │ ├── centeropen_and_centerclose.mdx │ │ │ │ │ │ │ ├── cite.mdx │ │ │ │ │ │ │ ├── code.mdx │ │ │ │ │ │ │ ├── comment.mdx │ │ │ │ │ │ │ ├── dfn.mdx │ │ │ │ │ │ │ ├── dirlist.mdx │ │ │ │ │ │ │ ├── div.mdx │ │ │ │ │ │ │ ├── dlistdef.mdx │ │ │ │ │ │ │ ├── dlistopen_and_dlistclose.mdx │ │ │ │ │ │ │ ├── dlistterm.mdx │ │ │ │ │ │ │ ├── em_and_emphasis.mdx │ │ │ │ │ │ │ ├── escape_sc.mdx │ │ │ │ │ │ │ ├── font.mdx │ │ │ │ │ │ │ ├── formcheckbox.mdx │ │ │ │ │ │ │ ├── formfile.mdx │ │ │ │ │ │ │ ├── formhidden.mdx │ │ │ │ │ │ │ ├── formimage.mdx │ │ │ │ │ │ │ ├── formopen_and_formclose.mdx │ │ │ │ │ │ │ ├── formpassword.mdx │ │ │ │ │ │ │ ├── formradio.mdx │ │ │ │ │ │ │ ├── formreset.mdx │ │ │ │ │ │ │ ├── formselectopen_and_formselectclose.mdx │ │ │ │ │ │ │ ├── formselectoption.mdx │ │ │ │ │ │ │ ├── formsubmit.mdx │ │ │ │ │ │ │ ├── formtext.mdx │ │ │ │ │ │ │ ├── formtextarea.mdx │ │ │ │ │ │ │ ├── formtextarea_and_formtextarea2.mdx │ │ │ │ │ │ │ ├── frame.mdx │ │ │ │ │ │ │ ├── framesetopen_and_framsetclose.mdx │ │ │ │ │ │ │ ├── header.mdx │ │ │ │ │ │ │ ├── headopen_and_headclose.mdx │ │ │ │ │ │ │ ├── hr.mdx │ │ │ │ │ │ │ ├── htmlopen_and_htmlclose.mdx │ │ │ │ │ │ │ ├── img.mdx │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── isindex.mdx │ │ │ │ │ │ │ ├── italic.mdx │ │ │ │ │ │ │ ├── kbd_and_keyboard.mdx │ │ │ │ │ │ │ ├── linkrel.mdx │ │ │ │ │ │ │ ├── linkrev.mdx │ │ │ │ │ │ │ ├── listheader.mdx │ │ │ │ │ │ │ ├── listingopen_and_listingclose.mdx │ │ │ │ │ │ │ ├── listitem.mdx │ │ │ │ │ │ │ ├── mailto.mdx │ │ │ │ │ │ │ ├── mapopen_and_mapclose.mdx │ │ │ │ │ │ │ ├── menulistopen_and_menulistclose.mdx │ │ │ │ │ │ │ ├── meta.mdx │ │ │ │ │ │ │ ├── nobr.mdx │ │ │ │ │ │ │ ├── noframesopen_and_noframesclose.mdx │ │ │ │ │ │ │ ├── olistopen_and_olistclose.mdx │ │ │ │ │ │ │ ├── para_and_paragraph.mdx │ │ │ │ │ │ │ ├── param.mdx │ │ │ │ │ │ │ ├── plaintext.mdx │ │ │ │ │ │ │ ├── preopen_and_preclose.mdx │ │ │ │ │ │ │ ├── print_and_prn.mdx │ │ │ │ │ │ │ ├── prints_and_ps.mdx │ │ │ │ │ │ │ ├── s.mdx │ │ │ │ │ │ │ ├── sample.mdx │ │ │ │ │ │ │ ├── small.mdx │ │ │ │ │ │ │ ├── strike.mdx │ │ │ │ │ │ │ ├── strong.mdx │ │ │ │ │ │ │ ├── style.mdx │ │ │ │ │ │ │ ├── sub.mdx │ │ │ │ │ │ │ ├── sup.mdx │ │ │ │ │ │ │ ├── tabledata.mdx │ │ │ │ │ │ │ ├── tableheader.mdx │ │ │ │ │ │ │ ├── tableopen_and_tableclose.mdx │ │ │ │ │ │ │ ├── tablerow.mdx │ │ │ │ │ │ │ ├── teletype.mdx │ │ │ │ │ │ │ ├── title.mdx │ │ │ │ │ │ │ ├── ulist.mdx │ │ │ │ │ │ │ ├── underline.mdx │ │ │ │ │ │ │ ├── variable.mdx │ │ │ │ │ │ │ └── wbr.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── epas_compat_cat_views │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── oracle_compatible_views │ │ │ │ │ │ ├── 02_all_all_tables.mdx │ │ │ │ │ │ ├── 03_all_cons_columns.mdx │ │ │ │ │ │ ├── 04_all_constraints.mdx │ │ │ │ │ │ ├── 05_all_col_privs.mdx │ │ │ │ │ │ ├── 06_all_db_links.mdx │ │ │ │ │ │ ├── 07_all_dependencies.mdx │ │ │ │ │ │ ├── 08_all_directories.mdx │ │ │ │ │ │ ├── 09_all_ind_columns.mdx │ │ │ │ │ │ ├── 10_all_indexes.mdx │ │ │ │ │ │ ├── 11_all_jobs.mdx │ │ │ │ │ │ ├── 12_all_objects.mdx │ │ │ │ │ │ ├── 13_all_part_key_columns.mdx │ │ │ │ │ │ ├── 14_all_part_tables.mdx │ │ │ │ │ │ ├── 15_all_policies.mdx │ │ │ │ │ │ ├── 16_all_queues.mdx │ │ │ │ │ │ ├── 17_all_queue_tables.mdx │ │ │ │ │ │ ├── 18_all_sequences.mdx │ │ │ │ │ │ ├── 19_all_source.mdx │ │ │ │ │ │ ├── 20_all_subpart_key_columns.mdx │ │ │ │ │ │ ├── 21_all_synonyms.mdx │ │ │ │ │ │ ├── 22_all_tab_columns.mdx │ │ │ │ │ │ ├── 23_all_tab_partitions.mdx │ │ │ │ │ │ ├── 24_all_tab_subpartitions.mdx │ │ │ │ │ │ ├── 25_all_tab_privs.mdx │ │ │ │ │ │ ├── 26_all_tables.mdx │ │ │ │ │ │ ├── 27_all_triggers.mdx │ │ │ │ │ │ ├── 28_all_types.mdx │ │ │ │ │ │ ├── 29_all_users.mdx │ │ │ │ │ │ ├── 30_all_view_columns.mdx │ │ │ │ │ │ ├── 31_all_views.mdx │ │ │ │ │ │ ├── 32_dba_all_tables.mdx │ │ │ │ │ │ ├── 33_dba_cons_columns.mdx │ │ │ │ │ │ ├── 34_dba_constraints.mdx │ │ │ │ │ │ ├── 35_dba_col_privs.mdx │ │ │ │ │ │ ├── 36_dba_db_links.mdx │ │ │ │ │ │ ├── 37_dba_directories.mdx │ │ │ │ │ │ ├── 38_dba_dependencies.mdx │ │ │ │ │ │ ├── 39_dba_ind_columns.mdx │ │ │ │ │ │ ├── 40_dba_indexes.mdx │ │ │ │ │ │ ├── 41_dba_jobs.mdx │ │ │ │ │ │ ├── 42_dba_objects.mdx │ │ │ │ │ │ ├── 43_dba_part_key_columns.mdx │ │ │ │ │ │ ├── 44_dba_part_tables.mdx │ │ │ │ │ │ ├── 45_dba_policies.mdx │ │ │ │ │ │ ├── 45a_dba_privs_capture.mdx │ │ │ │ │ │ ├── 46_dba_profiles.mdx │ │ │ │ │ │ ├── 47_dba_queues.mdx │ │ │ │ │ │ ├── 48_dba_queue_tables.mdx │ │ │ │ │ │ ├── 49_dba_role_privs.mdx │ │ │ │ │ │ ├── 50_dba_roles.mdx │ │ │ │ │ │ ├── 51_dba_sequences.mdx │ │ │ │ │ │ ├── 52_dba_source.mdx │ │ │ │ │ │ ├── 53_dba_subpart_key_columns.mdx │ │ │ │ │ │ ├── 54_dba_synonyms.mdx │ │ │ │ │ │ ├── 55_dba_tab_columns.mdx │ │ │ │ │ │ ├── 56_dba_tab_partitions.mdx │ │ │ │ │ │ ├── 57_dba_tab_subpartitions.mdx │ │ │ │ │ │ ├── 58_dba_tab_privs.mdx │ │ │ │ │ │ ├── 59_dba_tables.mdx │ │ │ │ │ │ ├── 60_dba_triggers.mdx │ │ │ │ │ │ ├── 61_dba_types.mdx │ │ │ │ │ │ ├── 62_dba_users.mdx │ │ │ │ │ │ ├── 62a_dba_used_privs.mdx │ │ │ │ │ │ ├── 62b_dba_unused_privs.mdx │ │ │ │ │ │ ├── 63_dba_view_columns.mdx │ │ │ │ │ │ ├── 64_dba_views.mdx │ │ │ │ │ │ ├── 65_user_all_tables.mdx │ │ │ │ │ │ ├── 66_user_cons_columns.mdx │ │ │ │ │ │ ├── 67_user_constraints.mdx │ │ │ │ │ │ ├── 68_user_col_privs.mdx │ │ │ │ │ │ ├── 69_user_db_links.mdx │ │ │ │ │ │ ├── 70_user_dependencies.mdx │ │ │ │ │ │ ├── 71_user_indexes.mdx │ │ │ │ │ │ ├── 72_user_jobs.mdx │ │ │ │ │ │ ├── 73_user_objects.mdx │ │ │ │ │ │ ├── 74_user_part_tables.mdx │ │ │ │ │ │ ├── 75_user_policies.mdx │ │ │ │ │ │ ├── 76_user_queues.mdx │ │ │ │ │ │ ├── 77_user_queue_tables.mdx │ │ │ │ │ │ ├── 78_user_role_privs.mdx │ │ │ │ │ │ ├── 79_user_sequences.mdx │ │ │ │ │ │ ├── 80_user_source.mdx │ │ │ │ │ │ ├── 81_user_subpart_key_columns.mdx │ │ │ │ │ │ ├── 82_user_synonyms.mdx │ │ │ │ │ │ ├── 83_user_tab_columns.mdx │ │ │ │ │ │ ├── 84_user_tab_partitions.mdx │ │ │ │ │ │ ├── 85_user_tab_subpartitions.mdx │ │ │ │ │ │ ├── 86_user_tab_privs.mdx │ │ │ │ │ │ ├── 87_user_tables.mdx │ │ │ │ │ │ ├── 88_user_triggers.mdx │ │ │ │ │ │ ├── 89_user_types.mdx │ │ │ │ │ │ ├── 90_user_users.mdx │ │ │ │ │ │ ├── 91_user_view_columns.mdx │ │ │ │ │ │ ├── 92_user_views.mdx │ │ │ │ │ │ ├── 93_v_version.mdx │ │ │ │ │ │ ├── 94_product_component_version.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ └── pg_views │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── pg_attribute.mdx │ │ │ │ │ │ ├── pg_authid.mdx │ │ │ │ │ │ ├── pg_class.mdx │ │ │ │ │ │ ├── pg_collation.mdx │ │ │ │ │ │ ├── pg_database.mdx │ │ │ │ │ │ ├── pg_namespace.mdx │ │ │ │ │ │ ├── pg_partitioned_table.mdx │ │ │ │ │ │ ├── pg_proc.mdx │ │ │ │ │ │ ├── pg_roles.mdx │ │ │ │ │ │ ├── pg_shadow.mdx │ │ │ │ │ │ ├── pg_subscription.mdx │ │ │ │ │ │ ├── pg_synonym.mdx │ │ │ │ │ │ ├── pg_trigger.mdx │ │ │ │ │ │ ├── pg_type.mdx │ │ │ │ │ │ └── pg_user.mdx │ │ │ │ ├── epas_compat_sql │ │ │ │ │ ├── 01_alter_capture_privilege.mdx │ │ │ │ │ ├── 02_alter_directory.mdx │ │ │ │ │ ├── 03_alter_index.mdx │ │ │ │ │ ├── 04_alter_procedure.mdx │ │ │ │ │ ├── 05_alter_profile.mdx │ │ │ │ │ ├── 05a_alter_public_database_link.mdx │ │ │ │ │ ├── 06_alter_queue.mdx │ │ │ │ │ ├── 07_alter_queue_table.mdx │ │ │ │ │ ├── 08_alter_role_identified_by.mdx │ │ │ │ │ ├── 09_alter_role_managing_database_link_and_dbms_rls_privileges.mdx │ │ │ │ │ ├── 10_alter_sequence.mdx │ │ │ │ │ ├── 11_alter_session.mdx │ │ │ │ │ ├── 11a_alter_synonym.mdx │ │ │ │ │ ├── 12_alter_table.mdx │ │ │ │ │ ├── 13_alter_trigger.mdx │ │ │ │ │ ├── 14_alter_tablespace.mdx │ │ │ │ │ ├── 15_alter_user_identified_by.mdx │ │ │ │ │ ├── 16_alter_user_role_profile_management_clauses.mdx │ │ │ │ │ ├── 17_call.mdx │ │ │ │ │ ├── 18_comment.mdx │ │ │ │ │ ├── 19_commit.mdx │ │ │ │ │ ├── 19a_create_capture_privilege.mdx │ │ │ │ │ ├── 20_create_database.mdx │ │ │ │ │ ├── 21_create_public_database_link.mdx │ │ │ │ │ ├── 22_create_directory.mdx │ │ │ │ │ ├── 23_create_function.mdx │ │ │ │ │ ├── 24_create_index.mdx │ │ │ │ │ ├── 25_create_materialized_view.mdx │ │ │ │ │ ├── 26_create_package.mdx │ │ │ │ │ ├── 27_create_package_body.mdx │ │ │ │ │ ├── 28_create_procedure.mdx │ │ │ │ │ ├── 29_create_profile.mdx │ │ │ │ │ ├── 30_create_queue.mdx │ │ │ │ │ ├── 31_create_queue_table.mdx │ │ │ │ │ ├── 32_create_role.mdx │ │ │ │ │ ├── 33_create_schema.mdx │ │ │ │ │ ├── 34_create_sequence.mdx │ │ │ │ │ ├── 35_create_synonym.mdx │ │ │ │ │ ├── 36_create_table.mdx │ │ │ │ │ ├── 37_create_table_as.mdx │ │ │ │ │ ├── 38_create_trigger.mdx │ │ │ │ │ ├── 39_create_type.mdx │ │ │ │ │ ├── 40_create_type_body.mdx │ │ │ │ │ ├── 41_create_user.mdx │ │ │ │ │ ├── 42_create_user_role_profile_management_clauses.mdx │ │ │ │ │ ├── 43_create_view.mdx │ │ │ │ │ ├── 44_delete.mdx │ │ │ │ │ ├── 44a_drop_capture_privilege.mdx │ │ │ │ │ ├── 45_drop_public_database_link.mdx │ │ │ │ │ ├── 46_drop_directory.mdx │ │ │ │ │ ├── 47_drop_function.mdx │ │ │ │ │ ├── 48_drop_index.mdx │ │ │ │ │ ├── 49_drop_package.mdx │ │ │ │ │ ├── 50_drop_procedure.mdx │ │ │ │ │ ├── 51_drop_profile.mdx │ │ │ │ │ ├── 52_drop_queue.mdx │ │ │ │ │ ├── 53_drop_queue_table.mdx │ │ │ │ │ ├── 54_drop_synonym.mdx │ │ │ │ │ ├── 55_drop_role.mdx │ │ │ │ │ ├── 56_drop_sequence.mdx │ │ │ │ │ ├── 57_drop_table.mdx │ │ │ │ │ ├── 58_drop_tablespace.mdx │ │ │ │ │ ├── 59_drop_trigger.mdx │ │ │ │ │ ├── 60_drop_type.mdx │ │ │ │ │ ├── 61_drop_user.mdx │ │ │ │ │ ├── 62_drop_view.mdx │ │ │ │ │ ├── 63_exec.mdx │ │ │ │ │ ├── 64_grant.mdx │ │ │ │ │ ├── 65_insert.mdx │ │ │ │ │ ├── 65a_import_foreign_schema.mdx │ │ │ │ │ ├── 65a_merge.mdx │ │ │ │ │ ├── 66_lock.mdx │ │ │ │ │ ├── 67_revoke.mdx │ │ │ │ │ ├── 68_rollback.mdx │ │ │ │ │ ├── 69_rollback_to_savepoint.mdx │ │ │ │ │ ├── 70_savepoint.mdx │ │ │ │ │ ├── 71_select.mdx │ │ │ │ │ ├── 72_set_constraints.mdx │ │ │ │ │ ├── 73_set_role.mdx │ │ │ │ │ ├── 74_set_transaction.mdx │ │ │ │ │ ├── 75_truncate.mdx │ │ │ │ │ ├── 76_update.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── summary_oracle_config_parameters.mdx │ │ │ │ └── sys_schema.mdx │ │ │ └── sql_reference │ │ │ │ ├── 01_sql_syntax │ │ │ │ ├── 01_lexical_structure.mdx │ │ │ │ ├── 02_identifiers_and_key_words.mdx │ │ │ │ ├── 03_constants.mdx │ │ │ │ ├── 04_comments.mdx │ │ │ │ └── index.mdx │ │ │ │ ├── 02_data_types │ │ │ │ ├── 01_numeric_types.mdx │ │ │ │ ├── 02_character_types.mdx │ │ │ │ ├── 03_binary_data.mdx │ │ │ │ ├── 03a_bfiles.mdx │ │ │ │ ├── 04_date_time_types.mdx │ │ │ │ ├── 05_boolean_type.mdx │ │ │ │ ├── 06_xml_type.mdx │ │ │ │ ├── array_types.mdx │ │ │ │ ├── composite_types.mdx │ │ │ │ ├── enumerated_types.mdx │ │ │ │ ├── geometric_types.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── monetary_types.mdx │ │ │ │ ├── network_address_types.mdx │ │ │ │ ├── object_identifier_types.mdx │ │ │ │ ├── pseudo_types.mdx │ │ │ │ └── range_types.mdx │ │ │ │ ├── 03_functions_and_operators │ │ │ │ ├── 01_logical_operators.mdx │ │ │ │ ├── 02_comparison_operators.mdx │ │ │ │ ├── 03_mathematical_functions_and_operators.mdx │ │ │ │ ├── 04_string_functions_and_operators.mdx │ │ │ │ ├── 05_pattern_matching_string_functions.mdx │ │ │ │ ├── 06_pattern_matching_using_the_like_operator.mdx │ │ │ │ ├── 07_data_type_formatting_functions.mdx │ │ │ │ ├── 08_date_time_functions_and_operators.mdx │ │ │ │ ├── 09_sequence_manipulation_functions.mdx │ │ │ │ ├── 10_conditional_expressions.mdx │ │ │ │ ├── 11_aggregate_functions.mdx │ │ │ │ ├── 12_subquery_expressions.mdx │ │ │ │ ├── 13_identifier_functions.mdx │ │ │ │ ├── 14_bitwise_functions.mdx │ │ │ │ ├── dump_function.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── nls_functions │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── nls_initcap.mdx │ │ │ │ │ ├── nls_lower.mdx │ │ │ │ │ ├── nls_upper.mdx │ │ │ │ │ └── nlssort.mdx │ │ │ │ ├── redwood_specific_privs_functions.mdx │ │ │ │ ├── to_multi_byte.mdx │ │ │ │ └── to_single_byte.mdx │ │ │ │ └── index.mdx │ │ │ ├── tools_utilities_and_components │ │ │ ├── application_developer_tools │ │ │ │ ├── 06_unicode_collation_algorithm.mdx │ │ │ │ ├── 10_ecpgplus.mdx │ │ │ │ ├── 11_libpq_c_library.mdx │ │ │ │ └── index.mdx │ │ │ ├── connectivity_tools │ │ │ │ ├── connectors.mdx │ │ │ │ ├── data_sources.mdx │ │ │ │ ├── index.mdx │ │ │ │ └── managing_connections.mdx │ │ │ ├── database_administration_tools │ │ │ │ ├── 09_tools_and_utilities.mdx │ │ │ │ ├── edb_clone_schema_overview.mdx │ │ │ │ ├── edb_loader_overview.mdx │ │ │ │ ├── edb_resource_manager_overview.mdx │ │ │ │ └── index.mdx │ │ │ ├── epas_compat_tools_guide │ │ │ │ └── index.mdx │ │ │ └── index.mdx │ │ │ ├── upgrading │ │ │ ├── index.mdx │ │ │ ├── major_upgrade │ │ │ │ ├── 01_performing_an_upgrade │ │ │ │ │ ├── 01_linking_versus_copying.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 02_invoking_pg_upgrade │ │ │ │ │ ├── 01_command_line_options_reference.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 03_limitations.mdx │ │ │ │ ├── 03_upgrading_to_advanced_server.mdx │ │ │ │ ├── 05_pg_upgrade_troubleshooting.mdx │ │ │ │ ├── 06_reverting_to_the_old_cluster.mdx │ │ │ │ ├── how_pg_upgrade_works.mdx │ │ │ │ └── index.mdx │ │ │ └── minor_upgrade │ │ │ │ ├── 05_performing_a_minor_version_update_of_an_rpm_installation.mdx │ │ │ │ ├── 06_using_stackbuilder_plus_to_perform_a_minor_version_update.mdx │ │ │ │ ├── index.mdx │ │ │ │ └── performing_a_minor_version_update_of_deb_installation.mdx │ │ │ └── working_with_oracle_data │ │ │ ├── 02_enhanced_compatibility_features.mdx │ │ │ ├── 06_dblink_ora │ │ │ ├── 02_calling_dblink_ora_functions.mdx │ │ │ ├── connecting_to_oracle.mdx │ │ │ └── index.mdx │ │ │ ├── 07_open_client_library.mdx │ │ │ ├── embedded_sql_commands.mdx │ │ │ ├── index.mdx │ │ │ ├── loading_bulk_data.mdx │ │ │ └── proprietary_source_code.mdx │ ├── eprs │ │ └── 7 │ │ │ ├── 01_introduction │ │ │ ├── 02_conventions_used.mdx │ │ │ ├── 03_certified_supported_versions.mdx │ │ │ ├── 04_permitted_conf_and_permutations.mdx │ │ │ └── index.mdx │ │ │ ├── 02_overview │ │ │ ├── 01_why_replication.mdx │ │ │ ├── 02_replication_concepts_and_definitions │ │ │ │ ├── 01_smr_mmr_comparison.mdx │ │ │ │ ├── 02_publications_and_subscriptions.mdx │ │ │ │ ├── 03_smr_replication.mdx │ │ │ │ ├── 04_mmr_replication.mdx │ │ │ │ ├── 05_asynchronous.mdx │ │ │ │ ├── 06_snapshot_and_synchronous.mdx │ │ │ │ ├── 07_snapshot_only_publications.mdx │ │ │ │ ├── 08_snapshot_replication.mdx │ │ │ │ ├── 09_sync_replication_trigger_based.mdx │ │ │ │ ├── 10_sync_replication_log_based │ │ │ │ │ ├── 01_requirements_and_restrictions.mdx │ │ │ │ │ ├── 02_logical_replication_slots.mdx │ │ │ │ │ ├── 03_streaming_replication_wal_sender.mdx │ │ │ │ │ ├── 04_replication_origin.mdx │ │ │ │ │ ├── 05_inmemory_caching.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 12_mmr_parallel_replication.mdx │ │ │ │ ├── 13_table_filters.mdx │ │ │ │ └── index.mdx │ │ │ ├── 03_replication_server_components_and_architecture │ │ │ │ ├── 01_physical_components.mdx │ │ │ │ ├── 02_logical_components.mdx │ │ │ │ ├── 03_xdb_replication_system_examples.mdx │ │ │ │ └── index.mdx │ │ │ ├── 04_design_replication_system │ │ │ │ ├── 01_general_steps.mdx │ │ │ │ ├── 02_design_considerations.mdx │ │ │ │ ├── 03_restrictions_on_replicated_database_objects.mdx │ │ │ │ ├── 04_performance_considerations.mdx │ │ │ │ ├── 05_distributed_replication.mdx │ │ │ │ └── index.mdx │ │ │ └── index.mdx │ │ │ ├── 04_intro_xdb_console.mdx │ │ │ ├── 05_smr_operation │ │ │ ├── 01_prerequisites │ │ │ │ ├── 01_setting_heap_size_for_pub_and_sub.mdx │ │ │ │ ├── 02_enable_sync_replication_with_log-based_method.mdx │ │ │ │ ├── 03_enable_access_to_database.mdx │ │ │ │ ├── 04_preparing_pub_database.mdx │ │ │ │ ├── 05_preparing_sub_database.mdx │ │ │ │ ├── 06_verifying_host_accessibility.mdx │ │ │ │ └── index.mdx │ │ │ ├── 02_creating_publication │ │ │ │ ├── 01_registering_publication_server.mdx │ │ │ │ ├── 02_adding_pub_database.mdx │ │ │ │ ├── 03_adding_publication.mdx │ │ │ │ ├── 04_control_schema_objects_created_for_publication.mdx │ │ │ │ └── index.mdx │ │ │ ├── 03_creating_subscription │ │ │ │ ├── 01_registering_subscription_server.mdx │ │ │ │ ├── 02_adding_subscription_database.mdx │ │ │ │ ├── 03_adding_subscription.mdx │ │ │ │ ├── 04_subscription_metadata_object.mdx │ │ │ │ └── index.mdx │ │ │ ├── 04_on_demand_replication │ │ │ │ ├── 01_perform_replication.mdx │ │ │ │ ├── 02_perform_sync_replication.mdx │ │ │ │ └── index.mdx │ │ │ ├── 05_managing_subscription.mdx │ │ │ ├── 06_performing_switchover.mdx │ │ │ ├── 07_performing_failover.mdx │ │ │ ├── 08_optimizing_performance │ │ │ │ ├── 01_optimizing_snapshot_replication.mdx │ │ │ │ ├── 02_optimize_sync_replication │ │ │ │ │ ├── 01_using_sql_statements.mdx │ │ │ │ │ ├── 02_parallel_sync.mdx │ │ │ │ │ ├── 03_other_sync_configuration.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── using_bacth_lob.mdx │ │ │ │ └── index.mdx │ │ │ └── index.mdx │ │ │ ├── 06_mmr_operation │ │ │ ├── 01_pre_steps.mdx │ │ │ ├── 02_creating_publication_mmr.mdx │ │ │ ├── 03_creating_primary_nodes.mdx │ │ │ ├── 04_control_schema_created_in_primary_nodes.mdx │ │ │ ├── 05_on_demand_replication_mmr.mdx │ │ │ ├── 06_conflict_resolution │ │ │ │ ├── 01_configuration_para_andtable_setting.mdx │ │ │ │ ├── 02_conflict_types.mdx │ │ │ │ ├── 03_conflict_detection.mdx │ │ │ │ ├── 04_conflict_resolution_strategies.mdx │ │ │ │ ├── 05_conflict_prevention_uniquness.mdx │ │ │ │ ├── 06_conflict_prevention_mmr_ready │ │ │ │ │ ├── 01_create_mmr_ready_sequence.mdx │ │ │ │ │ ├── 02_mmr_ready_example.mdx │ │ │ │ │ ├── 03_convert_to_mmr_ready.mdx │ │ │ │ │ ├── 04_convert_to_mmr_ready_eg.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 07_auto_conflict_resolution_eg.mdx │ │ │ │ ├── 08_custom_conflict_handling │ │ │ │ │ ├── 01_custom_conflict_handling_function.mdx │ │ │ │ │ ├── 02_adding_custom_conflict_handling_function.mdx │ │ │ │ │ ├── 03_custom_conflict_handling_examples.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 09_manual_conflict_resolution_trigger_based_method │ │ │ │ │ ├── 01_find_conflict.mdx │ │ │ │ │ ├── 02_conflict_resolution_prep.mdx │ │ │ │ │ ├── 03_overview_correction_strategies.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 10_manual_conflict_resolution_log_based_method │ │ │ │ │ ├── 01_finding_conflict.mdx │ │ │ │ │ ├── 02_conflict_resolution_for_log_based.mdx │ │ │ │ │ ├── 03_overview_correction_strategies_log_based.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 11_view_conflict_history.mdx │ │ │ │ ├── 12_update_conflict_resolution_options.mdx │ │ │ │ └── index.mdx │ │ │ ├── 07_enable_disable_table_filters.mdx │ │ │ ├── 08_switching_pdn.mdx │ │ │ ├── 09_ensuring_ha.mdx │ │ │ ├── 10_optimizing_performance_mmr.mdx │ │ │ └── index.mdx │ │ │ ├── 07_common_operations │ │ │ ├── 01_select_tables_wildcard_selector.mdx │ │ │ ├── 02_creating_schedule.mdx │ │ │ ├── 03_managing_schedule.mdx │ │ │ ├── 04_view_replication_history.mdx │ │ │ ├── 05_managing_history.mdx │ │ │ ├── 06_managing_publication │ │ │ │ ├── 01_updating_publication_server.mdx │ │ │ │ ├── 02_updating_pub_database.mdx │ │ │ │ ├── 03_updating_pub.mdx │ │ │ │ ├── 04_updating_table_filters_in_pub.mdx │ │ │ │ ├── 05_validating_publication.mdx │ │ │ │ ├── 06_removing_pub.mdx │ │ │ │ ├── 07_removing_pub_database.mdx │ │ │ │ └── index.mdx │ │ │ ├── 07_switching_controller_db.mdx │ │ │ ├── 08_replicating_ddl_changes │ │ │ │ ├── 01_ddl_change_replication.mdx │ │ │ │ ├── 02_ddl_change_replication_using_xdb_console.mdx │ │ │ │ └── index.mdx │ │ │ ├── 09_offline_snapshot.mdx │ │ │ ├── 10_replicating_postgres_partitioned_tables.mdx │ │ │ ├── 10a_managing_child_partitions.mdx │ │ │ ├── 11_using_ssl_connections.mdx │ │ │ └── index.mdx │ │ │ ├── 08_xdb_cli │ │ │ ├── 01_prereq_steps.mdx │ │ │ ├── 02_general_use.mdx │ │ │ ├── 03_xdb_cli_commands │ │ │ │ ├── 01_get_help.mdx │ │ │ │ ├── 02_print_version.mdx │ │ │ │ ├── 03_print_xdb_server_version.mdx │ │ │ │ ├── 04_encrypt_password.mdx │ │ │ │ ├── 05_printing_server_uptime.mdx │ │ │ │ ├── 06_add_pub_database.mdx │ │ │ │ ├── 07_printing_pub_db_id.mdx │ │ │ │ ├── 08_printing_pub_db_details.mdx │ │ │ │ ├── 09_printing_controller_db_id.mdx │ │ │ │ ├── 10_printing_pdn_node_db_id.mdx │ │ │ │ ├── 11_updating_publication_database.mdx │ │ │ │ ├── 12_removing_publication_database.mdx │ │ │ │ ├── 13_get_tables_for_new_publication.mdx │ │ │ │ ├── 14_creating_publication_cli.mdx │ │ │ │ ├── 15_print_publications_list.mdx │ │ │ │ ├── 16_print_publications_tables_list.mdx │ │ │ │ ├── 17_print_publications_filters_list.mdx │ │ │ │ ├── 18_adding_tables_to_publication.mdx │ │ │ │ ├── 19_removing_tables_from_publication.mdx │ │ │ │ ├── 20_adding_tablefilters_to_publication.mdx │ │ │ │ ├── 21_updating_tablefilters_to_publication.mdx │ │ │ │ ├── 22_removing_tablefilters_to_publication.mdx │ │ │ │ ├── 23_print_conflict_resolution_strategy.mdx │ │ │ │ ├── 24_updating_conflict_resolution_strategy.mdx │ │ │ │ ├── 25_set_pdn_node.mdx │ │ │ │ ├── 26_set_controller.mdx │ │ │ │ ├── 27_validate_a_publication.mdx │ │ │ │ ├── 28_validate_all_publications.mdx │ │ │ │ ├── 29_removing_a_publication.mdx │ │ │ │ ├── 30_replicating_ddl_changes_cli.mdx │ │ │ │ ├── 31_adding_subscription_db.mdx │ │ │ │ ├── 32_printing_subscription_db_id.mdx │ │ │ │ ├── 33_printing_subscription_db_details.mdx │ │ │ │ ├── 34_updating_subscription_database_cli.mdx │ │ │ │ ├── 35_removing_subscription_database_cli.mdx │ │ │ │ ├── 36_creating_subscription_cli.mdx │ │ │ │ ├── 37_print_subscription_list.mdx │ │ │ │ ├── 37a_print_column_mappings_publication.mdx │ │ │ │ ├── 38_enable_filters_on_subscription_or_non_pdn_node.mdx │ │ │ │ ├── 39_disable_filters_on_subscription_or_non_pdn_node.mdx │ │ │ │ ├── 40_taking_smr_snapshot.mdx │ │ │ │ ├── 41_taking_mmr_snapshot.mdx │ │ │ │ ├── 42_perform_synchronization.mdx │ │ │ │ ├── 43_configure_smr_schedule.mdx │ │ │ │ ├── 44_configure_mmr_schedule.mdx │ │ │ │ ├── 45_print_schedule.mdx │ │ │ │ ├── 46_updating_subscription_cli.mdx │ │ │ │ ├── 47_removing_subscription_cli.mdx │ │ │ │ ├── 48_schedule_shadow_table_history_clean.mdx │ │ │ │ ├── 49_clean_shadow_table_history.mdx │ │ │ │ ├── 50_clean_replication_history.mdx │ │ │ │ ├── 51_clean_all_replication_history.mdx │ │ │ │ ├── 52_reload_conf_file.mdx │ │ │ │ └── index.mdx │ │ │ └── index.mdx │ │ │ ├── 09_data_validator │ │ │ ├── 01_installation_and_configuratiin_datavalidator.mdx │ │ │ ├── 02_perform_datavalidation.mdx │ │ │ └── index.mdx │ │ │ ├── 10_appendix │ │ │ ├── 02_resolving_problems │ │ │ │ ├── 01_error_messages.mdx │ │ │ │ ├── 02_where_to_look_for_errors.mdx │ │ │ │ ├── 03_common_problems_checklist.mdx │ │ │ │ ├── 04_troubleshooting_areas.mdx │ │ │ │ └── index.mdx │ │ │ ├── 03_miscellaneous_xdb_processing_topics │ │ │ │ ├── 01_publications_and_subscriptions_server_conf_options │ │ │ │ │ ├── 01_controlling_logging_level.mdx │ │ │ │ │ ├── 02_replacing_null_characters.mdx │ │ │ │ │ ├── 03_schema_migration_options.mdx │ │ │ │ │ ├── 04_replicate_oracle_partitioned_tables.mdx │ │ │ │ │ ├── 05_specify_custom_url_for_oracle_jdbc.mdx │ │ │ │ │ ├── 06_snapshot_replication_options.mdx │ │ │ │ │ ├── 07_assign_ip_adress_for_rmi.mdx │ │ │ │ │ ├── 08_using_pgagent_job_scheduling.mdx │ │ │ │ │ ├── 09_forcing_shadow_table_cleanup.mdx │ │ │ │ │ ├── 10_setting_event_history_cleanup.mdx │ │ │ │ │ ├── 11_ddl_change_replication_table_locking.mdx │ │ │ │ │ ├── 12_persisting_zero_txn_replication_hist.mdx │ │ │ │ │ ├── 13_skipping_grants_of_table_level_user_privileges_on_mmr.mdx │ │ │ │ │ ├── 14_applying_grants_of_table_level_user_privileges_on_smr.mdx │ │ │ │ │ ├── 15_log_based_sync_options.mdx │ │ │ │ │ ├── 16_setting_apache_dbcp_connection_validation_query.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── single_quote_unescape.mdx │ │ │ │ │ ├── skip_default_column.mdx │ │ │ │ │ └── snapshot_connection_retry.mdx │ │ │ │ ├── 02_encrypt_password_inconf_file.mdx │ │ │ │ ├── 03_writing_cron_exp.mdx │ │ │ │ ├── 04_disable_foreign_key_constraints_for_snapshot_replication.mdx │ │ │ │ ├── 05_quoted_identifiers.mdx │ │ │ │ ├── 06_replicating_sql_server_sql_variant_data_type.mdx │ │ │ │ └── index.mdx │ │ │ ├── 04_service_pack_maintenance.mdx │ │ │ └── index.mdx │ │ │ ├── eprs_rel_notes │ │ │ ├── 15_eprs_rel_notes_7.3.0.mdx │ │ │ ├── 16_eprs_rel_notes_7.2.1.mdx │ │ │ ├── 17_eprs_rel_notes_7.2.0.mdx │ │ │ ├── 18_eprs_rel_notes_7.1.0.mdx │ │ │ ├── 19_eprs_rel_notes_7.0.1.mdx │ │ │ ├── 20_eprs_rel_notes_7.0.0.mdx │ │ │ ├── eprs_rel_notes_7.10.0.mdx │ │ │ ├── eprs_rel_notes_7.11.0.mdx │ │ │ ├── eprs_rel_notes_7.12.0.mdx │ │ │ ├── eprs_rel_notes_7.12.1.mdx │ │ │ ├── eprs_rel_notes_7.13.0.mdx │ │ │ ├── eprs_rel_notes_7.4.0.mdx │ │ │ ├── eprs_rel_notes_7.5.0.mdx │ │ │ ├── eprs_rel_notes_7.5.1.mdx │ │ │ ├── eprs_rel_notes_7.6.0.mdx │ │ │ ├── eprs_rel_notes_7.7.0.mdx │ │ │ ├── eprs_rel_notes_7.8.0.mdx │ │ │ ├── eprs_rel_notes_7.9.0.mdx │ │ │ └── index.mdx │ │ │ ├── images │ │ │ ├── PG_to_oracle.png │ │ │ ├── PG_to_oracle_sc.png │ │ │ ├── eprs_logical_replication_600w.svg │ │ │ ├── eprs_logical_replication_failover_600w.svg │ │ │ ├── image10.png │ │ │ ├── image100.png │ │ │ ├── image11.png │ │ │ ├── image12.png │ │ │ ├── image13.png │ │ │ ├── image145.png │ │ │ ├── image146.png │ │ │ ├── image147.png │ │ │ ├── image149.png │ │ │ ├── image15.png │ │ │ ├── image155.png │ │ │ ├── image156.png │ │ │ ├── image157.png │ │ │ ├── image16.png │ │ │ ├── image160.png │ │ │ ├── image17.png │ │ │ ├── image18.png │ │ │ ├── image19.png │ │ │ ├── image20.png │ │ │ ├── image21.png │ │ │ ├── image22.png │ │ │ ├── image222.png │ │ │ ├── image23.png │ │ │ ├── image24.png │ │ │ ├── image25.png │ │ │ ├── image252.png │ │ │ ├── image288.png │ │ │ ├── image289.png │ │ │ ├── image296.png │ │ │ ├── image3.png │ │ │ ├── image4.png │ │ │ ├── image5.png │ │ │ ├── image6.png │ │ │ ├── image63.png │ │ │ ├── image64.png │ │ │ ├── image7.png │ │ │ ├── image8.png │ │ │ ├── image80.png │ │ │ └── image9.png │ │ │ ├── index.mdx │ │ │ ├── installing │ │ │ ├── index.mdx │ │ │ ├── installation_details.mdx │ │ │ ├── installing_jdbc_driver.mdx │ │ │ ├── linux_arm64 │ │ │ │ ├── eprs_debian_12.mdx │ │ │ │ ├── eprs_rhel_9.mdx │ │ │ │ └── index.mdx │ │ │ ├── linux_ppc64le │ │ │ │ ├── eprs_rhel_8.mdx │ │ │ │ ├── eprs_rhel_9.mdx │ │ │ │ ├── eprs_sles_15.mdx │ │ │ │ └── index.mdx │ │ │ ├── linux_x86_64 │ │ │ │ ├── eprs_debian_12.mdx │ │ │ │ ├── eprs_other_linux_8.mdx │ │ │ │ ├── eprs_other_linux_9.mdx │ │ │ │ ├── eprs_rhel_8.mdx │ │ │ │ ├── eprs_rhel_9.mdx │ │ │ │ ├── eprs_sles_15.mdx │ │ │ │ ├── eprs_ubuntu_22.mdx │ │ │ │ ├── eprs_ubuntu_24.mdx │ │ │ │ └── index.mdx │ │ │ ├── uninstalling.mdx │ │ │ ├── upgrading_replication_server │ │ │ │ ├── index.mdx │ │ │ │ ├── updating_sub_and_pub_ports.mdx │ │ │ │ ├── upgrading_linux.mdx │ │ │ │ ├── upgrading_with_gui_installer.mdx │ │ │ │ └── upgrading_with_xdb_rpm_package.mdx │ │ │ └── windows.mdx │ │ │ └── supported_platforms.mdx │ ├── hadoop_data_adapter │ │ └── 2 │ │ │ ├── 02_requirements_overview.mdx │ │ │ ├── 03_architecture_overview.mdx │ │ │ ├── 04_supported_authentication_methods.mdx │ │ │ ├── 07_features_of_hdfs_fdw.mdx │ │ │ ├── 09_using_the_hadoop_data_adapter.mdx │ │ │ ├── 10_identifying_data_adapter_version.mdx │ │ │ ├── 10a_example_join_pushdown.mdx │ │ │ ├── 10b_example_aggregate_pushdown.mdx │ │ │ ├── 10c_example_order_by_pushdown.mdx │ │ │ ├── 10d_example_limit_offset_pushdown.mdx │ │ │ ├── configuring.mdx │ │ │ ├── hadoop_rel_notes │ │ │ ├── hadoop_rel_notes_2.0.4.mdx │ │ │ ├── hadoop_rel_notes_2.0.5.mdx │ │ │ ├── hadoop_rel_notes_2.0.7.mdx │ │ │ ├── hadoop_rel_notes_2.0.8.mdx │ │ │ ├── hadoop_rel_notes_2.1.0.mdx │ │ │ ├── hadoop_rel_notes_2.2.0.mdx │ │ │ ├── hadoop_rel_notes_2.3.0.mdx │ │ │ ├── hadoop_rel_notes_2.3.1.mdx │ │ │ ├── hadoop_rel_notes_2.3.2.mdx │ │ │ ├── hadoop_rel_notes_2.3.3.mdx │ │ │ └── index.mdx │ │ │ ├── images │ │ │ └── hadoop_distributed_file_system_with_postgres.png │ │ │ ├── index.mdx │ │ │ ├── installing │ │ │ ├── index.mdx │ │ │ ├── linux_arm64 │ │ │ │ ├── hadoop_debian_12.mdx │ │ │ │ ├── hadoop_rhel_9.mdx │ │ │ │ └── index.mdx │ │ │ ├── linux_ppc64le │ │ │ │ ├── hadoop_rhel_8.mdx │ │ │ │ ├── hadoop_rhel_9.mdx │ │ │ │ ├── hadoop_sles_15.mdx │ │ │ │ └── index.mdx │ │ │ └── linux_x86_64 │ │ │ │ ├── hadoop_debian_11.mdx │ │ │ │ ├── hadoop_debian_12.mdx │ │ │ │ ├── hadoop_other_linux_8.mdx │ │ │ │ ├── hadoop_other_linux_9.mdx │ │ │ │ ├── hadoop_rhel_8.mdx │ │ │ │ ├── hadoop_rhel_9.mdx │ │ │ │ ├── hadoop_sles_15.mdx │ │ │ │ ├── hadoop_ubuntu_22.mdx │ │ │ │ ├── hadoop_ubuntu_24.mdx │ │ │ │ └── index.mdx │ │ │ ├── uninstalling.mdx │ │ │ └── upgrading.mdx │ ├── jdbc_connector │ │ └── 42.7.3.4 │ │ │ ├── 01_jdbc_rel_notes │ │ │ ├── 08_jdbc_42.3.3.1_rel_notes.mdx │ │ │ ├── 09_jdbc_42.3.2.1_rel_notes.mdx │ │ │ ├── 10_jdbc_42.2.24.1_rel_notes.mdx │ │ │ ├── 12_jdbc_42.2.19.1_rel_notes.mdx │ │ │ ├── 14_jdbc_42.2.12.3_rel_notes.mdx │ │ │ ├── 16_jdbc_42.2.9.1_rel_notes.mdx │ │ │ ├── 18_jdbc_42.2.8.1_rel_notes.mdx │ │ │ ├── index.mdx │ │ │ ├── jdbc_42.5.0.1_rel_notes.mdx │ │ │ ├── jdbc_42.5.1.1_rel_notes.mdx │ │ │ ├── jdbc_42.5.1.2_rel_notes.mdx │ │ │ ├── jdbc_42.5.4.1_rel_notes.mdx │ │ │ ├── jdbc_42.5.4.2_rel_notes.mdx │ │ │ ├── jdbc_42.7.3.1_rel_notes.mdx │ │ │ ├── jdbc_42.7.3.2_rel_notes.mdx │ │ │ ├── jdbc_42.7.3.3_rel_notes.mdx │ │ │ └── jdbc_42.7.3.4_rel_notes.mdx │ │ │ ├── 02_requirements_overview.mdx │ │ │ ├── 03_advanced_server_jdbc_connector_overview.mdx │ │ │ ├── 05_using_the_advanced_server_jdbc_connector_with_java_applications │ │ │ ├── 01_loading_the_advanced_server_jdbc_connector.mdx │ │ │ ├── 02_connecting_to_the_database │ │ │ │ ├── 01_additional_connection_properties.mdx │ │ │ │ ├── 02_preferring_synchronous_secondary_database_servers.mdx │ │ │ │ └── index.mdx │ │ │ ├── 03_executing_sql_statements_through_statement_objects.mdx │ │ │ ├── 04_retrieving_results_from_a_resultset_object.mdx │ │ │ ├── 05_freeing_resources.mdx │ │ │ ├── 06_handling_errors.mdx │ │ │ └── index.mdx │ │ │ ├── 05a_using_advanced_queueing │ │ │ ├── index.mdx │ │ │ ├── jms_application.mdx │ │ │ ├── message_acknowledgement.mdx │ │ │ ├── message_types.mdx │ │ │ ├── non_standard_message.mdx │ │ │ └── serverside_setup.mdx │ │ │ ├── 06_executing_sql_commands_with_executeUpdate().mdx │ │ │ ├── 07_adding_a_graphical_interface_to_a_java_program.mdx │ │ │ ├── 08_advanced_jdbc_connector_functionality │ │ │ ├── 01_reducing_client-side_resource_requirements.mdx │ │ │ ├── 02_using_preparedstatements_to_send_sql_commands.mdx │ │ │ ├── 03_executing_stored_procedures.mdx │ │ │ ├── 04_using_ref_cursors_with_java.mdx │ │ │ ├── 05_using_bytea_data_with_java.mdx │ │ │ ├── 06_using_object_types_and_collections_with_java.mdx │ │ │ ├── 07_asynchronous_notification_handling_with_noticelistener.mdx │ │ │ └── index.mdx │ │ │ ├── 09_security_and_encryption │ │ │ ├── 01_using_ssl │ │ │ │ ├── 01_configuring_the_server.mdx │ │ │ │ ├── 02_configuring_the_client.mdx │ │ │ │ ├── 03_testing_the_ssl_jdbc_connection.mdx │ │ │ │ ├── 04_using_certificate_authentication_without_a_password.mdx │ │ │ │ └── index.mdx │ │ │ ├── 02_scram_compatibility.mdx │ │ │ ├── 03_support_for_gssapi_encrypted_connection.mdx │ │ │ └── index.mdx │ │ │ ├── 10_advanced_server_jdbc_connector_logging.mdx │ │ │ ├── 11_reference_jdbc_data_types.mdx │ │ │ ├── images │ │ │ ├── core_classes_and_interfaces.png │ │ │ ├── drivermanager_drivers.png │ │ │ ├── jdbc_class_relationships.png │ │ │ └── the_showemployees_window.png │ │ │ ├── index.mdx │ │ │ └── installing │ │ │ ├── configuring_for_java.mdx │ │ │ ├── index.mdx │ │ │ ├── linux_arm64 │ │ │ ├── index.mdx │ │ │ ├── jdbc_debian_12.mdx │ │ │ └── jdbc_rhel_9.mdx │ │ │ ├── linux_ppc64le │ │ │ ├── index.mdx │ │ │ ├── jdbc_rhel_8.mdx │ │ │ ├── jdbc_rhel_9.mdx │ │ │ ├── jdbc_sles_12.mdx │ │ │ └── jdbc_sles_15.mdx │ │ │ ├── linux_x86_64 │ │ │ ├── index.mdx │ │ │ ├── jdbc_debian_11.mdx │ │ │ ├── jdbc_debian_12.mdx │ │ │ ├── jdbc_other_linux_8.mdx │ │ │ ├── jdbc_other_linux_9.mdx │ │ │ ├── jdbc_rhel_8.mdx │ │ │ ├── jdbc_rhel_9.mdx │ │ │ ├── jdbc_sles_12.mdx │ │ │ ├── jdbc_sles_15.mdx │ │ │ ├── jdbc_ubuntu_22.mdx │ │ │ └── jdbc_ubuntu_24.mdx │ │ │ ├── upgrading.mdx │ │ │ ├── using_maven.mdx │ │ │ └── windows.mdx │ ├── language_pack │ │ └── 4 │ │ │ ├── images │ │ │ ├── uninstall_lp1.png │ │ │ └── uninstall_lp2.png │ │ │ ├── index.mdx │ │ │ ├── installing │ │ │ ├── index.mdx │ │ │ ├── linux.mdx │ │ │ ├── macos.mdx │ │ │ └── windows.mdx │ │ │ ├── uninstalling.mdx │ │ │ └── using.mdx │ ├── lasso │ │ └── 4 │ │ │ ├── appendix-a.mdx │ │ │ ├── collected-data.mdx │ │ │ ├── configuration.mdx │ │ │ ├── describe.mdx │ │ │ ├── index.mdx │ │ │ ├── install.mdx │ │ │ ├── release-notes.mdx │ │ │ ├── report-types.mdx │ │ │ ├── return.mdx │ │ │ ├── security.mdx │ │ │ └── usage.mdx │ ├── livecompare │ │ ├── 1 │ │ │ └── index.mdx │ │ ├── 2 │ │ │ ├── advanced_usage.mdx │ │ │ ├── bdr_support.mdx │ │ │ ├── command_line_usage.mdx │ │ │ ├── index.mdx │ │ │ ├── licenses.mdx │ │ │ ├── oracle_support.mdx │ │ │ ├── rel_notes │ │ │ │ ├── 2.0_rel_notes.mdx │ │ │ │ ├── 2.1_rel_notes.mdx │ │ │ │ ├── 2.2_rel_notes.mdx │ │ │ │ ├── 2.3_rel_notes.mdx │ │ │ │ ├── 2.4_rel_notes.mdx │ │ │ │ ├── 2.5.1_rel_notes.mdx │ │ │ │ ├── 2.5_rel_notes.mdx │ │ │ │ └── index.mdx │ │ │ ├── requirements.mdx │ │ │ ├── settings.mdx │ │ │ └── supported_technologies.mdx │ │ └── 3 │ │ │ ├── advanced_usage.mdx │ │ │ ├── bdr_support.mdx │ │ │ ├── command_line_usage.mdx │ │ │ ├── index.mdx │ │ │ ├── installation.mdx │ │ │ ├── licenses.mdx │ │ │ ├── oracle_support.mdx │ │ │ ├── rel_notes │ │ │ ├── index.mdx │ │ │ ├── livecompare_3.0.1_rel_notes.mdx │ │ │ ├── livecompare_3.0.2_rel_notes.mdx │ │ │ ├── livecompare_3.0.3_rel_notes.mdx │ │ │ ├── livecompare_3.0.4_rel_notes.mdx │ │ │ ├── livecompare_3.1.0_rel_notes.mdx │ │ │ └── src │ │ │ │ ├── 3.0.3_rel_notes.yml │ │ │ │ ├── 3.0.4_rel_notes.yml │ │ │ │ ├── 3.1.0_rel_notes.yml │ │ │ │ └── meta.yml │ │ │ ├── requirements.mdx │ │ │ ├── settings │ │ │ ├── connections.mdx │ │ │ ├── filters.mdx │ │ │ ├── general.mdx │ │ │ └── index.mdx │ │ │ └── supported_technologies.mdx │ ├── migration_portal │ │ └── 4 │ │ │ ├── 01_mp_release_notes │ │ │ ├── 10_mp_4.0_rel_notes.mdx │ │ │ ├── index.mdx │ │ │ ├── mp_4.10.0_rel_notes.mdx │ │ │ ├── mp_4.11.0_rel_notes.mdx │ │ │ ├── mp_4.12.0_rel_notes.mdx │ │ │ ├── mp_4.13.0_rel_notes.mdx │ │ │ ├── mp_4.1_rel_notes.mdx │ │ │ ├── mp_4.2_rel_notes.mdx │ │ │ ├── mp_4.3_rel_notes.mdx │ │ │ ├── mp_4.4_rel_notes.mdx │ │ │ ├── mp_4.5.1_rel_notes.mdx │ │ │ ├── mp_4.5_rel_notes.mdx │ │ │ ├── mp_4.6.0_rel_notes.mdx │ │ │ ├── mp_4.7.0_rel_notes.mdx │ │ │ ├── mp_4.7.1_rel_notes.mdx │ │ │ ├── mp_4.8.0_rel_notes.mdx │ │ │ └── mp_4.9.0_rel_notes.mdx │ │ │ ├── 02_supported_platforms.mdx │ │ │ ├── 03_mp_using_portal │ │ │ ├── 01_mp_overview_home.mdx │ │ │ ├── 02_mp_overview_project.mdx │ │ │ ├── 03_mp_quick_start.mdx │ │ │ ├── index.mdx │ │ │ └── mp_ai_copilot │ │ │ │ ├── ai_good_prompts.mdx │ │ │ │ ├── enable_ai_copilot.mdx │ │ │ │ └── index.mdx │ │ │ ├── 04_mp_migrating_database │ │ │ ├── 01_mp_schema_extraction │ │ │ │ ├── 01_data_pump_utility.mdx │ │ │ │ ├── edb_ddl_extractor.mdx │ │ │ │ └── index.mdx │ │ │ ├── 03_mp_schema_migration.mdx │ │ │ ├── 04_mp_data_migration.mdx │ │ │ ├── index.mdx │ │ │ └── mp_schema_assessment │ │ │ │ ├── checks.mdx │ │ │ │ └── index.mdx │ │ │ ├── images │ │ │ ├── 1.png │ │ │ ├── 162980660731198462.textClipping │ │ │ ├── 3.png │ │ │ ├── EDB_logo.png │ │ │ ├── Migrate_Cloud_Finish.png │ │ │ ├── biganimal.png │ │ │ ├── edb_logo.svg │ │ │ ├── edb_logo_full_color.svg │ │ │ ├── mp_ai_copilot_feedback_pgai.png │ │ │ ├── mp_enterprisedb_website.png │ │ │ ├── mp_migrate_cloud_connection.png │ │ │ ├── mp_migrate_cloud_connection_complete.png │ │ │ ├── mp_migrate_cloud_connection_complete_updatated.png │ │ │ ├── mp_migrate_cloud_connection_screen_pgai.png │ │ │ ├── mp_migrate_cloud_finish_1.png │ │ │ ├── mp_migrate_cloud_launch_cluster_updated.png │ │ │ ├── mp_migrate_cloud_select_platform.png │ │ │ ├── mp_migrate_cloud_success_updated.png │ │ │ ├── mp_migration_connection_screen.png │ │ │ ├── mp_new_filters.png │ │ │ ├── mp_overview_home_1_pgai.png │ │ │ ├── mp_overview_home_2_pgai.png │ │ │ ├── mp_overview_project_kb.png │ │ │ ├── mp_overview_project_numbered.png │ │ │ ├── mp_overview_wiki.png │ │ │ ├── mp_overview_wiki_1.png │ │ │ ├── mp_overview_wiki_2.png │ │ │ ├── mp_overview_wiki_5.png │ │ │ ├── mp_schema_assessment_analysis_result.png │ │ │ ├── mp_schema_assessment_copilot_pgai.png │ │ │ ├── mp_schema_assessment_errors_pgai.png │ │ │ ├── mp_schema_assessment_incompatible_pgai.png │ │ │ ├── mp_schema_assessment_new_project.png │ │ │ ├── mp_schema_assessment_new_project_1.png │ │ │ ├── mp_schema_assessment_new_project_2.png │ │ │ ├── mp_schema_assessment_new_project_4.png │ │ │ ├── mp_schema_assessment_new_project_4_edited.png │ │ │ ├── mp_schema_assessment_new_project_5.png │ │ │ ├── mp_schema_assessment_new_project_edited.png │ │ │ ├── mp_schema_assessment_new_project_updated.png │ │ │ ├── mp_schema_assessment_schema_report.png │ │ │ ├── mp_schema_assessment_schema_report_pdf.png │ │ │ ├── mp_schema_assessment_select_schema.png │ │ │ ├── mp_schema_assessment_verifying_ddl.png │ │ │ ├── mp_schema_assessment_workaround_pgai.png │ │ │ ├── mp_schema_dependent_objects.png │ │ │ ├── mp_schema_extraction_list.png │ │ │ ├── mp_schema_extraction_paths.png │ │ │ ├── mp_schema_extraction_target.png │ │ │ ├── mp_schema_mig_cloud_cluster.png │ │ │ ├── mp_schema_mig_cloud_cluster_connection_page.png │ │ │ ├── mp_schema_mig_cloud_cluster_connection_test.png │ │ │ ├── mp_schema_mig_cloud_epas_mig_success.png │ │ │ ├── mp_schema_mig_cloud_epas_schemas_selection.png │ │ │ ├── mp_schema_mig_cloud_option.png │ │ │ ├── mp_schema_mig_exist_epas_contact_us.png │ │ │ ├── mp_schema_mig_exist_epas_download.png │ │ │ ├── mp_schema_mig_exist_epas_mig_success.png │ │ │ ├── mp_schema_mig_exist_epas_schemas_selection.png │ │ │ ├── mp_schema_mig_exist_epas_schemas_selection_linux.png │ │ │ ├── mp_schema_mig_exist_epas_windows.png │ │ │ ├── mp_schema_mig_exist_linux.png │ │ │ ├── mp_schema_mig_new_epas_download.png │ │ │ ├── mp_schema_mig_new_epas_import.png │ │ │ ├── mp_schema_mig_new_epas_linux.png │ │ │ ├── mp_schema_mig_new_epas_linux_guide.png │ │ │ ├── mp_schema_mig_new_epas_linux_import.png │ │ │ ├── mp_schema_mig_new_epas_linux_repo.png │ │ │ ├── mp_schema_mig_new_epas_mig_success..png │ │ │ ├── mp_schema_mig_new_epas_mig_success.png │ │ │ ├── mp_schema_mig_new_epas_schemas_selection copy.png │ │ │ ├── mp_schema_mig_new_epas_schemas_selection.png │ │ │ ├── mp_schema_mig_new_epas_windows.png │ │ │ ├── mp_schema_mig_new_epas_windows_guide.png │ │ │ ├── mp_schema_mig_new_epas_windows_import.png │ │ │ ├── mp_schema_mig_new_epas_windows_installer.png │ │ │ ├── mp_schema_migration_cds.png │ │ │ ├── mp_schema_migration_connection_details.png │ │ │ ├── mp_schema_migration_connection_successful.png │ │ │ ├── mp_schema_migration_deployed.png │ │ │ ├── mp_schema_migration_download_file_button.png │ │ │ ├── mp_schema_migration_download_file_option.png │ │ │ ├── mp_schema_migration_existing_epas.png │ │ │ ├── mp_schema_migration_home.png │ │ │ ├── mp_schema_migration_home_cloud.png │ │ │ ├── mp_schema_migration_home_new.png │ │ │ ├── mp_schema_migration_offline_pgai.png │ │ │ ├── mp_schema_migration_online_pgai.png │ │ │ ├── mp_schema_migration_select_schemas (copy).png │ │ │ ├── mp_schema_migration_select_schemas.png │ │ │ ├── mp_syntax_error_pgai.png │ │ │ ├── mp_using_portal_accessing.png │ │ │ ├── mp_using_portal_expdp_impdp.png │ │ │ ├── mp_using_portal_updated.png │ │ │ ├── mp_vague_error_pgai.png │ │ │ ├── mp_whats_new_assessment_report_rh_counts.png │ │ │ ├── mp_whats_new_branding_updates.png │ │ │ ├── mp_whats_new_common_failures.png │ │ │ ├── mp_whats_new_compatibility_guage_color.png │ │ │ ├── mp_whats_new_csv.png │ │ │ ├── mp_whats_new_objects_repaired_by_me.png │ │ │ ├── mp_whats_new_prepopulated_email.png │ │ │ ├── mp_whats_new_warning_sign.png │ │ │ ├── project page overview.png │ │ │ ├── schema_object_selection.png │ │ │ ├── select-operating-system-linux.png │ │ │ ├── test.png │ │ │ └── whats_new_new_look.png │ │ │ ├── index.mdx │ │ │ └── known_issues_notes.mdx │ ├── migration_toolkit │ │ └── 55 │ │ │ ├── 02_supported_operating_systems_and_database_versions.mdx │ │ │ ├── 04_functionality_overview.mdx │ │ │ ├── 06_building_toolkit.properties_file.mdx │ │ │ ├── 07_invoking_mtk │ │ │ ├── 08_mtk_command_options.mdx │ │ │ ├── index.mdx │ │ │ └── mtk_command_options_in_file │ │ │ │ ├── creating_txt_file.mdx │ │ │ │ ├── executing_migration_with_txt.mdx │ │ │ │ └── index.mdx │ │ │ ├── 09_mtk_errors.mdx │ │ │ ├── 10_error_codes.mdx │ │ │ ├── 11_questions.mdx │ │ │ ├── configuring_ssl.mdx │ │ │ ├── images │ │ │ └── building_toolkit.properties.png │ │ │ ├── index.mdx │ │ │ ├── installing │ │ │ ├── index.mdx │ │ │ ├── installing_jdbc_driver.mdx │ │ │ ├── linux_arm64 │ │ │ │ ├── index.mdx │ │ │ │ ├── mtk_debian_12.mdx │ │ │ │ └── mtk_rhel_9.mdx │ │ │ ├── linux_ppc64le │ │ │ │ ├── index.mdx │ │ │ │ ├── mtk_rhel_8.mdx │ │ │ │ ├── mtk_rhel_9.mdx │ │ │ │ └── mtk_sles_15.mdx │ │ │ ├── linux_x86_64 │ │ │ │ ├── index.mdx │ │ │ │ ├── mtk_debian_11.mdx │ │ │ │ ├── mtk_debian_12.mdx │ │ │ │ ├── mtk_other_linux_8.mdx │ │ │ │ ├── mtk_other_linux_9.mdx │ │ │ │ ├── mtk_rhel_8.mdx │ │ │ │ ├── mtk_rhel_9.mdx │ │ │ │ ├── mtk_sles_15.mdx │ │ │ │ ├── mtk_ubuntu_22.mdx │ │ │ │ └── mtk_ubuntu_24.mdx │ │ │ └── windows.mdx │ │ │ ├── mtk_rel_notes │ │ │ ├── 05_mkt_5522_rel_notes.mdx │ │ │ ├── 06_mkt_5521_rel_notes.mdx │ │ │ ├── 07_mkt_552_rel_notes.mdx │ │ │ ├── 08_mkt_551_rel_notes.mdx │ │ │ ├── 09_mkt_55_rel_notes.mdx │ │ │ ├── index.mdx │ │ │ ├── mtk_55100_rel_notes.mdx │ │ │ ├── mtk_55110_rel_notes.mdx │ │ │ ├── mtk_55112_rel_notes.mdx │ │ │ ├── mtk_55120_rel_notes.mdx │ │ │ ├── mtk_55130_rel_notes.mdx │ │ │ ├── mtk_5523_rel_notes.mdx │ │ │ ├── mtk_553_rel_notes.mdx │ │ │ ├── mtk_554_rel_notes.mdx │ │ │ ├── mtk_555_rel_notes.mdx │ │ │ ├── mtk_5561_rel_notes.mdx │ │ │ ├── mtk_556_rel_notes.mdx │ │ │ ├── mtk_5570_rel_notes.mdx │ │ │ ├── mtk_5580_rel_notes.mdx │ │ │ └── mtk_5590_rel_notes.mdx │ │ │ └── upgrading.mdx │ ├── mongo_data_adapter │ │ └── 5 │ │ │ ├── 02_requirements_overview.mdx │ │ │ ├── 03_architecture_overview.mdx │ │ │ ├── 06_features_of_mongo_fdw.mdx │ │ │ ├── 08_example_using_the_mongo_data_adapter.mdx │ │ │ ├── 08a_example_join_pushdown.mdx │ │ │ ├── 08b_example_aggregate_pushdown.mdx │ │ │ ├── 08c_example_where_pushdown.mdx │ │ │ ├── 09_identifying_data_adapter_version.mdx │ │ │ ├── 10_limitations.mdx │ │ │ ├── configuring.mdx │ │ │ ├── example_limit_offset_push_down.mdx │ │ │ ├── example_order_by_push_down.mdx │ │ │ ├── example_remote_query_logging.mdx │ │ │ ├── images │ │ │ └── mongo_server_with_postgres.png │ │ │ ├── index.mdx │ │ │ ├── installing │ │ │ ├── index.mdx │ │ │ ├── linux_arm64 │ │ │ │ ├── index.mdx │ │ │ │ ├── mongo_debian_12.mdx │ │ │ │ └── mongo_rhel_9.mdx │ │ │ ├── linux_ppc64le │ │ │ │ ├── index.mdx │ │ │ │ ├── mongo_rhel_8.mdx │ │ │ │ ├── mongo_rhel_9.mdx │ │ │ │ └── mongo_sles_15.mdx │ │ │ └── linux_x86_64 │ │ │ │ ├── index.mdx │ │ │ │ ├── mongo_debian_11.mdx │ │ │ │ ├── mongo_debian_12.mdx │ │ │ │ ├── mongo_other_linux_8.mdx │ │ │ │ ├── mongo_other_linux_9.mdx │ │ │ │ ├── mongo_rhel_8.mdx │ │ │ │ ├── mongo_rhel_9.mdx │ │ │ │ ├── mongo_sles_15.mdx │ │ │ │ ├── mongo_ubuntu_22.mdx │ │ │ │ └── mongo_ubuntu_24.mdx │ │ │ ├── mongo_rel_notes │ │ │ ├── index.mdx │ │ │ ├── mongo5.2.3_rel_notes.mdx │ │ │ ├── mongo5.2.6_rel_notes.mdx │ │ │ ├── mongo5.2.8_rel_notes.mdx │ │ │ ├── mongo5.2.9_rel_notes.mdx │ │ │ ├── mongo5.3.0_rel_notes.mdx │ │ │ ├── mongo5.4.0_rel_notes.mdx │ │ │ ├── mongo5.5.0_rel_notes.mdx │ │ │ ├── mongo5.5.1_rel_notes.mdx │ │ │ ├── mongo5.5.2_rel_notes.mdx │ │ │ └── mongo5.5.3_rel_notes.mdx │ │ │ ├── uninstalling.mdx │ │ │ └── upgrading.mdx │ ├── mysql_data_adapter │ │ └── 2 │ │ │ ├── 02_requirements_overview.mdx │ │ │ ├── 03_architecture_overview.mdx │ │ │ ├── 06_features_of_mysql_fdw.mdx │ │ │ ├── 08_example_using_the_mysql_data_adapter.mdx │ │ │ ├── 09_example_import_foreign_schema.mdx │ │ │ ├── 10_example_join_push_down.mdx │ │ │ ├── 10a_example_aggregate_func_push_down.mdx │ │ │ ├── 10b_example_order_by_push_down.mdx │ │ │ ├── 10c_example_limit_offset_push_down.mdx │ │ │ ├── 11_identifying_data_adapter_version.mdx │ │ │ ├── 13_troubleshooting.mdx │ │ │ ├── configuring.mdx │ │ │ ├── example_connection_file.mdx │ │ │ ├── images │ │ │ └── mysql_server_with_postgres.png │ │ │ ├── index.mdx │ │ │ ├── installing │ │ │ ├── index.mdx │ │ │ ├── linux_arm64 │ │ │ │ ├── index.mdx │ │ │ │ ├── mysql_debian_12.mdx │ │ │ │ └── mysql_rhel_9.mdx │ │ │ ├── linux_ppc64le │ │ │ │ ├── index.mdx │ │ │ │ ├── mysql_rhel_8.mdx │ │ │ │ ├── mysql_rhel_9.mdx │ │ │ │ └── mysql_sles_15.mdx │ │ │ └── linux_x86_64 │ │ │ │ ├── index.mdx │ │ │ │ ├── mysql_debian_11.mdx │ │ │ │ ├── mysql_debian_12.mdx │ │ │ │ ├── mysql_other_linux_8.mdx │ │ │ │ ├── mysql_other_linux_9.mdx │ │ │ │ ├── mysql_rhel_8.mdx │ │ │ │ ├── mysql_rhel_9.mdx │ │ │ │ ├── mysql_sles_15.mdx │ │ │ │ ├── mysql_ubuntu_22.mdx │ │ │ │ └── mysql_ubuntu_24.mdx │ │ │ ├── mysql_rel_notes │ │ │ ├── index.mdx │ │ │ ├── mysql2.5.1_rel_notes.mdx │ │ │ ├── mysql2.5.3_rel_notes.mdx │ │ │ ├── mysql2.5.5_rel_notes.mdx │ │ │ ├── mysql2.6.0_rel_notes.mdx │ │ │ ├── mysql2.7.0_rel_notes.mdx │ │ │ ├── mysql2.8.0_rel_notes.mdx │ │ │ ├── mysql2.9.0_rel_notes.mdx │ │ │ ├── mysql2.9.1_rel_notes.mdx │ │ │ ├── mysql2.9.2_rel_notes.mdx │ │ │ └── mysql2.9.3_rel_notes.mdx │ │ │ ├── uninstalling.mdx │ │ │ └── upgrading.mdx │ ├── net_connector │ │ └── 9.0.3.1 │ │ │ ├── 02_requirements_overview.mdx │ │ │ ├── 03_the_advanced_server_net_connector_overview.mdx │ │ │ ├── 04_installing_and_configuring_the_net_connector.mdx │ │ │ ├── 06_opening_a_database_connection.mdx │ │ │ ├── 07_retrieving_database_records.mdx │ │ │ ├── 08_parameterized_queries.mdx │ │ │ ├── 09_inserting_records_in_a_database.mdx │ │ │ ├── 10_deleting_records_in_a_database.mdx │ │ │ ├── 11_using_spl_stored_procedures_in_your_net_application.mdx │ │ │ ├── 12_using_advanced_queueing.mdx │ │ │ ├── 13_using_a_ref_cursor_in_a_net_application.mdx │ │ │ ├── 14_using_plugins.mdx │ │ │ ├── 15_using_object_types.mdx │ │ │ ├── 16_scram_compatibility.mdx │ │ │ ├── 17_advanced_server_net_connector_logging.mdx │ │ │ ├── 18_api_reference.mdx │ │ │ ├── images │ │ │ ├── connection_opened_successfully.png │ │ │ ├── dialog.png │ │ │ ├── dotnet_installation_complete.png │ │ │ ├── dotnet_installation_dialog.png │ │ │ ├── dotnet_installation_wizard.png │ │ │ ├── ready_to_install.png │ │ │ ├── selecting_the_connectors_installer.png │ │ │ └── starting_stackbuilder_plus.png │ │ │ ├── index.mdx │ │ │ ├── release_notes │ │ │ ├── 4.0.10.1_rel_notes.mdx │ │ │ ├── 4.0.10.2_rel_notes.mdx │ │ │ ├── 4.0.6.1_rel_notes.mdx │ │ │ ├── 4.1.3.1_rel_notes.mdx │ │ │ ├── 4.1.5.1_rel_notes.mdx │ │ │ ├── 4.1.6.1_rel_notes.mdx │ │ │ ├── 5.0.7.1_rel_notes.mdx │ │ │ ├── 6.0.2.1_rel_notes.mdx │ │ │ ├── 7.0.4.1_rel_notes.mdx │ │ │ ├── 7.0.6.1_rel_notes.mdx │ │ │ ├── 7.0.6.2_rel_notes.mdx │ │ │ ├── 8.0.2.1_rel_notes.mdx │ │ │ ├── 8.0.5.1_rel_notes.mdx │ │ │ ├── 9.0.3.1_rel_notes.mdx │ │ │ └── index.mdx │ │ │ └── using_nested_table_types.mdx │ ├── ocl_connector │ │ ├── 12 │ │ │ ├── 01_ocl_release_notes.mdx │ │ │ ├── 02_supported_platforms.mdx │ │ │ ├── 04_open_client_library │ │ │ │ ├── 01_installing_and_configuring_the_ocl_connector.mdx │ │ │ │ ├── 02_forming_a_connection_string.mdx │ │ │ │ ├── 03_compiling_and_linking_a_program.mdx │ │ │ │ ├── 04_ref_cursor_support.mdx │ │ │ │ ├── 05_ocl_function_reference.mdx │ │ │ │ ├── 06_ocl_error_codes_reference.mdx │ │ │ │ ├── 07_multithreading_support.mdx │ │ │ │ └── index.mdx │ │ │ ├── 05_generating_the_ocl_trace.mdx │ │ │ ├── 06_using_ssl.mdx │ │ │ ├── 07_scram_compatibility.mdx │ │ │ ├── images │ │ │ │ ├── ocl_installation_complete.png │ │ │ │ ├── ocl_installation_dialog.png │ │ │ │ ├── ocl_installation_wizard.png │ │ │ │ ├── oracle_call_interface.png │ │ │ │ ├── ready_to_install.png │ │ │ │ ├── selecting_the_connectors_installer.png │ │ │ │ └── starting_stackbuilder_plus.png │ │ │ └── index.mdx │ │ ├── 13 │ │ │ ├── 01_ocl_release_notes.mdx │ │ │ ├── 02_supported_platforms.mdx │ │ │ ├── 03_libpq_compatibility.mdx │ │ │ ├── 04_open_client_library │ │ │ │ ├── 01_installing_and_configuring_the_ocl_connector.mdx │ │ │ │ ├── 02_forming_a_connection_string.mdx │ │ │ │ ├── 03_compiling_and_linking_a_program.mdx │ │ │ │ ├── 04_ref_cursor_support.mdx │ │ │ │ ├── 05_ocl_function_reference.mdx │ │ │ │ ├── 06_ocl_error_codes_reference.mdx │ │ │ │ ├── 07_multithreading_support.mdx │ │ │ │ ├── 08_otl_support.mdx │ │ │ │ └── index.mdx │ │ │ ├── 05_generating_the_ocl_trace.mdx │ │ │ ├── 06_using_ssl.mdx │ │ │ ├── 07_scram_compatibility.mdx │ │ │ ├── images │ │ │ │ ├── ocl_installation_complete.png │ │ │ │ ├── ocl_installation_dialog.png │ │ │ │ ├── ocl_installation_wizard.png │ │ │ │ ├── oracle_call_interface.png │ │ │ │ ├── ready_to_install.png │ │ │ │ ├── selecting_the_connectors_installer.png │ │ │ │ └── starting_stackbuilder_plus.png │ │ │ └── index.mdx │ │ ├── 14 │ │ │ ├── 01_ocl_release_notes.mdx │ │ │ ├── 02_supported_platforms.mdx │ │ │ ├── 03_libpq_compatibility.mdx │ │ │ ├── 04_open_client_library │ │ │ │ ├── 02_forming_a_connection_string.mdx │ │ │ │ ├── 03_compiling_and_linking_a_program.mdx │ │ │ │ ├── 04_ref_cursor_support.mdx │ │ │ │ ├── 05_ocl_function_reference.mdx │ │ │ │ ├── 06_ocl_error_codes_reference.mdx │ │ │ │ ├── 07_multithreading_support.mdx │ │ │ │ ├── 08_otl_support.mdx │ │ │ │ └── index.mdx │ │ │ ├── 05_generating_the_ocl_trace.mdx │ │ │ ├── 06_using_ssl.mdx │ │ │ ├── 07_scram_compatibility.mdx │ │ │ ├── images │ │ │ │ ├── ocl_installation_complete.png │ │ │ │ ├── ocl_installation_dialog.png │ │ │ │ ├── ocl_installation_wizard.png │ │ │ │ ├── oracle_call_interface.png │ │ │ │ ├── ready_to_install.png │ │ │ │ ├── selecting_the_connectors_installer.png │ │ │ │ └── starting_stackbuilder_plus.png │ │ │ ├── index.mdx │ │ │ └── installing │ │ │ │ ├── index.mdx │ │ │ │ ├── linux_arm64 │ │ │ │ ├── index.mdx │ │ │ │ └── ocl_rhel_9.mdx │ │ │ │ ├── linux_ppc64le │ │ │ │ ├── index.mdx │ │ │ │ ├── ocl_rhel_8.mdx │ │ │ │ ├── ocl_rhel_9.mdx │ │ │ │ └── ocl_sles_15.mdx │ │ │ │ ├── linux_x86_64 │ │ │ │ ├── index.mdx │ │ │ │ ├── ocl_debian_11.mdx │ │ │ │ ├── ocl_other_linux_8.mdx │ │ │ │ ├── ocl_other_linux_9.mdx │ │ │ │ ├── ocl_rhel_8.mdx │ │ │ │ ├── ocl_rhel_9.mdx │ │ │ │ └── ocl_sles_15.mdx │ │ │ │ ├── upgrading.mdx │ │ │ │ └── windows.mdx │ │ ├── 15 │ │ │ ├── 02_supported_platforms.mdx │ │ │ ├── 03_libpq_compatibility.mdx │ │ │ ├── 04_open_client_library │ │ │ │ ├── 02_forming_a_connection_string.mdx │ │ │ │ ├── 03_compiling_and_linking_a_program.mdx │ │ │ │ ├── 04_ref_cursor_support.mdx │ │ │ │ ├── 05_ocl_function_reference.mdx │ │ │ │ ├── 06_ocl_error_codes_reference.mdx │ │ │ │ ├── 07_multithreading_support.mdx │ │ │ │ ├── 08_otl_support.mdx │ │ │ │ └── index.mdx │ │ │ ├── 05_generating_the_ocl_trace.mdx │ │ │ ├── 06_using_ssl.mdx │ │ │ ├── 07_scram_compatibility.mdx │ │ │ ├── images │ │ │ │ └── oracle_call_interface.png │ │ │ ├── index.mdx │ │ │ ├── installing │ │ │ │ ├── index.mdx │ │ │ │ ├── linux_arm64 │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── ocl_rhel_9.mdx │ │ │ │ ├── linux_ppc64le │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── ocl_rhel_8.mdx │ │ │ │ │ ├── ocl_rhel_9.mdx │ │ │ │ │ └── ocl_sles_15.mdx │ │ │ │ ├── linux_x86_64 │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── ocl_debian_11.mdx │ │ │ │ │ ├── ocl_other_linux_8.mdx │ │ │ │ │ ├── ocl_other_linux_9.mdx │ │ │ │ │ ├── ocl_rhel_8.mdx │ │ │ │ │ ├── ocl_rhel_9.mdx │ │ │ │ │ ├── ocl_sles_15.mdx │ │ │ │ │ ├── ocl_ubuntu_22.mdx │ │ │ │ │ └── ocl_ubuntu_24.mdx │ │ │ │ ├── upgrading.mdx │ │ │ │ └── windows.mdx │ │ │ └── ocl_rel_notes │ │ │ │ ├── 01_ocl_release_notes.mdx │ │ │ │ ├── 15.2.0.2_ocl_release_notes.mdx │ │ │ │ ├── 15.2.0.3_ocl_release_notes.mdx │ │ │ │ ├── 15.2.0.4_ocl_release_notes.mdx │ │ │ │ └── index.mdx │ │ ├── 16 │ │ │ ├── 02_supported_platforms.mdx │ │ │ ├── 03_libpq_compatibility.mdx │ │ │ ├── 04_open_client_library │ │ │ │ ├── 02_forming_a_connection_string.mdx │ │ │ │ ├── 03_compiling_and_linking_a_program.mdx │ │ │ │ ├── 04_ref_cursor_support.mdx │ │ │ │ ├── 05_ocl_function_reference.mdx │ │ │ │ ├── 06_ocl_error_codes_reference.mdx │ │ │ │ ├── 07_multithreading_support.mdx │ │ │ │ ├── 08_otl_support.mdx │ │ │ │ └── index.mdx │ │ │ ├── 05_generating_the_ocl_trace.mdx │ │ │ ├── 06_using_ssl.mdx │ │ │ ├── 07_scram_compatibility.mdx │ │ │ ├── images │ │ │ │ ├── ocl_installation_complete.png │ │ │ │ ├── ocl_installation_dialog.png │ │ │ │ ├── ocl_installation_wizard.png │ │ │ │ ├── oracle_call_interface.png │ │ │ │ ├── ready_to_install.png │ │ │ │ ├── selecting_the_connectors_installer.png │ │ │ │ └── starting_stackbuilder_plus.png │ │ │ ├── index.mdx │ │ │ ├── installing │ │ │ │ ├── index.mdx │ │ │ │ ├── linux_arm64 │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── ocl_debian_12.mdx │ │ │ │ │ └── ocl_rhel_9.mdx │ │ │ │ ├── linux_ppc64le │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── ocl_rhel_8.mdx │ │ │ │ │ ├── ocl_rhel_9.mdx │ │ │ │ │ └── ocl_sles_15.mdx │ │ │ │ ├── linux_x86_64 │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── ocl_debian_11.mdx │ │ │ │ │ ├── ocl_debian_12.mdx │ │ │ │ │ ├── ocl_other_linux_8.mdx │ │ │ │ │ ├── ocl_other_linux_9.mdx │ │ │ │ │ ├── ocl_rhel_8.mdx │ │ │ │ │ ├── ocl_rhel_9.mdx │ │ │ │ │ ├── ocl_sles_15.mdx │ │ │ │ │ ├── ocl_ubuntu_22.mdx │ │ │ │ │ └── ocl_ubuntu_24.mdx │ │ │ │ ├── upgrading.mdx │ │ │ │ └── windows.mdx │ │ │ └── ocl_rel_notes │ │ │ │ ├── 16.1.0.1_ocl_release_notes.mdx │ │ │ │ ├── 16.1.0.2_ocl_release_notes.mdx │ │ │ │ └── index.mdx │ │ ├── 17 │ │ │ ├── 02_supported_platforms.mdx │ │ │ ├── 03_libpq_compatibility.mdx │ │ │ ├── 04_open_client_library │ │ │ │ ├── 02_forming_a_connection_string.mdx │ │ │ │ ├── 03_compiling_and_linking_a_program.mdx │ │ │ │ ├── 04_ref_cursor_support.mdx │ │ │ │ ├── 05_ocl_function_reference.mdx │ │ │ │ ├── 06_ocl_error_codes_reference.mdx │ │ │ │ ├── 07_multithreading_support.mdx │ │ │ │ ├── 08_otl_support.mdx │ │ │ │ ├── client_side_prepared_statements.mdx │ │ │ │ └── index.mdx │ │ │ ├── 05_generating_the_ocl_trace.mdx │ │ │ ├── 06_using_ssl.mdx │ │ │ ├── 07_scram_compatibility.mdx │ │ │ ├── images │ │ │ │ ├── ocl_installation_complete.png │ │ │ │ ├── ocl_installation_dialog.png │ │ │ │ ├── ocl_installation_wizard.png │ │ │ │ ├── oracle_call_interface.png │ │ │ │ ├── ready_to_install.png │ │ │ │ ├── selecting_the_connectors_installer.png │ │ │ │ └── starting_stackbuilder_plus.png │ │ │ ├── index.mdx │ │ │ ├── installing │ │ │ │ ├── index.mdx │ │ │ │ ├── linux_arm64 │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── ocl_debian_12.mdx │ │ │ │ │ └── ocl_rhel_9.mdx │ │ │ │ ├── linux_ppc64le │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── ocl_rhel_8.mdx │ │ │ │ │ ├── ocl_rhel_9.mdx │ │ │ │ │ └── ocl_sles_15.mdx │ │ │ │ ├── linux_x86_64 │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── ocl_debian_11.mdx │ │ │ │ │ ├── ocl_debian_12.mdx │ │ │ │ │ ├── ocl_other_linux_8.mdx │ │ │ │ │ ├── ocl_other_linux_9.mdx │ │ │ │ │ ├── ocl_rhel_8.mdx │ │ │ │ │ ├── ocl_rhel_9.mdx │ │ │ │ │ ├── ocl_sles_15.mdx │ │ │ │ │ ├── ocl_ubuntu_22.mdx │ │ │ │ │ └── ocl_ubuntu_24.mdx │ │ │ │ ├── upgrading.mdx │ │ │ │ └── windows.mdx │ │ │ └── ocl_rel_notes │ │ │ │ ├── 17.2.0.1_ocl_release_notes.mdx │ │ │ │ ├── 17.2.0.2_ocl_release_notes.mdx │ │ │ │ ├── 17.2.0.3_ocl_release_notes.mdx │ │ │ │ └── index.mdx │ │ └── 18 │ │ │ ├── 02_supported_platforms.mdx │ │ │ ├── 03_libpq_compatibility.mdx │ │ │ ├── 04_open_client_library │ │ │ ├── 02_forming_a_connection_string.mdx │ │ │ ├── 03_compiling_and_linking_a_program.mdx │ │ │ ├── 04_ref_cursor_support.mdx │ │ │ ├── 05_ocl_function_reference.mdx │ │ │ ├── 06_ocl_error_codes_reference.mdx │ │ │ ├── 07_multithreading_support.mdx │ │ │ ├── 08_otl_support.mdx │ │ │ ├── client_side_prepared_statements.mdx │ │ │ └── index.mdx │ │ │ ├── 05_generating_the_ocl_trace.mdx │ │ │ ├── 06_using_ssl.mdx │ │ │ ├── 07_scram_compatibility.mdx │ │ │ ├── images │ │ │ ├── ocl_installation_complete.png │ │ │ ├── ocl_installation_dialog.png │ │ │ ├── ocl_installation_wizard.png │ │ │ ├── oracle_call_interface.png │ │ │ ├── ready_to_install.png │ │ │ ├── selecting_the_connectors_installer.png │ │ │ └── starting_stackbuilder_plus.png │ │ │ ├── index.mdx │ │ │ ├── installing │ │ │ ├── index.mdx │ │ │ ├── linux_arm64 │ │ │ │ ├── index.mdx │ │ │ │ ├── ocl_debian_12.mdx │ │ │ │ └── ocl_rhel_9.mdx │ │ │ ├── linux_ppc64le │ │ │ │ ├── index.mdx │ │ │ │ ├── ocl_rhel_8.mdx │ │ │ │ ├── ocl_rhel_9.mdx │ │ │ │ └── ocl_sles_15.mdx │ │ │ ├── linux_x86_64 │ │ │ │ ├── index.mdx │ │ │ │ ├── ocl_debian_11.mdx │ │ │ │ ├── ocl_debian_12.mdx │ │ │ │ ├── ocl_other_linux_8.mdx │ │ │ │ ├── ocl_other_linux_9.mdx │ │ │ │ ├── ocl_rhel_8.mdx │ │ │ │ ├── ocl_rhel_9.mdx │ │ │ │ ├── ocl_sles_15.mdx │ │ │ │ ├── ocl_ubuntu_22.mdx │ │ │ │ └── ocl_ubuntu_24.mdx │ │ │ ├── upgrading.mdx │ │ │ └── windows.mdx │ │ │ └── ocl_rel_notes │ │ │ ├── 18.1.0.1_ocl_release_notes.mdx │ │ │ └── index.mdx │ ├── odbc_connector │ │ ├── 12 │ │ │ ├── 01_odbc_rel_notes │ │ │ │ ├── 01_odbc_12.2.0.2_rel_notes.mdx │ │ │ │ ├── 03_odbc_12.0.0.2_rel_notes.mdx │ │ │ │ └── index.mdx │ │ │ ├── 02_requirements_overview.mdx │ │ │ ├── 03_edb-odbc_overview │ │ │ │ ├── 01_installing_edb-odbc.mdx │ │ │ │ └── index.mdx │ │ │ ├── 04_creating_a_data_source.mdx │ │ │ ├── 05_edb-odbc_connection_properties.mdx │ │ │ ├── 06_edb-odbc_driver_functionality.mdx │ │ │ ├── 07_scram_compatibility.mdx │ │ │ ├── images │ │ │ │ ├── EDB_logo.png │ │ │ │ ├── advanced_options_1.png │ │ │ │ ├── connection_is_successful.png │ │ │ │ ├── create_new_data_source.png │ │ │ │ ├── data_source_names.png │ │ │ │ ├── data_source_properties_window.png │ │ │ │ ├── define_the_data_source.png │ │ │ │ ├── driver_properties_window.png │ │ │ │ ├── global_settings.png │ │ │ │ ├── installed_edb-odbc_driver.png │ │ │ │ ├── new_driver_definition.png │ │ │ │ ├── odbc_advanced_options_2.png │ │ │ │ ├── odbc_installation_complete.png │ │ │ │ ├── odbc_installation_dialog.png │ │ │ │ ├── odbc_installation_wizard.png │ │ │ │ ├── ready_to_install.png │ │ │ │ ├── select_driver_named_date_source.png │ │ │ │ ├── selecting_the_connectors_installer.png │ │ │ │ ├── starting_stackbuilder_plus.png │ │ │ │ ├── unixodbc_data_source_administrator.png │ │ │ │ └── windows_data_source_administrator.png │ │ │ └── index.mdx │ │ ├── 13 │ │ │ ├── 01_odbc_rel_notes │ │ │ │ ├── 02_odbc_13.2.0.01_rel_notes.mdx │ │ │ │ ├── 03_odbc_13.1.0.02_rel_notes.mdx │ │ │ │ ├── 04_odbc_13.1.0.01_rel_notes.mdx │ │ │ │ ├── 05_odbc_13.0.0.01_rel_notes.mdx │ │ │ │ ├── index.mdx │ │ │ │ └── odbc_13.2.0.02_rel_notes.mdx │ │ │ ├── 02_requirements_overview.mdx │ │ │ ├── 04_creating_a_data_source.mdx │ │ │ ├── 05_edb-odbc_connection_properties.mdx │ │ │ ├── 06_edb-odbc_driver_functionality.mdx │ │ │ ├── 07_scram_compatibility.mdx │ │ │ ├── index.mdx │ │ │ └── installing │ │ │ │ ├── index.mdx │ │ │ │ ├── linux_arm64 │ │ │ │ ├── index.mdx │ │ │ │ └── odbc_rhel_9.mdx │ │ │ │ ├── linux_ppc64le │ │ │ │ ├── index.mdx │ │ │ │ ├── odbc_rhel_8.mdx │ │ │ │ ├── odbc_rhel_9.mdx │ │ │ │ └── odbc_sles_15.mdx │ │ │ │ ├── linux_x86_64 │ │ │ │ ├── index.mdx │ │ │ │ ├── odbc_debian_11.mdx │ │ │ │ ├── odbc_other_linux_8.mdx │ │ │ │ ├── odbc_other_linux_9.mdx │ │ │ │ ├── odbc_rhel_8.mdx │ │ │ │ ├── odbc_rhel_9.mdx │ │ │ │ ├── odbc_sles_15.mdx │ │ │ │ ├── odbc_ubuntu_22.mdx │ │ │ │ └── odbc_ubuntu_24.mdx │ │ │ │ ├── upgrading.mdx │ │ │ │ └── windows.mdx │ │ ├── 16 │ │ │ ├── 01_odbc_rel_notes │ │ │ │ ├── index.mdx │ │ │ │ ├── odbc_16.00.0000.01_rel_notes.mdx │ │ │ │ └── odbc_16.00.0000.02_rel_notes.mdx │ │ │ ├── 02_requirements_overview.mdx │ │ │ ├── 04_creating_a_data_source.mdx │ │ │ ├── 05_edb-odbc_connection_properties.mdx │ │ │ ├── 06_edb-odbc_driver_functionality.mdx │ │ │ ├── 07_scram_compatibility.mdx │ │ │ ├── images │ │ │ │ ├── EDB_logo.png │ │ │ │ ├── advanced_options_1.png │ │ │ │ ├── connection_is_successful.png │ │ │ │ ├── create_new_data_source.png │ │ │ │ ├── data_source_names.png │ │ │ │ ├── data_source_properties_window.png │ │ │ │ ├── define_the_data_source.png │ │ │ │ ├── driver_properties_window.png │ │ │ │ ├── global_settings.png │ │ │ │ ├── installed_edb-odbc_driver.png │ │ │ │ ├── new_driver_definition.png │ │ │ │ ├── odbc_advanced_options_2.png │ │ │ │ ├── odbc_installation_complete.png │ │ │ │ ├── odbc_installation_dialog.png │ │ │ │ ├── odbc_installation_wizard.png │ │ │ │ ├── ready_to_install.png │ │ │ │ ├── select_driver_named_date_source.png │ │ │ │ ├── selecting_the_connectors_installer.png │ │ │ │ ├── starting_stackbuilder_plus.png │ │ │ │ ├── unixodbc_data_source_administrator.png │ │ │ │ └── windows_data_source_administrator.png │ │ │ ├── index.mdx │ │ │ └── installing │ │ │ │ ├── index.mdx │ │ │ │ ├── linux_arm64 │ │ │ │ ├── index.mdx │ │ │ │ ├── odbc_debian_12.mdx │ │ │ │ └── odbc_rhel_9.mdx │ │ │ │ ├── linux_ppc64le │ │ │ │ ├── index.mdx │ │ │ │ ├── odbc_rhel_8.mdx │ │ │ │ ├── odbc_rhel_9.mdx │ │ │ │ └── odbc_sles_15.mdx │ │ │ │ ├── linux_x86_64 │ │ │ │ ├── index.mdx │ │ │ │ ├── odbc_debian_11.mdx │ │ │ │ ├── odbc_debian_12.mdx │ │ │ │ ├── odbc_other_linux_8.mdx │ │ │ │ ├── odbc_other_linux_9.mdx │ │ │ │ ├── odbc_rhel_8.mdx │ │ │ │ ├── odbc_rhel_9.mdx │ │ │ │ ├── odbc_sles_15.mdx │ │ │ │ ├── odbc_ubuntu_22.mdx │ │ │ │ └── odbc_ubuntu_24.mdx │ │ │ │ ├── upgrading.mdx │ │ │ │ └── windows.mdx │ │ └── 17 │ │ │ ├── 01_odbc_rel_notes │ │ │ ├── index.mdx │ │ │ ├── odbc_17.00.0000.01_rel_notes.mdx │ │ │ └── odbc_17.00.0006.02_rel_notes.mdx │ │ │ ├── 02_requirements_overview.mdx │ │ │ ├── 04_creating_a_data_source.mdx │ │ │ ├── 05_edb-odbc_connection_properties.mdx │ │ │ ├── 06_edb-odbc_driver_functionality.mdx │ │ │ ├── 07_scram_compatibility.mdx │ │ │ ├── images │ │ │ ├── EDB_logo.png │ │ │ ├── advanced_options_1.png │ │ │ ├── connection_is_successful.png │ │ │ ├── create_new_data_source.png │ │ │ ├── data_source_names.png │ │ │ ├── data_source_properties_window.png │ │ │ ├── define_the_data_source.png │ │ │ ├── driver_properties_window.png │ │ │ ├── global_settings.png │ │ │ ├── installed_edb-odbc_driver.png │ │ │ ├── new_driver_definition.png │ │ │ ├── odbc_advanced_options_2.png │ │ │ ├── odbc_installation_complete.png │ │ │ ├── odbc_installation_dialog.png │ │ │ ├── odbc_installation_wizard.png │ │ │ ├── ready_to_install.png │ │ │ ├── select_driver_named_date_source.png │ │ │ ├── selecting_the_connectors_installer.png │ │ │ ├── starting_stackbuilder_plus.png │ │ │ ├── unixodbc_data_source_administrator.png │ │ │ └── windows_data_source_administrator.png │ │ │ ├── index.mdx │ │ │ └── installing │ │ │ ├── index.mdx │ │ │ ├── linux_arm64 │ │ │ ├── index.mdx │ │ │ ├── odbc_debian_12.mdx │ │ │ └── odbc_rhel_9.mdx │ │ │ ├── linux_ppc64le │ │ │ ├── index.mdx │ │ │ ├── odbc_rhel_8.mdx │ │ │ ├── odbc_rhel_9.mdx │ │ │ └── odbc_sles_15.mdx │ │ │ ├── linux_x86_64 │ │ │ ├── index.mdx │ │ │ ├── odbc_debian_11.mdx │ │ │ ├── odbc_debian_12.mdx │ │ │ ├── odbc_other_linux_8.mdx │ │ │ ├── odbc_other_linux_9.mdx │ │ │ ├── odbc_rhel_8.mdx │ │ │ ├── odbc_rhel_9.mdx │ │ │ ├── odbc_sles_15.mdx │ │ │ ├── odbc_ubuntu_22.mdx │ │ │ └── odbc_ubuntu_24.mdx │ │ │ ├── upgrading.mdx │ │ │ └── windows.mdx │ ├── pem │ │ ├── 9 │ │ │ ├── certificates │ │ │ │ ├── index.mdx │ │ │ │ ├── regenerating_agent_certificates.mdx │ │ │ │ └── replacing_ssl_certificates.mdx │ │ │ ├── changing_default_port.mdx │ │ │ ├── considerations │ │ │ │ ├── authentication_options │ │ │ │ │ ├── configuring_2fa_authentication.mdx │ │ │ │ │ ├── configuring_the_pem_server_to_use_kerberos_authentication.mdx │ │ │ │ │ ├── configuring_the_pem_server_to_use_windows_kerberos_server.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── installing_pem_server_and_apache_web_server_preferences.mdx │ │ │ │ ├── licensing.mdx │ │ │ │ ├── pem_pgbouncer │ │ │ │ │ ├── configuring_pgBouncer.mdx │ │ │ │ │ ├── configuring_the_pem_agent.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── pem_server_pem_agent_connection_management_mechanism.mdx │ │ │ │ │ └── preparing_the_pem_database_server.mdx │ │ │ │ ├── pem_security_best_practices │ │ │ │ │ ├── apache_httpd_security_configuration.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── pem_application_configuration.mdx │ │ │ │ └── setup_ha_using_efm.mdx │ │ │ ├── images │ │ │ │ ├── active_directory_users_and_computers.png │ │ │ │ ├── alert_details.png │ │ │ │ ├── alerting_manage_alerts.png │ │ │ │ ├── alerts_dashboard.png │ │ │ │ ├── alerts_status_table.png │ │ │ │ ├── audit_log_analysis_dashboard.png │ │ │ │ ├── barman_dashboard.png │ │ │ │ ├── erd_1m_dialog.png │ │ │ │ ├── erd_table_link.png │ │ │ │ ├── erd_tool.png │ │ │ │ ├── fm_cluster_status.png │ │ │ │ ├── global_overview.png │ │ │ │ ├── lgdownload.png │ │ │ │ ├── lgfullscreen.png │ │ │ │ ├── lginformation.png │ │ │ │ ├── lgpersonalize.png │ │ │ │ ├── lgrefresh.png │ │ │ │ ├── move_pem_server_agent_cfg.png │ │ │ │ ├── pe_param_value.png │ │ │ │ ├── pem_agent.png │ │ │ │ ├── pem_architecture.png │ │ │ │ ├── pem_log_analysis_expert_report.png │ │ │ │ ├── pem_pg_hba.png │ │ │ │ ├── pem_server.png │ │ │ │ ├── pem_server_web_properties_account.png │ │ │ │ ├── pem_server_web_properties_member_of.png │ │ │ │ ├── pem_with_pgbouncer.png │ │ │ │ ├── pem_without_pgbouncer.png │ │ │ │ ├── performance_diagnostic_intro.png │ │ │ │ ├── performance_diagnostic_query_dashboard.png │ │ │ │ ├── query_output_notifications_listen.png │ │ │ │ ├── query_output_notifications_notify.png │ │ │ │ ├── query_output_notifications_panel.png │ │ │ │ ├── query_tool_connection_status.png │ │ │ │ ├── role_sql.png │ │ │ │ ├── server_log_analysis_dashboard.png │ │ │ │ ├── stackbuilder_pemhttpd.png │ │ │ │ ├── tuning_wiz_confirm_chg.png │ │ │ │ ├── webhook_ssl_config.png │ │ │ │ ├── webhook_ssl_config_windows.png │ │ │ │ └── windows_powershell_ktpass.png │ │ │ ├── in_app_help.mdx │ │ │ ├── index.mdx │ │ │ ├── installing │ │ │ │ ├── configuring_the_pem_server_on_linux.mdx │ │ │ │ ├── creating_pem_repository_in_isolated_network.mdx │ │ │ │ ├── dependencies.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── linux_arm64 │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── pem_debian_12.mdx │ │ │ │ │ └── pem_rhel_9.mdx │ │ │ │ ├── linux_ppc64le │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── pem_rhel_8.mdx │ │ │ │ │ ├── pem_rhel_9.mdx │ │ │ │ │ └── pem_sles_15.mdx │ │ │ │ ├── linux_x86_64 │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── pem_debian_11.mdx │ │ │ │ │ ├── pem_debian_12.mdx │ │ │ │ │ ├── pem_other_linux_8.mdx │ │ │ │ │ ├── pem_other_linux_9.mdx │ │ │ │ │ ├── pem_rhel_8.mdx │ │ │ │ │ ├── pem_rhel_9.mdx │ │ │ │ │ ├── pem_sles_15.mdx │ │ │ │ │ ├── pem_ubuntu_22.mdx │ │ │ │ │ └── pem_ubuntu_24.mdx │ │ │ │ └── windows │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── pem_server_and_httpd_on_diff_host.mdx │ │ │ │ │ ├── pem_server_and_httpd_on_same_host.mdx │ │ │ │ │ └── pem_server_on_existing_pg_server.mdx │ │ │ ├── installing_pem_agent │ │ │ │ ├── index.mdx │ │ │ │ ├── linux_arm64 │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── pem_agent_debian_12.mdx │ │ │ │ │ └── pem_agent_rhel_9.mdx │ │ │ │ ├── linux_ppc64le │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── pem_agent_rhel_8.mdx │ │ │ │ │ ├── pem_agent_rhel_9.mdx │ │ │ │ │ └── pem_agent_sles_15.mdx │ │ │ │ ├── linux_x86_64 │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── pem_agent_debian_11.mdx │ │ │ │ │ ├── pem_agent_debian_12.mdx │ │ │ │ │ ├── pem_agent_other_linux_8.mdx │ │ │ │ │ ├── pem_agent_other_linux_9.mdx │ │ │ │ │ ├── pem_agent_rhel_8.mdx │ │ │ │ │ ├── pem_agent_rhel_9.mdx │ │ │ │ │ ├── pem_agent_sles_15.mdx │ │ │ │ │ ├── pem_agent_ubuntu_22.mdx │ │ │ │ │ └── pem_agent_ubuntu_24.mdx │ │ │ │ └── windows_agent.mdx │ │ │ ├── managing_configuration_settings.mdx │ │ │ ├── managing_database_server.mdx │ │ │ ├── managing_pem_agent │ │ │ │ ├── index.mdx │ │ │ │ ├── managing_job_notifications.mdx │ │ │ │ ├── managing_scheduled_jobs.mdx │ │ │ │ ├── modifying_agent_configuration.mdx │ │ │ │ ├── modifying_agent_properties.mdx │ │ │ │ └── setting_agent_privileges.mdx │ │ │ ├── managing_pem_server.mdx │ │ │ ├── monitoring_BDR_nodes.mdx │ │ │ ├── monitoring_barman.mdx │ │ │ ├── monitoring_event_history.mdx │ │ │ ├── monitoring_failover_manager.mdx │ │ │ ├── monitoring_performance │ │ │ │ ├── alerts.mdx │ │ │ │ ├── audit_manager.mdx │ │ │ │ ├── capacity_manager.mdx │ │ │ │ ├── charts.mdx │ │ │ │ ├── dashboards.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── log_manager.mdx │ │ │ │ ├── notifications.mdx │ │ │ │ ├── pem_remote_monitoring.mdx │ │ │ │ └── probes.mdx │ │ │ ├── monitoring_xdb_replication_cluster.mdx │ │ │ ├── pem_architecture.mdx │ │ │ ├── pem_cli.mdx │ │ │ ├── pem_connecting_to_database_server.mdx │ │ │ ├── pem_erd_tool.mdx │ │ │ ├── pem_query_tool.mdx │ │ │ ├── pem_rel_notes │ │ │ │ ├── 900_rel_notes.mdx │ │ │ │ ├── 910_rel_notes.mdx │ │ │ │ ├── 911_rel_notes.mdx │ │ │ │ ├── 920_rel_notes.mdx │ │ │ │ ├── 921_rel_notes.mdx │ │ │ │ ├── 922_rel_notes.mdx │ │ │ │ ├── 930_rel_notes.mdx │ │ │ │ ├── 931_rel_notes.mdx │ │ │ │ ├── 940_rel_notes.mdx │ │ │ │ ├── 941_rel_notes.mdx │ │ │ │ ├── 950_rel_notes.mdx │ │ │ │ ├── 951_rel_notes.mdx │ │ │ │ ├── 960_rel_notes.mdx │ │ │ │ ├── 970_rel_notes.mdx │ │ │ │ ├── 980_rel_notes.mdx │ │ │ │ └── index.mdx │ │ │ ├── pem_rest_api.mdx │ │ │ ├── pem_schema_diff_tool.mdx │ │ │ ├── pem_web_interface.mdx │ │ │ ├── prerequisites_for_installing_pem_server.mdx │ │ │ ├── profiling_workloads │ │ │ │ ├── index.mdx │ │ │ │ └── index_advisor.mdx │ │ │ ├── registering_agent.mdx │ │ │ ├── registering_database_server.mdx │ │ │ ├── reports.mdx │ │ │ ├── supported_platforms.mdx │ │ │ ├── troubleshooting.mdx │ │ │ ├── troubleshooting_agent.mdx │ │ │ ├── tuning_performance │ │ │ │ ├── index.mdx │ │ │ │ ├── performance_diagnostic.mdx │ │ │ │ ├── postgres_expert.mdx │ │ │ │ └── tuning_wizard.mdx │ │ │ ├── uninstalling │ │ │ │ ├── index.mdx │ │ │ │ ├── uninstalling_on_linux.mdx │ │ │ │ └── uninstalling_on_windows.mdx │ │ │ └── upgrading │ │ │ │ ├── index.mdx │ │ │ │ ├── moving_pem_server.mdx │ │ │ │ ├── upgrading_backend_database.mdx │ │ │ │ ├── upgrading_httpd.mdx │ │ │ │ └── upgrading_pem_installation │ │ │ │ ├── high_availability_upgrade.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── upgrading_pem_installation_linux_rpm.mdx │ │ │ │ └── upgrading_pem_installation_windows.mdx │ │ └── 10 │ │ │ ├── certificates │ │ │ ├── index.mdx │ │ │ ├── regenerating_agent_certificates.mdx │ │ │ └── replacing_ssl_certificates.mdx │ │ │ ├── changing_default_port.mdx │ │ │ ├── considerations │ │ │ ├── authentication_options │ │ │ │ ├── configuring_2fa_authentication.mdx │ │ │ │ ├── configuring_the_pem_server_to_use_kerberos_authentication.mdx │ │ │ │ ├── configuring_the_pem_server_to_use_windows_kerberos_server.mdx │ │ │ │ └── index.mdx │ │ │ ├── ha_pem.mdx │ │ │ ├── index.mdx │ │ │ ├── installing_pem_server_and_apache_web_server_preferences.mdx │ │ │ ├── licensing.mdx │ │ │ ├── pem_pgbouncer │ │ │ │ ├── configuring_pgBouncer.mdx │ │ │ │ ├── configuring_the_pem_agent.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── pem_server_pem_agent_connection_management_mechanism.mdx │ │ │ │ └── preparing_the_pem_database_server.mdx │ │ │ ├── pem_security_best_practices │ │ │ │ ├── apache_httpd_security_configuration.mdx │ │ │ │ ├── index.mdx │ │ │ │ └── pem_application_configuration.mdx │ │ │ └── sizing.mdx │ │ │ ├── debugger.mdx │ │ │ ├── images │ │ │ ├── active_directory_users_and_computers.png │ │ │ ├── alert_details.png │ │ │ ├── alerting_manage_alerts.png │ │ │ ├── alerts_dashboard.png │ │ │ ├── alerts_status_table.png │ │ │ ├── audit_log_analysis_dashboard.png │ │ │ ├── barman_dashboard.png │ │ │ ├── colocated-multi.svg │ │ │ ├── colocated-proxy.svg │ │ │ ├── debug_error_message.png │ │ │ ├── debug_ic_step_in.png │ │ │ ├── debug_main.png │ │ │ ├── debug_params.png │ │ │ ├── debug_set_breakpoint.png │ │ │ ├── debug_stack.png │ │ │ ├── debug_step_in.png │ │ │ ├── debug_toolbar.png │ │ │ ├── debug_variables.png │ │ │ ├── erd_1m_dialog.png │ │ │ ├── erd_table_link.png │ │ │ ├── erd_tool.png │ │ │ ├── fm_cluster_status.png │ │ │ ├── global_overview.png │ │ │ ├── lgdownload.png │ │ │ ├── lgfullscreen.png │ │ │ ├── lginformation.png │ │ │ ├── lgpersonalize.png │ │ │ ├── lgrefresh.png │ │ │ ├── move_pem_server_agent_cfg.png │ │ │ ├── pe_param_value.png │ │ │ ├── pem_agent.png │ │ │ ├── pem_architecture.png │ │ │ ├── pem_log_analysis_expert_report.png │ │ │ ├── pem_pg_hba.png │ │ │ ├── pem_server.png │ │ │ ├── pem_server_web_properties_account.png │ │ │ ├── pem_server_web_properties_member_of.png │ │ │ ├── pem_with_pgbouncer.png │ │ │ ├── pem_without_pgbouncer.png │ │ │ ├── performance_diagnostic_intro.png │ │ │ ├── performance_diagnostic_query_dashboard.png │ │ │ ├── query_output_notifications_listen.png │ │ │ ├── query_output_notifications_notify.png │ │ │ ├── query_output_notifications_panel.png │ │ │ ├── query_tool_connection_status.png │ │ │ ├── role_sql.png │ │ │ ├── separated-multi.svg │ │ │ ├── separated-proxy.svg │ │ │ ├── server_log_analysis_dashboard.png │ │ │ ├── stackbuilder_pemhttpd.png │ │ │ ├── tuning_wiz_confirm_chg.png │ │ │ ├── webhook_ssl_config.png │ │ │ ├── webhook_ssl_config_windows.png │ │ │ └── windows_powershell_ktpass.png │ │ │ ├── index.mdx │ │ │ ├── installing │ │ │ ├── configuring_the_pem_server_on_linux.mdx │ │ │ ├── creating_pem_repository_in_isolated_network.mdx │ │ │ ├── dependencies.mdx │ │ │ ├── ha │ │ │ │ ├── efm_s1.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── setup_ha_using_efm.mdx │ │ │ │ └── user_settings.mdx │ │ │ ├── index.mdx │ │ │ ├── linux_arm64 │ │ │ │ ├── index.mdx │ │ │ │ ├── pem_debian_12.mdx │ │ │ │ └── pem_rhel_9.mdx │ │ │ ├── linux_ppc64le │ │ │ │ ├── index.mdx │ │ │ │ ├── pem_rhel_8.mdx │ │ │ │ ├── pem_rhel_9.mdx │ │ │ │ └── pem_sles_15.mdx │ │ │ ├── linux_x86_64 │ │ │ │ ├── index.mdx │ │ │ │ ├── pem_debian_11.mdx │ │ │ │ ├── pem_debian_12.mdx │ │ │ │ ├── pem_other_linux_8.mdx │ │ │ │ ├── pem_other_linux_9.mdx │ │ │ │ ├── pem_rhel_8.mdx │ │ │ │ ├── pem_rhel_9.mdx │ │ │ │ ├── pem_sles_12.mdx │ │ │ │ ├── pem_sles_15.mdx │ │ │ │ ├── pem_ubuntu_22.mdx │ │ │ │ └── pem_ubuntu_24.mdx │ │ │ └── windows │ │ │ │ ├── index.mdx │ │ │ │ ├── pem_server_and_httpd_on_diff_host.mdx │ │ │ │ ├── pem_server_and_httpd_on_same_host.mdx │ │ │ │ └── pem_server_on_existing_pg_server.mdx │ │ │ ├── installing_pem_agent │ │ │ ├── index.mdx │ │ │ ├── linux_arm64 │ │ │ │ ├── index.mdx │ │ │ │ ├── pem_agent_debian_12.mdx │ │ │ │ └── pem_agent_rhel_9.mdx │ │ │ ├── linux_ppc64le │ │ │ │ ├── index.mdx │ │ │ │ ├── pem_agent_rhel_8.mdx │ │ │ │ ├── pem_agent_rhel_9.mdx │ │ │ │ ├── pem_agent_sles_12.mdx │ │ │ │ └── pem_agent_sles_15.mdx │ │ │ ├── linux_x86_64 │ │ │ │ ├── index.mdx │ │ │ │ ├── pem_agent_debian_11.mdx │ │ │ │ ├── pem_agent_debian_12.mdx │ │ │ │ ├── pem_agent_other_linux_8.mdx │ │ │ │ ├── pem_agent_other_linux_9.mdx │ │ │ │ ├── pem_agent_rhel_8.mdx │ │ │ │ ├── pem_agent_rhel_9.mdx │ │ │ │ ├── pem_agent_sles_12.mdx │ │ │ │ ├── pem_agent_sles_15.mdx │ │ │ │ ├── pem_agent_ubuntu_22.mdx │ │ │ │ └── pem_agent_ubuntu_24.mdx │ │ │ └── windows_agent.mdx │ │ │ ├── managing_configuration_settings.mdx │ │ │ ├── managing_database_server.mdx │ │ │ ├── managing_pem_agent │ │ │ ├── index.mdx │ │ │ ├── managing_job_notifications.mdx │ │ │ ├── managing_scheduled_jobs.mdx │ │ │ ├── modifying_agent_configuration.mdx │ │ │ ├── modifying_agent_properties.mdx │ │ │ └── setting_agent_privileges.mdx │ │ │ ├── managing_pem_server.mdx │ │ │ ├── monitoring_BDR_nodes.mdx │ │ │ ├── monitoring_barman.mdx │ │ │ ├── monitoring_event_history.mdx │ │ │ ├── monitoring_failover_manager.mdx │ │ │ ├── monitoring_performance │ │ │ ├── alerts.mdx │ │ │ ├── audit_manager.mdx │ │ │ ├── capacity_manager.mdx │ │ │ ├── charts.mdx │ │ │ ├── dashboards.mdx │ │ │ ├── index.mdx │ │ │ ├── log_manager.mdx │ │ │ ├── notifications.mdx │ │ │ ├── pem_remote_monitoring.mdx │ │ │ ├── probes.mdx │ │ │ └── profiles.mdx │ │ │ ├── monitoring_xdb_replication_cluster.mdx │ │ │ ├── pem_architecture.mdx │ │ │ ├── pem_cli.mdx │ │ │ ├── pem_connecting_to_database_server.mdx │ │ │ ├── pem_erd_tool.mdx │ │ │ ├── pem_query_tool.mdx │ │ │ ├── pem_rel_notes │ │ │ ├── index.mdx │ │ │ ├── pem_10.0.0_rel_notes.mdx │ │ │ ├── pem_10.1.0_rel_notes.mdx │ │ │ ├── pem_10.1.1_rel_notes.mdx │ │ │ ├── pem_10.1.2_rel_notes.mdx │ │ │ ├── pem_10.2.0_rel_notes.mdx │ │ │ ├── pem_10.3.0_rel_notes.mdx │ │ │ └── src │ │ │ │ ├── meta.yml │ │ │ │ ├── pem_10.0.0_rel_notes.yml │ │ │ │ ├── pem_10.1.0_rel_notes.yml │ │ │ │ ├── pem_10.1.1_rel_notes.yml │ │ │ │ ├── pem_10.1.2_rel_notes.yml │ │ │ │ ├── pem_10.2.0_rel_notes.yml │ │ │ │ └── pem_10.3.0_rel_notes.yml │ │ │ ├── pem_rest_api │ │ │ ├── index.mdx │ │ │ ├── v1 │ │ │ │ ├── alert-template.mdx │ │ │ │ ├── alerts.mdx │ │ │ │ ├── copy-alert.mdx │ │ │ │ ├── copy-probe.mdx │ │ │ │ ├── custom-probe.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── object.mdx │ │ │ │ ├── probe-configuration.mdx │ │ │ │ ├── probe-data.mdx │ │ │ │ ├── probe-history.mdx │ │ │ │ └── schemas.mdx │ │ │ ├── v10 │ │ │ │ ├── agent-job.mdx │ │ │ │ ├── alert-template.mdx │ │ │ │ ├── alerts-history.mdx │ │ │ │ ├── alerts-status.mdx │ │ │ │ ├── alerts.mdx │ │ │ │ ├── copy-alert.mdx │ │ │ │ ├── copy-probe.mdx │ │ │ │ ├── custom-probe.mdx │ │ │ │ ├── email-groups.mdx │ │ │ │ ├── export-custom-alert-templates.mdx │ │ │ │ ├── export-custom-charts.mdx │ │ │ │ ├── export-custom-dashboards.mdx │ │ │ │ ├── export-custom-probes.mdx │ │ │ │ ├── import-custom-alert-templates.mdx │ │ │ │ ├── import-custom-charts.mdx │ │ │ │ ├── import-custom-dashboards.mdx │ │ │ │ ├── import-custom-probes.mdx │ │ │ │ ├── include-exclude-database-monitoring.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── monitored-object-status.mdx │ │ │ │ ├── object.mdx │ │ │ │ ├── probe-configuration.mdx │ │ │ │ ├── probe-data.mdx │ │ │ │ ├── probe-history.mdx │ │ │ │ ├── schemas.mdx │ │ │ │ └── webhook.mdx │ │ │ ├── v11 │ │ │ │ ├── agent-job.mdx │ │ │ │ ├── alert-template.mdx │ │ │ │ ├── alerts-history.mdx │ │ │ │ ├── alerts-status.mdx │ │ │ │ ├── alerts.mdx │ │ │ │ ├── copy-alert.mdx │ │ │ │ ├── copy-probe.mdx │ │ │ │ ├── custom-probe.mdx │ │ │ │ ├── email-groups.mdx │ │ │ │ ├── export-custom-alert-templates.mdx │ │ │ │ ├── export-custom-charts.mdx │ │ │ │ ├── export-custom-dashboards.mdx │ │ │ │ ├── export-custom-probes.mdx │ │ │ │ ├── import-custom-alert-templates.mdx │ │ │ │ ├── import-custom-charts.mdx │ │ │ │ ├── import-custom-dashboards.mdx │ │ │ │ ├── import-custom-probes.mdx │ │ │ │ ├── include-exclude-database-monitoring.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── monitored-object-status.mdx │ │ │ │ ├── object.mdx │ │ │ │ ├── probe-configuration.mdx │ │ │ │ ├── probe-data.mdx │ │ │ │ ├── probe-history.mdx │ │ │ │ ├── schemas.mdx │ │ │ │ └── webhook.mdx │ │ │ ├── v12 │ │ │ │ ├── agent-job.mdx │ │ │ │ ├── alert-template.mdx │ │ │ │ ├── alerts-history.mdx │ │ │ │ ├── alerts-status.mdx │ │ │ │ ├── alerts.mdx │ │ │ │ ├── copy-alert.mdx │ │ │ │ ├── copy-probe.mdx │ │ │ │ ├── custom-probe.mdx │ │ │ │ ├── email-groups.mdx │ │ │ │ ├── export-custom-alert-templates.mdx │ │ │ │ ├── export-custom-charts.mdx │ │ │ │ ├── export-custom-dashboards.mdx │ │ │ │ ├── export-custom-probes.mdx │ │ │ │ ├── import-custom-alert-templates.mdx │ │ │ │ ├── import-custom-charts.mdx │ │ │ │ ├── import-custom-dashboards.mdx │ │ │ │ ├── import-custom-probes.mdx │ │ │ │ ├── include-exclude-database-monitoring.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── monitored-object-status.mdx │ │ │ │ ├── object.mdx │ │ │ │ ├── probe-configuration.mdx │ │ │ │ ├── probe-data.mdx │ │ │ │ ├── probe-history.mdx │ │ │ │ ├── schemas.mdx │ │ │ │ └── webhook.mdx │ │ │ ├── v13 │ │ │ │ ├── agent-job.mdx │ │ │ │ ├── alert-template.mdx │ │ │ │ ├── alerts-history.mdx │ │ │ │ ├── alerts-status.mdx │ │ │ │ ├── alerts.mdx │ │ │ │ ├── copy-alert.mdx │ │ │ │ ├── copy-probe.mdx │ │ │ │ ├── custom-probe.mdx │ │ │ │ ├── email-groups.mdx │ │ │ │ ├── export-custom-alert-templates.mdx │ │ │ │ ├── export-custom-charts.mdx │ │ │ │ ├── export-custom-dashboards.mdx │ │ │ │ ├── export-custom-probes.mdx │ │ │ │ ├── import-custom-alert-templates.mdx │ │ │ │ ├── import-custom-charts.mdx │ │ │ │ ├── import-custom-dashboards.mdx │ │ │ │ ├── import-custom-probes.mdx │ │ │ │ ├── include-exclude-database-monitoring.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── monitored-object-status.mdx │ │ │ │ ├── object.mdx │ │ │ │ ├── probe-configuration.mdx │ │ │ │ ├── probe-data.mdx │ │ │ │ ├── probe-history.mdx │ │ │ │ ├── schemas.mdx │ │ │ │ └── webhook.mdx │ │ │ ├── v14 │ │ │ │ ├── agent-job.mdx │ │ │ │ ├── alert-template.mdx │ │ │ │ ├── alerts-history.mdx │ │ │ │ ├── alerts-status.mdx │ │ │ │ ├── alerts.mdx │ │ │ │ ├── copy-alert.mdx │ │ │ │ ├── copy-probe.mdx │ │ │ │ ├── custom-probe.mdx │ │ │ │ ├── email-groups.mdx │ │ │ │ ├── export-custom-alert-templates.mdx │ │ │ │ ├── export-custom-charts.mdx │ │ │ │ ├── export-custom-dashboards.mdx │ │ │ │ ├── export-custom-probes.mdx │ │ │ │ ├── import-custom-alert-templates.mdx │ │ │ │ ├── import-custom-charts.mdx │ │ │ │ ├── import-custom-dashboards.mdx │ │ │ │ ├── import-custom-probes.mdx │ │ │ │ ├── include-exclude-database-monitoring.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── monitored-object-status.mdx │ │ │ │ ├── object.mdx │ │ │ │ ├── probe-configuration.mdx │ │ │ │ ├── probe-data.mdx │ │ │ │ ├── probe-history.mdx │ │ │ │ ├── schemas.mdx │ │ │ │ └── webhook.mdx │ │ │ ├── v2 │ │ │ │ ├── alert-template.mdx │ │ │ │ ├── alerts.mdx │ │ │ │ ├── copy-alert.mdx │ │ │ │ ├── copy-probe.mdx │ │ │ │ ├── custom-probe.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── object.mdx │ │ │ │ ├── probe-configuration.mdx │ │ │ │ ├── probe-data.mdx │ │ │ │ ├── probe-history.mdx │ │ │ │ └── schemas.mdx │ │ │ ├── v3 │ │ │ │ ├── alert-template.mdx │ │ │ │ ├── alerts.mdx │ │ │ │ ├── copy-alert.mdx │ │ │ │ ├── copy-probe.mdx │ │ │ │ ├── custom-probe.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── object.mdx │ │ │ │ ├── probe-configuration.mdx │ │ │ │ ├── probe-data.mdx │ │ │ │ ├── probe-history.mdx │ │ │ │ └── schemas.mdx │ │ │ ├── v4 │ │ │ │ ├── alert-status.mdx │ │ │ │ ├── alert-template.mdx │ │ │ │ ├── alerts-history.mdx │ │ │ │ ├── alerts.mdx │ │ │ │ ├── copy-alert.mdx │ │ │ │ ├── copy-probe.mdx │ │ │ │ ├── custom-probe.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── monitored-object-status.mdx │ │ │ │ ├── object.mdx │ │ │ │ ├── probe-configuration.mdx │ │ │ │ ├── probe-data.mdx │ │ │ │ ├── probe-history.mdx │ │ │ │ └── schemas.mdx │ │ │ ├── v5 │ │ │ │ ├── alert-status.mdx │ │ │ │ ├── alert-template.mdx │ │ │ │ ├── alerts-history.mdx │ │ │ │ ├── alerts.mdx │ │ │ │ ├── copy-alert.mdx │ │ │ │ ├── copy-probe.mdx │ │ │ │ ├── custom-probe.mdx │ │ │ │ ├── email-groups.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── monitored-object-status.mdx │ │ │ │ ├── object.mdx │ │ │ │ ├── probe-configuration.mdx │ │ │ │ ├── probe-data.mdx │ │ │ │ ├── probe-history.mdx │ │ │ │ ├── schemas.mdx │ │ │ │ └── webhook.mdx │ │ │ ├── v6 │ │ │ │ ├── alert-template.mdx │ │ │ │ ├── alerts-history.mdx │ │ │ │ ├── alerts-status.mdx │ │ │ │ ├── alerts.mdx │ │ │ │ ├── copy-alert.mdx │ │ │ │ ├── copy-probe.mdx │ │ │ │ ├── custom-probe.mdx │ │ │ │ ├── email-groups.mdx │ │ │ │ ├── export-custom-alert-templates.mdx │ │ │ │ ├── export-custom-probes.mdx │ │ │ │ ├── import-custom-alert-templates.mdx │ │ │ │ ├── import-custom-probes.mdx │ │ │ │ ├── include-exclude-database-monitoring.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── monitored-object-status.mdx │ │ │ │ ├── object.mdx │ │ │ │ ├── probe-configuration.mdx │ │ │ │ ├── probe-data.mdx │ │ │ │ ├── probe-history.mdx │ │ │ │ ├── schemas.mdx │ │ │ │ └── webhook.mdx │ │ │ ├── v7 │ │ │ │ ├── alert-template.mdx │ │ │ │ ├── alerts-history.mdx │ │ │ │ ├── alerts-status.mdx │ │ │ │ ├── alerts.mdx │ │ │ │ ├── copy-alert.mdx │ │ │ │ ├── copy-probe.mdx │ │ │ │ ├── custom-probe.mdx │ │ │ │ ├── email-groups.mdx │ │ │ │ ├── export-custom-alert-templates.mdx │ │ │ │ ├── export-custom-charts.mdx │ │ │ │ ├── export-custom-dashboards.mdx │ │ │ │ ├── export-custom-probes.mdx │ │ │ │ ├── import-custom-alert-templates.mdx │ │ │ │ ├── import-custom-charts.mdx │ │ │ │ ├── import-custom-dashboards.mdx │ │ │ │ ├── import-custom-probes.mdx │ │ │ │ ├── include-exclude-database-monitoring.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── monitored-object-status.mdx │ │ │ │ ├── object.mdx │ │ │ │ ├── probe-configuration.mdx │ │ │ │ ├── probe-data.mdx │ │ │ │ ├── probe-history.mdx │ │ │ │ ├── schemas.mdx │ │ │ │ └── webhook.mdx │ │ │ ├── v8 │ │ │ │ ├── alert-template.mdx │ │ │ │ ├── alerts-history.mdx │ │ │ │ ├── alerts-status.mdx │ │ │ │ ├── alerts.mdx │ │ │ │ ├── copy-alert.mdx │ │ │ │ ├── copy-probe.mdx │ │ │ │ ├── custom-probe.mdx │ │ │ │ ├── email-groups.mdx │ │ │ │ ├── export-custom-alert-templates.mdx │ │ │ │ ├── export-custom-charts.mdx │ │ │ │ ├── export-custom-dashboards.mdx │ │ │ │ ├── export-custom-probes.mdx │ │ │ │ ├── import-custom-alert-templates.mdx │ │ │ │ ├── import-custom-charts.mdx │ │ │ │ ├── import-custom-dashboards.mdx │ │ │ │ ├── import-custom-probes.mdx │ │ │ │ ├── include-exclude-database-monitoring.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── monitored-object-status.mdx │ │ │ │ ├── object.mdx │ │ │ │ ├── probe-configuration.mdx │ │ │ │ ├── probe-data.mdx │ │ │ │ ├── probe-history.mdx │ │ │ │ ├── schemas.mdx │ │ │ │ └── webhook.mdx │ │ │ └── v9 │ │ │ │ ├── alert-template.mdx │ │ │ │ ├── alerts-history.mdx │ │ │ │ ├── alerts-status.mdx │ │ │ │ ├── alerts.mdx │ │ │ │ ├── copy-alert.mdx │ │ │ │ ├── copy-probe.mdx │ │ │ │ ├── custom-probe.mdx │ │ │ │ ├── email-groups.mdx │ │ │ │ ├── export-custom-alert-templates.mdx │ │ │ │ ├── export-custom-charts.mdx │ │ │ │ ├── export-custom-dashboards.mdx │ │ │ │ ├── export-custom-probes.mdx │ │ │ │ ├── import-custom-alert-templates.mdx │ │ │ │ ├── import-custom-charts.mdx │ │ │ │ ├── import-custom-dashboards.mdx │ │ │ │ ├── import-custom-probes.mdx │ │ │ │ ├── include-exclude-database-monitoring.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── monitored-object-status.mdx │ │ │ │ ├── object.mdx │ │ │ │ ├── probe-configuration.mdx │ │ │ │ ├── probe-data.mdx │ │ │ │ ├── probe-history.mdx │ │ │ │ ├── schemas.mdx │ │ │ │ └── webhook.mdx │ │ │ ├── pem_schema_diff_tool.mdx │ │ │ ├── pem_web_interface.mdx │ │ │ ├── prerequisites_for_installing_pem_server.mdx │ │ │ ├── profiling_workloads │ │ │ ├── index.mdx │ │ │ ├── installing_sql_profiler.mdx │ │ │ └── using_sql_profiler.mdx │ │ │ ├── registering_agent.mdx │ │ │ ├── registering_database_server.mdx │ │ │ ├── reports.mdx │ │ │ ├── splitting_a_pem_deployment.mdx │ │ │ ├── supported_platforms.mdx │ │ │ ├── troubleshooting.mdx │ │ │ ├── troubleshooting_agent.mdx │ │ │ ├── tuning_performance │ │ │ ├── index.mdx │ │ │ └── performance_diagnostic.mdx │ │ │ ├── uninstalling │ │ │ ├── index.mdx │ │ │ ├── uninstalling_on_linux.mdx │ │ │ └── uninstalling_on_windows.mdx │ │ │ └── upgrading │ │ │ ├── index.mdx │ │ │ ├── moving_pem_server.mdx │ │ │ ├── upgrading_backend_database.mdx │ │ │ ├── upgrading_httpd.mdx │ │ │ ├── upgrading_pem_installation │ │ │ ├── high_availability_upgrade.mdx │ │ │ ├── index.mdx │ │ │ ├── upgrading_pem_installation_linux_rpm.mdx │ │ │ └── upgrading_pem_installation_windows.mdx │ │ │ └── upgrading_sql_profiler.mdx │ ├── pgbouncer │ │ └── 1 │ │ │ ├── 02_configuration_and_usage.mdx │ │ │ ├── index.mdx │ │ │ ├── installing │ │ │ ├── 03_uninstallation.mdx │ │ │ ├── index.mdx │ │ │ ├── linux_arm64 │ │ │ │ ├── index.mdx │ │ │ │ ├── pgbouncer_debian_12.mdx │ │ │ │ └── pgbouncer_rhel_9.mdx │ │ │ ├── linux_ppc64le │ │ │ │ ├── index.mdx │ │ │ │ ├── pgbouncer_rhel_8.mdx │ │ │ │ ├── pgbouncer_rhel_9.mdx │ │ │ │ └── pgbouncer_sles_15.mdx │ │ │ ├── linux_x86_64 │ │ │ │ ├── index.mdx │ │ │ │ ├── pgbouncer_debian_11.mdx │ │ │ │ ├── pgbouncer_debian_12.mdx │ │ │ │ ├── pgbouncer_other_linux_8.mdx │ │ │ │ ├── pgbouncer_other_linux_9.mdx │ │ │ │ ├── pgbouncer_rhel_8.mdx │ │ │ │ ├── pgbouncer_rhel_9.mdx │ │ │ │ ├── pgbouncer_sles_15.mdx │ │ │ │ ├── pgbouncer_ubuntu_22.mdx │ │ │ │ └── pgbouncer_ubuntu_24.mdx │ │ │ └── windows.mdx │ │ │ ├── pgbouncer_rel_notes │ │ │ ├── 02_12210_rel_notes.mdx │ │ │ ├── 03_12200_rel_notes.mdx │ │ │ ├── 04_12100_rel_notes.mdx │ │ │ ├── 05_12000_rel_notes.mdx │ │ │ ├── 06_11900_rel_notes.mdx │ │ │ ├── 07_11800_rel_notes.mdx │ │ │ ├── 08_11700_rel_notes.mdx │ │ │ ├── 09_11610_rel_notes.mdx │ │ │ ├── 10_11601_rel_notes.mdx │ │ │ ├── 12300_rel_notes.mdx │ │ │ ├── 12310_rel_notes.mdx │ │ │ ├── 12400_rel_notes.mdx │ │ │ ├── 12410_rel_notes.mdx │ │ │ └── index.mdx │ │ │ ├── supported_platforms.mdx │ │ │ └── upgrading.mdx │ ├── pgd │ │ ├── 4 │ │ │ ├── architectures │ │ │ │ ├── bronze.mdx │ │ │ │ ├── gold.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── platinum.mdx │ │ │ │ └── silver.mdx │ │ │ ├── backup.mdx │ │ │ ├── bdr │ │ │ │ ├── appusage.mdx │ │ │ │ ├── camo.mdx │ │ │ │ ├── catalogs.mdx │ │ │ │ ├── column-level-conflicts.mdx │ │ │ │ ├── configuration.mdx │ │ │ │ ├── conflicts.mdx │ │ │ │ ├── crdt.mdx │ │ │ │ ├── ddl.mdx │ │ │ │ ├── durability.mdx │ │ │ │ ├── eager.mdx │ │ │ │ ├── functions.mdx │ │ │ │ ├── group-commit.mdx │ │ │ │ ├── img │ │ │ │ │ ├── bdr.png │ │ │ │ │ ├── frontpage.svg │ │ │ │ │ ├── nodes.png │ │ │ │ │ └── nodes.svg │ │ │ │ ├── index.mdx │ │ │ │ ├── lag-control.mdx │ │ │ │ ├── nodes.mdx │ │ │ │ ├── repsets.mdx │ │ │ │ ├── scaling.mdx │ │ │ │ ├── security.mdx │ │ │ │ ├── sequences.mdx │ │ │ │ ├── striggers.mdx │ │ │ │ ├── transaction-streaming.mdx │ │ │ │ ├── tssnapshots.mdx │ │ │ │ └── twophase.mdx │ │ │ ├── choosing_durability.mdx │ │ │ ├── choosing_server.mdx │ │ │ ├── cli │ │ │ │ ├── command_ref │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── pgd_check-health.mdx │ │ │ │ │ ├── pgd_show-camo.mdx │ │ │ │ │ ├── pgd_show-clockskew.mdx │ │ │ │ │ ├── pgd_show-events.mdx │ │ │ │ │ ├── pgd_show-nodes.mdx │ │ │ │ │ ├── pgd_show-raft.mdx │ │ │ │ │ ├── pgd_show-replslots.mdx │ │ │ │ │ ├── pgd_show-subscriptions.mdx │ │ │ │ │ └── pgd_show-version.mdx │ │ │ │ ├── index.mdx │ │ │ │ └── installing_cli.mdx │ │ │ ├── deployments │ │ │ │ ├── index.mdx │ │ │ │ ├── manually │ │ │ │ │ ├── 01-provisioning-hosts.mdx │ │ │ │ │ ├── 02-install-postgres.mdx │ │ │ │ │ ├── 03-configuring-repositories.mdx │ │ │ │ │ ├── 04-installing-software.mdx │ │ │ │ │ ├── 05-creating-cluster.mdx │ │ │ │ │ ├── 06-check-cluster.mdx │ │ │ │ │ ├── 07-using-pgd-cli.mdx │ │ │ │ │ ├── images │ │ │ │ │ │ └── edbrepos2.0.png │ │ │ │ │ └── index.mdx │ │ │ │ └── tpaexec │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── installing_tpaexec.mdx │ │ │ │ │ ├── quick_start.mdx │ │ │ │ │ └── using_tpaexec.mdx │ │ │ ├── harp │ │ │ │ ├── 03_installation.mdx │ │ │ │ ├── 04_configuration.mdx │ │ │ │ ├── 05_bootstrapping.mdx │ │ │ │ ├── 06_harp_manager.mdx │ │ │ │ ├── 07_harp_proxy.mdx │ │ │ │ ├── 08_harpctl.mdx │ │ │ │ ├── 09_consensus-layer.mdx │ │ │ │ ├── 10_security.mdx │ │ │ │ ├── Makefile │ │ │ │ ├── images │ │ │ │ │ ├── HARPsequencediagram.png │ │ │ │ │ ├── bdr-ao-spec.dia │ │ │ │ │ ├── bdr-ao-spec.png │ │ │ │ │ ├── ha-ao-bdr.dia │ │ │ │ │ ├── ha-ao-bdr.png │ │ │ │ │ ├── ha-ao.dia │ │ │ │ │ ├── ha-ao.png │ │ │ │ │ ├── ha-unit-bdr.dia │ │ │ │ │ ├── ha-unit-bdr.png │ │ │ │ │ ├── ha-unit.dia │ │ │ │ │ └── ha-unit.png │ │ │ │ └── index.mdx │ │ │ ├── images │ │ │ │ ├── bdr-ao-spec.png │ │ │ │ ├── bronze.png │ │ │ │ ├── gold.png │ │ │ │ ├── gold2.png │ │ │ │ ├── gold3.png │ │ │ │ ├── ha-ao-bdr.png │ │ │ │ ├── ha-ao.png │ │ │ │ ├── ha-unit-bdr.png │ │ │ │ ├── ha-unit.png │ │ │ │ ├── nodes.png │ │ │ │ ├── platinum.png │ │ │ │ └── silver.png │ │ │ ├── index.mdx │ │ │ ├── known_issues.mdx │ │ │ ├── limitations.mdx │ │ │ ├── monitoring.mdx │ │ │ ├── other_considerations.mdx │ │ │ ├── overview │ │ │ │ └── index.mdx │ │ │ ├── rel_notes │ │ │ │ ├── index.mdx │ │ │ │ ├── pgd_4.0.0_rel_notes.mdx │ │ │ │ ├── pgd_4.0.1_rel_notes.mdx │ │ │ │ ├── pgd_4.0.2_rel_notes.mdx │ │ │ │ ├── pgd_4.0.3_rel_notes.mdx │ │ │ │ ├── pgd_4.1.0_rel_notes.mdx │ │ │ │ ├── pgd_4.1.1_rel_notes.mdx │ │ │ │ ├── pgd_4.2.0_rel_notes.mdx │ │ │ │ ├── pgd_4.2.1_rel_notes.mdx │ │ │ │ ├── pgd_4.2.2_rel_notes.mdx │ │ │ │ ├── pgd_4.3.0+p1_rel_notes.mdx │ │ │ │ ├── pgd_4.3.0_rel_notes.mdx │ │ │ │ ├── pgd_4.3.1+p1_rel_notes.mdx │ │ │ │ ├── pgd_4.3.1+p2_rel_notes.mdx │ │ │ │ ├── pgd_4.3.1_rel_notes.mdx │ │ │ │ ├── pgd_4.3.2+p1_rel_notes.mdx │ │ │ │ ├── pgd_4.3.2_rel_notes.mdx │ │ │ │ ├── pgd_4.3.3_rel_notes.mdx │ │ │ │ ├── pgd_4.3.4_rel_notes.mdx │ │ │ │ ├── pgd_4.3.5_rel_notes.mdx │ │ │ │ ├── pgd_4.3.6_rel_notes.mdx │ │ │ │ ├── pgd_4.3.7_rel_notes.mdx │ │ │ │ ├── pgd_4.3.8_rel_notes.mdx │ │ │ │ └── src │ │ │ │ │ ├── meta.yml │ │ │ │ │ ├── relnote_4.3.6.yml │ │ │ │ │ ├── relnote_4.3.7.yml │ │ │ │ │ └── relnote_4.3.8.yml │ │ │ ├── terminology.mdx │ │ │ └── upgrades │ │ │ │ ├── bdr_pg_upgrade.mdx │ │ │ │ ├── index.mdx │ │ │ │ └── upgrade_paths.mdx │ │ ├── 6 │ │ │ ├── compatibility.mdx │ │ │ ├── concepts │ │ │ │ ├── advanced-durability.mdx │ │ │ │ ├── commit-scopes.mdx │ │ │ │ ├── conflict-management.mdx │ │ │ │ ├── connection-management.mdx │ │ │ │ ├── durability.mdx │ │ │ │ ├── expanded-commit-scopes.mdx │ │ │ │ ├── geo-distributed-clusters.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── lag-control.mdx │ │ │ │ ├── locking.mdx │ │ │ │ ├── nodes-and-groups.mdx │ │ │ │ └── replication.mdx │ │ │ ├── essential-how-to │ │ │ │ ├── architectures │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── near-far │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── manually-deploying-near-far.mdx │ │ │ │ │ └── standard │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── manually-deploying-standard.mdx │ │ │ │ ├── autopartition.mdx │ │ │ │ ├── connections.mdx │ │ │ │ ├── durability.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── install │ │ │ │ │ ├── 01-prerequisites.mdx │ │ │ │ │ ├── 02-configure-repositories.mdx │ │ │ │ │ ├── 03-installing-database-and-pgd.mdx │ │ │ │ │ ├── 04-configuring-cluster.mdx │ │ │ │ │ ├── 05-check-cluster.mdx │ │ │ │ │ ├── images │ │ │ │ │ │ └── edbrepos2.0.png │ │ │ │ │ └── index.mdx │ │ │ │ ├── pgd-cli.mdx │ │ │ │ ├── production-best-practices │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── security.mdx │ │ │ │ │ ├── sizing.mdx │ │ │ │ │ └── time-and-pgd.mdx │ │ │ │ └── sops │ │ │ │ │ ├── backup-restore │ │ │ │ │ ├── barman.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── pg_dump.mdx │ │ │ │ │ ├── data-movement │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── move-in.mdx │ │ │ │ │ └── move-out.mdx │ │ │ │ │ ├── how-to-use-sops.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── install │ │ │ │ │ ├── add-node.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── new-group.mdx │ │ │ │ │ └── new-node.mdx │ │ │ │ │ ├── maintenance │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── node-failures.mdx │ │ │ │ │ ├── online-vacuum.mdx │ │ │ │ │ └── routine.mdx │ │ │ │ │ ├── monitoring │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── sql.mdx │ │ │ │ │ ├── template.txt │ │ │ │ │ ├── troubleshooting │ │ │ │ │ ├── cluster-operations.mdx │ │ │ │ │ └── index.mdx │ │ │ │ │ └── upgrade │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── major.mdx │ │ │ │ │ ├── minor.mdx │ │ │ │ │ └── pgd.mdx │ │ │ ├── expanded-how-to │ │ │ │ ├── architectures │ │ │ │ │ ├── always-on.mdx │ │ │ │ │ ├── essential.mdx │ │ │ │ │ ├── geo-distributed.mdx │ │ │ │ │ ├── images │ │ │ │ │ │ ├── 1x3-cluster.svg │ │ │ │ │ │ └── 2x3-cluster.svg │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── multi-location.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── install │ │ │ │ │ ├── 01-prerequisites.mdx │ │ │ │ │ ├── 02-configure-repositories.mdx │ │ │ │ │ ├── 03-installing-database-and-pgd.mdx │ │ │ │ │ ├── 04-configuring-cluster.mdx │ │ │ │ │ ├── 05-check-cluster.mdx │ │ │ │ │ ├── images │ │ │ │ │ │ └── edbrepos2.0.png │ │ │ │ │ └── index.mdx │ │ │ │ └── sops │ │ │ │ │ ├── backup-restore │ │ │ │ │ ├── barman.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── pg_dump.mdx │ │ │ │ │ ├── data-movement │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── move-in.mdx │ │ │ │ │ └── move-out.mdx │ │ │ │ │ ├── how-to-use-sops.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── install │ │ │ │ │ ├── add-node.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── new-group.mdx │ │ │ │ │ └── new-node.mdx │ │ │ │ │ ├── maintenance │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── node-failures.mdx │ │ │ │ │ ├── online-vacuum.mdx │ │ │ │ │ └── routine.mdx │ │ │ │ │ ├── monitoring │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── sql.mdx │ │ │ │ │ ├── template.txt │ │ │ │ │ ├── troubleshooting │ │ │ │ │ ├── cluster-operations.mdx │ │ │ │ │ └── index.mdx │ │ │ │ │ └── upgrade │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── major.mdx │ │ │ │ │ ├── minor.mdx │ │ │ │ │ └── pgd.mdx │ │ │ ├── get-started │ │ │ │ ├── assets │ │ │ │ │ ├── docker-compose.yml │ │ │ │ │ └── pgd_quickstart.sh │ │ │ │ ├── essential-standard.mdx │ │ │ │ ├── expanded-examples.mdx │ │ │ │ ├── first-cluster.mdx │ │ │ │ ├── first-steps │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── loading-data.mdx │ │ │ │ │ ├── using-cli.mdx │ │ │ │ │ └── working-with-sql.mdx │ │ │ │ └── index.mdx │ │ │ ├── index.mdx │ │ │ ├── known_issues.mdx │ │ │ ├── reference │ │ │ │ ├── appusage │ │ │ │ │ ├── behavior.mdx │ │ │ │ │ ├── dml-ddl.mdx │ │ │ │ │ ├── extensions.mdx │ │ │ │ │ ├── feature-compatibility.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── nodes-with-differences.mdx │ │ │ │ │ ├── rules.mdx │ │ │ │ │ ├── table-access-methods.mdx │ │ │ │ │ └── timing.mdx │ │ │ │ ├── autopartition.mdx │ │ │ │ ├── backup-restore.mdx │ │ │ │ ├── cdc-failover.mdx │ │ │ │ ├── cli │ │ │ │ │ ├── command_ref │ │ │ │ │ │ ├── assess │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── cluster │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── show.mdx │ │ │ │ │ │ │ └── verify.mdx │ │ │ │ │ │ ├── commit-scope │ │ │ │ │ │ │ ├── create.mdx │ │ │ │ │ │ │ ├── drop.mdx │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── show.mdx │ │ │ │ │ │ │ └── update.mdx │ │ │ │ │ │ ├── completion │ │ │ │ │ │ │ └── index.mdx │ │ │ │ │ │ ├── events │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ └── show.mdx │ │ │ │ │ │ ├── group │ │ │ │ │ │ │ ├── get-option.mdx │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── set-leader.mdx │ │ │ │ │ │ │ ├── set-option.mdx │ │ │ │ │ │ │ └── show.mdx │ │ │ │ │ │ ├── groups │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ └── list.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── node │ │ │ │ │ │ │ ├── get-option.mdx │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ ├── set-option.mdx │ │ │ │ │ │ │ ├── setup.mdx │ │ │ │ │ │ │ ├── show.mdx │ │ │ │ │ │ │ └── upgrade.mdx │ │ │ │ │ │ ├── nodes │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ └── list.mdx │ │ │ │ │ │ ├── raft │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ └── show.mdx │ │ │ │ │ │ └── replication │ │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ │ └── show.mdx │ │ │ │ │ ├── configuring_cli.mdx │ │ │ │ │ ├── discover_connections.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── installing │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── linux.mdx │ │ │ │ │ │ └── macos.mdx │ │ │ │ │ └── using_cli.mdx │ │ │ │ ├── commit-scopes │ │ │ │ │ ├── administering.mdx │ │ │ │ │ ├── camo.mdx │ │ │ │ │ ├── commit-scope-rules.mdx │ │ │ │ │ ├── commit-scopes.mdx │ │ │ │ │ ├── comparing.mdx │ │ │ │ │ ├── degrading.mdx │ │ │ │ │ ├── durabilityterminology.mdx │ │ │ │ │ ├── group-commit.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── lag-control.mdx │ │ │ │ │ ├── legacy-sync.mdx │ │ │ │ │ ├── origin_groups.mdx │ │ │ │ │ ├── overview.mdx │ │ │ │ │ ├── predefined-commit-scopes.mdx │ │ │ │ │ ├── synchronous_commit.mdx │ │ │ │ │ └── timing.mdx │ │ │ │ ├── conflict-management │ │ │ │ │ ├── column-level-conflicts │ │ │ │ │ │ ├── 01_overview_clcd.mdx │ │ │ │ │ │ ├── 02_enabling_disabling.mdx │ │ │ │ │ │ ├── 03_timestamps.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── conflicts │ │ │ │ │ │ ├── 00_conflicts_overview.mdx │ │ │ │ │ │ ├── 02_types_of_conflict.mdx │ │ │ │ │ │ ├── 03_conflict_detection.mdx │ │ │ │ │ │ ├── 04_conflict_resolution.mdx │ │ │ │ │ │ ├── 05_conflict_logging.mdx │ │ │ │ │ │ ├── 06_live_compare.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── crdt │ │ │ │ │ │ ├── 00_crdt_overview.mdx │ │ │ │ │ │ ├── 01_crdt_usage.mdx │ │ │ │ │ │ ├── 02_state-op-crdts.mdx │ │ │ │ │ │ ├── 03_crdt-disk-reqs.mdx │ │ │ │ │ │ ├── 04_crdt-vs-conflict.mdx │ │ │ │ │ │ ├── 05_crdt-reset.mdx │ │ │ │ │ │ ├── 06_crdt-implemented.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── connection-manager │ │ │ │ │ ├── authentication.mdx │ │ │ │ │ ├── configuring.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── load-balancing.mdx │ │ │ │ │ ├── monitoring.mdx │ │ │ │ │ └── overview.mdx │ │ │ │ ├── ddl │ │ │ │ │ ├── ddl-command-handling.mdx │ │ │ │ │ ├── ddl-locking.mdx │ │ │ │ │ ├── ddl-managing-with-pgd-replication.mdx │ │ │ │ │ ├── ddl-overview.mdx │ │ │ │ │ ├── ddl-pgd-functions-like-ddl.mdx │ │ │ │ │ ├── ddl-replication-options.mdx │ │ │ │ │ ├── ddl-role-manipulation.mdx │ │ │ │ │ ├── ddl-workarounds.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── decoding_worker.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── monitoring │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── sql.mdx │ │ │ │ ├── node_management │ │ │ │ │ ├── automatic_sync.mdx │ │ │ │ │ ├── connections_dsns_and_ssl.mdx │ │ │ │ │ ├── creating_and_joining.mdx │ │ │ │ │ ├── creating_nodes.mdx │ │ │ │ │ ├── groups_and_subgroups.mdx │ │ │ │ │ ├── images │ │ │ │ │ │ └── autosyncstates.svg │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── node_recovery.mdx │ │ │ │ │ ├── node_uuids.mdx │ │ │ │ │ ├── removing_nodes_and_groups.mdx │ │ │ │ │ ├── replication_slots.mdx │ │ │ │ │ └── viewing_topology.mdx │ │ │ │ ├── nodes │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── logical_standby_nodes.mdx │ │ │ │ │ ├── overview.mdx │ │ │ │ │ ├── subscriber_only │ │ │ │ │ │ ├── creating-so.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── joining-so.mdx │ │ │ │ │ │ ├── optimizing-so.mdx │ │ │ │ │ │ └── overview.mdx │ │ │ │ │ └── witness_nodes.mdx │ │ │ │ ├── overview │ │ │ │ │ ├── architecture-and-performance.mdx │ │ │ │ │ ├── basic-architecture.mdx │ │ │ │ │ ├── compared.mdx │ │ │ │ │ ├── images │ │ │ │ │ │ └── 1x3-cluster.svg │ │ │ │ │ └── index.mdx │ │ │ │ ├── parallelapply.mdx │ │ │ │ ├── postgres-configuration.mdx │ │ │ │ ├── repsets.mdx │ │ │ │ ├── security │ │ │ │ │ ├── access-control.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── pgd-predefined-roles.mdx │ │ │ │ │ ├── role-management.mdx │ │ │ │ │ ├── roles-and-replication.mdx │ │ │ │ │ └── roles.mdx │ │ │ │ ├── sequences.mdx │ │ │ │ ├── stream-triggers.mdx │ │ │ │ ├── tables-views-functions │ │ │ │ │ ├── autopartition.mdx │ │ │ │ │ ├── catalogs-internal.mdx │ │ │ │ │ ├── catalogs-visible.mdx │ │ │ │ │ ├── clcd.mdx │ │ │ │ │ ├── commit-scopes.mdx │ │ │ │ │ ├── conflict_functions.mdx │ │ │ │ │ ├── conflicts.mdx │ │ │ │ │ ├── functions-internal.mdx │ │ │ │ │ ├── functions.mdx │ │ │ │ │ ├── index.json │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── index.mdx.src │ │ │ │ │ ├── nodes-management-interfaces.mdx │ │ │ │ │ ├── nodes.mdx │ │ │ │ │ ├── pgd-settings.mdx │ │ │ │ │ ├── repsets-ddl-filtering.mdx │ │ │ │ │ ├── repsets-management.mdx │ │ │ │ │ ├── repsets-membership.mdx │ │ │ │ │ ├── routing.mdx │ │ │ │ │ ├── sequences.mdx │ │ │ │ │ ├── streamtriggers │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── interfaces.mdx │ │ │ │ │ │ ├── rowfunctions.mdx │ │ │ │ │ │ └── rowvariables.mdx │ │ │ │ │ └── testingandtuning.mdx │ │ │ │ ├── testing-tuning.mdx │ │ │ │ ├── transaction-streaming.mdx │ │ │ │ ├── twophase.mdx │ │ │ │ └── upgrades.mdx │ │ │ ├── rel_notes │ │ │ │ ├── index.mdx │ │ │ │ ├── pgd_6.0.1_rel_notes.mdx │ │ │ │ ├── pgd_6.0.2_rel_notes.mdx │ │ │ │ └── src │ │ │ │ │ ├── meta.yml │ │ │ │ │ ├── relnote_6.0.1.yml │ │ │ │ │ └── relnote_6.0.2.yml │ │ │ └── terminology.mdx │ │ ├── 3.6 │ │ │ ├── index.mdx │ │ │ ├── rel_notes-pglogical.mdx │ │ │ └── release-notes.mdx │ │ ├── 3.7 │ │ │ ├── bdr │ │ │ │ ├── appusage.mdx │ │ │ │ ├── backup.mdx │ │ │ │ ├── camo.mdx │ │ │ │ ├── camo_clients.mdx │ │ │ │ ├── catalogs.mdx │ │ │ │ ├── column-level-conflicts.mdx │ │ │ │ ├── configuration.mdx │ │ │ │ ├── conflicts.mdx │ │ │ │ ├── crdt.mdx │ │ │ │ ├── ddl.mdx │ │ │ │ ├── durability.mdx │ │ │ │ ├── eager.mdx │ │ │ │ ├── functions.mdx │ │ │ │ ├── img │ │ │ │ │ ├── bdr.png │ │ │ │ │ ├── frontpage.svg │ │ │ │ │ ├── nodes.png │ │ │ │ │ └── nodes.svg │ │ │ │ ├── index.mdx │ │ │ │ ├── isolation_details.mdx │ │ │ │ ├── known-issues.mdx │ │ │ │ ├── monitoring.mdx │ │ │ │ ├── nodes.mdx │ │ │ │ ├── overview.mdx │ │ │ │ ├── release-notes.mdx │ │ │ │ ├── repsets.mdx │ │ │ │ ├── scaling.mdx │ │ │ │ ├── security.mdx │ │ │ │ ├── sequences.mdx │ │ │ │ ├── striggers.mdx │ │ │ │ ├── tssnapshots.mdx │ │ │ │ ├── twophase.mdx │ │ │ │ └── upgrades │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── supported_paths.mdx │ │ │ ├── harp │ │ │ │ ├── 01_release_notes │ │ │ │ │ ├── harp2.0.1_rel_notes.mdx │ │ │ │ │ ├── harp2.0.2_rel_notes.mdx │ │ │ │ │ ├── harp2.0.3_rel_notes.mdx │ │ │ │ │ ├── harp2.1.0_rel_notes.mdx │ │ │ │ │ ├── harp2.1.1_rel_notes.mdx │ │ │ │ │ ├── harp2.2.0_rel_notes.mdx │ │ │ │ │ ├── harp2.2.1_rel_notes.mdx │ │ │ │ │ ├── harp2.2.2_rel_notes.mdx │ │ │ │ │ ├── harp2.2.3_rel_notes.mdx │ │ │ │ │ ├── harp2.3.0_rel_notes.mdx │ │ │ │ │ ├── harp2.3.1_rel_notes.mdx │ │ │ │ │ ├── harp2.3.2_rel_notes.mdx │ │ │ │ │ ├── harp2.4.0_rel_notes.mdx │ │ │ │ │ ├── harp2.4.1_rel_notes.mdx │ │ │ │ │ ├── harp2_rel_notes.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 02_overview.mdx │ │ │ │ ├── 03_installation.mdx │ │ │ │ ├── 04_configuration.mdx │ │ │ │ ├── 05_bootstrapping.mdx │ │ │ │ ├── 06_harp_manager.mdx │ │ │ │ ├── 07_harp_proxy.mdx │ │ │ │ ├── 08_harpctl.mdx │ │ │ │ ├── 09_consensus-layer.mdx │ │ │ │ ├── 10_security.mdx │ │ │ │ ├── Makefile │ │ │ │ ├── images │ │ │ │ │ ├── bdr-ao-spec.dia │ │ │ │ │ ├── bdr-ao-spec.png │ │ │ │ │ ├── ha-ao-bdr.dia │ │ │ │ │ ├── ha-ao-bdr.png │ │ │ │ │ ├── ha-ao.dia │ │ │ │ │ ├── ha-ao.png │ │ │ │ │ ├── ha-unit-bdr.dia │ │ │ │ │ ├── ha-unit-bdr.png │ │ │ │ │ ├── ha-unit.dia │ │ │ │ │ └── ha-unit.png │ │ │ │ └── index.mdx │ │ │ ├── index.mdx │ │ │ └── pglogical │ │ │ │ ├── configuration.mdx │ │ │ │ ├── ddl.mdx │ │ │ │ ├── failover.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── nodes.mdx │ │ │ │ ├── release-notes.mdx │ │ │ │ ├── replication-sets.mdx │ │ │ │ ├── restrictions.mdx │ │ │ │ ├── subscriptions │ │ │ │ ├── index.mdx │ │ │ │ └── pglogical-writer.mdx │ │ │ │ └── troubleshooting.mdx │ │ ├── 4.4 │ │ │ ├── architectures │ │ │ │ ├── bronze.mdx │ │ │ │ ├── gold.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── platinum.mdx │ │ │ │ └── silver.mdx │ │ │ ├── backup.mdx │ │ │ ├── bdr │ │ │ │ ├── appusage.mdx │ │ │ │ ├── camo.mdx │ │ │ │ ├── catalogs.mdx │ │ │ │ ├── column-level-conflicts.mdx │ │ │ │ ├── configuration.mdx │ │ │ │ ├── conflicts.mdx │ │ │ │ ├── crdt.mdx │ │ │ │ ├── ddl.mdx │ │ │ │ ├── durability.mdx │ │ │ │ ├── eager.mdx │ │ │ │ ├── functions.mdx │ │ │ │ ├── group-commit.mdx │ │ │ │ ├── img │ │ │ │ │ ├── bdr.png │ │ │ │ │ ├── frontpage.svg │ │ │ │ │ ├── nodes.png │ │ │ │ │ └── nodes.svg │ │ │ │ ├── index.mdx │ │ │ │ ├── lag-control.mdx │ │ │ │ ├── nodes.mdx │ │ │ │ ├── repsets.mdx │ │ │ │ ├── scaling.mdx │ │ │ │ ├── security.mdx │ │ │ │ ├── sequences.mdx │ │ │ │ ├── striggers.mdx │ │ │ │ ├── transaction-streaming.mdx │ │ │ │ ├── tssnapshots.mdx │ │ │ │ └── twophase.mdx │ │ │ ├── choosing_durability.mdx │ │ │ ├── choosing_server.mdx │ │ │ ├── cli │ │ │ │ ├── command_ref │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── pgd_check-health.mdx │ │ │ │ │ ├── pgd_show-camo.mdx │ │ │ │ │ ├── pgd_show-clockskew.mdx │ │ │ │ │ ├── pgd_show-events.mdx │ │ │ │ │ ├── pgd_show-nodes.mdx │ │ │ │ │ ├── pgd_show-raft.mdx │ │ │ │ │ ├── pgd_show-replslots.mdx │ │ │ │ │ ├── pgd_show-subscriptions.mdx │ │ │ │ │ └── pgd_show-version.mdx │ │ │ │ ├── index.mdx │ │ │ │ └── installing_cli.mdx │ │ │ ├── deployments │ │ │ │ ├── index.mdx │ │ │ │ ├── manually │ │ │ │ │ ├── 01-provisioning-hosts.mdx │ │ │ │ │ ├── 02-install-postgres.mdx │ │ │ │ │ ├── 03-configuring-repositories.mdx │ │ │ │ │ ├── 04-installing-software.mdx │ │ │ │ │ ├── 05-creating-cluster.mdx │ │ │ │ │ ├── 06-check-cluster.mdx │ │ │ │ │ ├── 07-using-pgd-cli.mdx │ │ │ │ │ ├── images │ │ │ │ │ │ └── edbrepos2.0.png │ │ │ │ │ └── index.mdx │ │ │ │ └── tpaexec │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── installing_tpaexec.mdx │ │ │ │ │ ├── quick_start.mdx │ │ │ │ │ └── using_tpaexec.mdx │ │ │ ├── harp │ │ │ │ ├── 03_installation.mdx │ │ │ │ ├── 04_configuration.mdx │ │ │ │ ├── 05_bootstrapping.mdx │ │ │ │ ├── 06_harp_manager.mdx │ │ │ │ ├── 07_harp_proxy.mdx │ │ │ │ ├── 08_harpctl.mdx │ │ │ │ ├── 09_consensus-layer.mdx │ │ │ │ ├── 10_security.mdx │ │ │ │ ├── Makefile │ │ │ │ ├── images │ │ │ │ │ ├── HARPsequencediagram.png │ │ │ │ │ ├── bdr-ao-spec.dia │ │ │ │ │ ├── bdr-ao-spec.png │ │ │ │ │ ├── ha-ao-bdr.dia │ │ │ │ │ ├── ha-ao-bdr.png │ │ │ │ │ ├── ha-ao.dia │ │ │ │ │ ├── ha-ao.png │ │ │ │ │ ├── ha-unit-bdr.dia │ │ │ │ │ ├── ha-unit-bdr.png │ │ │ │ │ ├── ha-unit.dia │ │ │ │ │ └── ha-unit.png │ │ │ │ └── index.mdx │ │ │ ├── images │ │ │ │ ├── bdr-ao-spec.png │ │ │ │ ├── bronze.png │ │ │ │ ├── gold.png │ │ │ │ ├── gold2.png │ │ │ │ ├── gold3.png │ │ │ │ ├── ha-ao-bdr.png │ │ │ │ ├── ha-ao.png │ │ │ │ ├── ha-unit-bdr.png │ │ │ │ ├── ha-unit.png │ │ │ │ ├── nodes.png │ │ │ │ ├── platinum.png │ │ │ │ └── silver.png │ │ │ ├── index.mdx │ │ │ ├── known_issues.mdx │ │ │ ├── limitations.mdx │ │ │ ├── monitoring.mdx │ │ │ ├── other_considerations.mdx │ │ │ ├── overview │ │ │ │ └── index.mdx │ │ │ ├── rel_notes │ │ │ │ ├── index.mdx │ │ │ │ ├── pgd_4.0.0_rel_notes.mdx │ │ │ │ ├── pgd_4.0.1_rel_notes.mdx │ │ │ │ ├── pgd_4.0.2_rel_notes.mdx │ │ │ │ ├── pgd_4.0.3_rel_notes.mdx │ │ │ │ ├── pgd_4.1.0_rel_notes.mdx │ │ │ │ ├── pgd_4.1.1_rel_notes.mdx │ │ │ │ ├── pgd_4.2.0_rel_notes.mdx │ │ │ │ ├── pgd_4.2.1_rel_notes.mdx │ │ │ │ ├── pgd_4.2.2_rel_notes.mdx │ │ │ │ ├── pgd_4.3.0+p1_rel_notes.mdx │ │ │ │ ├── pgd_4.3.0_rel_notes.mdx │ │ │ │ ├── pgd_4.3.1+p1_rel_notes.mdx │ │ │ │ ├── pgd_4.3.1+p2_rel_notes.mdx │ │ │ │ ├── pgd_4.3.1_rel_notes.mdx │ │ │ │ ├── pgd_4.3.2+p1_rel_notes.mdx │ │ │ │ ├── pgd_4.3.2_rel_notes.mdx │ │ │ │ ├── pgd_4.3.3_rel_notes.mdx │ │ │ │ ├── pgd_4.3.4_rel_notes.mdx │ │ │ │ ├── pgd_4.3.5_rel_notes.mdx │ │ │ │ ├── pgd_4.3.6_rel_notes.mdx │ │ │ │ ├── pgd_4.3.7_rel_notes.mdx │ │ │ │ ├── pgd_4.3.8_rel_notes.mdx │ │ │ │ ├── pgd_4.4.0_rel_notes.mdx │ │ │ │ └── src │ │ │ │ │ ├── meta.yml │ │ │ │ │ ├── relnote_4.3.6.yml │ │ │ │ │ ├── relnote_4.3.7.yml │ │ │ │ │ ├── relnote_4.3.8.yml │ │ │ │ │ └── relnote_4.4.0.yml │ │ │ ├── terminology.mdx │ │ │ └── upgrades │ │ │ │ ├── bdr_pg_upgrade.mdx │ │ │ │ ├── index.mdx │ │ │ │ └── upgrade_paths.mdx │ │ ├── 5.6 │ │ │ ├── appusage │ │ │ │ ├── behavior.mdx │ │ │ │ ├── dml-ddl.mdx │ │ │ │ ├── extensions.mdx │ │ │ │ ├── feature-compatibility.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── nodes-with-differences.mdx │ │ │ │ ├── rules.mdx │ │ │ │ ├── table-access-methods.mdx │ │ │ │ └── timing.mdx │ │ │ ├── backup.mdx │ │ │ ├── cli │ │ │ │ ├── command_ref │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── pgd_check-health.mdx │ │ │ │ │ ├── pgd_create-proxy.mdx │ │ │ │ │ ├── pgd_delete-proxy.mdx │ │ │ │ │ ├── pgd_set-group-options.mdx │ │ │ │ │ ├── pgd_set-node-options.mdx │ │ │ │ │ ├── pgd_set-proxy-options.mdx │ │ │ │ │ ├── pgd_show-clockskew.mdx │ │ │ │ │ ├── pgd_show-events.mdx │ │ │ │ │ ├── pgd_show-groups.mdx │ │ │ │ │ ├── pgd_show-nodes.mdx │ │ │ │ │ ├── pgd_show-proxies.mdx │ │ │ │ │ ├── pgd_show-raft.mdx │ │ │ │ │ ├── pgd_show-replslots.mdx │ │ │ │ │ ├── pgd_show-subscriptions.mdx │ │ │ │ │ ├── pgd_show-version.mdx │ │ │ │ │ ├── pgd_switchover.mdx │ │ │ │ │ ├── pgd_verify-cluster.mdx │ │ │ │ │ └── pgd_verify-settings.mdx │ │ │ │ ├── configuring_cli.mdx │ │ │ │ ├── discover_connections.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── installing │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── linux.mdx │ │ │ │ │ ├── macos.mdx │ │ │ │ │ └── tpa.mdx │ │ │ │ └── using_cli.mdx │ │ │ ├── commit-scopes │ │ │ │ ├── administering.mdx │ │ │ │ ├── camo.mdx │ │ │ │ ├── commit-scope-rules.mdx │ │ │ │ ├── commit-scopes.mdx │ │ │ │ ├── comparing.mdx │ │ │ │ ├── degrading.mdx │ │ │ │ ├── durabilityterminology.mdx │ │ │ │ ├── group-commit.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── lag-control.mdx │ │ │ │ ├── legacy-sync.mdx │ │ │ │ ├── limitations.mdx │ │ │ │ ├── origin_groups.mdx │ │ │ │ ├── overview.mdx │ │ │ │ ├── synchronous_commit.mdx │ │ │ │ └── timing.mdx │ │ │ ├── compatibility.mdx │ │ │ ├── conflict-management │ │ │ │ ├── column-level-conflicts │ │ │ │ │ ├── 01_overview_clcd.mdx │ │ │ │ │ ├── 02_enabling_disabling.mdx │ │ │ │ │ ├── 03_timestamps.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── conflicts │ │ │ │ │ ├── 00_conflicts_overview.mdx │ │ │ │ │ ├── 02_types_of_conflict.mdx │ │ │ │ │ ├── 03_conflict_detection.mdx │ │ │ │ │ ├── 04_conflict_resolution.mdx │ │ │ │ │ ├── 05_conflict_logging.mdx │ │ │ │ │ ├── 06_live_compare.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── crdt │ │ │ │ │ ├── 00_crdt_overview.mdx │ │ │ │ │ ├── 01_crdt_usage.mdx │ │ │ │ │ ├── 02_state-op-crdts.mdx │ │ │ │ │ ├── 03_crdt-disk-reqs.mdx │ │ │ │ │ ├── 04_crdt-vs-conflict.mdx │ │ │ │ │ ├── 05_crdt-reset.mdx │ │ │ │ │ ├── 06_crdt-implemented.mdx │ │ │ │ │ └── index.mdx │ │ │ │ └── index.mdx │ │ │ ├── data_migration │ │ │ │ ├── edbloader.mdx │ │ │ │ └── index.mdx │ │ │ ├── ddl │ │ │ │ ├── ddl-command-handling.mdx │ │ │ │ ├── ddl-locking.mdx │ │ │ │ ├── ddl-managing-with-pgd-replication.mdx │ │ │ │ ├── ddl-overview.mdx │ │ │ │ ├── ddl-pgd-functions-like-ddl.mdx │ │ │ │ ├── ddl-replication-options.mdx │ │ │ │ ├── ddl-role-manipulation.mdx │ │ │ │ ├── ddl-workarounds.mdx │ │ │ │ └── index.mdx │ │ │ ├── decoding_worker.mdx │ │ │ ├── deploy-config │ │ │ │ ├── deploy-cloudservice │ │ │ │ │ └── index.mdx │ │ │ │ ├── deploy-kubernetes │ │ │ │ │ └── index.mdx │ │ │ │ ├── deploy-manual │ │ │ │ │ ├── deploying │ │ │ │ │ │ ├── 01-provisioning-hosts.mdx │ │ │ │ │ │ ├── 02-install-postgres.mdx │ │ │ │ │ │ ├── 03-configuring-repositories.mdx │ │ │ │ │ │ ├── 04-installing-software.mdx │ │ │ │ │ │ ├── 05-creating-cluster.mdx │ │ │ │ │ │ ├── 06-check-cluster.mdx │ │ │ │ │ │ ├── 07-configure-proxies.mdx │ │ │ │ │ │ ├── 08-using-pgd-cli.mdx │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ └── edbrepos2.0.png │ │ │ │ │ │ └── index.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── deploy-tpa │ │ │ │ │ ├── deploying │ │ │ │ │ │ ├── 01-configuring.mdx │ │ │ │ │ │ ├── 02-deploying.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ └── index.mdx │ │ │ │ └── index.mdx │ │ │ ├── index.mdx │ │ │ ├── known_issues.mdx │ │ │ ├── monitoring │ │ │ │ ├── index.mdx │ │ │ │ ├── otel.mdx │ │ │ │ └── sql.mdx │ │ │ ├── node_management │ │ │ │ ├── connections_dsns_and_ssl.mdx │ │ │ │ ├── creating_and_joining.mdx │ │ │ │ ├── creating_nodes.mdx │ │ │ │ ├── groups_and_subgroups.mdx │ │ │ │ ├── heterogeneous_clusters.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── maintainance_with_proxies.mdx │ │ │ │ ├── node_recovery.mdx │ │ │ │ ├── removing_nodes_and_groups.mdx │ │ │ │ ├── replication_slots.mdx │ │ │ │ └── viewing_topology.mdx │ │ │ ├── nodes │ │ │ │ ├── index.mdx │ │ │ │ ├── logical_standby_nodes.mdx │ │ │ │ ├── overview.mdx │ │ │ │ ├── subscriber_only │ │ │ │ │ ├── creating-so.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── joining-so.mdx │ │ │ │ │ ├── optimizing-so.mdx │ │ │ │ │ └── overview.mdx │ │ │ │ └── witness_nodes.mdx │ │ │ ├── overview │ │ │ │ ├── architecture-and-performance.mdx │ │ │ │ ├── basic-architecture.mdx │ │ │ │ ├── compared.mdx │ │ │ │ └── index.mdx │ │ │ ├── parallelapply.mdx │ │ │ ├── planning │ │ │ │ ├── architectures.mdx │ │ │ │ ├── choosing_server.mdx │ │ │ │ ├── deployments.mdx │ │ │ │ ├── images │ │ │ │ │ ├── always-on-2x3-aa-updated.png │ │ │ │ │ ├── always_on_1x3_updated.png │ │ │ │ │ └── always_on_2x3_aa_updated.png │ │ │ │ ├── index.mdx │ │ │ │ ├── limitations.mdx │ │ │ │ └── other_considerations.mdx │ │ │ ├── postgres-configuration.mdx │ │ │ ├── quickstart │ │ │ │ ├── connecting_applications.mdx │ │ │ │ ├── further_explore_conflicts.mdx │ │ │ │ ├── further_explore_failover.mdx │ │ │ │ ├── further_explore_replication.mdx │ │ │ │ ├── images │ │ │ │ │ ├── 4sessions.png │ │ │ │ │ ├── 4sessionsinsertconflict.png │ │ │ │ │ ├── 4sessionsupdateconflict.png │ │ │ │ │ └── 4sshsessions.png │ │ │ │ ├── index.mdx │ │ │ │ ├── next_steps.mdx │ │ │ │ ├── quick_start_aws.mdx │ │ │ │ ├── quick_start_cloud.mdx │ │ │ │ ├── quick_start_docker.mdx │ │ │ │ └── quick_start_linux.mdx │ │ │ ├── reference │ │ │ │ ├── autopartition.mdx │ │ │ │ ├── catalogs-internal.mdx │ │ │ │ ├── catalogs-visible.mdx │ │ │ │ ├── clcd.mdx │ │ │ │ ├── commit-scopes.mdx │ │ │ │ ├── conflict_functions.mdx │ │ │ │ ├── conflicts.mdx │ │ │ │ ├── functions-internal.mdx │ │ │ │ ├── functions.mdx │ │ │ │ ├── index.json │ │ │ │ ├── index.mdx │ │ │ │ ├── index.mdx.src │ │ │ │ ├── nodes-management-interfaces.mdx │ │ │ │ ├── nodes.mdx │ │ │ │ ├── pgd-settings.mdx │ │ │ │ ├── repsets-ddl-filtering.mdx │ │ │ │ ├── repsets-management.mdx │ │ │ │ ├── repsets-membership.mdx │ │ │ │ ├── routing.mdx │ │ │ │ ├── sequences.mdx │ │ │ │ ├── streamtriggers │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── interfaces.mdx │ │ │ │ │ ├── rowfunctions.mdx │ │ │ │ │ └── rowvariables.mdx │ │ │ │ └── testingandtuning.mdx │ │ │ ├── rel_notes │ │ │ │ ├── index.mdx │ │ │ │ ├── pgd_5.0.0_rel_notes.mdx │ │ │ │ ├── pgd_5.0.1_rel_notes.mdx │ │ │ │ ├── pgd_5.1.0_rel_notes.mdx │ │ │ │ ├── pgd_5.2.0_rel_notes.mdx │ │ │ │ ├── pgd_5.3.0_rel_notes.mdx │ │ │ │ ├── pgd_5.4.0_rel_notes.mdx │ │ │ │ ├── pgd_5.4.1_rel_notes.mdx │ │ │ │ ├── pgd_5.5.0_rel_notes.mdx │ │ │ │ ├── pgd_5.5.1_rel_notes.mdx │ │ │ │ ├── pgd_5.6.0_rel_notes.mdx │ │ │ │ ├── pgd_5.6.1_rel_notes.mdx │ │ │ │ └── src │ │ │ │ │ ├── meta.yml │ │ │ │ │ ├── relnote_5.6.0.yml │ │ │ │ │ └── relnote_5.6.1.yml │ │ │ ├── repsets.mdx │ │ │ ├── routing │ │ │ │ ├── administering.mdx │ │ │ │ ├── configuration.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── installing_proxy.mdx │ │ │ │ ├── monitoring.mdx │ │ │ │ ├── proxy.mdx │ │ │ │ ├── raft │ │ │ │ │ ├── 01_raft_subgroups_and_tpa.mdx │ │ │ │ │ ├── 02_raft_subgroups_and_pgd_cli.mdx │ │ │ │ │ ├── 03_migrating_to_raft_subgroups.mdx │ │ │ │ │ ├── 04_raft_elections_in_depth.mdx │ │ │ │ │ ├── images │ │ │ │ │ │ ├── PGD5sequencediagram.png │ │ │ │ │ │ └── Tmp6NodeRaftSubgroups.png │ │ │ │ │ └── index.mdx │ │ │ │ └── readonly.mdx │ │ │ ├── scaling.mdx │ │ │ ├── security │ │ │ │ ├── access-control.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── pgd-predefined-roles.mdx │ │ │ │ ├── role-management.mdx │ │ │ │ ├── roles-and-replication.mdx │ │ │ │ └── roles.mdx │ │ │ ├── sequences.mdx │ │ │ ├── striggers.mdx │ │ │ ├── terminology.mdx │ │ │ ├── testingandtuning.mdx │ │ │ ├── transaction-streaming.mdx │ │ │ ├── tssnapshots.mdx │ │ │ ├── twophase.mdx │ │ │ └── upgrades │ │ │ │ ├── app_upgrades.mdx │ │ │ │ ├── bdr_pg_upgrade.mdx │ │ │ │ ├── compatibility.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── manual_overview.mdx │ │ │ │ ├── tpa_overview.mdx │ │ │ │ ├── upgrade_paths.mdx │ │ │ │ └── upgrading_major_rolling.mdx │ │ ├── 5.7 │ │ │ ├── appusage │ │ │ │ ├── behavior.mdx │ │ │ │ ├── dml-ddl.mdx │ │ │ │ ├── extensions.mdx │ │ │ │ ├── feature-compatibility.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── nodes-with-differences.mdx │ │ │ │ ├── rules.mdx │ │ │ │ ├── table-access-methods.mdx │ │ │ │ └── timing.mdx │ │ │ ├── backup.mdx │ │ │ ├── cdc-failover.mdx │ │ │ ├── cli │ │ │ │ ├── command_ref │ │ │ │ │ ├── assess │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── cluster │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── show.mdx │ │ │ │ │ │ └── verify.mdx │ │ │ │ │ ├── commit-scope │ │ │ │ │ │ ├── create.mdx │ │ │ │ │ │ ├── drop.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── show.mdx │ │ │ │ │ │ └── update.mdx │ │ │ │ │ ├── completion │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── events │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── show.mdx │ │ │ │ │ ├── group │ │ │ │ │ │ ├── get-option.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── set-leader.mdx │ │ │ │ │ │ ├── set-option.mdx │ │ │ │ │ │ └── show.mdx │ │ │ │ │ ├── groups │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── list.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── node │ │ │ │ │ │ ├── get-option.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── set-option.mdx │ │ │ │ │ │ ├── show.mdx │ │ │ │ │ │ └── upgrade.mdx │ │ │ │ │ ├── nodes │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── list.mdx │ │ │ │ │ ├── raft │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── show.mdx │ │ │ │ │ └── replication │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── show.mdx │ │ │ │ ├── configuring_cli.mdx │ │ │ │ ├── discover_connections.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── installing │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── linux.mdx │ │ │ │ │ ├── macos.mdx │ │ │ │ │ └── tpa.mdx │ │ │ │ └── using_cli.mdx │ │ │ ├── commit-scopes │ │ │ │ ├── administering.mdx │ │ │ │ ├── camo.mdx │ │ │ │ ├── commit-scope-rules.mdx │ │ │ │ ├── commit-scopes.mdx │ │ │ │ ├── comparing.mdx │ │ │ │ ├── degrading.mdx │ │ │ │ ├── durabilityterminology.mdx │ │ │ │ ├── group-commit.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── lag-control.mdx │ │ │ │ ├── legacy-sync.mdx │ │ │ │ ├── limitations.mdx │ │ │ │ ├── origin_groups.mdx │ │ │ │ ├── overview.mdx │ │ │ │ ├── synchronous_commit.mdx │ │ │ │ └── timing.mdx │ │ │ ├── compatibility.mdx │ │ │ ├── conflict-management │ │ │ │ ├── column-level-conflicts │ │ │ │ │ ├── 01_overview_clcd.mdx │ │ │ │ │ ├── 02_enabling_disabling.mdx │ │ │ │ │ ├── 03_timestamps.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── conflicts │ │ │ │ │ ├── 00_conflicts_overview.mdx │ │ │ │ │ ├── 02_types_of_conflict.mdx │ │ │ │ │ ├── 03_conflict_detection.mdx │ │ │ │ │ ├── 04_conflict_resolution.mdx │ │ │ │ │ ├── 05_conflict_logging.mdx │ │ │ │ │ ├── 06_live_compare.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── crdt │ │ │ │ │ ├── 00_crdt_overview.mdx │ │ │ │ │ ├── 01_crdt_usage.mdx │ │ │ │ │ ├── 02_state-op-crdts.mdx │ │ │ │ │ ├── 03_crdt-disk-reqs.mdx │ │ │ │ │ ├── 04_crdt-vs-conflict.mdx │ │ │ │ │ ├── 05_crdt-reset.mdx │ │ │ │ │ ├── 06_crdt-implemented.mdx │ │ │ │ │ └── index.mdx │ │ │ │ └── index.mdx │ │ │ ├── data_migration │ │ │ │ ├── edbloader.mdx │ │ │ │ └── index.mdx │ │ │ ├── ddl │ │ │ │ ├── ddl-command-handling.mdx │ │ │ │ ├── ddl-locking.mdx │ │ │ │ ├── ddl-managing-with-pgd-replication.mdx │ │ │ │ ├── ddl-overview.mdx │ │ │ │ ├── ddl-pgd-functions-like-ddl.mdx │ │ │ │ ├── ddl-replication-options.mdx │ │ │ │ ├── ddl-role-manipulation.mdx │ │ │ │ ├── ddl-workarounds.mdx │ │ │ │ └── index.mdx │ │ │ ├── decoding_worker.mdx │ │ │ ├── deploy-config │ │ │ │ ├── deploy-cloudservice │ │ │ │ │ └── index.mdx │ │ │ │ ├── deploy-kubernetes │ │ │ │ │ └── index.mdx │ │ │ │ ├── deploy-manual │ │ │ │ │ ├── deploying │ │ │ │ │ │ ├── 01-provisioning-hosts.mdx │ │ │ │ │ │ ├── 02-install-postgres.mdx │ │ │ │ │ │ ├── 03-configuring-repositories.mdx │ │ │ │ │ │ ├── 04-installing-software.mdx │ │ │ │ │ │ ├── 05-creating-cluster.mdx │ │ │ │ │ │ ├── 06-check-cluster.mdx │ │ │ │ │ │ ├── 07-configure-proxies.mdx │ │ │ │ │ │ ├── 08-using-pgd-cli.mdx │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ └── edbrepos2.0.png │ │ │ │ │ │ └── index.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── deploy-tpa │ │ │ │ │ ├── deploying │ │ │ │ │ │ ├── 01-configuring.mdx │ │ │ │ │ │ ├── 02-deploying.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ └── index.mdx │ │ │ │ └── index.mdx │ │ │ ├── index.mdx │ │ │ ├── known_issues.mdx │ │ │ ├── monitoring │ │ │ │ ├── index.mdx │ │ │ │ ├── otel.mdx │ │ │ │ └── sql.mdx │ │ │ ├── node_management │ │ │ │ ├── connections_dsns_and_ssl.mdx │ │ │ │ ├── creating_and_joining.mdx │ │ │ │ ├── creating_nodes.mdx │ │ │ │ ├── groups_and_subgroups.mdx │ │ │ │ ├── heterogeneous_clusters.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── maintainance_with_proxies.mdx │ │ │ │ ├── node_recovery.mdx │ │ │ │ ├── removing_nodes_and_groups.mdx │ │ │ │ ├── replication_slots.mdx │ │ │ │ └── viewing_topology.mdx │ │ │ ├── nodes │ │ │ │ ├── index.mdx │ │ │ │ ├── logical_standby_nodes.mdx │ │ │ │ ├── overview.mdx │ │ │ │ ├── subscriber_only │ │ │ │ │ ├── creating-so.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── joining-so.mdx │ │ │ │ │ ├── optimizing-so.mdx │ │ │ │ │ └── overview.mdx │ │ │ │ └── witness_nodes.mdx │ │ │ ├── overview │ │ │ │ ├── architecture-and-performance.mdx │ │ │ │ ├── basic-architecture.mdx │ │ │ │ ├── compared.mdx │ │ │ │ ├── images │ │ │ │ │ └── always_on_1x3_updated.png │ │ │ │ └── index.mdx │ │ │ ├── parallelapply.mdx │ │ │ ├── planning │ │ │ │ ├── architectures.mdx │ │ │ │ ├── choosing_server.mdx │ │ │ │ ├── deployments.mdx │ │ │ │ ├── images │ │ │ │ │ ├── always-on-2x3-aa-updated.png │ │ │ │ │ ├── always_on_1x3_updated.png │ │ │ │ │ └── always_on_2x3_aa_updated.png │ │ │ │ ├── index.mdx │ │ │ │ ├── limitations.mdx │ │ │ │ └── other_considerations.mdx │ │ │ ├── postgres-configuration.mdx │ │ │ ├── quickstart │ │ │ │ ├── connecting_applications.mdx │ │ │ │ ├── further_explore_conflicts.mdx │ │ │ │ ├── further_explore_failover.mdx │ │ │ │ ├── further_explore_replication.mdx │ │ │ │ ├── images │ │ │ │ │ ├── 4sessions.png │ │ │ │ │ ├── 4sessionsinsertconflict.png │ │ │ │ │ ├── 4sessionsupdateconflict.png │ │ │ │ │ └── 4sshsessions.png │ │ │ │ ├── index.mdx │ │ │ │ ├── next_steps.mdx │ │ │ │ ├── quick_start_aws.mdx │ │ │ │ ├── quick_start_cloud.mdx │ │ │ │ ├── quick_start_docker.mdx │ │ │ │ └── quick_start_linux.mdx │ │ │ ├── reference │ │ │ │ ├── autopartition.mdx │ │ │ │ ├── catalogs-internal.mdx │ │ │ │ ├── catalogs-visible.mdx │ │ │ │ ├── clcd.mdx │ │ │ │ ├── commit-scopes.mdx │ │ │ │ ├── conflict_functions.mdx │ │ │ │ ├── conflicts.mdx │ │ │ │ ├── functions-internal.mdx │ │ │ │ ├── functions.mdx │ │ │ │ ├── index.json │ │ │ │ ├── index.mdx │ │ │ │ ├── index.mdx.src │ │ │ │ ├── nodes-management-interfaces.mdx │ │ │ │ ├── nodes.mdx │ │ │ │ ├── pgd-settings.mdx │ │ │ │ ├── repsets-ddl-filtering.mdx │ │ │ │ ├── repsets-management.mdx │ │ │ │ ├── repsets-membership.mdx │ │ │ │ ├── routing.mdx │ │ │ │ ├── sequences.mdx │ │ │ │ ├── streamtriggers │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── interfaces.mdx │ │ │ │ │ ├── rowfunctions.mdx │ │ │ │ │ └── rowvariables.mdx │ │ │ │ └── testingandtuning.mdx │ │ │ ├── rel_notes │ │ │ │ ├── index.mdx │ │ │ │ ├── pgd_5.0.0_rel_notes.mdx │ │ │ │ ├── pgd_5.0.1_rel_notes.mdx │ │ │ │ ├── pgd_5.1.0_rel_notes.mdx │ │ │ │ ├── pgd_5.2.0_rel_notes.mdx │ │ │ │ ├── pgd_5.3.0_rel_notes.mdx │ │ │ │ ├── pgd_5.4.0_rel_notes.mdx │ │ │ │ ├── pgd_5.4.1_rel_notes.mdx │ │ │ │ ├── pgd_5.5.0_rel_notes.mdx │ │ │ │ ├── pgd_5.5.1_rel_notes.mdx │ │ │ │ ├── pgd_5.6.0_rel_notes.mdx │ │ │ │ ├── pgd_5.6.1_rel_notes.mdx │ │ │ │ ├── pgd_5.7.0_rel_notes.mdx │ │ │ │ └── src │ │ │ │ │ ├── meta.yml │ │ │ │ │ ├── relnote_5.6.0.yml │ │ │ │ │ ├── relnote_5.6.1.yml │ │ │ │ │ └── relnote_5.7.0.yml │ │ │ ├── repsets.mdx │ │ │ ├── routing │ │ │ │ ├── administering.mdx │ │ │ │ ├── configuration.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── installing_proxy.mdx │ │ │ │ ├── monitoring.mdx │ │ │ │ ├── proxy.mdx │ │ │ │ ├── raft │ │ │ │ │ ├── 01_raft_subgroups_and_tpa.mdx │ │ │ │ │ ├── 02_raft_subgroups_and_pgd_cli.mdx │ │ │ │ │ ├── 03_migrating_to_raft_subgroups.mdx │ │ │ │ │ ├── 04_raft_elections_in_depth.mdx │ │ │ │ │ ├── images │ │ │ │ │ │ ├── PGD5sequencediagram.png │ │ │ │ │ │ └── Tmp6NodeRaftSubgroups.png │ │ │ │ │ └── index.mdx │ │ │ │ └── readonly.mdx │ │ │ ├── scaling.mdx │ │ │ ├── security │ │ │ │ ├── access-control.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── pgd-predefined-roles.mdx │ │ │ │ ├── role-management.mdx │ │ │ │ ├── roles-and-replication.mdx │ │ │ │ └── roles.mdx │ │ │ ├── sequences.mdx │ │ │ ├── striggers.mdx │ │ │ ├── terminology.mdx │ │ │ ├── testingandtuning.mdx │ │ │ ├── transaction-streaming.mdx │ │ │ ├── tssnapshots.mdx │ │ │ ├── twophase.mdx │ │ │ └── upgrades │ │ │ │ ├── app_upgrades.mdx │ │ │ │ ├── compatibility.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── inplace_upgrade.mdx │ │ │ │ ├── manual_overview.mdx │ │ │ │ ├── tpa_overview.mdx │ │ │ │ ├── upgrade_paths.mdx │ │ │ │ └── upgrading_major_rolling.mdx │ │ ├── 5.8 │ │ │ ├── appusage │ │ │ │ ├── behavior.mdx │ │ │ │ ├── dml-ddl.mdx │ │ │ │ ├── extensions.mdx │ │ │ │ ├── feature-compatibility.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── nodes-with-differences.mdx │ │ │ │ ├── rules.mdx │ │ │ │ ├── table-access-methods.mdx │ │ │ │ └── timing.mdx │ │ │ ├── backup.mdx │ │ │ ├── cdc-failover.mdx │ │ │ ├── cli │ │ │ │ ├── command_ref │ │ │ │ │ ├── assess │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── cluster │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── show.mdx │ │ │ │ │ │ └── verify.mdx │ │ │ │ │ ├── commit-scope │ │ │ │ │ │ ├── create.mdx │ │ │ │ │ │ ├── drop.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── show.mdx │ │ │ │ │ │ └── update.mdx │ │ │ │ │ ├── completion │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── events │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── show.mdx │ │ │ │ │ ├── group │ │ │ │ │ │ ├── get-option.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── set-leader.mdx │ │ │ │ │ │ ├── set-option.mdx │ │ │ │ │ │ └── show.mdx │ │ │ │ │ ├── groups │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── list.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── node │ │ │ │ │ │ ├── get-option.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── set-option.mdx │ │ │ │ │ │ ├── show.mdx │ │ │ │ │ │ └── upgrade.mdx │ │ │ │ │ ├── nodes │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── list.mdx │ │ │ │ │ ├── raft │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── show.mdx │ │ │ │ │ └── replication │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── show.mdx │ │ │ │ ├── configuring_cli.mdx │ │ │ │ ├── discover_connections.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── installing │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── linux.mdx │ │ │ │ │ ├── macos.mdx │ │ │ │ │ └── tpa.mdx │ │ │ │ └── using_cli.mdx │ │ │ ├── commit-scopes │ │ │ │ ├── administering.mdx │ │ │ │ ├── camo.mdx │ │ │ │ ├── commit-scope-rules.mdx │ │ │ │ ├── commit-scopes.mdx │ │ │ │ ├── comparing.mdx │ │ │ │ ├── degrading.mdx │ │ │ │ ├── durabilityterminology.mdx │ │ │ │ ├── group-commit.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── lag-control.mdx │ │ │ │ ├── legacy-sync.mdx │ │ │ │ ├── limitations.mdx │ │ │ │ ├── origin_groups.mdx │ │ │ │ ├── overview.mdx │ │ │ │ ├── synchronous_commit.mdx │ │ │ │ └── timing.mdx │ │ │ ├── compatibility.mdx │ │ │ ├── conflict-management │ │ │ │ ├── column-level-conflicts │ │ │ │ │ ├── 01_overview_clcd.mdx │ │ │ │ │ ├── 02_enabling_disabling.mdx │ │ │ │ │ ├── 03_timestamps.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── conflicts │ │ │ │ │ ├── 00_conflicts_overview.mdx │ │ │ │ │ ├── 02_types_of_conflict.mdx │ │ │ │ │ ├── 03_conflict_detection.mdx │ │ │ │ │ ├── 04_conflict_resolution.mdx │ │ │ │ │ ├── 05_conflict_logging.mdx │ │ │ │ │ ├── 06_live_compare.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── crdt │ │ │ │ │ ├── 00_crdt_overview.mdx │ │ │ │ │ ├── 01_crdt_usage.mdx │ │ │ │ │ ├── 02_state-op-crdts.mdx │ │ │ │ │ ├── 03_crdt-disk-reqs.mdx │ │ │ │ │ ├── 04_crdt-vs-conflict.mdx │ │ │ │ │ ├── 05_crdt-reset.mdx │ │ │ │ │ ├── 06_crdt-implemented.mdx │ │ │ │ │ └── index.mdx │ │ │ │ └── index.mdx │ │ │ ├── data_migration │ │ │ │ ├── edbloader.mdx │ │ │ │ └── index.mdx │ │ │ ├── ddl │ │ │ │ ├── ddl-command-handling.mdx │ │ │ │ ├── ddl-locking.mdx │ │ │ │ ├── ddl-managing-with-pgd-replication.mdx │ │ │ │ ├── ddl-overview.mdx │ │ │ │ ├── ddl-pgd-functions-like-ddl.mdx │ │ │ │ ├── ddl-replication-options.mdx │ │ │ │ ├── ddl-role-manipulation.mdx │ │ │ │ ├── ddl-workarounds.mdx │ │ │ │ └── index.mdx │ │ │ ├── decoding_worker.mdx │ │ │ ├── deploy-config │ │ │ │ ├── deploy-cloudservice │ │ │ │ │ └── index.mdx │ │ │ │ ├── deploy-kubernetes │ │ │ │ │ └── index.mdx │ │ │ │ ├── deploy-manual │ │ │ │ │ ├── deploying │ │ │ │ │ │ ├── 01-provisioning-hosts.mdx │ │ │ │ │ │ ├── 02-install-postgres.mdx │ │ │ │ │ │ ├── 03-configuring-repositories.mdx │ │ │ │ │ │ ├── 04-installing-software.mdx │ │ │ │ │ │ ├── 05-creating-cluster.mdx │ │ │ │ │ │ ├── 06-check-cluster.mdx │ │ │ │ │ │ ├── 07-configure-proxies.mdx │ │ │ │ │ │ ├── 08-using-pgd-cli.mdx │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ └── edbrepos2.0.png │ │ │ │ │ │ └── index.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── deploy-tpa │ │ │ │ │ ├── deploying │ │ │ │ │ │ ├── 01-configuring.mdx │ │ │ │ │ │ ├── 02-deploying.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ └── index.mdx │ │ │ │ └── index.mdx │ │ │ ├── index.mdx │ │ │ ├── known_issues.mdx │ │ │ ├── monitoring │ │ │ │ ├── index.mdx │ │ │ │ ├── otel.mdx │ │ │ │ └── sql.mdx │ │ │ ├── node_management │ │ │ │ ├── connections_dsns_and_ssl.mdx │ │ │ │ ├── creating_and_joining.mdx │ │ │ │ ├── creating_nodes.mdx │ │ │ │ ├── groups_and_subgroups.mdx │ │ │ │ ├── heterogeneous_clusters.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── maintainance_with_proxies.mdx │ │ │ │ ├── node_recovery.mdx │ │ │ │ ├── removing_nodes_and_groups.mdx │ │ │ │ ├── replication_slots.mdx │ │ │ │ └── viewing_topology.mdx │ │ │ ├── nodes │ │ │ │ ├── index.mdx │ │ │ │ ├── logical_standby_nodes.mdx │ │ │ │ ├── overview.mdx │ │ │ │ ├── subscriber_only │ │ │ │ │ ├── creating-so.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── joining-so.mdx │ │ │ │ │ ├── optimizing-so.mdx │ │ │ │ │ └── overview.mdx │ │ │ │ └── witness_nodes.mdx │ │ │ ├── overview │ │ │ │ ├── architecture-and-performance.mdx │ │ │ │ ├── basic-architecture.mdx │ │ │ │ ├── compared.mdx │ │ │ │ ├── images │ │ │ │ │ └── always_on_1x3_updated.png │ │ │ │ └── index.mdx │ │ │ ├── parallelapply.mdx │ │ │ ├── planning │ │ │ │ ├── architectures.mdx │ │ │ │ ├── choosing_server.mdx │ │ │ │ ├── deployments.mdx │ │ │ │ ├── images │ │ │ │ │ ├── always-on-2x3-aa-updated.png │ │ │ │ │ ├── always_on_1x3_updated.png │ │ │ │ │ └── always_on_2x3_aa_updated.png │ │ │ │ ├── index.mdx │ │ │ │ ├── limitations.mdx │ │ │ │ └── other_considerations.mdx │ │ │ ├── postgres-configuration.mdx │ │ │ ├── quickstart │ │ │ │ ├── connecting_applications.mdx │ │ │ │ ├── further_explore_conflicts.mdx │ │ │ │ ├── further_explore_failover.mdx │ │ │ │ ├── further_explore_replication.mdx │ │ │ │ ├── images │ │ │ │ │ ├── 4sessions.png │ │ │ │ │ ├── 4sessionsinsertconflict.png │ │ │ │ │ ├── 4sessionsupdateconflict.png │ │ │ │ │ └── 4sshsessions.png │ │ │ │ ├── index.mdx │ │ │ │ ├── next_steps.mdx │ │ │ │ ├── quick_start_aws.mdx │ │ │ │ ├── quick_start_cloud.mdx │ │ │ │ ├── quick_start_docker.mdx │ │ │ │ └── quick_start_linux.mdx │ │ │ ├── reference │ │ │ │ ├── autopartition.mdx │ │ │ │ ├── catalogs-internal.mdx │ │ │ │ ├── catalogs-visible.mdx │ │ │ │ ├── clcd.mdx │ │ │ │ ├── commit-scopes.mdx │ │ │ │ ├── conflict_functions.mdx │ │ │ │ ├── conflicts.mdx │ │ │ │ ├── functions-internal.mdx │ │ │ │ ├── functions.mdx │ │ │ │ ├── index.json │ │ │ │ ├── index.mdx │ │ │ │ ├── index.mdx.src │ │ │ │ ├── nodes-management-interfaces.mdx │ │ │ │ ├── nodes.mdx │ │ │ │ ├── pgd-settings.mdx │ │ │ │ ├── repsets-ddl-filtering.mdx │ │ │ │ ├── repsets-management.mdx │ │ │ │ ├── repsets-membership.mdx │ │ │ │ ├── routing.mdx │ │ │ │ ├── sequences.mdx │ │ │ │ ├── streamtriggers │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── interfaces.mdx │ │ │ │ │ ├── rowfunctions.mdx │ │ │ │ │ └── rowvariables.mdx │ │ │ │ └── testingandtuning.mdx │ │ │ ├── rel_notes │ │ │ │ ├── index.mdx │ │ │ │ ├── pgd_5.0.0_rel_notes.mdx │ │ │ │ ├── pgd_5.0.1_rel_notes.mdx │ │ │ │ ├── pgd_5.1.0_rel_notes.mdx │ │ │ │ ├── pgd_5.2.0_rel_notes.mdx │ │ │ │ ├── pgd_5.3.0_rel_notes.mdx │ │ │ │ ├── pgd_5.4.0_rel_notes.mdx │ │ │ │ ├── pgd_5.4.1_rel_notes.mdx │ │ │ │ ├── pgd_5.5.0_rel_notes.mdx │ │ │ │ ├── pgd_5.5.1_rel_notes.mdx │ │ │ │ ├── pgd_5.6.0_rel_notes.mdx │ │ │ │ ├── pgd_5.6.1_rel_notes.mdx │ │ │ │ ├── pgd_5.7.0_rel_notes.mdx │ │ │ │ ├── pgd_5.8.0_rel_notes.mdx │ │ │ │ ├── pgd_5.8.1_rel_notes.mdx │ │ │ │ └── src │ │ │ │ │ ├── meta.yml │ │ │ │ │ ├── relnote_5.6.0.yml │ │ │ │ │ ├── relnote_5.6.1.yml │ │ │ │ │ ├── relnote_5.7.0.yml │ │ │ │ │ ├── relnote_5.8.0.yml │ │ │ │ │ └── relnote_5.8.1.yml │ │ │ ├── repsets.mdx │ │ │ ├── routing │ │ │ │ ├── administering.mdx │ │ │ │ ├── configuration.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── installing_proxy.mdx │ │ │ │ ├── monitoring.mdx │ │ │ │ ├── proxy.mdx │ │ │ │ ├── raft │ │ │ │ │ ├── 01_raft_subgroups_and_tpa.mdx │ │ │ │ │ ├── 02_raft_subgroups_and_pgd_cli.mdx │ │ │ │ │ ├── 03_migrating_to_raft_subgroups.mdx │ │ │ │ │ ├── 04_raft_elections_in_depth.mdx │ │ │ │ │ ├── images │ │ │ │ │ │ ├── PGD5sequencediagram.png │ │ │ │ │ │ └── Tmp6NodeRaftSubgroups.png │ │ │ │ │ └── index.mdx │ │ │ │ └── readonly.mdx │ │ │ ├── scaling.mdx │ │ │ ├── security │ │ │ │ ├── access-control.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── pgd-predefined-roles.mdx │ │ │ │ ├── role-management.mdx │ │ │ │ ├── roles-and-replication.mdx │ │ │ │ └── roles.mdx │ │ │ ├── sequences.mdx │ │ │ ├── striggers.mdx │ │ │ ├── terminology.mdx │ │ │ ├── testingandtuning.mdx │ │ │ ├── transaction-streaming.mdx │ │ │ ├── tssnapshots.mdx │ │ │ ├── twophase.mdx │ │ │ └── upgrades │ │ │ │ ├── app_upgrades.mdx │ │ │ │ ├── compatibility.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── inplace_upgrade.mdx │ │ │ │ ├── manual_overview.mdx │ │ │ │ ├── tpa_overview.mdx │ │ │ │ ├── upgrade_paths.mdx │ │ │ │ └── upgrading_major_rolling.mdx │ │ ├── 5.9 │ │ │ ├── appusage │ │ │ │ ├── behavior.mdx │ │ │ │ ├── dml-ddl.mdx │ │ │ │ ├── extensions.mdx │ │ │ │ ├── feature-compatibility.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── nodes-with-differences.mdx │ │ │ │ ├── rules.mdx │ │ │ │ ├── table-access-methods.mdx │ │ │ │ └── timing.mdx │ │ │ ├── backup.mdx │ │ │ ├── cdc-failover.mdx │ │ │ ├── cli │ │ │ │ ├── command_ref │ │ │ │ │ ├── assess │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── cluster │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── show.mdx │ │ │ │ │ │ └── verify.mdx │ │ │ │ │ ├── commit-scope │ │ │ │ │ │ ├── create.mdx │ │ │ │ │ │ ├── drop.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── show.mdx │ │ │ │ │ │ └── update.mdx │ │ │ │ │ ├── completion │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── events │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── show.mdx │ │ │ │ │ ├── group │ │ │ │ │ │ ├── get-option.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── set-leader.mdx │ │ │ │ │ │ ├── set-option.mdx │ │ │ │ │ │ └── show.mdx │ │ │ │ │ ├── groups │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── list.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── node │ │ │ │ │ │ ├── get-option.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── set-option.mdx │ │ │ │ │ │ ├── show.mdx │ │ │ │ │ │ └── upgrade.mdx │ │ │ │ │ ├── nodes │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── list.mdx │ │ │ │ │ ├── raft │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── show.mdx │ │ │ │ │ └── replication │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── show.mdx │ │ │ │ ├── configuring_cli.mdx │ │ │ │ ├── discover_connections.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── installing │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── linux.mdx │ │ │ │ │ ├── macos.mdx │ │ │ │ │ └── tpa.mdx │ │ │ │ └── using_cli.mdx │ │ │ ├── commit-scopes │ │ │ │ ├── administering.mdx │ │ │ │ ├── camo.mdx │ │ │ │ ├── commit-scope-rules.mdx │ │ │ │ ├── commit-scopes.mdx │ │ │ │ ├── comparing.mdx │ │ │ │ ├── degrading.mdx │ │ │ │ ├── durabilityterminology.mdx │ │ │ │ ├── group-commit.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── lag-control.mdx │ │ │ │ ├── legacy-sync.mdx │ │ │ │ ├── limitations.mdx │ │ │ │ ├── origin_groups.mdx │ │ │ │ ├── overview.mdx │ │ │ │ ├── synchronous_commit.mdx │ │ │ │ └── timing.mdx │ │ │ ├── compatibility.mdx │ │ │ ├── conflict-management │ │ │ │ ├── column-level-conflicts │ │ │ │ │ ├── 01_overview_clcd.mdx │ │ │ │ │ ├── 02_enabling_disabling.mdx │ │ │ │ │ ├── 03_timestamps.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── conflicts │ │ │ │ │ ├── 00_conflicts_overview.mdx │ │ │ │ │ ├── 02_types_of_conflict.mdx │ │ │ │ │ ├── 03_conflict_detection.mdx │ │ │ │ │ ├── 04_conflict_resolution.mdx │ │ │ │ │ ├── 05_conflict_logging.mdx │ │ │ │ │ ├── 06_live_compare.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── crdt │ │ │ │ │ ├── 00_crdt_overview.mdx │ │ │ │ │ ├── 01_crdt_usage.mdx │ │ │ │ │ ├── 02_state-op-crdts.mdx │ │ │ │ │ ├── 03_crdt-disk-reqs.mdx │ │ │ │ │ ├── 04_crdt-vs-conflict.mdx │ │ │ │ │ ├── 05_crdt-reset.mdx │ │ │ │ │ ├── 06_crdt-implemented.mdx │ │ │ │ │ └── index.mdx │ │ │ │ └── index.mdx │ │ │ ├── data_migration │ │ │ │ ├── edbloader.mdx │ │ │ │ └── index.mdx │ │ │ ├── ddl │ │ │ │ ├── ddl-command-handling.mdx │ │ │ │ ├── ddl-locking.mdx │ │ │ │ ├── ddl-managing-with-pgd-replication.mdx │ │ │ │ ├── ddl-overview.mdx │ │ │ │ ├── ddl-pgd-functions-like-ddl.mdx │ │ │ │ ├── ddl-replication-options.mdx │ │ │ │ ├── ddl-role-manipulation.mdx │ │ │ │ ├── ddl-workarounds.mdx │ │ │ │ └── index.mdx │ │ │ ├── decoding_worker.mdx │ │ │ ├── deploy-config │ │ │ │ ├── deploy-cloudservice │ │ │ │ │ └── index.mdx │ │ │ │ ├── deploy-kubernetes │ │ │ │ │ └── index.mdx │ │ │ │ ├── deploy-manual │ │ │ │ │ ├── deploying │ │ │ │ │ │ ├── 01-provisioning-hosts.mdx │ │ │ │ │ │ ├── 02-install-postgres.mdx │ │ │ │ │ │ ├── 03-configuring-repositories.mdx │ │ │ │ │ │ ├── 04-installing-software.mdx │ │ │ │ │ │ ├── 05-creating-cluster.mdx │ │ │ │ │ │ ├── 06-check-cluster.mdx │ │ │ │ │ │ ├── 07-configure-proxies.mdx │ │ │ │ │ │ ├── 08-using-pgd-cli.mdx │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ └── edbrepos2.0.png │ │ │ │ │ │ └── index.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── deploy-tpa │ │ │ │ │ ├── deploying │ │ │ │ │ │ ├── 01-configuring.mdx │ │ │ │ │ │ ├── 02-deploying.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ └── index.mdx │ │ │ │ └── index.mdx │ │ │ ├── index.mdx │ │ │ ├── known_issues.mdx │ │ │ ├── monitoring │ │ │ │ ├── index.mdx │ │ │ │ ├── otel.mdx │ │ │ │ └── sql.mdx │ │ │ ├── node_management │ │ │ │ ├── connections_dsns_and_ssl.mdx │ │ │ │ ├── creating_and_joining.mdx │ │ │ │ ├── creating_nodes.mdx │ │ │ │ ├── groups_and_subgroups.mdx │ │ │ │ ├── heterogeneous_clusters.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── maintainance_with_proxies.mdx │ │ │ │ ├── node_recovery.mdx │ │ │ │ ├── removing_nodes_and_groups.mdx │ │ │ │ ├── replication_slots.mdx │ │ │ │ └── viewing_topology.mdx │ │ │ ├── nodes │ │ │ │ ├── index.mdx │ │ │ │ ├── logical_standby_nodes.mdx │ │ │ │ ├── overview.mdx │ │ │ │ ├── subscriber_only │ │ │ │ │ ├── creating-so.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── joining-so.mdx │ │ │ │ │ ├── optimizing-so.mdx │ │ │ │ │ └── overview.mdx │ │ │ │ └── witness_nodes.mdx │ │ │ ├── overview │ │ │ │ ├── architecture-and-performance.mdx │ │ │ │ ├── basic-architecture.mdx │ │ │ │ ├── compared.mdx │ │ │ │ ├── images │ │ │ │ │ └── always_on_1x3_updated.png │ │ │ │ └── index.mdx │ │ │ ├── parallelapply.mdx │ │ │ ├── planning │ │ │ │ ├── architectures.mdx │ │ │ │ ├── choosing_server.mdx │ │ │ │ ├── deployments.mdx │ │ │ │ ├── images │ │ │ │ │ ├── always-on-2x3-aa-updated.png │ │ │ │ │ ├── always_on_1x3_updated.png │ │ │ │ │ └── always_on_2x3_aa_updated.png │ │ │ │ ├── index.mdx │ │ │ │ ├── limitations.mdx │ │ │ │ └── other_considerations.mdx │ │ │ ├── postgres-configuration.mdx │ │ │ ├── quickstart │ │ │ │ ├── connecting_applications.mdx │ │ │ │ ├── further_explore_conflicts.mdx │ │ │ │ ├── further_explore_failover.mdx │ │ │ │ ├── further_explore_replication.mdx │ │ │ │ ├── images │ │ │ │ │ ├── 4sessions.png │ │ │ │ │ ├── 4sessionsinsertconflict.png │ │ │ │ │ ├── 4sessionsupdateconflict.png │ │ │ │ │ └── 4sshsessions.png │ │ │ │ ├── index.mdx │ │ │ │ ├── next_steps.mdx │ │ │ │ ├── quick_start_aws.mdx │ │ │ │ ├── quick_start_cloud.mdx │ │ │ │ ├── quick_start_docker.mdx │ │ │ │ └── quick_start_linux.mdx │ │ │ ├── reference │ │ │ │ ├── autopartition.mdx │ │ │ │ ├── catalogs-internal.mdx │ │ │ │ ├── catalogs-visible.mdx │ │ │ │ ├── clcd.mdx │ │ │ │ ├── commit-scopes.mdx │ │ │ │ ├── conflict_functions.mdx │ │ │ │ ├── conflicts.mdx │ │ │ │ ├── functions-internal.mdx │ │ │ │ ├── functions.mdx │ │ │ │ ├── index.json │ │ │ │ ├── index.mdx │ │ │ │ ├── index.mdx.src │ │ │ │ ├── nodes-management-interfaces.mdx │ │ │ │ ├── nodes.mdx │ │ │ │ ├── pgd-settings.mdx │ │ │ │ ├── repsets-ddl-filtering.mdx │ │ │ │ ├── repsets-management.mdx │ │ │ │ ├── repsets-membership.mdx │ │ │ │ ├── routing.mdx │ │ │ │ ├── sequences.mdx │ │ │ │ ├── streamtriggers │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── interfaces.mdx │ │ │ │ │ ├── rowfunctions.mdx │ │ │ │ │ └── rowvariables.mdx │ │ │ │ └── testingandtuning.mdx │ │ │ ├── rel_notes │ │ │ │ ├── index.mdx │ │ │ │ ├── pgd_5.0.0_rel_notes.mdx │ │ │ │ ├── pgd_5.0.1_rel_notes.mdx │ │ │ │ ├── pgd_5.1.0_rel_notes.mdx │ │ │ │ ├── pgd_5.2.0_rel_notes.mdx │ │ │ │ ├── pgd_5.3.0_rel_notes.mdx │ │ │ │ ├── pgd_5.4.0_rel_notes.mdx │ │ │ │ ├── pgd_5.4.1_rel_notes.mdx │ │ │ │ ├── pgd_5.5.0_rel_notes.mdx │ │ │ │ ├── pgd_5.5.1_rel_notes.mdx │ │ │ │ ├── pgd_5.6.0_rel_notes.mdx │ │ │ │ ├── pgd_5.6.1_rel_notes.mdx │ │ │ │ ├── pgd_5.7.0_rel_notes.mdx │ │ │ │ ├── pgd_5.8.0_rel_notes.mdx │ │ │ │ ├── pgd_5.8.1_rel_notes.mdx │ │ │ │ ├── pgd_5.9.0_rel_notes.mdx │ │ │ │ └── src │ │ │ │ │ ├── meta.yml │ │ │ │ │ ├── relnote_5.6.0.yml │ │ │ │ │ ├── relnote_5.6.1.yml │ │ │ │ │ ├── relnote_5.7.0.yml │ │ │ │ │ ├── relnote_5.8.0.yml │ │ │ │ │ ├── relnote_5.8.1.yml │ │ │ │ │ └── relnote_5.9.0.yml │ │ │ ├── repsets.mdx │ │ │ ├── routing │ │ │ │ ├── administering.mdx │ │ │ │ ├── configuration.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── installing_proxy.mdx │ │ │ │ ├── monitoring.mdx │ │ │ │ ├── proxy.mdx │ │ │ │ ├── raft │ │ │ │ │ ├── 01_raft_subgroups_and_tpa.mdx │ │ │ │ │ ├── 02_raft_subgroups_and_pgd_cli.mdx │ │ │ │ │ ├── 03_migrating_to_raft_subgroups.mdx │ │ │ │ │ ├── 04_raft_elections_in_depth.mdx │ │ │ │ │ ├── images │ │ │ │ │ │ ├── PGD5sequencediagram.png │ │ │ │ │ │ └── Tmp6NodeRaftSubgroups.png │ │ │ │ │ └── index.mdx │ │ │ │ └── readonly.mdx │ │ │ ├── scaling.mdx │ │ │ ├── security │ │ │ │ ├── access-control.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── pgd-predefined-roles.mdx │ │ │ │ ├── role-management.mdx │ │ │ │ ├── roles-and-replication.mdx │ │ │ │ └── roles.mdx │ │ │ ├── sequences.mdx │ │ │ ├── striggers.mdx │ │ │ ├── terminology.mdx │ │ │ ├── testingandtuning.mdx │ │ │ ├── transaction-streaming.mdx │ │ │ ├── tssnapshots.mdx │ │ │ ├── twophase.mdx │ │ │ └── upgrades │ │ │ │ ├── app_upgrades.mdx │ │ │ │ ├── compatibility.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── inplace_upgrade.mdx │ │ │ │ ├── manual_overview.mdx │ │ │ │ ├── tpa_overview.mdx │ │ │ │ ├── upgrade_paths.mdx │ │ │ │ └── upgrading_major_rolling.mdx │ │ └── 6.1 │ │ │ ├── compatibility.mdx │ │ │ ├── concepts │ │ │ ├── advanced-durability.mdx │ │ │ ├── commit-scopes.mdx │ │ │ ├── conflict-management.mdx │ │ │ ├── connection-management.mdx │ │ │ ├── durability.mdx │ │ │ ├── expanded-commit-scopes.mdx │ │ │ ├── geo-distributed-clusters.mdx │ │ │ ├── index.mdx │ │ │ ├── lag-control.mdx │ │ │ ├── locking.mdx │ │ │ ├── nodes-and-groups.mdx │ │ │ └── replication.mdx │ │ │ ├── essential-how-to │ │ │ ├── architectures │ │ │ │ ├── index.mdx │ │ │ │ ├── near-far │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── manually-deploying-near-far.mdx │ │ │ │ └── standard │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── manually-deploying-standard.mdx │ │ │ ├── autopartition.mdx │ │ │ ├── connections.mdx │ │ │ ├── durability.mdx │ │ │ ├── index.mdx │ │ │ ├── install │ │ │ │ ├── 01-prerequisites.mdx │ │ │ │ ├── 02-configure-repositories.mdx │ │ │ │ ├── 03-installing-database-and-pgd.mdx │ │ │ │ ├── 04-configuring-cluster.mdx │ │ │ │ ├── 05-check-cluster.mdx │ │ │ │ ├── images │ │ │ │ │ └── edbrepos2.0.png │ │ │ │ └── index.mdx │ │ │ ├── pgd-cli.mdx │ │ │ ├── production-best-practices │ │ │ │ ├── index.mdx │ │ │ │ ├── security.mdx │ │ │ │ ├── sizing.mdx │ │ │ │ └── time-and-pgd.mdx │ │ │ └── sops │ │ │ │ ├── backup-restore │ │ │ │ ├── barman.mdx │ │ │ │ ├── index.mdx │ │ │ │ └── pg_dump.mdx │ │ │ │ ├── data-movement │ │ │ │ ├── index.mdx │ │ │ │ ├── move-in.mdx │ │ │ │ └── move-out.mdx │ │ │ │ ├── how-to-use-sops.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── install │ │ │ │ ├── add-node.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── new-group.mdx │ │ │ │ └── new-node.mdx │ │ │ │ ├── maintenance │ │ │ │ ├── index.mdx │ │ │ │ ├── node-failures.mdx │ │ │ │ ├── online-vacuum.mdx │ │ │ │ └── routine.mdx │ │ │ │ ├── monitoring │ │ │ │ ├── index.mdx │ │ │ │ └── sql.mdx │ │ │ │ ├── template.txt │ │ │ │ ├── troubleshooting │ │ │ │ ├── cluster-operations.mdx │ │ │ │ └── index.mdx │ │ │ │ └── upgrade │ │ │ │ ├── index.mdx │ │ │ │ ├── major.mdx │ │ │ │ ├── minor.mdx │ │ │ │ └── pgd.mdx │ │ │ ├── expanded-how-to │ │ │ ├── architectures │ │ │ │ ├── always-on.mdx │ │ │ │ ├── essential.mdx │ │ │ │ ├── geo-distributed.mdx │ │ │ │ ├── images │ │ │ │ │ ├── 1x3-cluster.svg │ │ │ │ │ └── 2x3-cluster.svg │ │ │ │ ├── index.mdx │ │ │ │ └── multi-location.mdx │ │ │ ├── index.mdx │ │ │ ├── install │ │ │ │ ├── 01-prerequisites.mdx │ │ │ │ ├── 02-configure-repositories.mdx │ │ │ │ ├── 03-installing-database-and-pgd.mdx │ │ │ │ ├── 04-configuring-cluster.mdx │ │ │ │ ├── 05-check-cluster.mdx │ │ │ │ ├── images │ │ │ │ │ └── edbrepos2.0.png │ │ │ │ └── index.mdx │ │ │ └── sops │ │ │ │ ├── backup-restore │ │ │ │ ├── barman.mdx │ │ │ │ ├── index.mdx │ │ │ │ └── pg_dump.mdx │ │ │ │ ├── data-movement │ │ │ │ ├── index.mdx │ │ │ │ ├── move-in.mdx │ │ │ │ └── move-out.mdx │ │ │ │ ├── how-to-use-sops.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── install │ │ │ │ ├── add-node.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── new-group.mdx │ │ │ │ └── new-node.mdx │ │ │ │ ├── maintenance │ │ │ │ ├── index.mdx │ │ │ │ ├── node-failures.mdx │ │ │ │ ├── online-vacuum.mdx │ │ │ │ └── routine.mdx │ │ │ │ ├── monitoring │ │ │ │ ├── index.mdx │ │ │ │ └── sql.mdx │ │ │ │ ├── template.txt │ │ │ │ ├── troubleshooting │ │ │ │ ├── cluster-operations.mdx │ │ │ │ └── index.mdx │ │ │ │ └── upgrade │ │ │ │ ├── index.mdx │ │ │ │ ├── major.mdx │ │ │ │ ├── minor.mdx │ │ │ │ └── pgd.mdx │ │ │ ├── get-started │ │ │ ├── assets │ │ │ │ ├── docker-compose.yml │ │ │ │ └── pgd_quickstart.sh │ │ │ ├── essential-standard.mdx │ │ │ ├── expanded-examples.mdx │ │ │ ├── first-cluster.mdx │ │ │ ├── first-steps │ │ │ │ ├── index.mdx │ │ │ │ ├── loading-data.mdx │ │ │ │ ├── using-cli.mdx │ │ │ │ └── working-with-sql.mdx │ │ │ └── index.mdx │ │ │ ├── index.mdx │ │ │ ├── known_issues.mdx │ │ │ ├── reference │ │ │ ├── appusage │ │ │ │ ├── behavior.mdx │ │ │ │ ├── dml-ddl.mdx │ │ │ │ ├── extensions.mdx │ │ │ │ ├── feature-compatibility.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── nodes-with-differences.mdx │ │ │ │ ├── rules.mdx │ │ │ │ ├── table-access-methods.mdx │ │ │ │ └── timing.mdx │ │ │ ├── autopartition.mdx │ │ │ ├── backup-restore.mdx │ │ │ ├── cdc-failover.mdx │ │ │ ├── cli │ │ │ │ ├── command_ref │ │ │ │ │ ├── assess │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── cluster │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── show.mdx │ │ │ │ │ │ └── verify.mdx │ │ │ │ │ ├── commit-scope │ │ │ │ │ │ ├── create.mdx │ │ │ │ │ │ ├── drop.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── list.mdx │ │ │ │ │ │ ├── show.mdx │ │ │ │ │ │ └── update.mdx │ │ │ │ │ ├── completion │ │ │ │ │ │ └── index.mdx │ │ │ │ │ ├── events │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── show.mdx │ │ │ │ │ ├── group │ │ │ │ │ │ ├── get-option.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── set-leader.mdx │ │ │ │ │ │ ├── set-option.mdx │ │ │ │ │ │ └── show.mdx │ │ │ │ │ ├── groups │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── list.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── node │ │ │ │ │ │ ├── get-config.mdx │ │ │ │ │ │ ├── get-option.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── part.mdx │ │ │ │ │ │ ├── set-config.mdx │ │ │ │ │ │ ├── set-option.mdx │ │ │ │ │ │ ├── setup.mdx │ │ │ │ │ │ ├── show.mdx │ │ │ │ │ │ └── upgrade.mdx │ │ │ │ │ ├── nodes │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── list.mdx │ │ │ │ │ ├── raft │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── show.mdx │ │ │ │ │ └── replication │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── show.mdx │ │ │ │ ├── configuring_cli.mdx │ │ │ │ ├── discover_connections.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── installing │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── linux.mdx │ │ │ │ │ └── macos.mdx │ │ │ │ └── using_cli.mdx │ │ │ ├── commit-scopes │ │ │ │ ├── administering.mdx │ │ │ │ ├── camo.mdx │ │ │ │ ├── commit-scope-rules.mdx │ │ │ │ ├── commit-scopes.mdx │ │ │ │ ├── comparing.mdx │ │ │ │ ├── degrading.mdx │ │ │ │ ├── durabilityterminology.mdx │ │ │ │ ├── group-commit.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── lag-control.mdx │ │ │ │ ├── legacy-sync.mdx │ │ │ │ ├── origin_groups.mdx │ │ │ │ ├── overview.mdx │ │ │ │ ├── predefined-commit-scopes.mdx │ │ │ │ ├── synchronous_commit.mdx │ │ │ │ └── timing.mdx │ │ │ ├── conflict-management │ │ │ │ ├── column-level-conflicts │ │ │ │ │ ├── 01_overview_clcd.mdx │ │ │ │ │ ├── 02_enabling_disabling.mdx │ │ │ │ │ ├── 03_timestamps.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── conflicts │ │ │ │ │ ├── 00_conflicts_overview.mdx │ │ │ │ │ ├── 02_types_of_conflict.mdx │ │ │ │ │ ├── 03_conflict_detection.mdx │ │ │ │ │ ├── 04_conflict_resolution.mdx │ │ │ │ │ ├── 05_conflict_logging.mdx │ │ │ │ │ ├── 06_live_compare.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── crdt │ │ │ │ │ ├── 00_crdt_overview.mdx │ │ │ │ │ ├── 01_crdt_usage.mdx │ │ │ │ │ ├── 02_state-op-crdts.mdx │ │ │ │ │ ├── 03_crdt-disk-reqs.mdx │ │ │ │ │ ├── 04_crdt-vs-conflict.mdx │ │ │ │ │ ├── 05_crdt-reset.mdx │ │ │ │ │ ├── 06_crdt-implemented.mdx │ │ │ │ │ └── index.mdx │ │ │ │ └── index.mdx │ │ │ ├── connection-manager │ │ │ │ ├── authentication.mdx │ │ │ │ ├── configuring.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── load-balancing.mdx │ │ │ │ ├── monitoring.mdx │ │ │ │ └── overview.mdx │ │ │ ├── ddl │ │ │ │ ├── ddl-command-handling.mdx │ │ │ │ ├── ddl-locking.mdx │ │ │ │ ├── ddl-managing-with-pgd-replication.mdx │ │ │ │ ├── ddl-overview.mdx │ │ │ │ ├── ddl-pgd-functions-like-ddl.mdx │ │ │ │ ├── ddl-replication-options.mdx │ │ │ │ ├── ddl-role-manipulation.mdx │ │ │ │ ├── ddl-workarounds.mdx │ │ │ │ └── index.mdx │ │ │ ├── decoding_worker.mdx │ │ │ ├── index.mdx │ │ │ ├── monitoring │ │ │ │ ├── index.mdx │ │ │ │ └── sql.mdx │ │ │ ├── node_management │ │ │ │ ├── automatic_sync.mdx │ │ │ │ ├── connections_dsns_and_ssl.mdx │ │ │ │ ├── creating_and_joining.mdx │ │ │ │ ├── creating_nodes.mdx │ │ │ │ ├── groups_and_subgroups.mdx │ │ │ │ ├── images │ │ │ │ │ └── autosyncstates.svg │ │ │ │ ├── index.mdx │ │ │ │ ├── node_recovery.mdx │ │ │ │ ├── node_uuids.mdx │ │ │ │ ├── removing_nodes_and_groups.mdx │ │ │ │ ├── replication_slots.mdx │ │ │ │ └── viewing_topology.mdx │ │ │ ├── nodes │ │ │ │ ├── index.mdx │ │ │ │ ├── logical_standby_nodes.mdx │ │ │ │ ├── overview.mdx │ │ │ │ ├── subscriber_only │ │ │ │ │ ├── creating-so.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── joining-so.mdx │ │ │ │ │ ├── optimizing-so.mdx │ │ │ │ │ └── overview.mdx │ │ │ │ └── witness_nodes.mdx │ │ │ ├── overview │ │ │ │ ├── architecture-and-performance.mdx │ │ │ │ ├── basic-architecture.mdx │ │ │ │ ├── compared.mdx │ │ │ │ ├── images │ │ │ │ │ └── 1x3-cluster.svg │ │ │ │ └── index.mdx │ │ │ ├── parallelapply.mdx │ │ │ ├── postgres-configuration.mdx │ │ │ ├── repsets.mdx │ │ │ ├── security │ │ │ │ ├── access-control.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── pgd-predefined-roles.mdx │ │ │ │ ├── role-management.mdx │ │ │ │ ├── roles-and-replication.mdx │ │ │ │ └── roles.mdx │ │ │ ├── sequences.mdx │ │ │ ├── stream-triggers.mdx │ │ │ ├── tables-views-functions │ │ │ │ ├── autopartition.mdx │ │ │ │ ├── catalogs-internal.mdx │ │ │ │ ├── catalogs-visible.mdx │ │ │ │ ├── clcd.mdx │ │ │ │ ├── commit-scopes.mdx │ │ │ │ ├── conflict_functions.mdx │ │ │ │ ├── conflicts.mdx │ │ │ │ ├── functions-internal.mdx │ │ │ │ ├── functions.mdx │ │ │ │ ├── index.json │ │ │ │ ├── index.mdx │ │ │ │ ├── index.mdx.src │ │ │ │ ├── nodes-management-interfaces.mdx │ │ │ │ ├── nodes.mdx │ │ │ │ ├── pgd-settings.mdx │ │ │ │ ├── repsets-ddl-filtering.mdx │ │ │ │ ├── repsets-management.mdx │ │ │ │ ├── repsets-membership.mdx │ │ │ │ ├── routing.mdx │ │ │ │ ├── sequences.mdx │ │ │ │ ├── streamtriggers │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── interfaces.mdx │ │ │ │ │ ├── rowfunctions.mdx │ │ │ │ │ └── rowvariables.mdx │ │ │ │ └── testingandtuning.mdx │ │ │ ├── testing-tuning.mdx │ │ │ ├── transaction-streaming.mdx │ │ │ └── twophase.mdx │ │ │ ├── rel_notes │ │ │ ├── index.mdx │ │ │ ├── pgd_6.0.1_rel_notes.mdx │ │ │ ├── pgd_6.0.2_rel_notes.mdx │ │ │ ├── pgd_6.1.0_rel_notes.mdx │ │ │ ├── pgd_6.1.1_rel_notes.mdx │ │ │ ├── pgd_6.1.2_rel_notes.mdx │ │ │ └── src │ │ │ │ ├── meta.yml │ │ │ │ ├── relnote_6.0.1.yml │ │ │ │ ├── relnote_6.0.2.yml │ │ │ │ ├── relnote_6.1.0.yml │ │ │ │ ├── relnote_6.1.1.yml │ │ │ │ └── relnote_6.1.2.yml │ │ │ ├── terminology.mdx │ │ │ └── upgrades │ │ │ ├── app_upgrades.mdx │ │ │ ├── compatibility.mdx │ │ │ ├── index.mdx │ │ │ ├── inplace_upgrade.mdx │ │ │ ├── manual_overview.mdx │ │ │ ├── upgrade_paths.mdx │ │ │ └── upgrading_major_rolling.mdx │ ├── pge │ │ ├── 13 │ │ │ ├── index.mdx │ │ │ └── release_notes │ │ │ │ └── index.mdx │ │ ├── 14 │ │ │ ├── index.mdx │ │ │ └── release_notes │ │ │ │ └── index.mdx │ │ ├── 15 │ │ │ ├── administration │ │ │ │ ├── 01_setting_configuration_parameters.mdx │ │ │ │ └── index.mdx │ │ │ ├── deploy_options.mdx │ │ │ ├── index.mdx │ │ │ ├── installing │ │ │ │ ├── component_locations.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── linux_arm64 │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── pge_debian_12.mdx │ │ │ │ │ └── pge_rhel_9.mdx │ │ │ │ ├── linux_ppc64le │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── pge_rhel_8.mdx │ │ │ │ │ ├── pge_rhel_9.mdx │ │ │ │ │ └── pge_sles_15.mdx │ │ │ │ └── linux_x86_64 │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── pge_debian_11.mdx │ │ │ │ │ ├── pge_debian_12.mdx │ │ │ │ │ ├── pge_other_linux_8.mdx │ │ │ │ │ ├── pge_other_linux_9.mdx │ │ │ │ │ ├── pge_rhel_8.mdx │ │ │ │ │ ├── pge_rhel_9.mdx │ │ │ │ │ ├── pge_sles_15.mdx │ │ │ │ │ ├── pge_ubuntu_22.mdx │ │ │ │ │ └── pge_ubuntu_24.mdx │ │ │ ├── operation.mdx │ │ │ ├── parameters.mdx │ │ │ ├── release_notes │ │ │ │ ├── index.mdx │ │ │ │ ├── rel_notes15.10.mdx │ │ │ │ ├── rel_notes15.11.mdx │ │ │ │ ├── rel_notes15.12.mdx │ │ │ │ ├── rel_notes15.13.mdx │ │ │ │ ├── rel_notes15.14.mdx │ │ │ │ ├── rel_notes15.15.mdx │ │ │ │ ├── rel_notes15.2.mdx │ │ │ │ ├── rel_notes15.3.mdx │ │ │ │ ├── rel_notes15.4.mdx │ │ │ │ ├── rel_notes15.5.mdx │ │ │ │ ├── rel_notes15.6.mdx │ │ │ │ ├── rel_notes15.7.mdx │ │ │ │ ├── rel_notes15.8.1.mdx │ │ │ │ └── rel_notes15.8.mdx │ │ │ ├── replication.mdx │ │ │ ├── sql_features │ │ │ │ ├── index.mdx │ │ │ │ ├── jdbctxnrollback.mdx │ │ │ │ └── txnrollback.mdx │ │ │ └── tde.mdx │ │ ├── 16 │ │ │ ├── administration │ │ │ │ ├── 01_setting_configuration_parameters.mdx │ │ │ │ └── index.mdx │ │ │ ├── deploy_options.mdx │ │ │ ├── extensions.mdx │ │ │ ├── index.mdx │ │ │ ├── installing │ │ │ │ ├── component_locations.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── linux_arm64 │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── pge_debian_12.mdx │ │ │ │ │ └── pge_rhel_9.mdx │ │ │ │ ├── linux_ppc64le │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── pge_rhel_8.mdx │ │ │ │ │ ├── pge_rhel_9.mdx │ │ │ │ │ └── pge_sles_15.mdx │ │ │ │ └── linux_x86_64 │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── pge_debian_11.mdx │ │ │ │ │ ├── pge_debian_12.mdx │ │ │ │ │ ├── pge_other_linux_8.mdx │ │ │ │ │ ├── pge_other_linux_9.mdx │ │ │ │ │ ├── pge_rhel_8.mdx │ │ │ │ │ ├── pge_rhel_9.mdx │ │ │ │ │ ├── pge_sles_15.mdx │ │ │ │ │ ├── pge_ubuntu_22.mdx │ │ │ │ │ └── pge_ubuntu_24.mdx │ │ │ ├── operation.mdx │ │ │ ├── parameters.mdx │ │ │ ├── release_notes │ │ │ │ ├── index.mdx │ │ │ │ ├── rel_notes16.1.mdx │ │ │ │ ├── rel_notes16.10.mdx │ │ │ │ ├── rel_notes16.11.mdx │ │ │ │ ├── rel_notes16.2.mdx │ │ │ │ ├── rel_notes16.3.mdx │ │ │ │ ├── rel_notes16.4.1.mdx │ │ │ │ ├── rel_notes16.4.mdx │ │ │ │ ├── rel_notes16.6.mdx │ │ │ │ ├── rel_notes16.7.mdx │ │ │ │ ├── rel_notes16.8.mdx │ │ │ │ └── rel_notes16.9.mdx │ │ │ ├── replication.mdx │ │ │ ├── sql_features │ │ │ │ ├── index.mdx │ │ │ │ ├── jdbctxnrollback.mdx │ │ │ │ └── txnrollback.mdx │ │ │ ├── tde.mdx │ │ │ └── upgrading │ │ │ │ ├── index.mdx │ │ │ │ ├── major_upgrade.mdx │ │ │ │ └── minor_upgrade │ │ │ │ ├── apt_upgrade.mdx │ │ │ │ ├── dnf_upgrade.mdx │ │ │ │ └── index.mdx │ │ ├── 17 │ │ │ ├── administration │ │ │ │ ├── 01_setting_configuration_parameters.mdx │ │ │ │ └── index.mdx │ │ │ ├── deploy_options.mdx │ │ │ ├── extensions.mdx │ │ │ ├── index.mdx │ │ │ ├── installing │ │ │ │ ├── component_locations.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── linux_arm64 │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── pge_debian_12.mdx │ │ │ │ │ └── pge_rhel_9.mdx │ │ │ │ └── linux_x86_64 │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── pge_debian_12.mdx │ │ │ │ │ ├── pge_other_linux_8.mdx │ │ │ │ │ ├── pge_other_linux_9.mdx │ │ │ │ │ ├── pge_rhel_8.mdx │ │ │ │ │ ├── pge_rhel_9.mdx │ │ │ │ │ ├── pge_ubuntu_22.mdx │ │ │ │ │ └── pge_ubuntu_24.mdx │ │ │ ├── operation.mdx │ │ │ ├── parameters.mdx │ │ │ ├── release_notes │ │ │ │ ├── index.mdx │ │ │ │ ├── rel_notes17.2.mdx │ │ │ │ ├── rel_notes17.3.mdx │ │ │ │ ├── rel_notes17.4.mdx │ │ │ │ ├── rel_notes17.5.mdx │ │ │ │ ├── rel_notes17.6.mdx │ │ │ │ └── rel_notes17.7.mdx │ │ │ ├── replication.mdx │ │ │ ├── sql_features │ │ │ │ ├── index.mdx │ │ │ │ ├── jdbctxnrollback.mdx │ │ │ │ └── txnrollback.mdx │ │ │ ├── tde.mdx │ │ │ └── upgrading │ │ │ │ ├── index.mdx │ │ │ │ ├── major_upgrade.mdx │ │ │ │ └── minor_upgrade │ │ │ │ ├── apt_upgrade.mdx │ │ │ │ ├── dnf_upgrade.mdx │ │ │ │ └── index.mdx │ │ └── 18 │ │ │ ├── administration │ │ │ ├── 01_setting_configuration_parameters.mdx │ │ │ └── index.mdx │ │ │ ├── data_redaction │ │ │ ├── creating_a_data_redaction_policy.mdx │ │ │ ├── data_redaction_key_concepts.mdx │ │ │ ├── data_redaction_system_catalogs.mdx │ │ │ ├── index.mdx │ │ │ ├── modifying_a_data_redaction_policy.mdx │ │ │ ├── removing_a_data_redaction_policy.mdx │ │ │ └── working_example.mdx │ │ │ ├── deploy_options.mdx │ │ │ ├── extensions.mdx │ │ │ ├── index.mdx │ │ │ ├── installing │ │ │ ├── component_locations.mdx │ │ │ ├── index.mdx │ │ │ ├── linux_arm64 │ │ │ │ ├── index.mdx │ │ │ │ ├── pge_debian_12.mdx │ │ │ │ └── pge_rhel_9.mdx │ │ │ ├── linux_ppc64le │ │ │ │ ├── index.mdx │ │ │ │ ├── pge_rhel_8.mdx │ │ │ │ ├── pge_rhel_9.mdx │ │ │ │ └── pge_sles_15.mdx │ │ │ └── linux_x86_64 │ │ │ │ ├── index.mdx │ │ │ │ ├── pge_debian_12.mdx │ │ │ │ ├── pge_other_linux_8.mdx │ │ │ │ ├── pge_other_linux_9.mdx │ │ │ │ ├── pge_rhel_8.mdx │ │ │ │ ├── pge_rhel_9.mdx │ │ │ │ ├── pge_sles_15.mdx │ │ │ │ ├── pge_ubuntu_22.mdx │ │ │ │ └── pge_ubuntu_24.mdx │ │ │ ├── operation.mdx │ │ │ ├── parameters.mdx │ │ │ ├── password_profiles │ │ │ ├── creating_a_profile.mdx │ │ │ ├── index.mdx │ │ │ ├── modifying_a_profile.mdx │ │ │ ├── password_profile_system_catalogs.mdx │ │ │ ├── password_profiles_key_concepts.mdx │ │ │ ├── removing_a_profile.mdx │ │ │ ├── roles_and_profiles.mdx │ │ │ └── working_example.mdx │ │ │ ├── release_notes │ │ │ ├── index.mdx │ │ │ └── rel_notes18.1.0.mdx │ │ │ ├── replication.mdx │ │ │ ├── sql_features │ │ │ ├── index.mdx │ │ │ ├── jdbctxnrollback.mdx │ │ │ └── txnrollback.mdx │ │ │ ├── tde.mdx │ │ │ └── upgrading │ │ │ ├── index.mdx │ │ │ ├── major_upgrade.mdx │ │ │ └── minor_upgrade │ │ │ ├── apt_upgrade.mdx │ │ │ ├── dnf_upgrade.mdx │ │ │ └── index.mdx │ ├── pgpool │ │ └── 4 │ │ │ ├── 03_configuring_connection_pooling.mdx │ │ │ ├── 04_connecting_a_client_to_pgpool-II.mdx │ │ │ ├── index.mdx │ │ │ ├── installing │ │ │ ├── index.mdx │ │ │ ├── linux_arm64 │ │ │ │ ├── index.mdx │ │ │ │ ├── pgpool_debian_12.mdx │ │ │ │ └── pgpool_rhel_9.mdx │ │ │ ├── linux_ppc64le │ │ │ │ ├── index.mdx │ │ │ │ ├── pgpool_rhel_8.mdx │ │ │ │ ├── pgpool_rhel_9.mdx │ │ │ │ └── pgpool_sles_15.mdx │ │ │ ├── linux_x86_64 │ │ │ │ ├── index.mdx │ │ │ │ ├── pgpool_debian_11.mdx │ │ │ │ ├── pgpool_debian_12.mdx │ │ │ │ ├── pgpool_other_linux_8.mdx │ │ │ │ ├── pgpool_other_linux_9.mdx │ │ │ │ ├── pgpool_rhel_8.mdx │ │ │ │ ├── pgpool_rhel_9.mdx │ │ │ │ ├── pgpool_sles_15.mdx │ │ │ │ ├── pgpool_ubuntu_22.mdx │ │ │ │ └── pgpool_ubuntu_24.mdx │ │ │ ├── uninstalling.mdx │ │ │ └── upgrading.mdx │ │ │ ├── installing_extensions │ │ │ ├── creating_pgpool_extensions.mdx │ │ │ ├── index.mdx │ │ │ ├── linux_arm64 │ │ │ │ ├── index.mdx │ │ │ │ ├── pgpoolext_debian_12.mdx │ │ │ │ └── pgpoolext_rhel_9.mdx │ │ │ ├── linux_ppc64le │ │ │ │ ├── index.mdx │ │ │ │ ├── pgpoolext_rhel_8.mdx │ │ │ │ ├── pgpoolext_rhel_9.mdx │ │ │ │ └── pgpoolext_sles_15.mdx │ │ │ ├── linux_x86_64 │ │ │ │ ├── index.mdx │ │ │ │ ├── pgpoolext_debian_11.mdx │ │ │ │ ├── pgpoolext_debian_12.mdx │ │ │ │ ├── pgpoolext_other_linux_8.mdx │ │ │ │ ├── pgpoolext_other_linux_9.mdx │ │ │ │ ├── pgpoolext_rhel_8.mdx │ │ │ │ ├── pgpoolext_rhel_9.mdx │ │ │ │ ├── pgpoolext_sles_15.mdx │ │ │ │ ├── pgpoolext_ubuntu_22.mdx │ │ │ │ └── pgpoolext_ubuntu_24.mdx │ │ │ ├── uninstalling_extensions.mdx │ │ │ └── upgrading_extensions.mdx │ │ │ ├── pgpool_rel_notes │ │ │ ├── 07_432_rel_notes.mdx │ │ │ ├── 08_430_rel_notes.mdx │ │ │ ├── 09_426_rel_notes.mdx │ │ │ ├── 10_425_rel_notes.mdx │ │ │ ├── 3724_rel_notes.mdx │ │ │ ├── 4019_rel_notes.mdx │ │ │ ├── 4112_rel_notes.mdx │ │ │ ├── 429_rel_notes.mdx │ │ │ ├── 442_rel_notes.mdx │ │ │ ├── 443_rel_notes.mdx │ │ │ ├── 444_rel_notes.mdx │ │ │ ├── 445_rel_notes.mdx │ │ │ ├── 4514_rel_notes.mdx │ │ │ ├── 451_rel_notes.mdx │ │ │ ├── 462_rel_notes.mdx │ │ │ └── index.mdx │ │ │ └── supported_platforms.mdx │ ├── postgis │ │ └── 3 │ │ │ ├── 01_release_notes │ │ │ ├── index.mdx │ │ │ ├── rel_notes312.mdx │ │ │ ├── rel_notes314.mdx │ │ │ ├── rel_notes315.mdx │ │ │ ├── rel_notes32.mdx │ │ │ ├── rel_notes321.mdx │ │ │ ├── rel_notes342.mdx │ │ │ └── rel_notes352.mdx │ │ │ ├── 02_creating_extensions.mdx │ │ │ ├── 04_using_postgis.mdx │ │ │ ├── images │ │ │ ├── EDB_logo.png │ │ │ ├── SBP_Installation_Files_Downloaded.png │ │ │ ├── SBP_Selected_Packages.png │ │ │ ├── SBP_welcome.png │ │ │ ├── SB_PostGIS_Selection.png │ │ │ ├── Unisntall2.png │ │ │ ├── advanced_server_installation_details.png │ │ │ ├── edb_logo.svg │ │ │ ├── installattion_complete.png │ │ │ ├── installing_postgis.png │ │ │ ├── language_selection.png │ │ │ ├── pgadmin.png │ │ │ ├── postgis_installation.png │ │ │ ├── postgis_installation_directory.png │ │ │ ├── postgis_pgadmin.png │ │ │ ├── postgis_welcome.png │ │ │ ├── ready_to_install.png │ │ │ ├── selected.png │ │ │ ├── selected_packages.png │ │ │ ├── spatial.png │ │ │ ├── spatial_extensions.png │ │ │ ├── stack.png │ │ │ ├── uninstall1.png │ │ │ ├── uninstall4final.png │ │ │ ├── uninstallfinal.png │ │ │ └── welcome.png │ │ │ ├── index.mdx │ │ │ ├── installing │ │ │ ├── index.mdx │ │ │ ├── linux_arm64 │ │ │ │ ├── index.mdx │ │ │ │ ├── postgis_debian_12.mdx │ │ │ │ └── postgis_rhel_9.mdx │ │ │ ├── linux_ppc64le │ │ │ │ ├── index.mdx │ │ │ │ ├── postgis_rhel_8.mdx │ │ │ │ ├── postgis_rhel_9.mdx │ │ │ │ └── postgis_sles_15.mdx │ │ │ ├── linux_x86_64 │ │ │ │ ├── index.mdx │ │ │ │ ├── postgis_debian_11.mdx │ │ │ │ ├── postgis_debian_12.mdx │ │ │ │ ├── postgis_other_linux_8.mdx │ │ │ │ ├── postgis_other_linux_9.mdx │ │ │ │ ├── postgis_rhel_8.mdx │ │ │ │ ├── postgis_rhel_9.mdx │ │ │ │ ├── postgis_sles_15.mdx │ │ │ │ ├── postgis_ubuntu_22.mdx │ │ │ │ └── postgis_ubuntu_24.mdx │ │ │ ├── uninstalling.mdx │ │ │ ├── upgrading.mdx │ │ │ └── windows.mdx │ │ │ └── supported_platforms.mdx │ ├── postgres_distributed_for_kubernetes │ │ └── 1 │ │ │ ├── architecture.mdx │ │ │ ├── backup.mdx │ │ │ ├── before_you_start.mdx │ │ │ ├── certificates.mdx │ │ │ ├── connectivity.mdx │ │ │ ├── group_cleanup.mdx │ │ │ ├── image_catalog.mdx │ │ │ ├── images │ │ │ ├── always_on_1x3_updated.png │ │ │ ├── apps-in-k8s.png │ │ │ ├── apps-outside-k8s.png │ │ │ ├── k8s-architecture-3-az.png │ │ │ ├── local_join.png │ │ │ ├── openshift │ │ │ │ ├── all-namespaces.png │ │ │ │ ├── find-pgd-openshift.png │ │ │ │ └── operatorhub_1.png │ │ │ ├── pg4k-pgd-basic-architecture.png │ │ │ ├── pg4k-pgd_reference-architecture-diagram_v0.1.jpg │ │ │ ├── pg4k-pgd_reference-architecture-diagram_v0.3.jpg │ │ │ └── remote_join.png │ │ │ ├── index.mdx │ │ │ ├── installation_upgrade.mdx │ │ │ ├── labels_annotations.mdx │ │ │ ├── ldap.mdx │ │ │ ├── logging.mdx │ │ │ ├── monitoring.mdx │ │ │ ├── mutations.mdx │ │ │ ├── node_configuration.mdx │ │ │ ├── node_joins.mdx │ │ │ ├── openshift.mdx │ │ │ ├── operator_conf.mdx │ │ │ ├── pause_resume.mdx │ │ │ ├── pg4k-pgd.v1beta1.mdx │ │ │ ├── private_edb_registries.mdx │ │ │ ├── quickstart.mdx │ │ │ ├── recovery.mdx │ │ │ ├── rel_notes │ │ │ ├── 1_0_0_rel_notes.mdx │ │ │ ├── 1_0_1_rel_notes.mdx │ │ │ ├── 1_1_0_rel_notes.mdx │ │ │ ├── 1_1_1_rel_notes.mdx │ │ │ ├── 1_1_2_rel_notes.mdx │ │ │ ├── 1_1_3_rel_notes.mdx │ │ │ ├── index.mdx │ │ │ └── src │ │ │ │ ├── 1.1.2_rel_notes.yml │ │ │ │ ├── 1.1.3_rel_notes.yml │ │ │ │ └── meta.yml │ │ │ ├── samples.mdx │ │ │ ├── samples │ │ │ ├── flexible_3regions.yaml │ │ │ ├── flexible_3regions_3ns.yaml │ │ │ ├── flexible_3regions_physical_join.yaml │ │ │ ├── flexible_3regions_provisioned_secrets.yaml │ │ │ ├── flexible_cleanup.yaml │ │ │ ├── group_example_catalog.yaml │ │ │ ├── group_example_customized.yaml │ │ │ ├── group_example_with_2schedulers.yaml │ │ │ ├── group_example_with_barman_backup.yaml │ │ │ ├── group_example_with_barman_restore.yaml │ │ │ ├── group_example_with_ldap_bind_search.yaml │ │ │ ├── group_example_with_ldap_simple_bind.yaml │ │ │ ├── group_example_with_managed.yaml │ │ │ ├── group_example_with_monitoring.yaml │ │ │ ├── group_example_with_mutations.yaml │ │ │ ├── group_example_with_physical_join.yaml │ │ │ ├── group_example_with_plugin_backup.yaml │ │ │ ├── group_example_with_plugin_restore.yaml │ │ │ ├── group_example_with_readnode.yaml │ │ │ ├── group_example_with_service_template.yaml │ │ │ ├── group_example_with_tde.yaml │ │ │ ├── group_example_with_vs_backup.yaml │ │ │ ├── group_example_with_vs_pitr.yaml │ │ │ ├── group_example_with_vs_restore.yaml │ │ │ ├── group_example_witness_config.yaml │ │ │ ├── issuer-ecdsa-key.yaml │ │ │ └── issuer-selfsigned.yaml │ │ │ ├── security.mdx │ │ │ ├── ssl_connections.mdx │ │ │ ├── supported_versions.mdx │ │ │ ├── tde.mdx │ │ │ ├── trouble_shooting.mdx │ │ │ ├── use_cases.mdx │ │ │ └── using_pgd.mdx │ ├── postgres_for_kubernetes │ │ └── 1 │ │ │ ├── addons.mdx │ │ │ ├── applications.mdx │ │ │ ├── architecture.mdx │ │ │ ├── backup.mdx │ │ │ ├── backup_barmanobjectstore.mdx │ │ │ ├── backup_recovery.mdx │ │ │ ├── backup_volumesnapshot.mdx │ │ │ ├── before_you_start.mdx │ │ │ ├── benchmarking.mdx │ │ │ ├── bootstrap.mdx │ │ │ ├── certificates.mdx │ │ │ ├── cluster_conf.mdx │ │ │ ├── cncf-projects │ │ │ ├── cilium.mdx │ │ │ ├── external-secrets.mdx │ │ │ └── index.mdx │ │ │ ├── cnp_i.mdx │ │ │ ├── connection_pooling.mdx │ │ │ ├── container_images.mdx │ │ │ ├── controller.mdx │ │ │ ├── css │ │ │ └── override.css │ │ │ ├── database_import.mdx │ │ │ ├── declarative_database_management.mdx │ │ │ ├── declarative_hibernation.mdx │ │ │ ├── declarative_role_management.mdx │ │ │ ├── default-monitoring.yaml │ │ │ ├── evaluation.mdx │ │ │ ├── failover.mdx │ │ │ ├── failure_modes.mdx │ │ │ ├── faq.mdx │ │ │ ├── fencing.mdx │ │ │ ├── image_catalog.mdx │ │ │ ├── images │ │ │ ├── apps-in-k8s.png │ │ │ ├── apps-outside-k8s.png │ │ │ ├── architecture-in-k8s.png │ │ │ ├── architecture-r.png │ │ │ ├── architecture-read-only.png │ │ │ ├── architecture-rw.png │ │ │ ├── grafana-local.png │ │ │ ├── ironbank │ │ │ │ └── pulling-the-image.png │ │ │ ├── k8s-architecture-2-az.png │ │ │ ├── k8s-architecture-3-az.png │ │ │ ├── k8s-architecture-multi.png │ │ │ ├── k8s-pg-architecture.png │ │ │ ├── microservice-import.png │ │ │ ├── monolith-import.png │ │ │ ├── multi-cluster.png │ │ │ ├── network-storage-architecture.png │ │ │ ├── openshift │ │ │ │ ├── alerts-openshift.png │ │ │ │ ├── oc_installation_screenshot_1.png │ │ │ │ ├── oc_installation_screenshot_2.png │ │ │ │ ├── openshift-operatorgroup-error.png │ │ │ │ ├── openshift-rbac.png │ │ │ │ ├── openshift-webconsole-allnamespaces.png │ │ │ │ ├── openshift-webconsole-multinamespace.png │ │ │ │ ├── openshift-webconsole-singlenamespace-list.png │ │ │ │ ├── openshift-webconsole-singlenamespace.png │ │ │ │ ├── operatorhub_1.png │ │ │ │ ├── operatorhub_2.png │ │ │ │ └── prometheus-queries.png │ │ │ ├── operator-capability-level.png │ │ │ ├── pgadmin4.png │ │ │ ├── pgbouncer-architecture-rw.png │ │ │ ├── pgbouncer-pooler-image.png │ │ │ ├── pgbouncer-pooler-template.png │ │ │ ├── prometheus-local.png │ │ │ ├── public-cloud-architecture-storage-replication.png │ │ │ ├── public-cloud-architecture.png │ │ │ ├── shared-nothing-architecture.png │ │ │ └── write_bw.1-2Draw.png │ │ │ ├── imagevolume_extensions.mdx │ │ │ ├── index.mdx │ │ │ ├── installation_upgrade.mdx │ │ │ ├── instance_manager.mdx │ │ │ ├── iron-bank.mdx │ │ │ ├── kubectl-plugin.mdx │ │ │ ├── kubernetes_upgrade.mdx │ │ │ ├── labels_annotations.mdx │ │ │ ├── license_keys.mdx │ │ │ ├── logging.mdx │ │ │ ├── logical_replication.mdx │ │ │ ├── migrating_edb_registries.mdx │ │ │ ├── monitoring.mdx │ │ │ ├── networking.mdx │ │ │ ├── object_stores.mdx │ │ │ ├── openshift.mdx │ │ │ ├── operator_capability_levels.mdx │ │ │ ├── operator_conf.mdx │ │ │ ├── pg4k.v1 │ │ │ ├── index.mdx │ │ │ ├── v0.6.0.mdx │ │ │ ├── v0.7.0.mdx │ │ │ ├── v0.8.0.mdx │ │ │ ├── v1.0.0.mdx │ │ │ ├── v1.1.0.mdx │ │ │ ├── v1.10.0.mdx │ │ │ ├── v1.11.0.mdx │ │ │ ├── v1.12.0.mdx │ │ │ ├── v1.13.0.mdx │ │ │ ├── v1.14.0.mdx │ │ │ ├── v1.15.0.mdx │ │ │ ├── v1.15.1.mdx │ │ │ ├── v1.15.2.mdx │ │ │ ├── v1.15.3.mdx │ │ │ ├── v1.15.4.mdx │ │ │ ├── v1.15.5.mdx │ │ │ ├── v1.16.0.mdx │ │ │ ├── v1.16.1.mdx │ │ │ ├── v1.16.2.mdx │ │ │ ├── v1.16.3.mdx │ │ │ ├── v1.16.4.mdx │ │ │ ├── v1.16.5.mdx │ │ │ ├── v1.17.0.mdx │ │ │ ├── v1.17.1.mdx │ │ │ ├── v1.17.2.mdx │ │ │ ├── v1.17.3.mdx │ │ │ ├── v1.17.4.mdx │ │ │ ├── v1.17.5.mdx │ │ │ ├── v1.18.0.mdx │ │ │ ├── v1.18.1.mdx │ │ │ ├── v1.18.10.mdx │ │ │ ├── v1.18.11.mdx │ │ │ ├── v1.18.12.mdx │ │ │ ├── v1.18.13.mdx │ │ │ ├── v1.18.2.mdx │ │ │ ├── v1.18.3.mdx │ │ │ ├── v1.18.4.mdx │ │ │ ├── v1.18.5.mdx │ │ │ ├── v1.18.6.mdx │ │ │ ├── v1.18.7.mdx │ │ │ ├── v1.18.8.mdx │ │ │ ├── v1.18.9.mdx │ │ │ ├── v1.19.0.mdx │ │ │ ├── v1.19.1.mdx │ │ │ ├── v1.19.2.mdx │ │ │ ├── v1.19.3.mdx │ │ │ ├── v1.19.4.mdx │ │ │ ├── v1.19.5.mdx │ │ │ ├── v1.19.6.mdx │ │ │ ├── v1.2.0.mdx │ │ │ ├── v1.2.1.mdx │ │ │ ├── v1.20.0.mdx │ │ │ ├── v1.20.1.mdx │ │ │ ├── v1.20.2.mdx │ │ │ ├── v1.20.3.mdx │ │ │ ├── v1.20.4.mdx │ │ │ ├── v1.20.5.mdx │ │ │ ├── v1.20.6.mdx │ │ │ ├── v1.21.0.mdx │ │ │ ├── v1.21.1.mdx │ │ │ ├── v1.21.2.mdx │ │ │ ├── v1.21.3.mdx │ │ │ ├── v1.21.4.mdx │ │ │ ├── v1.21.5.mdx │ │ │ ├── v1.21.6.mdx │ │ │ ├── v1.22.0.mdx │ │ │ ├── v1.22.1.mdx │ │ │ ├── v1.22.2.mdx │ │ │ ├── v1.22.3.mdx │ │ │ ├── v1.22.4.mdx │ │ │ ├── v1.22.5.mdx │ │ │ ├── v1.22.6.mdx │ │ │ ├── v1.22.7.mdx │ │ │ ├── v1.22.8.mdx │ │ │ ├── v1.22.9.mdx │ │ │ ├── v1.23.0.mdx │ │ │ ├── v1.23.1.mdx │ │ │ ├── v1.23.2.mdx │ │ │ ├── v1.23.3.mdx │ │ │ ├── v1.23.4.mdx │ │ │ ├── v1.23.5.mdx │ │ │ ├── v1.23.6.mdx │ │ │ ├── v1.24.0.mdx │ │ │ ├── v1.24.1.mdx │ │ │ ├── v1.24.2.mdx │ │ │ ├── v1.24.3.mdx │ │ │ ├── v1.25.0.mdx │ │ │ ├── v1.25.1.mdx │ │ │ ├── v1.26.0.mdx │ │ │ ├── v1.26.1.mdx │ │ │ ├── v1.27.0.mdx │ │ │ ├── v1.27.1.mdx │ │ │ ├── v1.3.0.mdx │ │ │ ├── v1.4.0.mdx │ │ │ ├── v1.5.0.mdx │ │ │ ├── v1.5.1.mdx │ │ │ ├── v1.6.0.mdx │ │ │ ├── v1.7.0.mdx │ │ │ ├── v1.7.1.mdx │ │ │ ├── v1.8.0.mdx │ │ │ ├── v1.9.0.mdx │ │ │ ├── v1.9.1.mdx │ │ │ └── v1.9.2.mdx │ │ │ ├── postgis.mdx │ │ │ ├── postgres_upgrades.mdx │ │ │ ├── postgresql_conf.mdx │ │ │ ├── preview_version.mdx │ │ │ ├── private_edb_registries.mdx │ │ │ ├── quickstart.mdx │ │ │ ├── recovery.mdx │ │ │ ├── rel_notes │ │ │ ├── 0_0_1_rel_notes.mdx │ │ │ ├── 0_1_0_rel_notes.mdx │ │ │ ├── 0_2_0_rel_notes.mdx │ │ │ ├── 0_3_0_rel_notes.mdx │ │ │ ├── 0_4_0_rel_notes.mdx │ │ │ ├── 0_5_0_rel_notes.mdx │ │ │ ├── 0_6_0_rel_notes.mdx │ │ │ ├── 0_7_0_rel_notes.mdx │ │ │ ├── 0_8_0_rel_notes.mdx │ │ │ ├── 1_0_0_rel_notes.mdx │ │ │ ├── 1_10_0_rel_notes.mdx │ │ │ ├── 1_11_0_rel_notes.mdx │ │ │ ├── 1_12_0_rel_notes.mdx │ │ │ ├── 1_13_0_rel_notes.mdx │ │ │ ├── 1_14_0_rel_notes.mdx │ │ │ ├── 1_15_0_rel_notes.mdx │ │ │ ├── 1_15_1_rel_notes.mdx │ │ │ ├── 1_15_2_rel_notes.mdx │ │ │ ├── 1_15_3_rel_notes.mdx │ │ │ ├── 1_15_4_rel_notes.mdx │ │ │ ├── 1_15_5_rel_notes.mdx │ │ │ ├── 1_16_0_rel_notes.mdx │ │ │ ├── 1_16_1_rel_notes.mdx │ │ │ ├── 1_16_2_rel_notes.mdx │ │ │ ├── 1_16_3_rel_notes.mdx │ │ │ ├── 1_16_4_rel_notes.mdx │ │ │ ├── 1_16_5_rel_notes.mdx │ │ │ ├── 1_17_0_rel_notes.mdx │ │ │ ├── 1_17_1_rel_notes.mdx │ │ │ ├── 1_17_2_rel_notes.mdx │ │ │ ├── 1_17_3_rel_notes.mdx │ │ │ ├── 1_17_4_rel_notes.mdx │ │ │ ├── 1_17_5_rel_notes.mdx │ │ │ ├── 1_18_0_rel_notes.mdx │ │ │ ├── 1_18_10_rel_notes.mdx │ │ │ ├── 1_18_11_rel_notes.mdx │ │ │ ├── 1_18_12_rel_notes.mdx │ │ │ ├── 1_18_13_rel_notes.mdx │ │ │ ├── 1_18_1_rel_notes.mdx │ │ │ ├── 1_18_2_rel_notes.mdx │ │ │ ├── 1_18_3_rel_notes.mdx │ │ │ ├── 1_18_4_rel_notes.mdx │ │ │ ├── 1_18_5_rel_notes.mdx │ │ │ ├── 1_18_6_rel_notes.mdx │ │ │ ├── 1_18_7_rel_notes.mdx │ │ │ ├── 1_18_8_rel_notes.mdx │ │ │ ├── 1_18_9_rel_notes.mdx │ │ │ ├── 1_19_0_rel_notes.mdx │ │ │ ├── 1_19_1_rel_notes.mdx │ │ │ ├── 1_19_2_rel_notes.mdx │ │ │ ├── 1_19_3_rel_notes.mdx │ │ │ ├── 1_19_4_rel_notes.mdx │ │ │ ├── 1_19_5_rel_notes.mdx │ │ │ ├── 1_19_6_rel_notes.mdx │ │ │ ├── 1_1_0_rel_notes.mdx │ │ │ ├── 1_20_0_rel_notes.mdx │ │ │ ├── 1_20_1_rel_notes.mdx │ │ │ ├── 1_20_2_rel_notes.mdx │ │ │ ├── 1_20_3_rel_notes.mdx │ │ │ ├── 1_20_4_rel_notes.mdx │ │ │ ├── 1_20_5_rel_notes.mdx │ │ │ ├── 1_20_6_rel_notes.mdx │ │ │ ├── 1_21_0_rel_notes.mdx │ │ │ ├── 1_21_1_rel_notes.mdx │ │ │ ├── 1_21_2_rel_notes.mdx │ │ │ ├── 1_21_3_rel_notes.mdx │ │ │ ├── 1_21_4_rel_notes.mdx │ │ │ ├── 1_21_5_rel_notes.mdx │ │ │ ├── 1_21_6_rel_notes.mdx │ │ │ ├── 1_22_0_rel_notes.mdx │ │ │ ├── 1_22_10_rel_notes.mdx │ │ │ ├── 1_22_11_rel_notes.mdx │ │ │ ├── 1_22_1_rel_notes.mdx │ │ │ ├── 1_22_2_rel_notes.mdx │ │ │ ├── 1_22_3_rel_notes.mdx │ │ │ ├── 1_22_4_rel_notes.mdx │ │ │ ├── 1_22_5_rel_notes.mdx │ │ │ ├── 1_22_6_rel_notes.mdx │ │ │ ├── 1_22_7_rel_notes.mdx │ │ │ ├── 1_22_8_rel_notes.mdx │ │ │ ├── 1_22_9_rel_notes.mdx │ │ │ ├── 1_23_0_rel_notes.mdx │ │ │ ├── 1_23_1_rel_notes.mdx │ │ │ ├── 1_23_2_rel_notes.mdx │ │ │ ├── 1_23_3_rel_notes.mdx │ │ │ ├── 1_23_4_rel_notes.mdx │ │ │ ├── 1_23_5_rel_notes.mdx │ │ │ ├── 1_23_6_rel_notes.mdx │ │ │ ├── 1_24_0_rel_notes.mdx │ │ │ ├── 1_24_1_rel_notes.mdx │ │ │ ├── 1_24_2_rel_notes.mdx │ │ │ ├── 1_24_3_rel_notes.mdx │ │ │ ├── 1_24_4_rel_notes.mdx │ │ │ ├── 1_25_0_rel_notes.mdx │ │ │ ├── 1_25_1_rel_notes.mdx │ │ │ ├── 1_25_2_rel_notes.mdx │ │ │ ├── 1_25_3_rel_notes.mdx │ │ │ ├── 1_25_4_rel_notes.mdx │ │ │ ├── 1_26_0_rel_notes.mdx │ │ │ ├── 1_26_1_rel_notes.mdx │ │ │ ├── 1_26_2_rel_notes.mdx │ │ │ ├── 1_27_0_rel_notes.mdx │ │ │ ├── 1_27_1_rel_notes.mdx │ │ │ ├── 1_2_0_rel_notes.mdx │ │ │ ├── 1_2_1_rel_notes.mdx │ │ │ ├── 1_3_0_rel_notes.mdx │ │ │ ├── 1_4_0_rel_notes.mdx │ │ │ ├── 1_5_0_rel_notes.mdx │ │ │ ├── 1_5_1_rel_notes.mdx │ │ │ ├── 1_6_0_rel_notes.mdx │ │ │ ├── 1_7_0_rel_notes.mdx │ │ │ ├── 1_7_1_rel_notes.mdx │ │ │ ├── 1_8_0_rel_notes.mdx │ │ │ ├── 1_9_0_rel_notes.mdx │ │ │ ├── 1_9_1_rel_notes.mdx │ │ │ ├── 1_9_2_rel_notes.mdx │ │ │ ├── index.mdx │ │ │ └── src │ │ │ │ ├── 1.22.10_rel_notes.yml │ │ │ │ ├── 1.22.11_rel_notes.yml │ │ │ │ ├── 1.24.4_rel_notes.yml │ │ │ │ ├── 1.25.2_rel_notes.yml │ │ │ │ ├── 1.25.3_rel_notes.yml │ │ │ │ ├── 1.25.4_rel_notes.yml │ │ │ │ ├── 1.26.0_rel_notes.yml │ │ │ │ ├── 1.26.1_rel_notes.yml │ │ │ │ ├── 1.26.2_rel_notes.yml │ │ │ │ ├── 1.27.0_rel_notes.yml │ │ │ │ ├── 1.27.1_rel_notes.yml │ │ │ │ └── meta.yml │ │ │ ├── replica_cluster.mdx │ │ │ ├── replication.mdx │ │ │ ├── resource_management.mdx │ │ │ ├── rolling_update.mdx │ │ │ ├── samples.mdx │ │ │ ├── samples │ │ │ ├── backup-example.yaml │ │ │ ├── backup-with-volume-snapshot.yaml │ │ │ ├── cluster-additional-volumes.yaml │ │ │ ├── cluster-advanced-initdb.yaml │ │ │ ├── cluster-backup-aws-inherit.yaml │ │ │ ├── cluster-backup-azure-inherit.yaml │ │ │ ├── cluster-backup-retention-30d.yaml │ │ │ ├── cluster-clone-basicauth.yaml │ │ │ ├── cluster-clone-tls.yaml │ │ │ ├── cluster-example-bis-restore-cr.yaml │ │ │ ├── cluster-example-bis-restore.yaml │ │ │ ├── cluster-example-bis.yaml │ │ │ ├── cluster-example-catalog.yaml │ │ │ ├── cluster-example-cert-manager.yaml │ │ │ ├── cluster-example-custom.yaml │ │ │ ├── cluster-example-epas.yaml │ │ │ ├── cluster-example-external-backup-adapter-cluster.yaml │ │ │ ├── cluster-example-external-backup-adapter.yaml │ │ │ ├── cluster-example-full.yaml │ │ │ ├── cluster-example-initdb-icu.yaml │ │ │ ├── cluster-example-initdb-sql-refs.yaml │ │ │ ├── cluster-example-initdb.yaml │ │ │ ├── cluster-example-logical-destination.yaml │ │ │ ├── cluster-example-logical-source.yaml │ │ │ ├── cluster-example-managed-services.yaml │ │ │ ├── cluster-example-monitoring.yaml │ │ │ ├── cluster-example-pg-hba.yaml │ │ │ ├── cluster-example-pge.yaml │ │ │ ├── cluster-example-projected-volume.yaml │ │ │ ├── cluster-example-replica-from-backup-simple.yaml │ │ │ ├── cluster-example-replica-from-volume-snapshot.yaml │ │ │ ├── cluster-example-replica-streaming.yaml │ │ │ ├── cluster-example-secret.yaml │ │ │ ├── cluster-example-sync-az.yaml │ │ │ ├── cluster-example-syncreplicas-explicit.yaml │ │ │ ├── cluster-example-syncreplicas-legacy.yaml │ │ │ ├── cluster-example-syncreplicas-quorum.yaml │ │ │ ├── cluster-example-tde.yaml │ │ │ ├── cluster-example-trigger-backup.yaml │ │ │ ├── cluster-example-wal-storage.yaml │ │ │ ├── cluster-example-with-backup-scaleway.yaml │ │ │ ├── cluster-example-with-backup.yaml │ │ │ ├── cluster-example-with-probes.yaml │ │ │ ├── cluster-example-with-roles.yaml │ │ │ ├── cluster-example-with-tablespaces-backup.yaml │ │ │ ├── cluster-example-with-tablespaces.yaml │ │ │ ├── cluster-example-with-volume-snapshot.yaml │ │ │ ├── cluster-example.yaml │ │ │ ├── cluster-expose-service.yaml │ │ │ ├── cluster-import-schema-only-basicauth.yaml │ │ │ ├── cluster-import-snapshot-basicauth.yaml │ │ │ ├── cluster-import-snapshot-tls.yaml │ │ │ ├── cluster-pvc-template.yaml │ │ │ ├── cluster-replica-async.yaml │ │ │ ├── cluster-replica-basicauth.yaml │ │ │ ├── cluster-replica-from-backup-other-namespace.yaml │ │ │ ├── cluster-replica-restore.yaml │ │ │ ├── cluster-replica-tls.yaml │ │ │ ├── cluster-restore-external-cluster.yaml │ │ │ ├── cluster-restore-pitr.yaml │ │ │ ├── cluster-restore-snapshot-full.yaml │ │ │ ├── cluster-restore-snapshot-pitr.yaml │ │ │ ├── cluster-restore-snapshot.yaml │ │ │ ├── cluster-restore-with-tablespaces.yaml │ │ │ ├── cluster-restore.yaml │ │ │ ├── cluster-storage-class-with-backup.yaml │ │ │ ├── cluster-storage-class.yaml │ │ │ ├── database-example-fail.yaml │ │ │ ├── database-example-icu.yaml │ │ │ ├── database-example.yaml │ │ │ ├── dc │ │ │ │ ├── cluster-dc-a.yaml │ │ │ │ ├── cluster-dc-b.yaml │ │ │ │ └── cluster-test.yaml │ │ │ ├── k9s │ │ │ │ └── plugins.yml │ │ │ ├── monitoring │ │ │ │ ├── alerts.yaml │ │ │ │ ├── kube-stack-config.yaml │ │ │ │ ├── podmonitor.yaml │ │ │ │ └── prometheusrule.yaml │ │ │ ├── networkpolicy-example.yaml │ │ │ ├── pooler-basic-auth.yaml │ │ │ ├── pooler-deployment-strategy.yaml │ │ │ ├── pooler-external.yaml │ │ │ ├── pooler-tls.yaml │ │ │ ├── postgis-example.yaml │ │ │ ├── publication-example-objects.yaml │ │ │ ├── publication-example.yaml │ │ │ ├── scheduled-backup-example.yaml │ │ │ ├── subscription-example.yaml │ │ │ └── subscription.yaml │ │ │ ├── scheduling.mdx │ │ │ ├── security.mdx │ │ │ ├── service_management.mdx │ │ │ ├── ssl_connections.mdx │ │ │ ├── storage.mdx │ │ │ ├── tablespaces.mdx │ │ │ ├── tde.mdx │ │ │ ├── troubleshooting.mdx │ │ │ ├── use_cases.mdx │ │ │ └── wal_archiving.mdx │ ├── pwr │ │ └── 1 │ │ │ ├── configuring.mdx │ │ │ ├── index.mdx │ │ │ ├── installing.mdx │ │ │ ├── rel_notes │ │ │ ├── 100_rel_notes.mdx │ │ │ ├── 110_rel_notes.mdx │ │ │ └── index.mdx │ │ │ └── using.mdx │ ├── repmgr │ │ └── 5.3.3 │ │ │ └── index.mdx │ ├── slony │ │ └── 2.2.10 │ │ │ ├── 01_installation │ │ │ ├── 01_installing_slony_on_a_linux_or_centos_host.mdx │ │ │ ├── 02_installing_slony_on_a_debian_or_ubuntu_host.mdx │ │ │ ├── 03_installing_slony_on_a_windows_host.mdx │ │ │ └── index.mdx │ │ │ ├── 02_configuration_and_usage.mdx │ │ │ ├── 03_upgrade.mdx │ │ │ ├── 04_uninstallation.mdx │ │ │ ├── images │ │ │ ├── EDB_logo.png │ │ │ ├── Slony_selection_window1.png │ │ │ ├── edb.png │ │ │ ├── edb_logo.svg │ │ │ ├── sbp_installation_complete.png │ │ │ ├── sbp_start_installation.png │ │ │ ├── slony_installation_directory.png │ │ │ ├── slony_language_selection4.png │ │ │ ├── slony_ready_to_install.png │ │ │ ├── slony_selected_packages3.png │ │ │ ├── slony_setup5.png │ │ │ ├── slony_setup_complete9.png │ │ │ ├── slony_uninstall.png │ │ │ ├── slony_uninstall2.png │ │ │ └── slony_welcome1.png │ │ │ └── index.mdx │ ├── tde │ │ └── 15 │ │ │ ├── about │ │ │ ├── how.mdx │ │ │ ├── index.mdx │ │ │ ├── what.mdx │ │ │ └── why.mdx │ │ │ ├── affected_commands.mdx │ │ │ ├── enabling │ │ │ ├── enabling_key_wrapper.mdx │ │ │ ├── enabling_tde.mdx │ │ │ ├── enabling_tde_epas.mdx │ │ │ ├── index.mdx │ │ │ ├── postgres_to_extended.mdx │ │ │ └── verifying_tde.mdx │ │ │ ├── encrypted_files │ │ │ ├── backup_files.mdx │ │ │ ├── index.mdx │ │ │ └── wal_files.mdx │ │ │ ├── images │ │ │ └── tde1.png │ │ │ ├── index.mdx │ │ │ ├── initdb_tde.mdx │ │ │ ├── initdb_tde_options.mdx │ │ │ ├── limitations.mdx │ │ │ ├── overview.mdx │ │ │ ├── pg_upgrade_arguments.mdx │ │ │ ├── secure_key │ │ │ ├── disabling_key.mdx │ │ │ ├── index.mdx │ │ │ ├── key_rotation.mdx │ │ │ ├── key_store │ │ │ │ ├── aws │ │ │ │ │ └── index.mdx │ │ │ │ ├── azure │ │ │ │ │ └── index.mdx │ │ │ │ ├── entrust │ │ │ │ │ └── index.mdx │ │ │ │ ├── fortanix │ │ │ │ │ └── index.mdx │ │ │ │ ├── google_cloud │ │ │ │ │ └── index.mdx │ │ │ │ ├── hashicorp │ │ │ │ │ └── index.mdx │ │ │ │ ├── index.mdx │ │ │ │ └── thales │ │ │ │ │ ├── images │ │ │ │ │ ├── 01_CSR_tool.png │ │ │ │ │ ├── 02_CSR_creation.png │ │ │ │ │ ├── 03_CSR_creation_download.png │ │ │ │ │ ├── 04_local_CA.png │ │ │ │ │ ├── 05_local_CA_selected.png │ │ │ │ │ ├── 06_enter_pem_contents.png │ │ │ │ │ ├── 07_download_certificate.png │ │ │ │ │ └── 08_update_user_cert_login.png │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── installing_thales_client │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── linux_x86_64 │ │ │ │ │ │ ├── edb-tde-rest-client_debian_11.mdx │ │ │ │ │ │ ├── edb-tde-rest-client_debian_12.mdx │ │ │ │ │ │ ├── edb-tde-rest-client_other_linux_8.mdx │ │ │ │ │ │ ├── edb-tde-rest-client_other_linux_9.mdx │ │ │ │ │ │ ├── edb-tde-rest-client_rhel_8.mdx │ │ │ │ │ │ ├── edb-tde-rest-client_rhel_9.mdx │ │ │ │ │ │ ├── edb-tde-rest-client_ubuntu_22.mdx │ │ │ │ │ │ ├── edb-tde-rest-client_ubuntu_24.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ └── thales_restapi.mdx │ │ │ └── passphrase.mdx │ │ │ ├── support.mdx │ │ │ └── upgrading.mdx │ └── tpa │ │ └── 23 │ │ ├── INSTALL-repo.mdx │ │ ├── INSTALL.mdx │ │ ├── ansible-and-sudo.mdx │ │ ├── architecture-BDR-Always-ON.mdx │ │ ├── architecture-M1.mdx │ │ ├── architecture-PGD-Always-ON.mdx │ │ ├── architecture-PGD-Lightweight.mdx │ │ ├── architecture-PGD-S.mdx │ │ ├── architecture-PGD-X.mdx │ │ ├── configure-cluster.mdx │ │ ├── configure-instance.mdx │ │ ├── configure-source.mdx │ │ ├── firstclusterdeployment.mdx │ │ ├── images │ │ ├── Cluster1.jpg │ │ ├── bdr-always-on.png │ │ ├── m1.dot │ │ └── m1.png │ │ ├── index.mdx │ │ ├── misc-configure-putty.mdx │ │ ├── misc-troubleshooting.mdx │ │ ├── opensourcetpa.mdx │ │ ├── platform-aws.mdx │ │ ├── platform-bare.mdx │ │ ├── platform-docker.mdx │ │ ├── reference │ │ ├── INSTALL-docker.mdx │ │ ├── air-gapped.mdx │ │ ├── apt_repositories.mdx │ │ ├── artifacts.mdx │ │ ├── barman.mdx │ │ ├── bdr.mdx │ │ ├── beacon-agent.mdx │ │ ├── compliance.mdx │ │ ├── distributions.mdx │ │ ├── edb_repositories.mdx │ │ ├── efm.mdx │ │ ├── etcd.mdx │ │ ├── git-credentials.mdx │ │ ├── haproxy.mdx │ │ ├── harp.mdx │ │ ├── hosts.mdx │ │ ├── index.mdx │ │ ├── initdb.mdx │ │ ├── install_from_source.mdx │ │ ├── local-repo.mdx │ │ ├── locale.mdx │ │ ├── manage_ssh_hostkeys.mdx │ │ ├── packages.mdx │ │ ├── patroni.mdx │ │ ├── pem.mdx │ │ ├── pg-backup-api.mdx │ │ ├── pg_hba.conf.mdx │ │ ├── pg_ident.conf.mdx │ │ ├── pgbouncer.mdx │ │ ├── pgd-cli.mdx │ │ ├── pgd-proxy.mdx │ │ ├── pglogical.mdx │ │ ├── pgpass.mdx │ │ ├── postgres_databases.mdx │ │ ├── postgres_extension_configuration.mdx │ │ ├── postgres_installation_method_pkg.mdx │ │ ├── postgres_installation_method_src.mdx │ │ ├── postgres_tablespaces.mdx │ │ ├── postgres_user.mdx │ │ ├── postgres_users.mdx │ │ ├── postgresql.conf.mdx │ │ ├── python.mdx │ │ ├── reconciling-local-changes.mdx │ │ ├── repmgr.mdx │ │ ├── ssh_key_file.mdx │ │ ├── sysctl_values.mdx │ │ ├── target_environment.mdx │ │ ├── tpaexec-archive-logs.mdx │ │ ├── tpaexec-commands.mdx │ │ ├── tpaexec-deprovision.mdx │ │ ├── tpaexec-download-packages.mdx │ │ ├── tpaexec-info.mdx │ │ ├── tpaexec-reconfigure.mdx │ │ ├── tpaexec-support.mdx │ │ ├── tpaexec-tests.mdx │ │ ├── volumes.mdx │ │ └── yum_repositories.mdx │ │ ├── rel_notes │ │ ├── index.mdx │ │ ├── src │ │ │ ├── meta.yml │ │ │ ├── tpa_23.35.0_rel_notes.yml │ │ │ ├── tpa_23.36.0_rel_notes.yml │ │ │ ├── tpa_23.37.0_rel_notes.yml │ │ │ ├── tpa_23.38.0_rel_notes.yml │ │ │ ├── tpa_23.38.1_rel_notes.yml │ │ │ ├── tpa_23.39.0_rel_notes.yml │ │ │ ├── tpa_23.40.0_rel_notes.yml │ │ │ ├── tpa_23.40.1_rel_notes.yml │ │ │ └── tpa_23.41.0_rel_notes.yml │ │ ├── tpa_23.1-11_rel_notes.mdx │ │ ├── tpa_23.12_rel_notes.mdx │ │ ├── tpa_23.13_rel_notes.mdx │ │ ├── tpa_23.14_rel_notes.mdx │ │ ├── tpa_23.15_rel_notes.mdx │ │ ├── tpa_23.16_rel_notes.mdx │ │ ├── tpa_23.17_rel_notes.mdx │ │ ├── tpa_23.18_rel_notes.mdx │ │ ├── tpa_23.19_rel_notes.mdx │ │ ├── tpa_23.20_rel_notes.mdx │ │ ├── tpa_23.21_rel_notes.mdx │ │ ├── tpa_23.22_rel_notes.mdx │ │ ├── tpa_23.23_rel_notes.mdx │ │ ├── tpa_23.24_rel_notes.mdx │ │ ├── tpa_23.25_rel_notes.mdx │ │ ├── tpa_23.26_rel_notes.mdx │ │ ├── tpa_23.27_rel_notes.mdx │ │ ├── tpa_23.28_rel_notes.mdx │ │ ├── tpa_23.29_rel_notes.mdx │ │ ├── tpa_23.30_rel_notes.mdx │ │ ├── tpa_23.31_rel_notes.mdx │ │ ├── tpa_23.32_rel_notes.mdx │ │ ├── tpa_23.33_rel_notes.mdx │ │ ├── tpa_23.34.1_rel_notes.mdx │ │ ├── tpa_23.34_rel_notes.mdx │ │ ├── tpa_23.35.0_rel_notes.mdx │ │ ├── tpa_23.36.0_rel_notes.mdx │ │ ├── tpa_23.37.0_rel_notes.mdx │ │ ├── tpa_23.38.0_rel_notes.mdx │ │ ├── tpa_23.38.1_rel_notes.mdx │ │ ├── tpa_23.39.0_rel_notes.mdx │ │ ├── tpa_23.40.0_rel_notes.mdx │ │ ├── tpa_23.40.1_rel_notes.mdx │ │ └── tpa_23.41.0_rel_notes.mdx │ │ ├── task-selection.mdx │ │ ├── tower.mdx │ │ ├── tpaexec-configure.mdx │ │ ├── tpaexec-deploy.mdx │ │ ├── tpaexec-hooks.mdx │ │ ├── tpaexec-provision.mdx │ │ ├── tpaexec-rehydrate.mdx │ │ ├── tpaexec-server-pool.mdx │ │ ├── tpaexec-switchover.mdx │ │ ├── tpaexec-test.mdx │ │ └── tpaexec-upgrade.mdx └── scripts │ ├── add_frontmatter.py │ ├── fix_image_links.py │ ├── internal_links.py │ ├── post_pandoc_script.py │ ├── pre_pandoc_script.py │ ├── sort_toc_nested.py │ └── substitutions.py ├── pytest.ini ├── requirements-ci.in ├── requirements-ci.txt ├── requirements.in ├── requirements.txt ├── scripts ├── createIconNames.js ├── createIconTypes.js ├── fileProcessor │ ├── .prettierignore │ ├── .prettierrc.json │ ├── README.md │ ├── main.mjs │ ├── package-lock.json │ ├── package.json │ └── processors │ │ ├── cnp │ │ ├── add-frontmatters.mjs │ │ ├── add-quickstart-content.mjs │ │ ├── cleanup-html.mjs │ │ ├── flatten-appendices.mjs │ │ ├── rename-to-mdx.mjs │ │ ├── replace-github-urls.mjs │ │ ├── rewrite-mdextra-anchors.mjs │ │ ├── update-links.mjs │ │ └── update-yaml-links.mjs │ │ ├── example.mjs │ │ └── pg4k-pgd │ │ ├── replace-beta-urls.mjs │ │ └── update-links.mjs ├── husky-install.sh ├── legacy_redirects │ ├── add_legacy_redirects.py │ ├── equivalent_versions.json │ ├── legacy_docs_scrape.json │ ├── legacy_redirects_metadata.json │ └── scrapy_spider │ │ └── legacy │ │ ├── legacy │ │ ├── __init__.py │ │ ├── items.py │ │ ├── middlewares.py │ │ ├── pipelines.py │ │ ├── settings.py │ │ └── spiders │ │ │ ├── __init__.py │ │ │ └── legacy_docs.py │ │ └── scrapy.cfg ├── normalize │ ├── lib │ │ ├── docs1-link-rewriter.js │ │ ├── mast-embedded-hast.js │ │ ├── no-escape-image-alt.js │ │ ├── note-rewriter.js │ │ ├── partial-toc-rewriter.js │ │ ├── relativelinks.js │ │ ├── strip-image-alt.js │ │ └── table-formatter.js │ ├── markdown.js │ ├── slashEscapedLessThan.js │ ├── tables.js │ └── titleRefs.js ├── npm-install.sh ├── npm-preinstall.sh ├── pdf │ ├── Signika-Light-modified.ttf │ ├── Signika-Regular.ttf │ ├── SourceCodePro-Regular.ttf │ ├── __init__.py │ ├── __tests__ │ │ ├── __init__.py │ │ ├── combine_mdx │ │ │ ├── __init__.py │ │ │ ├── expected.mdx │ │ │ ├── src │ │ │ │ ├── 1.mdx │ │ │ │ └── 2.mdx │ │ │ └── test_generate_pdf_combin_mdx.py │ │ └── list_files │ │ │ ├── __init__.py │ │ │ ├── test_cases │ │ │ ├── empty_root_index_1 │ │ │ │ ├── 1 │ │ │ │ │ ├── 1.1.mdx │ │ │ │ │ ├── 1.2 │ │ │ │ │ │ ├── 1.2.1.mdx │ │ │ │ │ │ └── index.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 2 │ │ │ │ │ ├── 2.1.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 3.mdx │ │ │ │ ├── expected.py │ │ │ │ └── index.mdx │ │ │ ├── empty_root_index_2 │ │ │ │ ├── 2 │ │ │ │ │ ├── 2.1.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 1.mdx │ │ │ │ ├── 3.mdx │ │ │ │ ├── expected.py │ │ │ │ └── index.mdx │ │ │ ├── empty_sub_index │ │ │ │ ├── 1 │ │ │ │ │ ├── 0.mdx │ │ │ │ │ ├── 1.1.mdx │ │ │ │ │ ├── 1.2.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 3 │ │ │ │ │ ├── 3.1.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 2.mdx │ │ │ │ ├── expected.py │ │ │ │ └── index.mdx │ │ │ ├── frontmatter_only │ │ │ │ ├── expected.py │ │ │ │ └── index.mdx │ │ │ ├── index_and_peers_1 │ │ │ │ ├── 2 │ │ │ │ │ ├── 2.1.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 1.mdx │ │ │ │ ├── 3.mdx │ │ │ │ ├── expected.py │ │ │ │ └── index.mdx │ │ │ ├── index_and_peers_2 │ │ │ │ ├── 1 │ │ │ │ │ ├── 1.1.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 3 │ │ │ │ │ ├── 3.1.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 2.mdx │ │ │ │ ├── expected.py │ │ │ │ └── index.mdx │ │ │ ├── index_only │ │ │ │ ├── expected.py │ │ │ │ └── index.mdx │ │ │ ├── navigation_frontmatter │ │ │ │ ├── 1.mdx │ │ │ │ ├── 2.1 │ │ │ │ │ ├── 2.1.mdx │ │ │ │ │ └── index.mdx │ │ │ │ ├── 2.mdx │ │ │ │ ├── expected.py │ │ │ │ └── index.mdx │ │ │ └── stubcards │ │ │ │ ├── expected.py │ │ │ │ └── index.mdx │ │ │ └── test_generate_pdf_list_files.py │ ├── build-all.sh │ ├── cleanup_combined_markdown.mjs │ ├── compare_pdfs.py │ ├── cover.html │ ├── generate_pdf.py │ ├── lib │ │ └── mdast-embedded-hast.mjs │ ├── package-lock.json │ ├── package.json │ ├── parallel │ ├── pdf-script.html │ ├── pdf-styles.css │ └── toc-style.xsl ├── release_data.sh └── source │ ├── .gitignore │ ├── bdr.js │ ├── config_sources.py │ ├── dispatch_product.py │ ├── files-to-ignore.mjs │ ├── git-restore-mtime.py │ ├── livecompare.js │ ├── merge-indexes.mjs │ ├── package-lock.json │ ├── package.json │ ├── pge.js │ ├── pglogical.js │ ├── pglogical2.js │ ├── process-cnp-docs.sh │ ├── process-pgd4k-docs.sh │ ├── process-tpa-docs-auto.sh │ ├── process-tpa-docs.sh │ ├── test │ ├── README.md │ ├── sync-bdr.json │ ├── sync-harp.json │ ├── sync-lc.json │ ├── sync-pglogical.json │ └── test_all_syncs.ksh │ ├── tpa.js │ └── update-yaml.mjs ├── src ├── components │ ├── advanced-search │ │ ├── filtering.js │ │ ├── form.js │ │ ├── hitComps.js │ │ ├── index.js │ │ ├── queryParams.js │ │ └── results.js │ ├── archive.js │ ├── authenticated-content-placeholder.js │ ├── back-button.js │ ├── card-decks.js │ ├── code-block.js │ ├── dark-mode-toggle.js │ ├── details.js │ ├── dev-frontmatter.js │ ├── dev-only.js │ ├── edit-link.js │ ├── feedback-dropdown.js │ ├── feedback-link.js │ ├── footer.js │ ├── icon │ │ ├── iconList.js │ │ ├── iconNames.js │ │ └── index.js │ ├── index-links.js │ ├── index-sub-nav.js │ ├── index.js │ ├── katacoda-page-embed.js │ ├── katacoda-page-link.js │ ├── katacoda-panel.js │ ├── layout-context.js │ ├── layout.js │ ├── left-nav.js │ ├── link.js │ ├── logo.js │ ├── main-content.js │ ├── pdf-download.js │ ├── prev-next.js │ ├── product-context.js │ ├── product-name.js │ ├── product-version.js │ ├── purl-anchor.js │ ├── search-navigation-links.js │ ├── search-navigation.js │ ├── search │ │ ├── formComps.js │ │ ├── hitComps.js │ │ └── index.js │ ├── side-navigation.js │ ├── stub-cards.js │ ├── tab-container.js │ ├── table-of-contents.js │ ├── tiles.js │ ├── timed-banner.js │ ├── top-bar.js │ ├── tree-node.js │ └── version-dropdown.js ├── constants │ ├── algolia-indexing.js │ ├── expression-replacement.js │ ├── gatsby-utils.js │ ├── product-stubs.js │ ├── products.js │ ├── updates.js │ └── utils.js ├── hooks │ ├── use-path-prefix.js │ └── use-sitemetadata.js ├── html.js ├── images │ ├── cli@2x.png │ └── screen-demo.gif ├── pages │ ├── 404.js │ ├── access-denied.js │ ├── build-info.js │ ├── index.js │ └── search.js ├── plugins │ ├── code-in-tables.js │ ├── preserve-image-style │ │ ├── index.js │ │ └── package.json │ └── replacement-expression.js ├── styles │ ├── _admonitions.scss │ ├── _dark.scss │ ├── _docs.scss │ ├── _fonts.scss │ ├── _helpers.scss │ ├── _overrides.scss │ ├── _search.scss │ ├── _theme.scss │ ├── fonts │ │ ├── Industry │ │ │ ├── Industry-Bold.woff │ │ │ └── Industry-Bold.woff2 │ │ └── Supreme │ │ │ ├── Supreme-Variable.ttf │ │ │ ├── Supreme-Variable.woff │ │ │ ├── Supreme-Variable.woff2 │ │ │ ├── Supreme-VariableItalic.ttf │ │ │ ├── Supreme-VariableItalic.woff │ │ │ └── Supreme-VariableItalic.woff2 │ └── index.scss └── templates │ ├── doc.js │ ├── katacoda-page.js │ └── learn-doc.js ├── static ├── _redirects ├── icons │ ├── edb-docs-logo-disc-dark.svg │ ├── edb-logo-disc-dark.svg │ └── edb_landscape_color_grey.svg └── images │ ├── favicon-128.png │ ├── favicon-152.png │ ├── favicon-16.png │ ├── favicon-180.png │ ├── favicon-192.png │ ├── favicon-196.png │ ├── favicon-32.png │ ├── favicon.png │ └── social.jpg └── tools ├── automation ├── actions │ ├── jira-sync │ │ ├── action.yml │ │ ├── jira.js │ │ ├── package-lock.json │ │ └── package.json │ └── link-check │ │ ├── action.yml │ │ ├── index.js │ │ ├── lib │ │ └── mdast-embedded-hast.mjs │ │ ├── package-lock.json │ │ └── package.json └── generators │ ├── advisoryindex │ ├── advisoryindex.js │ ├── package-lock.json │ └── package.json │ ├── refbuilder │ ├── package-lock.json │ ├── package.json │ └── refbuilder.js │ ├── relgen │ ├── meta-schema.json │ ├── package-lock.json │ ├── package.json │ ├── relgen.js │ ├── relnote-schema.json │ ├── schema-readme.md │ └── test │ │ ├── index.mdx │ │ ├── pgd_5.6.0_rel_notes.mdx │ │ ├── pgd_5.6.1_rel_notes.mdx │ │ └── src │ │ ├── meta.yml │ │ ├── relnote_5.6.0.yml │ │ └── relnote_5.6.1.yml │ └── relnoted │ ├── package-lock.json │ ├── package.json │ ├── relnoted.js │ ├── relnotetester-nohighlights.yml │ └── relnotetester.yml └── user ├── import ├── bareleasenotes │ ├── barelease.js │ ├── package-lock.json │ └── package.json ├── extensions │ ├── exsp.js │ ├── package-lock.json │ └── package.json └── pem-api │ ├── index.js │ ├── lib │ ├── mdast-embedded-hast.js │ └── remark-content-tabs.cjs │ ├── package-lock.json │ ├── package.json │ ├── patches │ ├── remark-parse+8.0.3.patch │ └── widdershins+4.0.1.patch │ └── widdershins-templates-openapi3 │ ├── README.md │ ├── authentication.def │ ├── authentication_none.def │ ├── callbacks.def │ ├── code_csharp.dot │ ├── code_go.dot │ ├── code_http.dot │ ├── code_java.dot │ ├── code_javascript.dot │ ├── code_jquery.dot │ ├── code_nodejs.dot │ ├── code_php.dot │ ├── code_python.dot │ ├── code_ruby.dot │ ├── code_shell.dot │ ├── debug.def │ ├── discovery.def │ ├── footer.def │ ├── links.def │ ├── main.dot │ ├── operation.dot │ ├── parameters.def │ ├── responses.def │ ├── security.def │ └── translations.dot ├── mergeq ├── .gitignore ├── README.md ├── mergeq.js ├── package-lock.json └── package.json ├── pgerelnotes ├── README.md ├── pge13.sgml ├── pge13wrap.xml ├── pge14.sgml ├── pge14wrap.xml └── transform.xslt └── reorg ├── links ├── README.md ├── lib │ └── mdast-embedded-hast.mjs ├── package-lock.json ├── package.json └── update-links-to-renames.js └── redirects ├── README.md ├── package-lock.json ├── package.json └── renames-to-redirects.js /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/.envrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/product-feedback.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/.github/ISSUE_TEMPLATE/product-feedback.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/propose-new-topic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/.github/ISSUE_TEMPLATE/propose-new-topic.yaml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- 1 | ## What Changed? 2 | 3 | -------------------------------------------------------------------------------- /.github/workflows/build-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/.github/workflows/build-pages.yml -------------------------------------------------------------------------------- /.github/workflows/build-pdfs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/.github/workflows/build-pdfs.yml -------------------------------------------------------------------------------- /.github/workflows/check-links.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/.github/workflows/check-links.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-develop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/.github/workflows/deploy-develop.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-draft.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/.github/workflows/deploy-draft.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/.github/workflows/deploy-main.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-to-netlify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/.github/workflows/deploy-to-netlify.yml -------------------------------------------------------------------------------- /.github/workflows/generate-release-notes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/.github/workflows/generate-release-notes.yml -------------------------------------------------------------------------------- /.github/workflows/sync-and-process-files.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/.github/workflows/sync-and-process-files.yml -------------------------------------------------------------------------------- /.github/workflows/sync-issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/.github/workflows/sync-issues.yml -------------------------------------------------------------------------------- /.github/workflows/tools-events.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/.github/workflows/tools-events.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/_/husky.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/.husky/_/husky.sh -------------------------------------------------------------------------------- /.husky/post-checkout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/.husky/post-checkout -------------------------------------------------------------------------------- /.husky/post-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/.husky/post-commit -------------------------------------------------------------------------------- /.husky/post-merge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/.husky/post-merge -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npx lint-staged 5 | -------------------------------------------------------------------------------- /.husky/pre-push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/.husky/pre-push -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 22 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | *.mdx 2 | .cache/ 3 | public/ 4 | static/_redirects 5 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "trailingComma": "all" 3 | } 4 | -------------------------------------------------------------------------------- /.slugignore: -------------------------------------------------------------------------------- 1 | /product_docs 2 | -------------------------------------------------------------------------------- /.storybook/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/.storybook/main.js -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /Docs 2.0 Process.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/Docs 2.0 Process.docx -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/README.md -------------------------------------------------------------------------------- /README_ADDING_NEW_SOURCES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/README_ADDING_NEW_SOURCES.md -------------------------------------------------------------------------------- /README_DOCKER_VSCODE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/README_DOCKER_VSCODE.md -------------------------------------------------------------------------------- /advocacy_docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/advocacy_docs/.gitignore -------------------------------------------------------------------------------- /advocacy_docs/community/contributing/repo.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/advocacy_docs/community/contributing/repo.mdx -------------------------------------------------------------------------------- /advocacy_docs/community/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/advocacy_docs/community/index.mdx -------------------------------------------------------------------------------- /advocacy_docs/dev-guides/deploy/docker.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/advocacy_docs/dev-guides/deploy/docker.mdx -------------------------------------------------------------------------------- /advocacy_docs/dev-guides/deploy/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/advocacy_docs/dev-guides/deploy/index.mdx -------------------------------------------------------------------------------- /advocacy_docs/dev-guides/deploy/windows.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/advocacy_docs/dev-guides/deploy/windows.mdx -------------------------------------------------------------------------------- /advocacy_docs/dev-guides/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/advocacy_docs/dev-guides/index.mdx -------------------------------------------------------------------------------- /advocacy_docs/dev-guides/working/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/advocacy_docs/dev-guides/working/index.mdx -------------------------------------------------------------------------------- /advocacy_docs/dummy.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/advocacy_docs/dummy.mdx -------------------------------------------------------------------------------- /advocacy_docs/edb-postgres-ai/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/advocacy_docs/edb-postgres-ai/index.mdx -------------------------------------------------------------------------------- /advocacy_docs/migrating/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/advocacy_docs/migrating/index.mdx -------------------------------------------------------------------------------- /advocacy_docs/migrating/oracle/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/advocacy_docs/migrating/oracle/index.mdx -------------------------------------------------------------------------------- /advocacy_docs/partner_docs/HPE/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/advocacy_docs/partner_docs/HPE/index.mdx -------------------------------------------------------------------------------- /advocacy_docs/pg_extensions/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/advocacy_docs/pg_extensions/index.mdx -------------------------------------------------------------------------------- /advocacy_docs/pg_extensions/index.mdx.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/advocacy_docs/pg_extensions/index.mdx.in -------------------------------------------------------------------------------- /advocacy_docs/pg_extensions/otel/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/advocacy_docs/pg_extensions/otel/index.mdx -------------------------------------------------------------------------------- /advocacy_docs/pg_extensions/otel/using.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/advocacy_docs/pg_extensions/otel/using.mdx -------------------------------------------------------------------------------- /advocacy_docs/pg_extensions/pg_cron/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/advocacy_docs/pg_extensions/pg_cron/index.mdx -------------------------------------------------------------------------------- /advocacy_docs/pg_extensions/pg_cron/using.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/advocacy_docs/pg_extensions/pg_cron/using.mdx -------------------------------------------------------------------------------- /advocacy_docs/pg_extensions/pgaudit/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/advocacy_docs/pg_extensions/pgaudit/index.mdx -------------------------------------------------------------------------------- /advocacy_docs/pg_extensions/pgaudit/using.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/advocacy_docs/pg_extensions/pgaudit/using.mdx -------------------------------------------------------------------------------- /advocacy_docs/pg_extensions/pgtt/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/advocacy_docs/pg_extensions/pgtt/index.mdx -------------------------------------------------------------------------------- /advocacy_docs/pg_extensions/pgtt/using.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/advocacy_docs/pg_extensions/pgtt/using.mdx -------------------------------------------------------------------------------- /advocacy_docs/playground/1/01_examples/navigation/a.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: A 3 | --- 4 | 5 | A 6 | -------------------------------------------------------------------------------- /advocacy_docs/playground/1/01_examples/navigation/b.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: B 3 | --- 4 | 5 | B 6 | -------------------------------------------------------------------------------- /advocacy_docs/playground/1/01_examples/navigation/c.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: C 3 | --- 4 | 5 | C 6 | -------------------------------------------------------------------------------- /advocacy_docs/playground/1/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/advocacy_docs/playground/1/index.mdx -------------------------------------------------------------------------------- /advocacy_docs/portal/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/advocacy_docs/portal/index.mdx -------------------------------------------------------------------------------- /advocacy_docs/portal/kubernetes/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/advocacy_docs/portal/kubernetes/index.mdx -------------------------------------------------------------------------------- /advocacy_docs/repos/getting_started/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/advocacy_docs/repos/getting_started/index.mdx -------------------------------------------------------------------------------- /advocacy_docs/repos/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/advocacy_docs/repos/index.mdx -------------------------------------------------------------------------------- /advocacy_docs/repos/migration/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/advocacy_docs/repos/migration/index.mdx -------------------------------------------------------------------------------- /advocacy_docs/repos/reference/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/advocacy_docs/repos/reference/index.mdx -------------------------------------------------------------------------------- /advocacy_docs/security/advisories/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/advocacy_docs/security/advisories/index.mdx -------------------------------------------------------------------------------- /advocacy_docs/security/assessments/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/advocacy_docs/security/assessments/index.mdx -------------------------------------------------------------------------------- /advocacy_docs/security/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/advocacy_docs/security/index.mdx -------------------------------------------------------------------------------- /advocacy_docs/supported-open-source/patroni/.gitignore: -------------------------------------------------------------------------------- 1 | .vagrant/ 2 | -------------------------------------------------------------------------------- /advocacy_docs/tools/agent/agent_ref.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/advocacy_docs/tools/agent/agent_ref.mdx -------------------------------------------------------------------------------- /advocacy_docs/tools/agent/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/advocacy_docs/tools/agent/index.mdx -------------------------------------------------------------------------------- /advocacy_docs/tools/edb_sqlpatch/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/advocacy_docs/tools/edb_sqlpatch/index.mdx -------------------------------------------------------------------------------- /advocacy_docs/tools/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/advocacy_docs/tools/index.mdx -------------------------------------------------------------------------------- /ai-content: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/ai-content -------------------------------------------------------------------------------- /dev-sources.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/dev-sources.sample -------------------------------------------------------------------------------- /docker/docker-compose.build-pdf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/docker/docker-compose.build-pdf.yaml -------------------------------------------------------------------------------- /docker/docker-compose.check-links.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/docker/docker-compose.check-links.yaml -------------------------------------------------------------------------------- /docker/docker-compose.install-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/docker/docker-compose.install-template.yaml -------------------------------------------------------------------------------- /docker/docker-compose.quickstart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/docker/docker-compose.quickstart.yaml -------------------------------------------------------------------------------- /docker/images/Dockerfile.install-template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/docker/images/Dockerfile.install-template -------------------------------------------------------------------------------- /docker/images/Dockerfile.pdf-builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/docker/images/Dockerfile.pdf-builder -------------------------------------------------------------------------------- /docker/images/Dockerfile.quickstart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/docker/images/Dockerfile.quickstart -------------------------------------------------------------------------------- /docs-for-docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/docs-for-docs/README.md -------------------------------------------------------------------------------- /docs-for-docs/agreements/screenshot_policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/docs-for-docs/agreements/screenshot_policy.md -------------------------------------------------------------------------------- /docs-for-docs/how-tos/avoid-breaking-links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/docs-for-docs/how-tos/avoid-breaking-links.md -------------------------------------------------------------------------------- /docs-for-docs/how-tos/markdown-tips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/docs-for-docs/how-tos/markdown-tips.md -------------------------------------------------------------------------------- /docs-for-docs/how-tos/sync-cnp-docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/docs-for-docs/how-tos/sync-cnp-docs.md -------------------------------------------------------------------------------- /docs-for-docs/overviews/search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/docs-for-docs/overviews/search/README.md -------------------------------------------------------------------------------- /env.development.example: -------------------------------------------------------------------------------- 1 | GATSBY_ENVIRONMENT_BRANCH=develop 2 | PORT=8000 3 | -------------------------------------------------------------------------------- /gatsby-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/gatsby-browser.js -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/gatsby-node.js -------------------------------------------------------------------------------- /gatsby-ssr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/gatsby-ssr.js -------------------------------------------------------------------------------- /icons-pkg/dist/color.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/icons-pkg/dist/color.cjs -------------------------------------------------------------------------------- /icons-pkg/dist/color.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/icons-pkg/dist/color.mjs -------------------------------------------------------------------------------- /icons-pkg/dist/edb_logos.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/icons-pkg/dist/edb_logos.cjs -------------------------------------------------------------------------------- /icons-pkg/dist/edb_logos.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/icons-pkg/dist/edb_logos.mjs -------------------------------------------------------------------------------- /icons-pkg/dist/flags.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/icons-pkg/dist/flags.cjs -------------------------------------------------------------------------------- /icons-pkg/dist/flags.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/icons-pkg/dist/flags.mjs -------------------------------------------------------------------------------- /icons-pkg/dist/index.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/icons-pkg/dist/index.cjs -------------------------------------------------------------------------------- /icons-pkg/dist/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/icons-pkg/dist/index.mjs -------------------------------------------------------------------------------- /icons-pkg/dist/logos.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/icons-pkg/dist/logos.cjs -------------------------------------------------------------------------------- /icons-pkg/dist/logos.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/icons-pkg/dist/logos.mjs -------------------------------------------------------------------------------- /icons-pkg/ignore.txt: -------------------------------------------------------------------------------- 1 | IGNORE THIS FILE 2 | -------------------------------------------------------------------------------- /icons-pkg/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/icons-pkg/package.json -------------------------------------------------------------------------------- /install_template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/install_template/.gitignore -------------------------------------------------------------------------------- /install_template/.prettierrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "trailingComma": "all" 3 | } 4 | -------------------------------------------------------------------------------- /install_template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/install_template/README.md -------------------------------------------------------------------------------- /install_template/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/install_template/config.yaml -------------------------------------------------------------------------------- /install_template/deploy.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/install_template/deploy.mjs -------------------------------------------------------------------------------- /install_template/lib/config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/install_template/lib/config.mjs -------------------------------------------------------------------------------- /install_template/main.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/install_template/main.mjs -------------------------------------------------------------------------------- /install_template/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/install_template/package-lock.json -------------------------------------------------------------------------------- /install_template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/install_template/package.json -------------------------------------------------------------------------------- /install_template/renders/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /install_template/templates/platformBase/debian-10.njk: -------------------------------------------------------------------------------- 1 | {% extends "platformBase/debian.njk" %} 2 | 3 | -------------------------------------------------------------------------------- /install_template/templates/platformBase/debian-11.njk: -------------------------------------------------------------------------------- 1 | {% extends "platformBase/debian.njk" %} 2 | 3 | -------------------------------------------------------------------------------- /install_template/templates/platformBase/debian-12.njk: -------------------------------------------------------------------------------- 1 | {% extends "platformBase/debian.njk" %} 2 | 3 | -------------------------------------------------------------------------------- /install_template/templates/platformBase/ubuntu-18.04.njk: -------------------------------------------------------------------------------- 1 | {% extends "platformBase/ubuntu.njk" %} 2 | -------------------------------------------------------------------------------- /install_template/templates/platformBase/ubuntu-20.04.njk: -------------------------------------------------------------------------------- 1 | {% extends "platformBase/ubuntu.njk" %} 2 | -------------------------------------------------------------------------------- /install_template/templates/platformBase/ubuntu-22.04.njk: -------------------------------------------------------------------------------- 1 | {% extends "platformBase/ubuntu.njk" %} 2 | -------------------------------------------------------------------------------- /install_template/templates/platformBase/ubuntu-24.04.njk: -------------------------------------------------------------------------------- 1 | {% extends "platformBase/ubuntu.njk" %} 2 | -------------------------------------------------------------------------------- /install_template/templates/products/edb*plus/debian-12-arm64.njk: -------------------------------------------------------------------------------- 1 | {% extends "products/edb*plus/debian-12.njk" %} 2 | -------------------------------------------------------------------------------- /install_template/templates/products/edb*plus/rhel-8_ppc64le.njk: -------------------------------------------------------------------------------- 1 | {% extends "products/edb*plus/rhel-8-or-ol-8.njk" %} 2 | -------------------------------------------------------------------------------- /install_template/templates/products/edb*plus/rhel-9_ppc64le.njk: -------------------------------------------------------------------------------- 1 | {% extends "products/edb*plus/rhel-9-or-ol-9.njk" %} 2 | -------------------------------------------------------------------------------- /install_template/templates/products/edb-jdbc-connector/debian-12-arm64.njk: -------------------------------------------------------------------------------- 1 | {% extends "products/edb-jdbc-connector/debian-12.njk" %} 2 | -------------------------------------------------------------------------------- /install_template/templates/products/edb-jdbc-connector/rhel-8_ppc64le.njk: -------------------------------------------------------------------------------- 1 | {% extends "products/edb-jdbc-connector/rhel-8-or-ol-8.njk" %} 2 | -------------------------------------------------------------------------------- /install_template/templates/products/edb-jdbc-connector/rhel-9_ppc64le.njk: -------------------------------------------------------------------------------- 1 | {% extends "products/edb-jdbc-connector/rhel-9-or-ol-9.njk" %} 2 | -------------------------------------------------------------------------------- /install_template/templates/products/edb-jdbc-connector/sles.njk: -------------------------------------------------------------------------------- 1 | {% extends "products/edb-jdbc-connector/base.njk" %} 2 | -------------------------------------------------------------------------------- /install_template/templates/products/edb-ocl-connector/debian-12-arm64.njk: -------------------------------------------------------------------------------- 1 | {% extends "products/edb-ocl-connector/debian-12.njk" %} 2 | -------------------------------------------------------------------------------- /install_template/templates/products/edb-ocl-connector/rhel-8_ppc64le.njk: -------------------------------------------------------------------------------- 1 | {% extends "products/edb-ocl-connector/rhel-8-or-ol-8.njk" %} 2 | -------------------------------------------------------------------------------- /install_template/templates/products/edb-ocl-connector/rhel-9_ppc64le.njk: -------------------------------------------------------------------------------- 1 | {% extends "products/edb-ocl-connector/rhel-9-or-ol-9.njk" %} 2 | -------------------------------------------------------------------------------- /install_template/templates/products/edb-odbc-connector/debian-12-arm64.njk: -------------------------------------------------------------------------------- 1 | {% extends "products/edb-odbc-connector/debian-12.njk" %} 2 | -------------------------------------------------------------------------------- /install_template/templates/products/edb-odbc-connector/rhel-8_ppc64le.njk: -------------------------------------------------------------------------------- 1 | {% extends "products/edb-odbc-connector/rhel-8-or-ol-8.njk" %} 2 | -------------------------------------------------------------------------------- /install_template/templates/products/edb-odbc-connector/rhel-9_ppc64le.njk: -------------------------------------------------------------------------------- 1 | {% extends "products/edb-odbc-connector/rhel-9-or-ol-9.njk" %} 2 | -------------------------------------------------------------------------------- /install_template/templates/products/edb-pgbouncer/debian-12-arm64.njk: -------------------------------------------------------------------------------- 1 | {% extends "products/edb-pgbouncer/debian-12.njk" %} 2 | -------------------------------------------------------------------------------- /install_template/templates/products/edb-pgbouncer/rhel-8_ppc64le.njk: -------------------------------------------------------------------------------- 1 | {% extends "products/edb-pgbouncer/rhel-8-or-ol-8.njk" %} 2 | -------------------------------------------------------------------------------- /install_template/templates/products/edb-pgbouncer/rhel-9_ppc64le.njk: -------------------------------------------------------------------------------- 1 | {% extends "products/edb-pgbouncer/rhel-9-or-ol-9.njk" %} 2 | -------------------------------------------------------------------------------- /install_template/templates/products/edb-pgpool-ii/debian-12-arm64.njk: -------------------------------------------------------------------------------- 1 | {% extends "products/edb-pgbouncer/debian-12.njk" %} 2 | -------------------------------------------------------------------------------- /install_template/templates/products/edb-pgpool-ii/debian.njk: -------------------------------------------------------------------------------- 1 | {% extends "products/edb-pgpool-ii/base.njk" %} -------------------------------------------------------------------------------- /install_template/templates/products/edb-pgpool-ii/rhel-8_ppc64le.njk: -------------------------------------------------------------------------------- 1 | {% extends "products/edb-pgpool-ii/rhel-8-or-ol-8.njk" %} 2 | -------------------------------------------------------------------------------- /install_template/templates/products/edb-pgpool-ii/rhel-9_ppc64le.njk: -------------------------------------------------------------------------------- 1 | {% extends "products/edb-pgpool-ii/rhel-9-or-ol-9.njk" %} 2 | -------------------------------------------------------------------------------- /install_template/templates/products/edb-pgpool-ii/ubuntu.njk: -------------------------------------------------------------------------------- 1 | {% extends "products/edb-pgpool-ii/base.njk" %} -------------------------------------------------------------------------------- /install_template/templates/products/edb-transporter/ubuntu.njk: -------------------------------------------------------------------------------- 1 | {% extends "products/edb-transporter/base.njk" %} 2 | -------------------------------------------------------------------------------- /install_template/templates/products/failover-manager/debian-12-arm64.njk: -------------------------------------------------------------------------------- 1 | {% extends "products/failover-manager/debian-12.njk" %} 2 | -------------------------------------------------------------------------------- /install_template/templates/products/failover-manager/rhel-8_ppc64le.njk: -------------------------------------------------------------------------------- 1 | {% extends "products/failover-manager/rhel-8-or-ol-8.njk" %} 2 | -------------------------------------------------------------------------------- /install_template/templates/products/failover-manager/rhel-9_ppc64le.njk: -------------------------------------------------------------------------------- 1 | {% extends "products/failover-manager/rhel-9-or-ol-9.njk" %} 2 | -------------------------------------------------------------------------------- /install_template/templates/products/migration-toolkit/debian-12-arm64.njk: -------------------------------------------------------------------------------- 1 | {% extends "products/migration-toolkit/debian-12.njk" %} 2 | -------------------------------------------------------------------------------- /install_template/templates/products/migration-toolkit/rhel-8_ppc64le.njk: -------------------------------------------------------------------------------- 1 | {% extends "products/migration-toolkit/rhel-8-or-ol-8.njk" %} -------------------------------------------------------------------------------- /install_template/templates/products/migration-toolkit/rhel-9_ppc64le.njk: -------------------------------------------------------------------------------- 1 | {% extends "products/migration-toolkit/rhel-9-or-ol-9.njk" %} -------------------------------------------------------------------------------- /install_template/templates/products/postgis/debian-12-arm64.njk: -------------------------------------------------------------------------------- 1 | {% extends "products/postgis/debian-12.njk" %} 2 | -------------------------------------------------------------------------------- /install_template/templates/products/postgis/rhel-8_ppc64le.njk: -------------------------------------------------------------------------------- 1 | {% extends "products/postgis/rhel-8-or-ol-8.njk" %} 2 | -------------------------------------------------------------------------------- /install_template/templates/products/postgis/rhel-9_ppc64le.njk: -------------------------------------------------------------------------------- 1 | {% extends "products/postgis/rhel-9-or-ol-9.njk" %} 2 | -------------------------------------------------------------------------------- /install_template/templates/products/postgis/sles-15_ppc64le.njk: -------------------------------------------------------------------------------- 1 | {% extends "products/postgis/sles-15.njk" %} 2 | -------------------------------------------------------------------------------- /install_template/templates/products/postgis/ubuntu-24.04.njk: -------------------------------------------------------------------------------- 1 | {% extends "products/postgis/ubuntu-22.04.njk" %} -------------------------------------------------------------------------------- /install_template/templates/products/postgresql/debian-12-arm64.njk: -------------------------------------------------------------------------------- 1 | {% extends "products/postgresql/debian-12.njk" %} 2 | -------------------------------------------------------------------------------- /install_template/templates/products/postgresql/rhel-8_ppc64le.njk: -------------------------------------------------------------------------------- 1 | {% extends "products/postgresql/rhel-8-or-ol-8.njk" %} -------------------------------------------------------------------------------- /install_template/templates/products/postgresql/rhel-9_arm64.njk: -------------------------------------------------------------------------------- 1 | {% extends "products/postgresql/rhel-9-or-ol-9.njk" %} -------------------------------------------------------------------------------- /install_template/templates/products/postgresql/rhel-9_ppc64le.njk: -------------------------------------------------------------------------------- 1 | {% extends "products/postgresql/rhel-9-or-ol-9.njk" %} -------------------------------------------------------------------------------- /install_template/templates/products/replication-manager/centos-7_ppc64le.njk: -------------------------------------------------------------------------------- 1 | {% extends "products/replication-manager/centos-7.njk" %} 2 | 3 | -------------------------------------------------------------------------------- /install_template/templates/products/replication-manager/ubuntu-18.04.njk: -------------------------------------------------------------------------------- 1 | {% extends "products/replication-manager/debian-10.njk" %} 2 | -------------------------------------------------------------------------------- /install_template/templates/products/replication-manager/ubuntu-20.04.njk: -------------------------------------------------------------------------------- 1 | {% extends "products/replication-manager/debian-10.njk" %} 2 | -------------------------------------------------------------------------------- /install_template/templates/products/replication-server/debian-12-arm64.njk: -------------------------------------------------------------------------------- 1 | {% extends "products/replication-server/debian-12.njk" %} 2 | -------------------------------------------------------------------------------- /install_template/templates/products/replication-server/rhel-8_ppc64le.njk: -------------------------------------------------------------------------------- 1 | {% extends "products/replication-server/rhel-8-or-ol-8.njk" %} 2 | -------------------------------------------------------------------------------- /install_template/templates/products/replication-server/rhel-9_ppc64le.njk: -------------------------------------------------------------------------------- 1 | {% extends "products/replication-server/rhel-9-or-ol-9.njk" %} 2 | -------------------------------------------------------------------------------- /install_template/templates/products/slony-replication/centos-7_ppc64le.njk: -------------------------------------------------------------------------------- 1 | {% extends "products/slony-replication/centos-7.njk" %} 2 | 3 | -------------------------------------------------------------------------------- /install_template/templates/products/slony-replication/ubuntu-18.04.njk: -------------------------------------------------------------------------------- 1 | {% extends "products/slony-replication/debian-10.njk" %} 2 | -------------------------------------------------------------------------------- /install_template/templates/products/slony-replication/ubuntu-20.04.njk: -------------------------------------------------------------------------------- 1 | {% extends "products/slony-replication/debian-10.njk" %} 2 | -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/package.json -------------------------------------------------------------------------------- /patches/@turist+fetch+7.2.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/patches/@turist+fetch+7.2.0.patch -------------------------------------------------------------------------------- /patches/create-gatsby+2.25.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/patches/create-gatsby+2.25.0.patch -------------------------------------------------------------------------------- /patches/gatsby-plugin-mdx+3.20.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/patches/gatsby-plugin-mdx+3.20.0.patch -------------------------------------------------------------------------------- /patches/remark-parse+8.0.3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/patches/remark-parse+8.0.3.patch -------------------------------------------------------------------------------- /patches/sanitize-html+1.27.5.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/patches/sanitize-html+1.27.5.patch -------------------------------------------------------------------------------- /patches/tr46+0.0.3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/patches/tr46+0.0.3.patch -------------------------------------------------------------------------------- /patches/whatwg-url+5.0.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/patches/whatwg-url+5.0.0.patch -------------------------------------------------------------------------------- /product_docs/content/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /product_docs/content_build/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /product_docs/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/convert.sh -------------------------------------------------------------------------------- /product_docs/convert_pem_online_help.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/convert_pem_online_help.sh -------------------------------------------------------------------------------- /product_docs/docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/.gitignore -------------------------------------------------------------------------------- /product_docs/docs/bart/2.6/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/bart/2.6/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/edb-postgres-ai/1.2/ai-factory/gen-ai/builder/sdk/reference/index.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: SDK reference 3 | --- 4 | -------------------------------------------------------------------------------- /product_docs/docs/edb-postgres-ai/1.3/ai-factory/gen-ai/reference/sdk/reference/index.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: SDK reference 3 | --- 4 | -------------------------------------------------------------------------------- /product_docs/docs/edb-postgres-ai/preview/ai-factory/gen-ai/reference/sdk/reference/index.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: SDK reference 3 | --- 4 | -------------------------------------------------------------------------------- /product_docs/docs/edb_plus/41/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/edb_plus/41/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/efm/5/05_using_efm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/efm/5/05_using_efm.mdx -------------------------------------------------------------------------------- /product_docs/docs/efm/5/10_notifications.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/efm/5/10_notifications.mdx -------------------------------------------------------------------------------- /product_docs/docs/efm/5/architecture.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/efm/5/architecture.mdx -------------------------------------------------------------------------------- /product_docs/docs/efm/5/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/efm/5/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/efm/5/installing/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/efm/5/installing/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/efm/5/upgrading.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/efm/5/upgrading.mdx -------------------------------------------------------------------------------- /product_docs/docs/epas/13/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/epas/13/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/epas/13/upgrading/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/epas/13/upgrading/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/epas/14/connectors.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/epas/14/connectors.mdx -------------------------------------------------------------------------------- /product_docs/docs/epas/14/data_sources.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/epas/14/data_sources.mdx -------------------------------------------------------------------------------- /product_docs/docs/epas/14/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/epas/14/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/epas/14/upgrading/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/epas/14/upgrading/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/epas/15/images/edb_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/epas/15/images/edb_logo.png -------------------------------------------------------------------------------- /product_docs/docs/epas/15/images/edb_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/epas/15/images/edb_logo.svg -------------------------------------------------------------------------------- /product_docs/docs/epas/15/images/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/epas/15/images/image3.png -------------------------------------------------------------------------------- /product_docs/docs/epas/15/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/epas/15/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/epas/15/planning/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/epas/15/planning/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/epas/15/reference/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/epas/15/reference/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/epas/15/upgrading/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/epas/15/upgrading/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/epas/16/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/epas/16/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/epas/16/planning/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/epas/16/planning/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/epas/16/reference/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/epas/16/reference/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/epas/16/upgrading/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/epas/16/upgrading/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/epas/17/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/epas/17/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/epas/17/planning/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/epas/17/planning/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/epas/17/reference/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/epas/17/reference/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/epas/17/upgrading/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/epas/17/upgrading/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/epas/18/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/epas/18/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/epas/18/planning/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/epas/18/planning/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/epas/18/reference/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/epas/18/reference/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/epas/18/upgrading/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/epas/18/upgrading/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/eprs/7/08_xdb_cli/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/eprs/7/08_xdb_cli/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/eprs/7/images/image10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/eprs/7/images/image10.png -------------------------------------------------------------------------------- /product_docs/docs/eprs/7/images/image100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/eprs/7/images/image100.png -------------------------------------------------------------------------------- /product_docs/docs/eprs/7/images/image11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/eprs/7/images/image11.png -------------------------------------------------------------------------------- /product_docs/docs/eprs/7/images/image12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/eprs/7/images/image12.png -------------------------------------------------------------------------------- /product_docs/docs/eprs/7/images/image13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/eprs/7/images/image13.png -------------------------------------------------------------------------------- /product_docs/docs/eprs/7/images/image145.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/eprs/7/images/image145.png -------------------------------------------------------------------------------- /product_docs/docs/eprs/7/images/image146.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/eprs/7/images/image146.png -------------------------------------------------------------------------------- /product_docs/docs/eprs/7/images/image147.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/eprs/7/images/image147.png -------------------------------------------------------------------------------- /product_docs/docs/eprs/7/images/image149.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/eprs/7/images/image149.png -------------------------------------------------------------------------------- /product_docs/docs/eprs/7/images/image15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/eprs/7/images/image15.png -------------------------------------------------------------------------------- /product_docs/docs/eprs/7/images/image155.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/eprs/7/images/image155.png -------------------------------------------------------------------------------- /product_docs/docs/eprs/7/images/image156.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/eprs/7/images/image156.png -------------------------------------------------------------------------------- /product_docs/docs/eprs/7/images/image157.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/eprs/7/images/image157.png -------------------------------------------------------------------------------- /product_docs/docs/eprs/7/images/image16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/eprs/7/images/image16.png -------------------------------------------------------------------------------- /product_docs/docs/eprs/7/images/image160.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/eprs/7/images/image160.png -------------------------------------------------------------------------------- /product_docs/docs/eprs/7/images/image17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/eprs/7/images/image17.png -------------------------------------------------------------------------------- /product_docs/docs/eprs/7/images/image18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/eprs/7/images/image18.png -------------------------------------------------------------------------------- /product_docs/docs/eprs/7/images/image19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/eprs/7/images/image19.png -------------------------------------------------------------------------------- /product_docs/docs/eprs/7/images/image20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/eprs/7/images/image20.png -------------------------------------------------------------------------------- /product_docs/docs/eprs/7/images/image21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/eprs/7/images/image21.png -------------------------------------------------------------------------------- /product_docs/docs/eprs/7/images/image22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/eprs/7/images/image22.png -------------------------------------------------------------------------------- /product_docs/docs/eprs/7/images/image222.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/eprs/7/images/image222.png -------------------------------------------------------------------------------- /product_docs/docs/eprs/7/images/image23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/eprs/7/images/image23.png -------------------------------------------------------------------------------- /product_docs/docs/eprs/7/images/image24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/eprs/7/images/image24.png -------------------------------------------------------------------------------- /product_docs/docs/eprs/7/images/image25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/eprs/7/images/image25.png -------------------------------------------------------------------------------- /product_docs/docs/eprs/7/images/image252.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/eprs/7/images/image252.png -------------------------------------------------------------------------------- /product_docs/docs/eprs/7/images/image288.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/eprs/7/images/image288.png -------------------------------------------------------------------------------- /product_docs/docs/eprs/7/images/image289.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/eprs/7/images/image289.png -------------------------------------------------------------------------------- /product_docs/docs/eprs/7/images/image296.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/eprs/7/images/image296.png -------------------------------------------------------------------------------- /product_docs/docs/eprs/7/images/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/eprs/7/images/image3.png -------------------------------------------------------------------------------- /product_docs/docs/eprs/7/images/image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/eprs/7/images/image4.png -------------------------------------------------------------------------------- /product_docs/docs/eprs/7/images/image5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/eprs/7/images/image5.png -------------------------------------------------------------------------------- /product_docs/docs/eprs/7/images/image6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/eprs/7/images/image6.png -------------------------------------------------------------------------------- /product_docs/docs/eprs/7/images/image63.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/eprs/7/images/image63.png -------------------------------------------------------------------------------- /product_docs/docs/eprs/7/images/image64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/eprs/7/images/image64.png -------------------------------------------------------------------------------- /product_docs/docs/eprs/7/images/image7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/eprs/7/images/image7.png -------------------------------------------------------------------------------- /product_docs/docs/eprs/7/images/image8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/eprs/7/images/image8.png -------------------------------------------------------------------------------- /product_docs/docs/eprs/7/images/image80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/eprs/7/images/image80.png -------------------------------------------------------------------------------- /product_docs/docs/eprs/7/images/image9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/eprs/7/images/image9.png -------------------------------------------------------------------------------- /product_docs/docs/eprs/7/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/eprs/7/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/eprs/7/installing/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/eprs/7/installing/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/language_pack/4/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/language_pack/4/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/language_pack/4/using.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/language_pack/4/using.mdx -------------------------------------------------------------------------------- /product_docs/docs/lasso/4/appendix-a.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/lasso/4/appendix-a.mdx -------------------------------------------------------------------------------- /product_docs/docs/lasso/4/collected-data.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/lasso/4/collected-data.mdx -------------------------------------------------------------------------------- /product_docs/docs/lasso/4/configuration.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/lasso/4/configuration.mdx -------------------------------------------------------------------------------- /product_docs/docs/lasso/4/describe.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/lasso/4/describe.mdx -------------------------------------------------------------------------------- /product_docs/docs/lasso/4/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/lasso/4/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/lasso/4/install.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/lasso/4/install.mdx -------------------------------------------------------------------------------- /product_docs/docs/lasso/4/release-notes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/lasso/4/release-notes.mdx -------------------------------------------------------------------------------- /product_docs/docs/lasso/4/report-types.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/lasso/4/report-types.mdx -------------------------------------------------------------------------------- /product_docs/docs/lasso/4/return.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/lasso/4/return.mdx -------------------------------------------------------------------------------- /product_docs/docs/lasso/4/security.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/lasso/4/security.mdx -------------------------------------------------------------------------------- /product_docs/docs/lasso/4/usage.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/lasso/4/usage.mdx -------------------------------------------------------------------------------- /product_docs/docs/livecompare/1/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/livecompare/1/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/livecompare/2/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/livecompare/2/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/livecompare/2/licenses.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/livecompare/2/licenses.mdx -------------------------------------------------------------------------------- /product_docs/docs/livecompare/2/settings.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/livecompare/2/settings.mdx -------------------------------------------------------------------------------- /product_docs/docs/livecompare/3/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/livecompare/3/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/livecompare/3/licenses.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/livecompare/3/licenses.mdx -------------------------------------------------------------------------------- /product_docs/docs/ocl_connector/12/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/ocl_connector/12/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/ocl_connector/13/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/ocl_connector/13/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/ocl_connector/14/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/ocl_connector/14/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/ocl_connector/15/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/ocl_connector/15/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/ocl_connector/16/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/ocl_connector/16/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/ocl_connector/17/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/ocl_connector/17/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/ocl_connector/18/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/ocl_connector/18/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/odbc_connector/12/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/odbc_connector/12/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/odbc_connector/13/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/odbc_connector/13/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/odbc_connector/16/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/odbc_connector/16/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/odbc_connector/17/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/odbc_connector/17/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pem/10/debugger.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pem/10/debugger.mdx -------------------------------------------------------------------------------- /product_docs/docs/pem/10/images/erd_tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pem/10/images/erd_tool.png -------------------------------------------------------------------------------- /product_docs/docs/pem/10/images/lgrefresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pem/10/images/lgrefresh.png -------------------------------------------------------------------------------- /product_docs/docs/pem/10/images/pem_agent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pem/10/images/pem_agent.png -------------------------------------------------------------------------------- /product_docs/docs/pem/10/images/role_sql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pem/10/images/role_sql.png -------------------------------------------------------------------------------- /product_docs/docs/pem/10/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pem/10/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pem/10/installing/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pem/10/installing/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pem/10/pem_architecture.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pem/10/pem_architecture.mdx -------------------------------------------------------------------------------- /product_docs/docs/pem/10/pem_cli.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pem/10/pem_cli.mdx -------------------------------------------------------------------------------- /product_docs/docs/pem/10/pem_erd_tool.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pem/10/pem_erd_tool.mdx -------------------------------------------------------------------------------- /product_docs/docs/pem/10/pem_query_tool.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pem/10/pem_query_tool.mdx -------------------------------------------------------------------------------- /product_docs/docs/pem/10/reports.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pem/10/reports.mdx -------------------------------------------------------------------------------- /product_docs/docs/pem/10/troubleshooting.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pem/10/troubleshooting.mdx -------------------------------------------------------------------------------- /product_docs/docs/pem/10/upgrading/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pem/10/upgrading/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pem/9/images/erd_tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pem/9/images/erd_tool.png -------------------------------------------------------------------------------- /product_docs/docs/pem/9/images/lgdownload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pem/9/images/lgdownload.png -------------------------------------------------------------------------------- /product_docs/docs/pem/9/images/lgrefresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pem/9/images/lgrefresh.png -------------------------------------------------------------------------------- /product_docs/docs/pem/9/images/pem_agent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pem/9/images/pem_agent.png -------------------------------------------------------------------------------- /product_docs/docs/pem/9/images/pem_pg_hba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pem/9/images/pem_pg_hba.png -------------------------------------------------------------------------------- /product_docs/docs/pem/9/images/pem_server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pem/9/images/pem_server.png -------------------------------------------------------------------------------- /product_docs/docs/pem/9/images/role_sql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pem/9/images/role_sql.png -------------------------------------------------------------------------------- /product_docs/docs/pem/9/in_app_help.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pem/9/in_app_help.mdx -------------------------------------------------------------------------------- /product_docs/docs/pem/9/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pem/9/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pem/9/installing/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pem/9/installing/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pem/9/monitoring_barman.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pem/9/monitoring_barman.mdx -------------------------------------------------------------------------------- /product_docs/docs/pem/9/pem_architecture.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pem/9/pem_architecture.mdx -------------------------------------------------------------------------------- /product_docs/docs/pem/9/pem_cli.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pem/9/pem_cli.mdx -------------------------------------------------------------------------------- /product_docs/docs/pem/9/pem_erd_tool.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pem/9/pem_erd_tool.mdx -------------------------------------------------------------------------------- /product_docs/docs/pem/9/pem_query_tool.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pem/9/pem_query_tool.mdx -------------------------------------------------------------------------------- /product_docs/docs/pem/9/pem_rest_api.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pem/9/pem_rest_api.mdx -------------------------------------------------------------------------------- /product_docs/docs/pem/9/pem_web_interface.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pem/9/pem_web_interface.mdx -------------------------------------------------------------------------------- /product_docs/docs/pem/9/registering_agent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pem/9/registering_agent.mdx -------------------------------------------------------------------------------- /product_docs/docs/pem/9/reports.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pem/9/reports.mdx -------------------------------------------------------------------------------- /product_docs/docs/pem/9/troubleshooting.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pem/9/troubleshooting.mdx -------------------------------------------------------------------------------- /product_docs/docs/pem/9/upgrading/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pem/9/upgrading/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgbouncer/1/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgbouncer/1/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgbouncer/1/upgrading.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgbouncer/1/upgrading.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/3.6/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/3.6/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/3.6/release-notes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/3.6/release-notes.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/3.7/bdr/appusage.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/3.7/bdr/appusage.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/3.7/bdr/backup.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/3.7/bdr/backup.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/3.7/bdr/camo.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/3.7/bdr/camo.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/3.7/bdr/catalogs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/3.7/bdr/catalogs.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/3.7/bdr/conflicts.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/3.7/bdr/conflicts.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/3.7/bdr/crdt.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/3.7/bdr/crdt.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/3.7/bdr/ddl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/3.7/bdr/ddl.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/3.7/bdr/durability.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/3.7/bdr/durability.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/3.7/bdr/eager.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/3.7/bdr/eager.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/3.7/bdr/functions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/3.7/bdr/functions.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/3.7/bdr/img/bdr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/3.7/bdr/img/bdr.png -------------------------------------------------------------------------------- /product_docs/docs/pgd/3.7/bdr/img/nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/3.7/bdr/img/nodes.png -------------------------------------------------------------------------------- /product_docs/docs/pgd/3.7/bdr/img/nodes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/3.7/bdr/img/nodes.svg -------------------------------------------------------------------------------- /product_docs/docs/pgd/3.7/bdr/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/3.7/bdr/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/3.7/bdr/monitoring.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/3.7/bdr/monitoring.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/3.7/bdr/nodes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/3.7/bdr/nodes.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/3.7/bdr/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/3.7/bdr/overview.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/3.7/bdr/repsets.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/3.7/bdr/repsets.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/3.7/bdr/scaling.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/3.7/bdr/scaling.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/3.7/bdr/security.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/3.7/bdr/security.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/3.7/bdr/sequences.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/3.7/bdr/sequences.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/3.7/bdr/striggers.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/3.7/bdr/striggers.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/3.7/bdr/tssnapshots.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/3.7/bdr/tssnapshots.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/3.7/bdr/twophase.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/3.7/bdr/twophase.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/3.7/harp/08_harpctl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/3.7/harp/08_harpctl.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/3.7/harp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/3.7/harp/Makefile -------------------------------------------------------------------------------- /product_docs/docs/pgd/3.7/harp/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/3.7/harp/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/3.7/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/3.7/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/3.7/pglogical/ddl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/3.7/pglogical/ddl.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/3.7/pglogical/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/3.7/pglogical/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/3.7/pglogical/nodes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/3.7/pglogical/nodes.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4.4/backup.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4.4/backup.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4.4/bdr/appusage.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4.4/bdr/appusage.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4.4/bdr/camo.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4.4/bdr/camo.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4.4/bdr/catalogs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4.4/bdr/catalogs.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4.4/bdr/conflicts.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4.4/bdr/conflicts.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4.4/bdr/crdt.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4.4/bdr/crdt.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4.4/bdr/ddl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4.4/bdr/ddl.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4.4/bdr/durability.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4.4/bdr/durability.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4.4/bdr/eager.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4.4/bdr/eager.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4.4/bdr/functions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4.4/bdr/functions.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4.4/bdr/img/bdr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4.4/bdr/img/bdr.png -------------------------------------------------------------------------------- /product_docs/docs/pgd/4.4/bdr/img/nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4.4/bdr/img/nodes.png -------------------------------------------------------------------------------- /product_docs/docs/pgd/4.4/bdr/img/nodes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4.4/bdr/img/nodes.svg -------------------------------------------------------------------------------- /product_docs/docs/pgd/4.4/bdr/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4.4/bdr/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4.4/bdr/lag-control.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4.4/bdr/lag-control.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4.4/bdr/nodes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4.4/bdr/nodes.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4.4/bdr/repsets.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4.4/bdr/repsets.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4.4/bdr/scaling.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4.4/bdr/scaling.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4.4/bdr/security.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4.4/bdr/security.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4.4/bdr/sequences.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4.4/bdr/sequences.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4.4/bdr/striggers.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4.4/bdr/striggers.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4.4/bdr/tssnapshots.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4.4/bdr/tssnapshots.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4.4/bdr/twophase.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4.4/bdr/twophase.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4.4/choosing_server.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4.4/choosing_server.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4.4/cli/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4.4/cli/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4.4/harp/08_harpctl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4.4/harp/08_harpctl.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4.4/harp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4.4/harp/Makefile -------------------------------------------------------------------------------- /product_docs/docs/pgd/4.4/harp/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4.4/harp/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4.4/images/bronze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4.4/images/bronze.png -------------------------------------------------------------------------------- /product_docs/docs/pgd/4.4/images/gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4.4/images/gold.png -------------------------------------------------------------------------------- /product_docs/docs/pgd/4.4/images/gold2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4.4/images/gold2.png -------------------------------------------------------------------------------- /product_docs/docs/pgd/4.4/images/gold3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4.4/images/gold3.png -------------------------------------------------------------------------------- /product_docs/docs/pgd/4.4/images/ha-ao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4.4/images/ha-ao.png -------------------------------------------------------------------------------- /product_docs/docs/pgd/4.4/images/ha-unit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4.4/images/ha-unit.png -------------------------------------------------------------------------------- /product_docs/docs/pgd/4.4/images/nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4.4/images/nodes.png -------------------------------------------------------------------------------- /product_docs/docs/pgd/4.4/images/platinum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4.4/images/platinum.png -------------------------------------------------------------------------------- /product_docs/docs/pgd/4.4/images/silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4.4/images/silver.png -------------------------------------------------------------------------------- /product_docs/docs/pgd/4.4/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4.4/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4.4/known_issues.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4.4/known_issues.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4.4/limitations.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4.4/limitations.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4.4/monitoring.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4.4/monitoring.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4.4/overview/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4.4/overview/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4.4/rel_notes/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4.4/rel_notes/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4.4/terminology.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4.4/terminology.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4.4/upgrades/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4.4/upgrades/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4/backup.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4/backup.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4/bdr/appusage.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4/bdr/appusage.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4/bdr/camo.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4/bdr/camo.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4/bdr/catalogs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4/bdr/catalogs.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4/bdr/configuration.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4/bdr/configuration.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4/bdr/conflicts.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4/bdr/conflicts.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4/bdr/crdt.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4/bdr/crdt.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4/bdr/ddl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4/bdr/ddl.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4/bdr/durability.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4/bdr/durability.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4/bdr/eager.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4/bdr/eager.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4/bdr/functions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4/bdr/functions.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4/bdr/group-commit.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4/bdr/group-commit.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4/bdr/img/bdr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4/bdr/img/bdr.png -------------------------------------------------------------------------------- /product_docs/docs/pgd/4/bdr/img/frontpage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4/bdr/img/frontpage.svg -------------------------------------------------------------------------------- /product_docs/docs/pgd/4/bdr/img/nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4/bdr/img/nodes.png -------------------------------------------------------------------------------- /product_docs/docs/pgd/4/bdr/img/nodes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4/bdr/img/nodes.svg -------------------------------------------------------------------------------- /product_docs/docs/pgd/4/bdr/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4/bdr/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4/bdr/lag-control.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4/bdr/lag-control.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4/bdr/nodes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4/bdr/nodes.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4/bdr/repsets.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4/bdr/repsets.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4/bdr/scaling.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4/bdr/scaling.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4/bdr/security.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4/bdr/security.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4/bdr/sequences.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4/bdr/sequences.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4/bdr/striggers.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4/bdr/striggers.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4/bdr/tssnapshots.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4/bdr/tssnapshots.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4/bdr/twophase.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4/bdr/twophase.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4/choosing_server.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4/choosing_server.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4/cli/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4/cli/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4/deployments/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4/deployments/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4/harp/08_harpctl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4/harp/08_harpctl.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4/harp/10_security.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4/harp/10_security.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4/harp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4/harp/Makefile -------------------------------------------------------------------------------- /product_docs/docs/pgd/4/harp/images/ha-ao.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4/harp/images/ha-ao.dia -------------------------------------------------------------------------------- /product_docs/docs/pgd/4/harp/images/ha-ao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4/harp/images/ha-ao.png -------------------------------------------------------------------------------- /product_docs/docs/pgd/4/harp/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4/harp/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4/images/bronze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4/images/bronze.png -------------------------------------------------------------------------------- /product_docs/docs/pgd/4/images/gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4/images/gold.png -------------------------------------------------------------------------------- /product_docs/docs/pgd/4/images/gold2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4/images/gold2.png -------------------------------------------------------------------------------- /product_docs/docs/pgd/4/images/gold3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4/images/gold3.png -------------------------------------------------------------------------------- /product_docs/docs/pgd/4/images/ha-ao-bdr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4/images/ha-ao-bdr.png -------------------------------------------------------------------------------- /product_docs/docs/pgd/4/images/ha-ao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4/images/ha-ao.png -------------------------------------------------------------------------------- /product_docs/docs/pgd/4/images/ha-unit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4/images/ha-unit.png -------------------------------------------------------------------------------- /product_docs/docs/pgd/4/images/nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4/images/nodes.png -------------------------------------------------------------------------------- /product_docs/docs/pgd/4/images/platinum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4/images/platinum.png -------------------------------------------------------------------------------- /product_docs/docs/pgd/4/images/silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4/images/silver.png -------------------------------------------------------------------------------- /product_docs/docs/pgd/4/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4/known_issues.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4/known_issues.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4/limitations.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4/limitations.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4/monitoring.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4/monitoring.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4/overview/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4/overview/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4/rel_notes/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4/rel_notes/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4/terminology.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4/terminology.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/4/upgrades/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/4/upgrades/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.6/appusage/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.6/appusage/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.6/appusage/rules.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.6/appusage/rules.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.6/appusage/timing.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.6/appusage/timing.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.6/backup.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.6/backup.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.6/cli/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.6/cli/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.6/cli/using_cli.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.6/cli/using_cli.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.6/compatibility.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.6/compatibility.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.6/ddl/ddl-locking.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.6/ddl/ddl-locking.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.6/ddl/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.6/ddl/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.6/decoding_worker.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.6/decoding_worker.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.6/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.6/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.6/known_issues.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.6/known_issues.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.6/monitoring/otel.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.6/monitoring/otel.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.6/monitoring/sql.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.6/monitoring/sql.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.6/nodes/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.6/nodes/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.6/nodes/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.6/nodes/overview.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.6/overview/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.6/overview/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.6/parallelapply.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.6/parallelapply.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.6/planning/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.6/planning/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.6/reference/clcd.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.6/reference/clcd.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.6/reference/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.6/reference/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.6/reference/nodes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.6/reference/nodes.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.6/rel_notes/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.6/rel_notes/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.6/repsets.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.6/repsets.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.6/routing/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.6/routing/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.6/routing/proxy.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.6/routing/proxy.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.6/scaling.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.6/scaling.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.6/security/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.6/security/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.6/security/roles.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.6/security/roles.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.6/sequences.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.6/sequences.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.6/striggers.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.6/striggers.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.6/terminology.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.6/terminology.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.6/tssnapshots.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.6/tssnapshots.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.6/twophase.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.6/twophase.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.6/upgrades/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.6/upgrades/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.7/appusage/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.7/appusage/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.7/appusage/rules.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.7/appusage/rules.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.7/appusage/timing.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.7/appusage/timing.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.7/backup.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.7/backup.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.7/cdc-failover.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.7/cdc-failover.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.7/cli/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.7/cli/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.7/cli/using_cli.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.7/cli/using_cli.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.7/compatibility.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.7/compatibility.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.7/ddl/ddl-locking.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.7/ddl/ddl-locking.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.7/ddl/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.7/ddl/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.7/decoding_worker.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.7/decoding_worker.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.7/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.7/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.7/known_issues.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.7/known_issues.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.7/monitoring/otel.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.7/monitoring/otel.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.7/monitoring/sql.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.7/monitoring/sql.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.7/nodes/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.7/nodes/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.7/nodes/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.7/nodes/overview.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.7/overview/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.7/overview/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.7/parallelapply.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.7/parallelapply.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.7/planning/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.7/planning/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.7/reference/clcd.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.7/reference/clcd.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.7/reference/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.7/reference/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.7/reference/nodes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.7/reference/nodes.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.7/rel_notes/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.7/rel_notes/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.7/repsets.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.7/repsets.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.7/routing/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.7/routing/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.7/routing/proxy.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.7/routing/proxy.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.7/scaling.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.7/scaling.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.7/security/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.7/security/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.7/security/roles.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.7/security/roles.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.7/sequences.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.7/sequences.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.7/striggers.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.7/striggers.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.7/terminology.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.7/terminology.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.7/tssnapshots.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.7/tssnapshots.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.7/twophase.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.7/twophase.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.7/upgrades/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.7/upgrades/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.8/appusage/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.8/appusage/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.8/appusage/rules.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.8/appusage/rules.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.8/appusage/timing.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.8/appusage/timing.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.8/backup.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.8/backup.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.8/cdc-failover.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.8/cdc-failover.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.8/cli/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.8/cli/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.8/cli/using_cli.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.8/cli/using_cli.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.8/compatibility.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.8/compatibility.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.8/ddl/ddl-locking.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.8/ddl/ddl-locking.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.8/ddl/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.8/ddl/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.8/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.8/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.8/known_issues.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.8/known_issues.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.8/nodes/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.8/nodes/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.8/repsets.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.8/repsets.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.8/scaling.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.8/scaling.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.8/sequences.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.8/sequences.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.8/striggers.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.8/striggers.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.8/terminology.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.8/terminology.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.8/tssnapshots.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.8/tssnapshots.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.8/twophase.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.8/twophase.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.9/backup.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.9/backup.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.9/cdc-failover.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.9/cdc-failover.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.9/cli/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.9/cli/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.9/ddl/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.9/ddl/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.9/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.9/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.9/known_issues.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.9/known_issues.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.9/nodes/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.9/nodes/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.9/repsets.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.9/repsets.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.9/scaling.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.9/scaling.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.9/sequences.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.9/sequences.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.9/striggers.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.9/striggers.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.9/terminology.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.9/terminology.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.9/tssnapshots.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.9/tssnapshots.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/5.9/twophase.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/5.9/twophase.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/6.1/concepts/advanced-durability.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Advanced Durability 3 | --- 4 | 5 | -------------------------------------------------------------------------------- /product_docs/docs/pgd/6.1/concepts/commit-scopes.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Commit Scopes 3 | --- 4 | 5 | -------------------------------------------------------------------------------- /product_docs/docs/pgd/6.1/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/6.1/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/6.1/known_issues.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/6.1/known_issues.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/6.1/terminology.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/6.1/terminology.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/6/compatibility.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/6/compatibility.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/6/concepts/advanced-durability.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Advanced Durability 3 | --- 4 | 5 | -------------------------------------------------------------------------------- /product_docs/docs/pgd/6/concepts/commit-scopes.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Commit Scopes 3 | --- 4 | 5 | -------------------------------------------------------------------------------- /product_docs/docs/pgd/6/concepts/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/6/concepts/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/6/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/6/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/6/known_issues.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/6/known_issues.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgd/6/terminology.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgd/6/terminology.mdx -------------------------------------------------------------------------------- /product_docs/docs/pge/13/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pge/13/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pge/14/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pge/14/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pge/15/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pge/15/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pge/15/operation.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pge/15/operation.mdx -------------------------------------------------------------------------------- /product_docs/docs/pge/15/parameters.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pge/15/parameters.mdx -------------------------------------------------------------------------------- /product_docs/docs/pge/15/replication.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pge/15/replication.mdx -------------------------------------------------------------------------------- /product_docs/docs/pge/15/tde.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pge/15/tde.mdx -------------------------------------------------------------------------------- /product_docs/docs/pge/16/extensions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pge/16/extensions.mdx -------------------------------------------------------------------------------- /product_docs/docs/pge/16/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pge/16/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pge/16/operation.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pge/16/operation.mdx -------------------------------------------------------------------------------- /product_docs/docs/pge/16/parameters.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pge/16/parameters.mdx -------------------------------------------------------------------------------- /product_docs/docs/pge/16/replication.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pge/16/replication.mdx -------------------------------------------------------------------------------- /product_docs/docs/pge/16/tde.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pge/16/tde.mdx -------------------------------------------------------------------------------- /product_docs/docs/pge/17/extensions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pge/17/extensions.mdx -------------------------------------------------------------------------------- /product_docs/docs/pge/17/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pge/17/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pge/17/operation.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pge/17/operation.mdx -------------------------------------------------------------------------------- /product_docs/docs/pge/17/parameters.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pge/17/parameters.mdx -------------------------------------------------------------------------------- /product_docs/docs/pge/17/replication.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pge/17/replication.mdx -------------------------------------------------------------------------------- /product_docs/docs/pge/17/tde.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pge/17/tde.mdx -------------------------------------------------------------------------------- /product_docs/docs/pge/18/extensions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pge/18/extensions.mdx -------------------------------------------------------------------------------- /product_docs/docs/pge/18/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pge/18/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pge/18/operation.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pge/18/operation.mdx -------------------------------------------------------------------------------- /product_docs/docs/pge/18/parameters.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pge/18/parameters.mdx -------------------------------------------------------------------------------- /product_docs/docs/pge/18/replication.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pge/18/replication.mdx -------------------------------------------------------------------------------- /product_docs/docs/pge/18/tde.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pge/18/tde.mdx -------------------------------------------------------------------------------- /product_docs/docs/pgpool/4/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pgpool/4/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/postgis/3/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/postgis/3/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pwr/1/configuring.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pwr/1/configuring.mdx -------------------------------------------------------------------------------- /product_docs/docs/pwr/1/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pwr/1/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/pwr/1/installing.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pwr/1/installing.mdx -------------------------------------------------------------------------------- /product_docs/docs/pwr/1/using.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/pwr/1/using.mdx -------------------------------------------------------------------------------- /product_docs/docs/repmgr/5.3.3/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/repmgr/5.3.3/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/slony/2.2.10/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/slony/2.2.10/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/tde/15/about/how.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/tde/15/about/how.mdx -------------------------------------------------------------------------------- /product_docs/docs/tde/15/about/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/tde/15/about/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/tde/15/about/what.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/tde/15/about/what.mdx -------------------------------------------------------------------------------- /product_docs/docs/tde/15/about/why.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/tde/15/about/why.mdx -------------------------------------------------------------------------------- /product_docs/docs/tde/15/images/tde1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/tde/15/images/tde1.png -------------------------------------------------------------------------------- /product_docs/docs/tde/15/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/tde/15/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/tde/15/initdb_tde.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/tde/15/initdb_tde.mdx -------------------------------------------------------------------------------- /product_docs/docs/tde/15/limitations.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/tde/15/limitations.mdx -------------------------------------------------------------------------------- /product_docs/docs/tde/15/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/tde/15/overview.mdx -------------------------------------------------------------------------------- /product_docs/docs/tde/15/support.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/tde/15/support.mdx -------------------------------------------------------------------------------- /product_docs/docs/tde/15/upgrading.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/tde/15/upgrading.mdx -------------------------------------------------------------------------------- /product_docs/docs/tpa/23/INSTALL-repo.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/tpa/23/INSTALL-repo.mdx -------------------------------------------------------------------------------- /product_docs/docs/tpa/23/INSTALL.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/tpa/23/INSTALL.mdx -------------------------------------------------------------------------------- /product_docs/docs/tpa/23/images/m1.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/tpa/23/images/m1.dot -------------------------------------------------------------------------------- /product_docs/docs/tpa/23/images/m1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/tpa/23/images/m1.png -------------------------------------------------------------------------------- /product_docs/docs/tpa/23/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/tpa/23/index.mdx -------------------------------------------------------------------------------- /product_docs/docs/tpa/23/opensourcetpa.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/tpa/23/opensourcetpa.mdx -------------------------------------------------------------------------------- /product_docs/docs/tpa/23/platform-aws.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/tpa/23/platform-aws.mdx -------------------------------------------------------------------------------- /product_docs/docs/tpa/23/platform-bare.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/tpa/23/platform-bare.mdx -------------------------------------------------------------------------------- /product_docs/docs/tpa/23/reference/bdr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/tpa/23/reference/bdr.mdx -------------------------------------------------------------------------------- /product_docs/docs/tpa/23/reference/efm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/tpa/23/reference/efm.mdx -------------------------------------------------------------------------------- /product_docs/docs/tpa/23/reference/pem.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/tpa/23/reference/pem.mdx -------------------------------------------------------------------------------- /product_docs/docs/tpa/23/tower.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/tpa/23/tower.mdx -------------------------------------------------------------------------------- /product_docs/docs/tpa/23/tpaexec-hooks.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/tpa/23/tpaexec-hooks.mdx -------------------------------------------------------------------------------- /product_docs/docs/tpa/23/tpaexec-test.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/docs/tpa/23/tpaexec-test.mdx -------------------------------------------------------------------------------- /product_docs/scripts/add_frontmatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/scripts/add_frontmatter.py -------------------------------------------------------------------------------- /product_docs/scripts/fix_image_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/scripts/fix_image_links.py -------------------------------------------------------------------------------- /product_docs/scripts/internal_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/scripts/internal_links.py -------------------------------------------------------------------------------- /product_docs/scripts/post_pandoc_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/scripts/post_pandoc_script.py -------------------------------------------------------------------------------- /product_docs/scripts/pre_pandoc_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/scripts/pre_pandoc_script.py -------------------------------------------------------------------------------- /product_docs/scripts/sort_toc_nested.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/scripts/sort_toc_nested.py -------------------------------------------------------------------------------- /product_docs/scripts/substitutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/product_docs/scripts/substitutions.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- 1 | [pytest] 2 | minversion = 6.0 3 | testpaths = 4 | scripts 5 | -------------------------------------------------------------------------------- /requirements-ci.in: -------------------------------------------------------------------------------- 1 | python-frontmatter 2 | 3 | -------------------------------------------------------------------------------- /requirements-ci.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/requirements-ci.txt -------------------------------------------------------------------------------- /requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/requirements.in -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/createIconNames.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/scripts/createIconNames.js -------------------------------------------------------------------------------- /scripts/createIconTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/scripts/createIconTypes.js -------------------------------------------------------------------------------- /scripts/fileProcessor/.prettierignore: -------------------------------------------------------------------------------- 1 | *.md 2 | -------------------------------------------------------------------------------- /scripts/fileProcessor/.prettierrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "trailingComma": "all" 3 | } 4 | -------------------------------------------------------------------------------- /scripts/fileProcessor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/scripts/fileProcessor/README.md -------------------------------------------------------------------------------- /scripts/fileProcessor/main.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/scripts/fileProcessor/main.mjs -------------------------------------------------------------------------------- /scripts/fileProcessor/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/scripts/fileProcessor/package-lock.json -------------------------------------------------------------------------------- /scripts/fileProcessor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/scripts/fileProcessor/package.json -------------------------------------------------------------------------------- /scripts/husky-install.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -x 3 | 4 | [ "$NODE_ENV" != "production" ] && husky install || true 5 | -------------------------------------------------------------------------------- /scripts/legacy_redirects/scrapy_spider/legacy/legacy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/normalize/lib/note-rewriter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/scripts/normalize/lib/note-rewriter.js -------------------------------------------------------------------------------- /scripts/normalize/lib/relativelinks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/scripts/normalize/lib/relativelinks.js -------------------------------------------------------------------------------- /scripts/normalize/lib/strip-image-alt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/scripts/normalize/lib/strip-image-alt.js -------------------------------------------------------------------------------- /scripts/normalize/lib/table-formatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/scripts/normalize/lib/table-formatter.js -------------------------------------------------------------------------------- /scripts/normalize/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/scripts/normalize/markdown.js -------------------------------------------------------------------------------- /scripts/normalize/slashEscapedLessThan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/scripts/normalize/slashEscapedLessThan.js -------------------------------------------------------------------------------- /scripts/normalize/tables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/scripts/normalize/tables.js -------------------------------------------------------------------------------- /scripts/normalize/titleRefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/scripts/normalize/titleRefs.js -------------------------------------------------------------------------------- /scripts/npm-install.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -x 3 | 4 | [ "$NPM_TOKEN" ] && npm install || true 5 | -------------------------------------------------------------------------------- /scripts/npm-preinstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/scripts/npm-preinstall.sh -------------------------------------------------------------------------------- /scripts/pdf/Signika-Light-modified.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/scripts/pdf/Signika-Light-modified.ttf -------------------------------------------------------------------------------- /scripts/pdf/Signika-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/scripts/pdf/Signika-Regular.ttf -------------------------------------------------------------------------------- /scripts/pdf/SourceCodePro-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/scripts/pdf/SourceCodePro-Regular.ttf -------------------------------------------------------------------------------- /scripts/pdf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/pdf/__tests__/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/pdf/__tests__/combine_mdx/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/pdf/__tests__/list_files/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/pdf/__tests__/list_files/test_cases/frontmatter_only/expected.py: -------------------------------------------------------------------------------- 1 | expected = [] 2 | -------------------------------------------------------------------------------- /scripts/pdf/__tests__/list_files/test_cases/stubcards/expected.py: -------------------------------------------------------------------------------- 1 | expected = [] 2 | -------------------------------------------------------------------------------- /scripts/pdf/build-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/scripts/pdf/build-all.sh -------------------------------------------------------------------------------- /scripts/pdf/cleanup_combined_markdown.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/scripts/pdf/cleanup_combined_markdown.mjs -------------------------------------------------------------------------------- /scripts/pdf/compare_pdfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/scripts/pdf/compare_pdfs.py -------------------------------------------------------------------------------- /scripts/pdf/cover.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/scripts/pdf/cover.html -------------------------------------------------------------------------------- /scripts/pdf/generate_pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/scripts/pdf/generate_pdf.py -------------------------------------------------------------------------------- /scripts/pdf/lib/mdast-embedded-hast.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/scripts/pdf/lib/mdast-embedded-hast.mjs -------------------------------------------------------------------------------- /scripts/pdf/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/scripts/pdf/package-lock.json -------------------------------------------------------------------------------- /scripts/pdf/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/scripts/pdf/package.json -------------------------------------------------------------------------------- /scripts/pdf/parallel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/scripts/pdf/parallel -------------------------------------------------------------------------------- /scripts/pdf/pdf-script.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/scripts/pdf/pdf-script.html -------------------------------------------------------------------------------- /scripts/pdf/pdf-styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/scripts/pdf/pdf-styles.css -------------------------------------------------------------------------------- /scripts/pdf/toc-style.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/scripts/pdf/toc-style.xsl -------------------------------------------------------------------------------- /scripts/release_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/scripts/release_data.sh -------------------------------------------------------------------------------- /scripts/source/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/scripts/source/.gitignore -------------------------------------------------------------------------------- /scripts/source/bdr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/scripts/source/bdr.js -------------------------------------------------------------------------------- /scripts/source/config_sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/scripts/source/config_sources.py -------------------------------------------------------------------------------- /scripts/source/dispatch_product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/scripts/source/dispatch_product.py -------------------------------------------------------------------------------- /scripts/source/files-to-ignore.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/scripts/source/files-to-ignore.mjs -------------------------------------------------------------------------------- /scripts/source/git-restore-mtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/scripts/source/git-restore-mtime.py -------------------------------------------------------------------------------- /scripts/source/livecompare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/scripts/source/livecompare.js -------------------------------------------------------------------------------- /scripts/source/merge-indexes.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/scripts/source/merge-indexes.mjs -------------------------------------------------------------------------------- /scripts/source/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/scripts/source/package-lock.json -------------------------------------------------------------------------------- /scripts/source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/scripts/source/package.json -------------------------------------------------------------------------------- /scripts/source/pge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/scripts/source/pge.js -------------------------------------------------------------------------------- /scripts/source/pglogical.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/scripts/source/pglogical.js -------------------------------------------------------------------------------- /scripts/source/pglogical2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/scripts/source/pglogical2.js -------------------------------------------------------------------------------- /scripts/source/process-cnp-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/scripts/source/process-cnp-docs.sh -------------------------------------------------------------------------------- /scripts/source/process-pgd4k-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/scripts/source/process-pgd4k-docs.sh -------------------------------------------------------------------------------- /scripts/source/process-tpa-docs-auto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/scripts/source/process-tpa-docs-auto.sh -------------------------------------------------------------------------------- /scripts/source/process-tpa-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/scripts/source/process-tpa-docs.sh -------------------------------------------------------------------------------- /scripts/source/test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/scripts/source/test/README.md -------------------------------------------------------------------------------- /scripts/source/test/sync-bdr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/scripts/source/test/sync-bdr.json -------------------------------------------------------------------------------- /scripts/source/test/sync-harp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/scripts/source/test/sync-harp.json -------------------------------------------------------------------------------- /scripts/source/test/sync-lc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/scripts/source/test/sync-lc.json -------------------------------------------------------------------------------- /scripts/source/test/sync-pglogical.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/scripts/source/test/sync-pglogical.json -------------------------------------------------------------------------------- /scripts/source/test/test_all_syncs.ksh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/scripts/source/test/test_all_syncs.ksh -------------------------------------------------------------------------------- /scripts/source/tpa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/scripts/source/tpa.js -------------------------------------------------------------------------------- /scripts/source/update-yaml.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/scripts/source/update-yaml.mjs -------------------------------------------------------------------------------- /src/components/advanced-search/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/components/advanced-search/form.js -------------------------------------------------------------------------------- /src/components/advanced-search/hitComps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/components/advanced-search/hitComps.js -------------------------------------------------------------------------------- /src/components/advanced-search/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/components/advanced-search/index.js -------------------------------------------------------------------------------- /src/components/advanced-search/results.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/components/advanced-search/results.js -------------------------------------------------------------------------------- /src/components/archive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/components/archive.js -------------------------------------------------------------------------------- /src/components/back-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/components/back-button.js -------------------------------------------------------------------------------- /src/components/card-decks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/components/card-decks.js -------------------------------------------------------------------------------- /src/components/code-block.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/components/code-block.js -------------------------------------------------------------------------------- /src/components/dark-mode-toggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/components/dark-mode-toggle.js -------------------------------------------------------------------------------- /src/components/details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/components/details.js -------------------------------------------------------------------------------- /src/components/dev-frontmatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/components/dev-frontmatter.js -------------------------------------------------------------------------------- /src/components/dev-only.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/components/dev-only.js -------------------------------------------------------------------------------- /src/components/edit-link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/components/edit-link.js -------------------------------------------------------------------------------- /src/components/feedback-dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/components/feedback-dropdown.js -------------------------------------------------------------------------------- /src/components/feedback-link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/components/feedback-link.js -------------------------------------------------------------------------------- /src/components/footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/components/footer.js -------------------------------------------------------------------------------- /src/components/icon/iconList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/components/icon/iconList.js -------------------------------------------------------------------------------- /src/components/icon/iconNames.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/components/icon/iconNames.js -------------------------------------------------------------------------------- /src/components/icon/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/components/icon/index.js -------------------------------------------------------------------------------- /src/components/index-links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/components/index-links.js -------------------------------------------------------------------------------- /src/components/index-sub-nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/components/index-sub-nav.js -------------------------------------------------------------------------------- /src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/components/index.js -------------------------------------------------------------------------------- /src/components/katacoda-page-embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/components/katacoda-page-embed.js -------------------------------------------------------------------------------- /src/components/katacoda-page-link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/components/katacoda-page-link.js -------------------------------------------------------------------------------- /src/components/katacoda-panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/components/katacoda-panel.js -------------------------------------------------------------------------------- /src/components/layout-context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/components/layout-context.js -------------------------------------------------------------------------------- /src/components/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/components/layout.js -------------------------------------------------------------------------------- /src/components/left-nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/components/left-nav.js -------------------------------------------------------------------------------- /src/components/link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/components/link.js -------------------------------------------------------------------------------- /src/components/logo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/components/logo.js -------------------------------------------------------------------------------- /src/components/main-content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/components/main-content.js -------------------------------------------------------------------------------- /src/components/pdf-download.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/components/pdf-download.js -------------------------------------------------------------------------------- /src/components/prev-next.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/components/prev-next.js -------------------------------------------------------------------------------- /src/components/product-context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/components/product-context.js -------------------------------------------------------------------------------- /src/components/product-name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/components/product-name.js -------------------------------------------------------------------------------- /src/components/product-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/components/product-version.js -------------------------------------------------------------------------------- /src/components/purl-anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/components/purl-anchor.js -------------------------------------------------------------------------------- /src/components/search-navigation-links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/components/search-navigation-links.js -------------------------------------------------------------------------------- /src/components/search-navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/components/search-navigation.js -------------------------------------------------------------------------------- /src/components/search/formComps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/components/search/formComps.js -------------------------------------------------------------------------------- /src/components/search/hitComps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/components/search/hitComps.js -------------------------------------------------------------------------------- /src/components/search/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/components/search/index.js -------------------------------------------------------------------------------- /src/components/side-navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/components/side-navigation.js -------------------------------------------------------------------------------- /src/components/stub-cards.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/components/stub-cards.js -------------------------------------------------------------------------------- /src/components/tab-container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/components/tab-container.js -------------------------------------------------------------------------------- /src/components/table-of-contents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/components/table-of-contents.js -------------------------------------------------------------------------------- /src/components/tiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/components/tiles.js -------------------------------------------------------------------------------- /src/components/timed-banner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/components/timed-banner.js -------------------------------------------------------------------------------- /src/components/top-bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/components/top-bar.js -------------------------------------------------------------------------------- /src/components/tree-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/components/tree-node.js -------------------------------------------------------------------------------- /src/components/version-dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/components/version-dropdown.js -------------------------------------------------------------------------------- /src/constants/algolia-indexing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/constants/algolia-indexing.js -------------------------------------------------------------------------------- /src/constants/expression-replacement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/constants/expression-replacement.js -------------------------------------------------------------------------------- /src/constants/gatsby-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/constants/gatsby-utils.js -------------------------------------------------------------------------------- /src/constants/product-stubs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/constants/product-stubs.js -------------------------------------------------------------------------------- /src/constants/products.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/constants/products.js -------------------------------------------------------------------------------- /src/constants/updates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/constants/updates.js -------------------------------------------------------------------------------- /src/constants/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/constants/utils.js -------------------------------------------------------------------------------- /src/hooks/use-path-prefix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/hooks/use-path-prefix.js -------------------------------------------------------------------------------- /src/hooks/use-sitemetadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/hooks/use-sitemetadata.js -------------------------------------------------------------------------------- /src/html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/html.js -------------------------------------------------------------------------------- /src/images/cli@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/images/cli@2x.png -------------------------------------------------------------------------------- /src/images/screen-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/images/screen-demo.gif -------------------------------------------------------------------------------- /src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/pages/404.js -------------------------------------------------------------------------------- /src/pages/access-denied.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/pages/access-denied.js -------------------------------------------------------------------------------- /src/pages/build-info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/pages/build-info.js -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/pages/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/pages/search.js -------------------------------------------------------------------------------- /src/plugins/code-in-tables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/plugins/code-in-tables.js -------------------------------------------------------------------------------- /src/plugins/preserve-image-style/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/plugins/preserve-image-style/index.js -------------------------------------------------------------------------------- /src/plugins/replacement-expression.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/plugins/replacement-expression.js -------------------------------------------------------------------------------- /src/styles/_admonitions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/styles/_admonitions.scss -------------------------------------------------------------------------------- /src/styles/_dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/styles/_dark.scss -------------------------------------------------------------------------------- /src/styles/_docs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/styles/_docs.scss -------------------------------------------------------------------------------- /src/styles/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/styles/_fonts.scss -------------------------------------------------------------------------------- /src/styles/_helpers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/styles/_helpers.scss -------------------------------------------------------------------------------- /src/styles/_overrides.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/styles/_overrides.scss -------------------------------------------------------------------------------- /src/styles/_search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/styles/_search.scss -------------------------------------------------------------------------------- /src/styles/_theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/styles/_theme.scss -------------------------------------------------------------------------------- /src/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/styles/index.scss -------------------------------------------------------------------------------- /src/templates/doc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/templates/doc.js -------------------------------------------------------------------------------- /src/templates/katacoda-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/templates/katacoda-page.js -------------------------------------------------------------------------------- /src/templates/learn-doc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/src/templates/learn-doc.js -------------------------------------------------------------------------------- /static/_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/static/_redirects -------------------------------------------------------------------------------- /static/icons/edb-docs-logo-disc-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/static/icons/edb-docs-logo-disc-dark.svg -------------------------------------------------------------------------------- /static/icons/edb-logo-disc-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/static/icons/edb-logo-disc-dark.svg -------------------------------------------------------------------------------- /static/icons/edb_landscape_color_grey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/static/icons/edb_landscape_color_grey.svg -------------------------------------------------------------------------------- /static/images/favicon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/static/images/favicon-128.png -------------------------------------------------------------------------------- /static/images/favicon-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/static/images/favicon-152.png -------------------------------------------------------------------------------- /static/images/favicon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/static/images/favicon-16.png -------------------------------------------------------------------------------- /static/images/favicon-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/static/images/favicon-180.png -------------------------------------------------------------------------------- /static/images/favicon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/static/images/favicon-192.png -------------------------------------------------------------------------------- /static/images/favicon-196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/static/images/favicon-196.png -------------------------------------------------------------------------------- /static/images/favicon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/static/images/favicon-32.png -------------------------------------------------------------------------------- /static/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/static/images/favicon.png -------------------------------------------------------------------------------- /static/images/social.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/static/images/social.jpg -------------------------------------------------------------------------------- /tools/automation/actions/jira-sync/jira.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/tools/automation/actions/jira-sync/jira.js -------------------------------------------------------------------------------- /tools/user/import/extensions/exsp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/tools/user/import/extensions/exsp.js -------------------------------------------------------------------------------- /tools/user/import/extensions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/tools/user/import/extensions/package.json -------------------------------------------------------------------------------- /tools/user/import/pem-api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/tools/user/import/pem-api/index.js -------------------------------------------------------------------------------- /tools/user/import/pem-api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/tools/user/import/pem-api/package.json -------------------------------------------------------------------------------- /tools/user/import/pem-api/widdershins-templates-openapi3/debug.def: -------------------------------------------------------------------------------- 1 | {{= data.utils.inspect(data) }} 2 | -------------------------------------------------------------------------------- /tools/user/import/pem-api/widdershins-templates-openapi3/footer.def: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tools/user/mergeq/.gitignore: -------------------------------------------------------------------------------- 1 | .envrc 2 | node_modules 3 | -------------------------------------------------------------------------------- /tools/user/mergeq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/tools/user/mergeq/README.md -------------------------------------------------------------------------------- /tools/user/mergeq/mergeq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/tools/user/mergeq/mergeq.js -------------------------------------------------------------------------------- /tools/user/mergeq/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/tools/user/mergeq/package-lock.json -------------------------------------------------------------------------------- /tools/user/mergeq/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/tools/user/mergeq/package.json -------------------------------------------------------------------------------- /tools/user/pgerelnotes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/tools/user/pgerelnotes/README.md -------------------------------------------------------------------------------- /tools/user/pgerelnotes/pge13.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/tools/user/pgerelnotes/pge13.sgml -------------------------------------------------------------------------------- /tools/user/pgerelnotes/pge13wrap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/tools/user/pgerelnotes/pge13wrap.xml -------------------------------------------------------------------------------- /tools/user/pgerelnotes/pge14.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/tools/user/pgerelnotes/pge14.sgml -------------------------------------------------------------------------------- /tools/user/pgerelnotes/pge14wrap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/tools/user/pgerelnotes/pge14wrap.xml -------------------------------------------------------------------------------- /tools/user/pgerelnotes/transform.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/tools/user/pgerelnotes/transform.xslt -------------------------------------------------------------------------------- /tools/user/reorg/links/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/tools/user/reorg/links/README.md -------------------------------------------------------------------------------- /tools/user/reorg/links/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/tools/user/reorg/links/package-lock.json -------------------------------------------------------------------------------- /tools/user/reorg/links/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/tools/user/reorg/links/package.json -------------------------------------------------------------------------------- /tools/user/reorg/redirects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/tools/user/reorg/redirects/README.md -------------------------------------------------------------------------------- /tools/user/reorg/redirects/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/docs/HEAD/tools/user/reorg/redirects/package.json --------------------------------------------------------------------------------