Notes on IBM DB2 database

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

DB2 databaseIt is a widely used database system. DB2 databases are very popular among enterprises. This is due to the excellent performance of DB2 databases. What should we pay attention to in DB2 databases?

Considerations for the DB2 database:

1. after installing the DB2 database, you can operate it through the command line or graphical interface. If your database server is not on the local machine, you need to configure a client connection in "client configuration helper.

2. the control center cannot add, delete, modify, or modify data. You can only write SQL statements to implement this. Although the tools provided by quest can add data, they cannot use the copy, paste, and Tab keys. You must enter them one by one.Switch the existing data with the mouse. It seems that you can edit and modify the data in the cell, but the actual data cannot be commit, A non-write delete statement is not allowed. However, you can use pb to edit data in cells. One drawback is that the button for editing data is too close to the button for deleting a table. If the button for deleting a table is incorrect, pb, but the table is deleted without prompting, faint

3. The order by statement cannot be directly used in the DB2 view. It must be written as follows:

Select × from (select a, B, c from table1 order by a) as tab

Note: the premise of this writing method is that you have already installed patches.

4. Stored Procedure problems:

DB2 provides ltrim and rtrim functions, but trim functions are not provided. If you want to remove spaces at both ends of the characters, sorry, you must use ltrim (rtrim ()) you cannot use the expression to assign values to the insert statement. You must first assign the value to a variable and call other stored procedures without using constants as parameters, you must assign the value of this constant to a variable, and then use this variable as the parameter.

Select * from table fetch first n rows only statement is not available in the Stored Procedure

5. dynamic SQL can be used in stored procedures, but not in functions. kao

6. When a commit or rollback occurs, the cursor is automatically closed. Therefore, you must use it with caution for separate submission..

Proc builder always has insufficient memory during debugging and the screen is spent. However, if the pause does not take effect for a long time during breakpoint debugging, the system will prompt a timeout error.

7. Development Issues:

When the date variable + 1 months or date variable-1 MONTHS is used to retrieve the date, for example, when the date variable value is, the Stored Procedure assigns the date variable + 1 MONTHS to another

An error occurs when the date variable is used. The corresponding SQLSTATE is 01506 (db2? 01506): the DATE or TIMESTAMP value is adjusted to correct the invalid DATE obtained by arithmetic operations.

If you want to obtain only the next month, the alternative method is to get the first day of the month of the current date as the benchmark + 1 months or-1 MONTHS

8. You cannot assign values to variables using the select... into... method but set v = (select...) method. The specific example is as follows:

Drop function SXFM. ISORDERSUBMITDATE;

Create function sxfm. ISORDERSUBMITDATE (IN_ROW_ID DECIMAL (16, 0 ))

RETURNS DATE

LANGUAGE SQL

BEGIN ATOMIC

DECLARE V_SUBMIT_DATE DATE;

DECLARE V_SELL_ID DECIMAL (16, 0 );

DECLARE V_BUY_ID DECIMAL (16, 0 );

Set V_SELL_ID = (select coalesce (RECEIVE_ID,-1) FROM IS_ORDER WHERE ROW_ID = IN_ROW_ID );

Set V_BUY_ID = (select coalesce (PAY_ID,-1) FROM IS_ORDER WHERE ROW_ID = IN_ROW_ID );

Set V_SUBMIT_DATE = (select date (MAX (A. SUBMIT_DATE) FROM AM_AUDIT_QUEUE A, SM_USER B, SM_USER C

Where a. TABLE_CODE = 'is _ order' and a. TABLE_ROW_ID = IN_ROW_ID

And a. AUDIT_EMP_ID = C. ROW_ID and c. BRANCH_ID = V_BUY_ID -- the reviewer is the payer

And a. SUBMIT_EMP_ID = B. ROW_ID and B. BRANCH_ID = V_SELL_ID); -- submit to the payee

RETURN V_SUBMIT_DATE;

END;

# SYNC 10;
 

You must pay attention to this when operating DB2 databases. Otherwise, it will bring great trouble to everyone's work. I hope everyone can remember these precautions. In addition to this, you must master them and be flexible.

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.