30 Basic DB2 database operation commands

Source: Internet
Author: User
Tags db2 connect ibm db2 ibm db2 database

1. view the local node directory

In the command window, enter db2 list node directory.

2. cataloguing a TCP/IP Node

Command window: db2 catalog tcpip node Remote Server Ostype

3. Cancel node Cataloguing

Db2 uncatalog node

4. view the system database directory

Db2 list database directory

5. view the local database directory

Db2 list database directory on <drive letter>

If the database is in the local database directory but not in the system database directory, you can right-click <database> in the control center and choose add, enter the name of the database to be added or click the refresh button to select a database. After joining the database, you can access the database.

6. cataloguing Database

Db2 catalog database As At node

7. Cancel database Cataloguing

Db2 uncatalog database

8. Test the remote database connection.

Db2 connect User Using

9. Any user can set the default mode for a specific database connection by setting the CurrentSchema special register. The initial default value is the permission ID of the current session user.

Set schema =

This statement can be used interactively or in applications. If you bind a package with the DynamicrulesBind option, this statement does not work. This statement is not under transaction control.

10. code page settings

Set character sets when creating databases

Create database Using codeset Territory

Example: create database dbtest using codeset IBM-437 territory US

You can also set the code page of the entire database. In win2000/NT/xp, add the variable DB2CODEPAGE = to my computer --> properties --> advanced --> environment variable. For example, DB2CODEPAGE = 437 or DB2CODEPAGE = 1386. Alternatively, enter db2set DB2CODEPAGE = 1386 in the IBM DB2 command window. After the settings, restart DB2 to take effect.

11. migration of data from earlier DB2 versions to later versions

First, import the data backup of earlier versions to the database of later versions using the restoration function, and then enter db2 migrate database in the Command window. .

12. Access the table when the table name or mode contains quotation marks

Command window: db2 select * from \ "tabschema \". \ "tabname \"

Command Line processor: db2 => select * from "tabschema". "tabname"

13. Export the table structure of the database to generate the DDL File

Command window: db2look-d -E-c-o

14. Execute the script file

Command window: db2-tvf

15. Code Page Conversion

16. Obtain the current DB2 version select * from sysibm. sysversions

17. Restrictions on modifying fields in the DB2 table?

Only the VARCHAR2 type can be modified and can be increased or not decreased.

Alter table Alter column Set data type varchar (SIZE)

18. How to view the table structure?

Describe table Or describe select * from .

19. How to quickly clear a large table?

Alter table TABLE_NAME ACTIVE NOT LOGGED INITALLY WITH EMPTY TABLE

20. How can I view the stored procedures of a database?

SELECT * from syscat. PROCEDURES

21. How to view table constraints?

SELECT * from syscat. checks where tabname =

22. How do I view the complete reference constraints of a table?

SELECT * from syscat. references where tabname =

23. How do I know the BUFFERPOOLS status?

Select * from SYSCAT. BUFFERPOOLS

24. How can I view and modify instance and database configuration parameters in the command line?

View instance configuration parameters: db2 get dbm cfg

Modify instance configuration parameters: db2 update dbm cfg using parameter name New Value

View database configuration parameters: db2 get db cfg

Modify database configuration parameters: db2 update db cfg Using Parameter Name New Value

25. How to modify the buffer?

Add a buffer: create bufferpool Size [Pagesize 4096] {[not] extended storage}: alter bufferpool Size {[Not] extended storage}

Delete Buffer: drop bufferpool

If the buffer size is set to-1, the number of pages of the buffer pool is determined by the buffpage parameter configured by the database.

Note: The Database Configuration Parameter buffpage only applies to the buffer pool with the buffer size set to-1.

26. how to use in/not in select * from tabschema without using the select clause when multiple fields exist. tabname where (colA, colB, colC) [not] in (valueA1, valueB1, valueC1), (valueA2, valueB2, valueC2 ),... (valueAn, valueBn, valueCn ))

27. view the applications currently connected to the database

Db2 list application [show detail]

28. How to confirm the consistency of the DB2 database

Db2dart /DB indicates to check the consistency of the entire database

29. Export the data of a table

Export

For example, export a user table.

Export to c: \ user. ixf of ixf select * from user

30. Import Data

Import from

For example, import a user table. You can create a new table directly during import. If the table exists, you can use INSERT or UPDATE.

  1. IBM DB2 9 launches Quick Start software packages to enhance industrial applications
  2. Multiple vulnerabilities in IBM DB2 Universal
  3. Introduction to IBM DB2 Connect (1)
  4. Introduction to IBM DB2 UDB Stinger (1)
  5. Features of the next IBM DB2 database version

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.