DB2 database file system is full.

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

The following article mainly introduces the solution to solve the problem of the DB2 database file system being full. to give a more detailed explanation of the solution, we will explain it by listing instances, the following is a detailed description of the main content of the article. I hope you will have a better understanding of it after browsing.

This article provides an example to illustrate how to solve the problem that the file system of the IBM DB2 database is full. This method is also very simple.

Case study:

Create a 20 GB tablespace In the DB2 database of the AIX system. The specific SQL statements are as follows:

 
 
  1. CREATE REGULAR TABLESPACE HTDC_DATA PAGESIZE 8 K MANAGED BY DATABASE  
  2. USING ( FILE ’/db2_tag/TABLE_SPACES/HTDC_DATA/HTDC_DATA.dat’ 20G)  
  3. EXTENTSIZE 16 OVERHEAD 10.67 PREFETCHSIZE 16 TRANSFERRATE 0.04  
  4. BUFFERPOOL BPHTDC  
  5. DROPPED TABLE RECOVERY OFF 

Error code: SQLCODE 0968C

Error message: File System is full. (The File System is full)

Cause: the maximum file size allowed by the current user identity is exceeded.

Solution:

Log on to the AIX Terminal

 
 
  1. telnet IPAddress 

Enter System

 
 
  1. root  
  2. PassWord  

Switch user to db2admin

 
 
  1. su - db2admin  
  2. PassWord  

Change the fsize to 100 GB (209715100 bytes)

 
 
  1. chuser fsize=209715100 db2admin 

Restart the computer

 
 
  1. shutdown -Fr 

Log on to the system again and switch the user to db2admin.

 
 
  1. su - db2admin  
  2. PassWord  
  3. db2start  
  4. db2  
  5. connect to HTDC user db2admin using ******  
  6. CREATE REGULAR TABLESPACE HTDC_DATA PAGESIZE 8 K MANAGED BY DATABASE  
  7. USING ( FILE ’/db2_tag/TABLE_SPACES/HTDC_DATA/HTDC_DATA.dat’ 20G)  
  8. EXTENTSIZE 16 OVERHEAD 10.67 PREFETCHSIZE 16 TRANSFERRATE 0.04  
  9. BUFFERPOOL BPHTDC  
  10. DROPPED TABLE RECOVERY OFF  
  11.  

The above content is an example of how to solve the problem of the DB2 database file system being full. I hope you will gain some benefits.

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.