List<String> tableNameList = new ArrayList<String>(); ResultSet resultSet = metaData.getTables(null, db2Schema, null, new String[]{"TABLE"})); while (resultSet.next()) { String tableName = resultSet.getString("TABLE_NAME"); tableNameList.add(tableName); } return tableNameList; } 1...
db2grant select on table tableName to user db2admin –全部授权 DB2 GRANTALL ON TABLE OWK.“FAVMENU” TO USER sckdev
テーブル名 table True string DB2 テーブルの名前 行ID id True string 更新する行を表す一意の識別子 行 item True dynamic 更新された値を含む行です 戻り値 この操作の出力は状況に応じて変わります。 複数行を取得 操作ID: GetItems DB2 のテーブルから複数行を取得する パラメーター...
#db2 create table t1 like t2 20、 将一个表t1的数据导入到另一个表t2 #db2 'insert into t1 select * from t2' 21、 查询表 #db2 'select * from table name where ...' 22、 显示表结构 #db2 describe table tablename 23、 修改列
describe table tableName获describe Select * from tableName 10. 数据的导入导出操作 首先连接上数据库; 用export命令 格式如下: Export to c:\org.txt of del messages d:\msgs.txt select * from org 数据来源 保存格式 数据保存的位置 操作情况保存位置 ...
1 に設定した場合は、ResultSetMetaData.getTableName() メソッドが呼び出されると、結果セットの各カラムの正しいテーブル名を特定するための追加処理が実行される。DB2 ドライバは、ResultSetMetaData.getSchemaName() メソッドと ResultSetMetaData.getCatalogName() メソッドが呼び出された場合、スキ...
Get the schemaTypePropertiesSchema property: The Db2 schema name. Type: string (or Expression with resultType string). Returns: the schemaTypePropertiesSchema value. getTable public Object getTable() Get the table property: The Db2 table name. Type: string (or Expression with resultType string). ...
GetName获取指定列的名称。 GetOrdinal在给定列名的情况下获取列序号。 GetSchemaTable返回用来描述DB2ResultSet类的列元数据的DataTable。 GetString以字符串形式获取指定列的值。 GetTime以TimeSpan对象形式获取指定列的值。 GetTimeSpan以TimeSpan对象形式获取指定列的值。
12、db2 describe table <表名> --查看表结构 13、db2 list tables --查看数据库中所有表结构 list tables for system --列出所有系统表 14、db2 list tablespaces --列出表空间 二、高级篇 15、fetch first 10 rows only --列出表中前10条数据 ...