知识库 : DB2 BLU常用SQL和命令

Edit Document

DB2 BLU 常用 SQL 命令

 

1. 导出 DEL 文件     

    export to exp-file.del of del select * from table1

2. 导入 DEL 文件

    load from imp-file.del of del replace into table1

    追加 replace insert

3. 清空表

    load from /dev/null of del replace into table1

    truncate table table1 immediate

4. 查看表是否是列存储

    select tabname,tableorg from syscat.tables where tabname like ‘UDF%’ // tableorg 是‘ C’ 为列存储表

5. 设置 分析载入数据参数

db2set DB2_MAX_ANALYZE_SIZE=0

0表示 分析所有的载入输入

6.查看载入进度

db2pd -utilities

Attachments:

DB2 BLU常用SQL和命令.docx (application/vnd.openxmlformats-officedocument.wordprocessingml.document)