`

DB2基本命令

    博客分类:
  • IBM
阅读更多

1.启动数据库
      db2start
2.停止数据库
      db2stop
3.连接数据库
      db2 connect to o_yd user db2 using pwd
4.读数据库管理程序配置
      db2 get dbm cfg
5.写数据库管理程序配置
      db2 update dbm cfg using 参数名 参数值
6.读数据库的配置
      db2 connect to o_yd user db2 using pwd
      db2 get db cfg for o_yd
7.写数据库的配置
      db2 connect to o_yd user db2 using pwd
      db2 update db cfg for o_yd using 参数名 参数值
8.关闭所有应用连接
      db2 force application all
      db2 force application ID1,ID2,,,Idn MODE ASYNC
      (db2 list application for db o_yd show detail)
9.备份数据库
      db2 force application all
      db2 backup db o_yd to d:
      (db2 initialize tape on \\.\tape0)
      (db2 rewind tape on \\.\tape0)
      db2 backup db o_yd to \\.\tape0
10.恢复数据库
         db2 restore db o_yd from d: to d:
         db2 restore db o_yd from \\.\tape0 to d:
11.绑定存储过程
         db2 connect to o_yd user db2 using pwd
         db2 bind c:\dfplus.bnd
   拷贝存储过程到服务器上的C:\sqllib\function目录中
12.整理表
         db2 connect to o_yd user db2 using pwd
         db2 reorg table ydd
         db2 runstats on table ydd with distribution and indexes all
13.导出表数据
          db2 export to c:\dftz.txt of del select * from dftz
         db2 export to c:\dftz.ixf of ixf select * from dftz
14.导入表数据
         import from c:\123.txt of del   insert into ylbx.czyxx
         db2 import to c:\dftz.txt of del commitcount 5000 messages   c:\dftz.msg insert into dftz
         db2 import to c:\dftz.ixf of ixf commitcount 5000 messages c:\dftz.msg insert into dftz
         db2 import to c:\dftz.ixf of ixf commitcount 5000 insert into dftz
         db2 import to c:\dftz.ixf of ixf commitcount 5000 insert_update into dftz
         db2 import to c:\dftz.ixf of ixf commitcount 5000 replace into dftz
         db2 import to c:\dftz.ixf of ixf commitcount 5000 create into dftz    (仅IXF)
         db2 import to c:\dftz.ixf of ixf commitcount 5000 replace_create into dftz   (仅IXF)
15.执行一个批处理文件
        db2 –tf 批处理文件名
       (文件中每一条命令用 ;结束)
16.自动生成批处理文件
          建文本文件:temp.sql
         select 'runstats on table DB2.' || tabname || ' with distribution and   detailed indexes all&#59;' from syscat.tables where tabschema='DB2' and type='T'&#59;
         db2 –tf temp.sql>;runstats.sql
17.自动生成建表(视图)语句
         在服务器上:C:\sqllib\misc目录中
         db2 connect to o_yd user db2 using pwd
         db2look –d o_yd –u db2 –e –p –c c:\o_yd.txt
18.其他命令
         grant dbadm on database to user bb
19.select * from czyxx fetch first 1 rows only
20.db2look –d ylbx –u db2admin –w –asd –a –e –o a.txt21 . 显示当前用户所有表
  list tables
22.列出所有的系统表
  list tables for system
23.查看表结构
  db2 describe select * from user.tables

分享到:
评论

相关推荐

    DB2基本命令.docx

    DB2基本命令.docx

    db2 常用命令大全

    DB2 常用命令大全 DB2 是 IBM 公司的一款关系数据库管理系统,具有强大的数据存储和处理能力。以下是 DB2 的一些常用命令,可以帮助开发人员更好地使用 DB2 数据库。 一、基础篇 1. 连接数据库 db2 connect to ...

    DB2基本命令 实例管理和常用dml

    db2 connect to o_yd user db2 using pwd db2 reorg table ydd db2 runstats on table ydd with distribution and indexes all 13.导出表数据 db2 export to c:\dftz.txt of del select * from dftz db2 ...

    db2常用命令大全,有说明

    db2 常用命令集合,最基本的db2命令,最全的db2常用命令说明,适合初学者,可以快速的掌握db2的常用命令,带说明哦

    DB2基本操作命令

    DB2数据库系IBM公司重要的数据库产品,本文档讲述DB2数据库的基本操作命令

    IBM db2 常用命令大全

    非常详细的DB2常用命令介绍。包括基本的配置查看、备份、恢复、sql 数据库、表、实例等相关命令。另外针对每个命令都有详细的说明,方便阅读、容易理解

    Db2命令大全

    Db2基本命令,数据开发参考手册。可以看下。

    db2数据库基本命令

    发送发生大防盗锁发生大发生大发生大东方神发生大防盗锁

    DB2应用经验和DB2基本问题总结

    DB2的常用命令和在DB2中常用的SQL语句,IBM DB2 数据库几个应用上的小技巧,DB2应用经验,DB2基本问题总结

    DB2常用基本操作说明

    日常工作用得到的简单的DB2命令 例如启动、停止,锁信息等

    db2 export和inport命令相关

    DB2 Export 和 Import 命令相关 DB2 数据库管理系统提供了多种数据移动方式,其中包括数据的导入(Import)、导出(Export)和装入(Load)。在本文中,我们将详细介绍 DB2 中的数据移动命令,包括 Export 和 ...

    DB2常用命令

    DB2常用命令.doc 最基本常用命令·······

    db2常用命令

    DB2常用的命令,一些基本的SQL语句

    DB2常用的命令——汇总

    DB2常用的命令,包括所有的基本操作命令

    db2命令全集

    db2常用命令,基本掌握文本命令,就可以对db2进行简单操作了。

    DB2学习笔记

    DB2 学习笔记旨在帮助用户快速掌握 DB2 的基本操作命令和概念。 实例相关 在 DB2 中,实例是指数据库服务器的实例,可以理解为一个独立的数据库服务器。实例相关的操作命令包括: * 查询实例:db2ilist * 查看...

    DB2数据库基本操作手册

    文档为公司培训资料,包含DB2数据库的日常操作,DB2常用命令,适合职场新手

    DB2 UDB V8.1 管理

    DB2 基本管理,基本命令使用的说明问题。个人整理。

    db2最常用命令,基本满足DB2日常维护需要

    平时管理DB2常用的命令,绝对是DB2日常管理的好资料

    db2使用14个经典小技巧

    DB2数据库提供了高层次的数据利用性、完整性、安全性、可恢复性,以及小规模到大规模应用程序的执行能力,具有与平台无关的基本功能和SQL命令。本文介绍的技巧可以很大程度简便我们的工作过程,而且工作效率也得到...

Global site tag (gtag.js) - Google Analytics