书栈网 · BookStack 本次搜索耗时 0.025 秒,为您找到 6857 个相关结果.
  • PgSQL · 应用案例 · PostgreSQL + PostGIS 时态分析

    1051 2020-08-13 《数据库内核月报》
    背景 1、轨迹格式 2、计算两个轨迹是否有近距离接触 3、计算两个轨迹近距离接触的MEASURE(时间戳) 4、计算两个轨迹近距离接触的位置 5、计算两个轨迹近距离接触的最近的距离 6、索引加速 压测 小结 参考 背景 假设我们有一些物体的轨迹数据(经纬度、measure(通常存为epoch时间戳)),比如车辆、人、传感器等。 给...
  • Control Plane Configuration

    Control Plane Configuration Modifying the configuration Inspecting the configuration Store Kubernetes Memory Postgres TLS Migrations Control Plane Configuration Modifyi...
  • Control Plane Configuration

    Control Plane Configuration Modifying the configuration Inspecting the configuration Store Kubernetes Memory Postgres TLS Migrations Control Plane Configuration Modifyi...
  • Fine-tuning

    Fine-tuning Postgres KUMA_STORE_POSTGRES_CONNECTION_TIMEOUT KUMA_STORE_POSTGRES_MAX_OPEN_CONNECTIONS Snapshot Generation Fine-tuning Postgres If you choose Postgres as a...
  • Fine-tuning

    Fine-tuning Postgres KUMA_STORE_POSTGRES_CONNECTION_TIMEOUT KUMA_STORE_POSTGRES_MAX_OPEN_CONNECTIONS Snapshot Generation Fine-tuning Postgres If you choose Postgres as a...
  • GRANT

    GRANT 功能描述 注意事项 语法格式 参数说明 示例 相关链接 GRANT 功能描述 对角色和用户进行授权操作。 使用GRANT命令进行用户授权包括以下三种场景: 将系统权限授权给角色或用户 系统权限又称为用户属性,包括SYSADMIN、CREATEDB、CREATEROLE、AUDITADMIN、MONADMIN、OP...
  • PostgreSQL-CDC

    PostgreSQL-CDC Overview Supported Version Dependencies Maven dependency Setup PostgreSQL server pgoutput decoderbufs replica identity How to create a PostgreSQL Extract Nod...
  • 使用DML命令更新表

    使用DML命令更新表 操作步骤 使用DML命令更新表 openGauss支持标准的数据库操作语言(DML)命令,对表进行更新。 操作步骤 假设存在表customer_t,表结构如下: postgres =# CREATE TABLE customer_t ( c_customer_sk integer , ...
  • COMMIT | END

    COMMIT | END 功能描述 注意事项 语法格式 参数说明 示例 相关链接 COMMIT | END 功能描述 通过COMMIT或者END可完成提交事务的功能,即提交事务的所有操作。 注意事项 执行COMMIT这个命令的时候,命令执行者必须是该事务的创建者或系统管理员,且创建和提交操作可以不在同一个会话中。 语法格式...
  • RETURN NEXT及RETURN QUERY

    RETURN NEXT及RETURN QUERY 语法 示例 RETURN NEXT及RETURN QUERY 语法 创建函数时需要指定返回值SETOF datatype。 return_next_clause::= return_query_clause::= 对以上语法的解释如下: 当需要函数返回一个集合时,使用RETUR...