书栈网 · BookStack 本次搜索耗时 0.019 秒,为您找到 49868 个相关结果.
  • Database Resolver

    Usage Automatic connection switching Read/Write Splitting Manual connection switching Transaction Load Balancing Connection Pool DBResolver adds multiple databases support ...
  • CREATE DATABASE

    CREATE DATABASE Statement CREATE DATABASE Statement Creates a new database. In Impala, a database is both: A logical construct for grouping together related tables, views, a...
  • ALTER DATABASE

    ALTER DATABASE Statement ALTER DATABASE Statement The ALTER DATABASE statement changes the characteristics of a database. Use the SET OWNER clause to transfer the ownership ...
  • DROP DATABASE

    DROP DATABASE Statement DROP DATABASE Statement Removes a database from the system. The physical operations involve removing the metadata for the database from the metastore, a...
  • MIGRATE DATABASE

    MIGRATE DATABASE Description example keyword MIGRATE DATABASE Description This statement is used to migrate a logical cluster database to another logical cluster. Before p...
  • Querying the database

    Querying the database Direct queries Working with a database connection Querying the database Direct queries Very often, a single database query is needed to prepare a resp...
  • DROP DATABASE

    格式 DROP DATABASE [ IF EXISTS ] dbname ; DROPDATABASE 用于取消数据库中的所用表格和取消数据库。IF EXISTS 用于防止当数据库不存在时发生错误。 示例 mysql > drop database notest ; ERROR 1008 ( HY000 ): Can ...
  • Database Resolver

    用法 事务 自动切换连接 读写分离 手动切换连接 负载均衡 连接池 DBResolver 为 GORM 提供了多个数据库支持,支持以下功能: 支持多个 sources、replicas 读写分离 根据工作表、struct 自动切换连接 手动切换连接 Sources/Replicas 负载均衡 适用于原生 SQL https://gith...
  • CREATE DATABASE

    描述 格式 参数解释 示例 描述 该语句用于创建数据库,并可以指定数据库的默认属性(如数据库默认字符集,校验规则等)。 格式 create_database_stmt : CREATE { DATABASE | SCHEMA } [ IF NOT EXISTS ] database_name [ database...
  • PURGE DATABASE

    描述 格式 参数解释 示例 描述 该语句用于删除放在回收站的数据库。 格式 PURGE DATABASE object_name ; 参数解释 参数 描述 object_name 对象进入回收站后的新名字 示例 删除放在回收站的数据库 __recycle_$_1_1597384386029184。 Ocea...