书栈网 · BookStack 本次搜索耗时 0.030 秒,为您找到 1180 个相关结果.
  • 数据分区操作实例

    数据分区操作实例 数据库分区 使用范围分区方式做数据库分区 使用散列分区方式做数据库分区 表分区 使用范围分区方式做表分区 数据分区操作实例 为了进一步帮助用户更好地理解和使用数据分区,本文档通过以下操作实例进行解释说明。以下实例均使用 shell 工具进行操作。 数据库分区 使用范围分区方式做数据库分区 在集合 sample....
  • Values & Types

    Values & Types Converting Between Types Values & Types If you ask an employee at a phone store how much a certain phone costs, and they say “ninety-nine, ninety-nine” (i.e., $...
  • Methods

    SQL Methods Bundled methods Methods by category Methods by name [] Examples History .append() Examples History .asBoolean() Examples History .asDate() Examples History...
  • Shibboleth Authentication for Seafile v6.3+

    Overview Install and Configure Shibboleth Service Provider Apache Configuration Configure Seahub Affiliation and user role Verify This document is for Seafile Server versio...
  • getQueryMeta()

    getQueryMeta() 语法 类别 描述 参数 返回值 错误 示例 getQueryMeta() 语法 query.getQueryMeta() 类别 SdbQuery 描述 获取查询元数据信息。 参数 无 返回值 返回查询元数据信息。 错误 如果出错则抛异常,并输出错误信息,可以通过getLa...
  • Table Expressions

    Table Expressions Synopsis Parameters Table expressions language Table expressions that generate data Access a table or view Table or view names Force index selection ...
  • 不符合要求的事项

    不符合要求的事项 不符合要求的事项 Prior to create a non conformity, you need to create the list of origins (how you discovered your nonconformities) and causes (the root causes) of your noncon...
  • 二级索引

    本地索引 全局索引 本地索引 分区表的本地索引和非分区表的索引类似,索引的数据结构还是和主表的数据结构保持一对一的关系,但由于主表已经做了分区,主表的“每一个分区”都会有自己单独的索引数据结构。对每一个索引数据结构来说,里面的键(Key)只映射到自己分区中的主表数据,不会映射到其它分区中的主表,因此这种索引被称为本地索引。 从另一个角度来看,这种...
  • 事务日志

    事务日志 事务开启日志 事务预提交日志 事务提交日志 事务回滚日志 事务日志 SequoiaDB 巨杉数据库中的事务日志 记录了事务对数据库的所有更改,是备份和恢复的重要组件,也在事务操作中被用于回滚数据。因此事务日志中通常包含 REDO 和 UNDO 两部分,其中 REDO 部分用于数据恢复和复制组节点间数据进行增量同步,UNDO 部分用于...
  • Functions

    1024 2018-11-01 《clean code javascript》
    Functions Function arguments (2 or fewer ideally) Functions should do one thing Function names should say what they do Functions should only be one level of abstraction Remove...