青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

Prayer

在一般中尋求卓越
posts - 1256, comments - 190, trackbacks - 0, articles - 0
  C++博客 :: 首頁(yè) :: 新隨筆 :: 聯(lián)系 :: 聚合  :: 管理

SYSCAT.TABLES 所有的字段說(shuō)明

Posted on 2009-04-01 13:46 Prayer 閱讀(7297) 評(píng)論(0)  編輯 收藏 引用 所屬分類: DB2
http://publib.boulder.ibm.com/infocenter/db2luw/v9/index.jsp?topic=/com.ibm.db2.udb.admin.doc/doc/r0011297.htm


SYSCAT.TABLES catalog view

Each row represents a table, view, alias, or nickname. Each table or view hierarchy has one additional row representing the hierarchy table or hierarchy view that implements the hierarchy. Catalog tables and views are included.

Table 67. SYSCAT.TABLES Catalog View
Column Name Data Type Nullable Description
TABSCHEMA VARCHAR(128) Schema name of the object.
TABNAME VARCHAR(128) Unqualified name of the object.
OWNER VARCHAR(128) Authorization ID under which the table, view, alias, or nickname was created.
TYPE CHAR(1) Type of object.
  • A = Alias
  • G = Global temporary table
  • H = Hierarchy table
  • L = Detached table
  • N = Nickname
  • S = Materialized query table
  • T = Table (untyped)
  • U = Typed table
  • V = View (untyped)
  • W = Typed view
STATUS CHAR(1) Status of the object.
  • C = Set integrity pending
  • N = Normal
  • X = Inoperative
BASE_TABSCHEMA VARCHAR(128) Y If TYPE = 'A', contains the schema name of the table, view, alias, or nickname that is referenced by this alias; null value otherwise.
BASE_TABNAME VARCHAR(128) Y If TYPE = 'A', contains the unqualified name of the table, view, alias, or nickname that is referenced by this alias; null value otherwise.
ROWTYPESCHEMA VARCHAR(128) Y Schema name of the row type for this table, if applicable; null value otherwise.
ROWTYPENAME VARCHAR(128) Y Unqualified name of the row type for this table, if applicable; null value otherwise.
CREATE_TIME TIMESTAMP Time at which the object was created.
INVALIDATE_TIME TIMESTAMP Time at which the object was last invalidated.
STATS_TIME TIMESTAMP Y Time at which any change was last made to recorded statistics for this object. Null if statistics are not collected.
COLCOUNT SMALLINT Number of columns, including inherited columns (if any).
TABLEID SMALLINT Internal logical object identifier.
TBSPACEID SMALLINT Internal logical identifier for the primary table space for this object.
CARD BIGINT Total number of rows; -1 if statistics are not collected.
NPAGES BIGINT Total number of pages on which the rows of the table exist; -1 for a view or alias, or if statistics are not collected; -2 for a subtable or hierarchy table.
FPAGES BIGINT Total number of pages; -1 for a view or alias, or if statistics are not collected; -2 for a subtable or hierarchy table.
OVERFLOW BIGINT Total number of overflow records in the table; -1 for a view or alias, or if statistics are not collected; -2 for a subtable or hierarchy table.
TBSPACE VARCHAR(128) Y Name of the primary table space for the table. If no other table space is specified, all parts of the table are stored in this table space. Null for aliases, views, and partitioned tables.
INDEX_TBSPACE VARCHAR(128) Y Name of the table space that holds all indexes created on this table. Null for aliases, views, and partitioned tables, or if the INDEX IN clause was omitted or specified with the same value as the IN clause of the CREATE TABLE statement.
LONG_TBSPACE VARCHAR(128) Y Name of the table space that holds all long data (LONG or LOB column types) for this table. Null for aliases, views, and partitioned tables, or if the LONG IN clause was omitted or specified with the same value as the IN clause of the CREATE TABLE statement.
PARENTS SMALLINT Y Number of parent tables for this object; that is, the number of referential constraints in which this object is a dependent.
CHILDREN SMALLINT Y Number of dependent tables for this object; that is, the number of referential constraints in which this object is a parent.
SELFREFS SMALLINT Y Number of self-referencing referential constraints for this object; that is, the number of referential constraints in which this object is both a parent and a dependent.
KEYCOLUMNS SMALLINT Y Number of columns in the primary key.
KEYINDEXID SMALLINT Y Index identifier for the primary key index; 0 or the null value if there is no primary key.
KEYUNIQUE SMALLINT Number of unique key constraints (other than the primary key constraint) defined on this object.
CHECKCOUNT SMALLINT Number of check constraints defined on this object.
DATACAPTURE CHAR(1)
  • L = Table participates in data replication, including replication of LONG VARCHAR and LONG VARGRAPHIC columns
  • N = Table does not participate in data replication
  • Y = Table participates in data replication, excluding replication of LONG VARCHAR and LONG VARGRAPHIC columns
CONST_CHECKED CHAR(32)
  • Byte 1 represents foreign key constraint.
  • Byte 2 represents check constraint.
  • Byte 5 represents materialized query table.
  • Byte 6 represents generated column.
  • Byte 7 represents staging table.
  • Byte 8 represents data partitioning constraint.
  • Other bytes are reserved for future use.
Possible values are:
  • F = In byte 5, the materialized query table cannot be refreshed incrementally. In byte 7, the content of the staging table is incomplete and cannot be used for incremental refresh of the associated materialized query table.
  • N = Not checked
  • U = Checked by user
  • W = Was in 'U' state when the table was placed in set integrity pending state
  • Y = Checked by system
PMAP_ID SMALLINT Y Identifier for the distribution map that is currently in use by this table (null for aliases or views).
PARTITION_MODE CHAR(1) Indicates how data is distributed among database partitions in a partitioned database system.
  • H = Hashing
  • R = Replicated across database partitions
  • Blank = No database partitioning
LOG_ATTRIBUTE CHAR(1)
  • Always 0. This column is no longer used.
PCTFREE SMALLINT Percentage of each page to be reserved for future inserts.
APPEND_MODE CHAR(1) Controls how rows are inserted into pages.
  • N = New rows are inserted into existing spaces, if available
  • Y = New rows are appended to the end of the data
Initial value is 'N'.
REFRESH CHAR(1) Refresh mode.
  • D = Deferred
  • I = Immediate
  • O = Once
  • Blank = Not a materialized query table
REFRESH_TIME TIMESTAMP Y For REFRESH = 'D' or 'O', time at which the data was last refreshed (REFRESH TABLE statement); null value otherwise.
LOCKSIZE CHAR(1) Indicates the preferred lock granularity for tables that are accessed by data manipulation language (DML) statements. Applies to tables only. Possible values are:
  • I = Block insert
  • R = Row
  • T = Table
  • Blank = Not applicable
Initial value is 'R'.
VOLATILE CHAR(1)
  • C = Cardinality of the table is volatile
  • Blank = Not applicable
ROW_FORMAT CHAR(1) Not used.
PROPERTY VARCHAR(32) Properties for a table. A single blank indicates that the table has no properties.
STATISTICS_PROFILE CLOB(10M) Y RUNSTATS command used to register a statistical profile for the object.
COMPRESSION CHAR(1)
  • B = Both value and row compression are activated
  • N = No compression is activated; a row format that does not support compression is used
  • R = Row compression is activated; a row format that supports compression might be used
  • V = Value compression is activated; a row format that supports compression is used
  • Blank = Not applicable
ACCESS_MODE CHAR(1) Access restriction state of the object. These states only apply to objects that are in set integrity pending state or to objects that were processed by a SET INTEGRITY statement. Possible values are:
  • D = No data movement
  • F = Full access
  • N = No access
  • R = Read-only access
CLUSTERED CHAR(1) Y
  • Y = Table is multidimensionally clustered (even if only by one dimension)
  • Null value = Table is not multidimensionally clustered
ACTIVE_BLOCKS BIGINT Total number of active blocks in the table, or -1. Applies to multidimensional clustering (MDC) tables only.
DROPRULE CHAR(1)
  • N = No rule
  • R = Restrict rule applies on drop
MAXFREESPACESEARCH SMALLINT Reserved for future use.
AVGCOMPRESSEDROWSIZE SMALLINT Average length (in bytes) of compressed rows in this table; -1 if statistics are not collected.
AVGROWCOMPRESSIONRATIO REAL For compressed rows in the table, this is the average compression ratio by row; that is, the average uncompressed row length divided by the average compressed row length; -1 if statistics are not collected.
AVGROWSIZE SMALLINT Average length (in bytes) of both compressed and uncompressed rows in this table; -1 if statistics are not collected.
PCTROWSCOMPRESSED REAL Compressed rows as a percentage of the total number of rows in the table; -1 if statistics are not collected.
LOGINDEXBUILD VARCHAR(3) Y Level of logging that is to be performed during create, recreate, or reorganize index operations on the table.
  • OFF = Index build operations on the table will be logged minimally
  • ON = Index build operations on the table will be logged completely
  • Null value = Value of the logindexbuild database configuration parameter will be used to determine whether or not index build operations are to be completely logged
CODEPAGE SMALLINT Code page of the object. This is the default code page used for all character columns, triggers, check constraints, and expression-generated columns.
ENCODING_SCHEME CHAR(1)
  • A = CCSID ASCII was specified
  • U = CCSID UNICODE was specified
  • Blank = CCSID clause was not specified
PCTPAGESSAVED SMALLINT Approximate percentage of pages saved in the table as a result of row compression. This value includes overhead bytes for each user data row in the table, but does not include the space that is consumed by dictionary overhead; -1 if statistics are not collected.
LAST_REGEN_TIME TIMESTAMP Time at which any views or check constraints on the table were last regenerated.
SECPOLICYID INTEGER Identifier for the security policy protecting the table; 0 for non-protected tables.
PROTECTIONGRANULARITY CHAR(1)
  • B = Both column- and row-level granularity
  • C = Column-level granularity
  • R = Row-level granularity
  • Blank = Non-protected table
DEFINER1 VARCHAR(128) Authorization ID under which the table, view, alias, or nickname was created.
REMARKS VARCHAR(254) Y User-provided comments, or null.
Notes:
  1. The DEFINER column is included for backwards compatibility. See OWNER.

青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            亚洲欧美bt| 欧美国产激情| 欧美国产综合一区二区| 久久不见久久见免费视频1| 亚洲巨乳在线| 亚洲国产中文字幕在线观看| 永久免费毛片在线播放不卡| 国产在线不卡精品| 久久久久88色偷偷免费| 久久精品一二三区| 久久综合给合| 欧美电影在线观看| 欧美午夜不卡在线观看免费| 国产精品久久9| 国产精品亚洲美女av网站| 国产免费成人| 一区一区视频| 亚洲美女黄网| 亚洲一区在线播放| 欧美在线一二三四区| 免费不卡亚洲欧美| 亚洲欧洲在线视频| 一本色道久久综合亚洲精品不卡 | 亚洲免费观看视频| 一区二区免费在线视频| 亚洲综合激情| 久久精品电影| 欧美日韩免费观看一区| 国产亚洲欧美另类中文| 亚洲激情视频网站| 亚洲专区一区二区三区| 久久综合给合| 在线视频欧美日韩精品| 久久高清福利视频| 欧美日韩不卡一区| 激情欧美一区二区三区在线观看| 亚洲欧洲视频| 久久精品99| 日韩视频免费观看高清完整版| 亚洲黄一区二区三区| 欧美精品在线看| 国产偷国产偷精品高清尤物| 日韩一区二区精品视频| 久久精品欧洲| 日韩视频一区二区三区在线播放免费观看| 亚洲一品av免费观看| 蜜桃av噜噜一区| 国产日韩一区在线| 亚洲最新色图| 欧美a一区二区| 欧美一级片一区| 欧美午夜一区二区| 亚洲精品中文字| 久久综合久久美利坚合众国| 亚洲一区二区少妇| 欧美日韩和欧美的一区二区| 狠狠色综合色区| 久久精品电影| 亚洲一区自拍| 国产精品毛片a∨一区二区三区|国| 亚洲电影免费观看高清| 久久一二三国产| 午夜精品99久久免费| 国产精品久久久久免费a∨大胸 | 欧美在线视频二区| 国产精品久久久久久久午夜| 一区二区三区精品视频在线观看| 免费久久久一本精品久久区| 香蕉久久夜色精品| 国产午夜久久| 久久久精品网| 久久激情久久| 亚洲激情一区二区| 亚洲精品免费在线观看| 欧美日韩精品系列| 香蕉免费一区二区三区在线观看 | 欧美国产在线电影| 欧美激情第1页| 一区二区三区 在线观看视频| 亚洲精品影院| 国产精品一国产精品k频道56| 欧美一级大片在线观看| 欧美影院成年免费版| 亚洲国产黄色片| 亚洲区中文字幕| 国产精品二区三区四区| 久久久久久九九九九| 免费观看一级特黄欧美大片| 国产精品99久久久久久久女警| 中文欧美在线视频| 加勒比av一区二区| 亚洲精品在线电影| 国产亚洲亚洲| 亚洲日韩中文字幕在线播放| 久久精品在线免费观看| 午夜精品久久久久久久99水蜜桃| 国自产拍偷拍福利精品免费一| 久久久av水蜜桃| 久久人人97超碰国产公开结果| 亚洲欧洲在线视频| 一区二区激情| 国内精品久久久久影院薰衣草| 亚洲国产欧美日韩另类综合| 欧美黄色片免费观看| 一区二区三区日韩精品| 亚洲卡通欧美制服中文| 欧美午夜精品一区| 亚洲精品黄网在线观看| 欧美亚洲视频| 激情五月婷婷综合| 欧美成人黄色小视频| 欧美华人在线视频| 午夜一级在线看亚洲| 亚洲在线日韩| 一本一本久久a久久精品牛牛影视| 99精品视频网| 国产综合在线看| 欧美激情第3页| 欧美色另类天堂2015| 久久超碰97中文字幕| 欧美日韩日本视频| 久久精品人人做人人爽| 在线一区二区三区四区| 欧美日韩一区不卡| 老司机精品导航| 欧美视频精品一区| 艳女tv在线观看国产一区| 一区二区三欧美| 国产精品高清免费在线观看| 99视频精品免费观看| 99精品欧美一区| 国产精品国产三级国产a| 久久综合狠狠综合久久综青草| 国产精品五月天| 亚洲福利视频在线| 黄色日韩网站| 亚洲一级影院| av72成人在线| 久久久久综合网| 亚洲视频一区二区| 欧美gay视频| 久久中文字幕导航| 国产精品高潮视频| 91久久精品国产91性色| 国产精品成人在线| 亚洲一区不卡| 一区二区精品国产| 女人天堂亚洲aⅴ在线观看| 久久精品夜色噜噜亚洲a∨| 欧美日韩一区二区在线观看视频| 99亚洲一区二区| 亚洲免费观看在线观看| 久久久久久高潮国产精品视| 欧美一区二区在线播放| 欧美四级剧情无删版影片| 最新成人av网站| 欧美另类极品videosbest最新版本| 亚洲专区免费| 蜜桃精品久久久久久久免费影院| 性娇小13――14欧美| 欧美久久久久久蜜桃| 免费观看在线综合色| 国产亚洲综合在线| 午夜精品久久久久久久久久久久| 欧美日韩美女一区二区| 亚洲经典自拍| 亚洲高清影视| 免费久久99精品国产自在现线| 久久在线视频| 亚洲电影成人| 欧美成人福利视频| 亚洲一二区在线| 欧美中文在线免费| 国产乱人伦精品一区二区| 在线一区二区三区四区| 亚洲在线视频网站| 亚洲国产女人aaa毛片在线| 久久精品免费电影| 美女视频网站黄色亚洲| 精品1区2区3区4区| 亚洲精品一区二区三区99| 久久9热精品视频| 黄色日韩在线| 欧美国产大片| 亚洲一区网站| 亚洲国产欧美精品| 亚洲专区在线视频| 尤物99国产成人精品视频| 久久影院午夜片一区| 久久九九有精品国产23| 中文日韩在线| 国产一区二区精品久久| 久久精品国产99国产精品澳门| 蜜臀av一级做a爰片久久| 亚洲破处大片| 国产一区二区精品久久| 欧美另类一区| 欧美在线一区二区| 欧美主播一区二区三区美女 久久精品人 | 欧美激情一区二区|