DB2 Metadata
http://www.devart.com/dotconnect/db2/docs/MetaData.html
|
Collection Name
|
Number of restrictions |
Remarks
|
|---|---|---|
| MetaDataCollections | 0 |
Returns this list. Same as using GetSchema() method without parameters.
|
| Restrictions | 0 |
Lists restrictions for each metadata collection.
|
| ReservedWords | 0 |
Lists all reserved words used in the server.
|
| DataSourceInformation | 0 |
Returns the information about the data source, associated with this DB2Connection instance.
|
| DataTypes | 0 |
Lists data types supported by DB2 server.
|
| Catalogs | 0 |
Lists databases on the DB2 server.
|
| Schemas | 0 |
Lists schemas on the DB2 server.
|
| Tables | 4 |
GetSchema("Tables") returns the list of all tables (and/or views) on the server that you have access to.
|
| TablePrivileges | 3 |
GetSchema("Views") returns the list of table privileges on the server that you have access to.
|
| Columns | 4 |
Returns the list of columns, their type and some extra information.
GetSchema("Columns") returns the list of all columns in all databases on the server you have access to.
|
| Column Privileges | 4 |
Returns the list of column privileges.
GetSchema("Column Privileges") returns the list of column privileges in all databases on the server you have access to.
|
| Indexes | 5 |
Returns the list of indexes and their details.
|
| Functions | 3 |
Returns the list of functions on the server. The following restrictions may
be specified:
|
| Procedures | 4 |
Returns the list of procedures on the server. The following restrictions
may be specified:
|
| Function Parameters | 4 |
Returns the list of function arguments. The following restrictions may be
specified:
|
| Procedure Parameters | 5 |
Returns the list of procedure arguments. The following restrictions may be
specified:
|
| PrimaryKeys | 4 |
Returns the list of primary keys on the server. The following restrictions
may be specified:
|
| ForeignKeys | 6 |
Returns the list of foreign keys on the server. The following restrictions
may be specified:
|
DB2 Metadata的更多相关文章
- DB2 bind on z/os
BIND and REBIND options for packages and plans There are several options you can use for binding or ...
- Ubuntu / Win7 安装db2 v10.5
抓紧下载v10.5fp1_linuxx64_expc.tar.gz到~/Downloads/java_softcd java_softtar xf v10.5fp1_linuxx64_expc.tar ...
- Oracle、DB2、MySql、SQLServer JDBC驱动
四种数据库JDBC驱动,还列出了连接的Class驱动名和Url Pattern,DB2包括Type 2.Type 3和Type 4三种模式.注意驱动包名称的大小写. Oralce连接驱动包名和URL ...
- SQLite metadata
http://www.devart.com/dotconnect/sqlite/docs/MetaData.html https://github.com/sqlitebrowser/sqlitebr ...
- Android 获取meta-data中的数据
在 Android 的 Mainfest 清单文件中,Application,Activity,Recriver,Service 的节点中都有这个的存在.很多时候我们可以通过 meta-data 来配 ...
- DB2重启数据库实例
DB2重启数据库实例时,有时停止实例会失败,此时需要先确认没有应用链接数据库,然后再关闭数据库实例,并重新启动. 1.查看是否有活动的链接 命令:db2 list applications for d ...
- 你搞懂 ORACLE、 SQLSERVER、MYSQL与DB2的区别了吗
ORACLE. SQLSERVER.MYSQL与DB2的区别--平台性: Oracle.MYSQL与DB2可在所有主流平台上运行: SQL Server只能在Windows下运行: --安 ...
- MySQL 之 Metadata Locking 研究
MySQL5.5 中引入了 metadata lock. 顾名思义,metadata lock 不是为了保护表中的数据的,而是保护 database objects(元数据)的.包括表结构.schem ...
- CentOS系统yum源使用报错:Error: Cannot retrieve repository metadata (repomd.xml) for repository: rpmforge.
服务器上的yum突然不好使用,使用yum的时候报错如下:[root@bastion-IDC src]# yum list......Could not retrieve mirrorlist http ...
随机推荐
- 如何使用robots禁止各大搜索引擎爬虫爬取网站
ps:由于公司网站配置的测试环境被百度爬虫抓取,干扰了线上正常环境的使用,刚好看到每次搜索淘宝时,都会有一句由于robots.txt文件存在限制指令无法提供内容描述,于是便去学习了一波 1.原来一般来 ...
- java连接hbase时出现....is accessible from more than one module:
今天在用java程序连接hbase时,出现错误,The package org.apache.hadoop.hbase is accessible from more than one module: ...
- poj3207 Ikki's Story IV - Panda's Trick 2-SAT
题目传送门 题意:在一个圆上顺时针安放着n个点,给出m条线段连接端点,要求线段不相交,线段可以在圆内也可以在圆外,问是否可以. 思路:假设一条线段,放在圆外是A,放在园内是A',那么两条线段如果必须一 ...
- vSphere虚拟主机安装Centos7系统
经过上一帖的主机设置,这一步就可以开始安装系统了,本次详细记录各个过程并分析结果. Centos7 1.右键点击列表中的虚拟主机,打开控制台. 点击绿色开机键,开始安装. 这里有一个很关键的点,就是上 ...
- PowerDesigner新建CDM设置相同属性
在 PowerDesigner设计逻辑模型CDM时,在一个包的一个域中,考虑到主外键名称可能冲突的问题,默认两个不同的实体中不能有相同的属性 但实际设计的时候,通常要在两个实体中使用相同的属性名, 比 ...
- 【es6】数组扩展
只有一个参数,为数组中的值.
- 查找checked的checkbox和raido
<fieldset id="checkArray"> <input type="checkbox" name="chk[]" ...
- js Array vs [],以及是否为空的判断
两者基本相同,唯一不同点在于初始化: var a = [], // these are the same b = new Array(), // a and b are arrays with len ...
- MySQL数据库-错误1166 - Incorrect column name 'xxx' 的解决方法
在用Navicat for MySQL给MySQL数据库修改表的字段时报如下的错误: 解决方法:检查字段里面是不是有空格,去掉就可以了.
- module使用和设置
Modules environmentDescription This is a system that allows you to easily change between different v ...