728x90

다음의 쿼리를 수행하여 접속 사용자수를 확인할 수 있다.

select sh_curmaxcons, sh_ovlmaxcons from sysmaster:sysshmvals;

https://www-304.ibm.com/support/docview.wss?uid=swg21440286



cf. 엔진 재기동시 sysmaster:sysshmvals 테이블의 sh_curmaxcons 컬럼 값은 초기화되지만 sh_ovlmaxcons 컬럼 값은 변경되지 않는다.


cf. 버전 11.50 부터 접속 세션의 최대 개수를 파라미터 LIMITNUMSESSIONS를 설정함으로써 제한할 수 있다.

http://publib.boulder.ibm.com/infocenter/idshelp/v115/index.jsp?topic=/com.ibm.admin.doc/ids_admin_1221.htm

728x90

'Informix > informix reference' 카테고리의 다른 글

Informix JDBC 연결 테스트  (0) 2011.03.09
dbexport/dbimport 수행시 extent size 변경  (0) 2011.03.08
EILSEQ_COMPAT_MODE  (0) 2010.10.22
AIX 64bit 설치시 주의사항  (0) 2010.08.12
BUFFERPOOL Configuration Parameter  (0) 2010.07.15
728x90

내용 : online.log 에서 발생하는 오류메시지

환경 : AIX 6.1, Informix 11.50

현상 : I/O 발생량 과다로 시스템 로드 증가


원인추정1. AIX 커널파라미터 확인 KAIO 활성화여부


/usr/sbin/chdev -l aio0 -a autoconfig=available

/usr/sbin/mkdev -l aio0


다음 문서에 따르면 AIX 6.1에서는 AIO 활성화가 필요없음

https://www-304.ibm.com/support/docview.wss?uid=swg21303183

http://www.eggheadcafe.com/software/aspnet/35814856/ids115-enable-aio-on-aix-61.aspx



원인추정2. IFMX_AIXAIO_NUM_REQ 파라미터 값 수정 (기본값 1024)


IFMX_AIXKAIO_NUM_REQ  파라미터 값을 AIX의  Maximum number of requests set for Kernel AIO 값을 참조하여 설정

https://www-304.ibm.com/support/docview.wss?uid=swg21188868


IBM AIX Version 6.1 Differences Guide

sg247559.pdf

sg247559.pdf
4.82MB
728x90
728x90

# EILSEQ_COMPAT_MODE:
# When processing characters, IDS checks if the characters are valid
# for the locale and returns error -202 if they are not. This causes
# problems in some applications. This parameter preserves the old
# behavior and permits these characters.
# 0 => Disallow illegal characters. This is the default behavior.
# 1 => Allow illegal characters.
#

IDS 10.00.xC4 이상에서 문자 검사가 엄격하게 되었기 때문에, 잘못된 문자가 포함된 데이터(문자열 값)의 처리에서 오류가 발생합니다.

그러나 기존 응용 프로그램의 운영에 지장을 줄 수 있기 때문에, IDS 10.00.xC7에서 이전 버전처럼 동작 모드 (문자열 값 무단 문자를 확인하지 않음)을 지정하기위한 매개 변수 EILSEQ_COMPAT_MODE가 신설되었습니다.
그러나 잘못된 문자에 의한 영향에 대해서는 자기 책임입니다.


http://oninit.ti-da.net/e2452099.html

http://ilovedb.byus.net/zboard/view.php?id=ifx_qna&page=2&sn1=&divpage=1&sn=off&ss=on&sc=on&select_arrange=headnum&desc=asc&no=329

http://www-01.ibm.com/support/docview.wss?uid=swg1IC52656

728x90
728x90

  

    For IBM Informix Dynamic Server onCONFIG settings for J/Foundation,

    refer to onconfig.std" in $INFORMIXDIR/etc.


    Location of Shared Memory:

    -------------------------

    When using IBM Informix Dynamic Server with J/Foundation, the onCONFIG

    variable SHMBASE should be set to the following:


        SHMBASE 0x700000010000000


    On AIX, the Java heap allocated by the Java Virtual Machine is created

    in the lowest available segment. If SHMBASE is set to 0x700000000000000,

    the Java heap will be created at an address after the server shared 

    memory segments. This can cause the server to fail with an assertion

    error if additional shared memory segments are dynamically allocated

    later.


    When SHMBASE is set to 0x700000010000000 or above, the 700000000000000

    segment is available for the JVM's Java heap, and the server can

    dynamically add shared memory segments beyond 0x700000010000000.


    If you must use 0x700000000000000 as SHMBASE, allocate enough shared

    memory segments before starting the J/Foundation server. Refer to the 

    "J/Foundation Developer's Guide for information on how to preallocate 

    virtual shared memory segments.


728x90
728x90

Use the BUFFERPOOL configuration parameter to specify the default values for buffers and LRU queues in a buffer pool for both the default page size buffer pool and for any non-default pages size buffer pools.

Note: Information that was specified with the BUFFERS, LRUS, LRU_MAX_DIRTY, and LRU_MIN_DIRTY configuration parameters prior to Version 10.0 is now specified using the BUFFERPOOL configuration parameter.
onconfig.std values
Operating systems with 2K default page size:
BUFFERPOOL default,buffers=10000,lrus=8,lru_min_dirty=50.00,
lru_max_dirty=60.50
BUFFERPOOL size=2k,buffers=50000,lrus=8,lru_min_dirty=50,
lru_max_dirty=60
Operating systems with 4K default page size:
BUFFERPOOL default,buffers=10000,lrus=8,lru_min_dirty=50.00,
lru_max_dirty=60.50
BUFFERPOOL size=4k,buffers=10000,lrus=8,lru_min_dirty=50,
lru_max_dirty=60
syntax
BUFFERPOOL default,buffers=num_buffers,lrus=num_lrus, lru_min_dirty=percent_min,lru_max_dirty=percent_max_dirty
BUFFERPOOL size=sizek,buffers=num_buffers,lrus=num_lrus,lru_min_dirty=percent_min ,lru_max_dirty=percent_max_dirty
takes effect
When the database server is shut down and restarted
utilities
onparams -b (See onparams -b: Add a new buffer pool.) onspaces (See Specifying a Non-Default Page Size with the Same Size as the Buffer Pool. on-Monitor (See Figure 7.)
refer to
onspaces -c -d: Create a dbspace The IBM® Informix® Dynamic Server Administrator's Guide

The BUFFERPOOL configuration parameter consists of two lines in the onconfig.std file, as shown in this example for a platform with a default page size of 2K:

BUFFERPOOL default,buffers=10000,lrus=8,lru_min_dirty=50.00,lru_max_dirty=60.50
BUFFERPOOL size=2k,buffers=50000,lrus=8,lru_min_dirty=50,lru_max_dirty=60

The top line specifies the default values that are used if you create a dbspace with a page size which does not already have a corresponding buffer pool created at start up. The line below the default line specifies the database server's default values for a buffer pool, which are based on the database server's default page size. When you add a dbspace with a different page size with the onspaces utility or when you add a new buffer pool with the onparams utility, a new line is appended to the BUFFERPOOL configuration parameter in the onCONFIG file. The page size for each buffer pool must be a multiple of the system's default page size. Below is an example of the BUFFERPOOL lines where a third line has been appended:

BUFFERPOOL default,buffers=10000,lrus=8,lru_min_dirty=50.00,lru_max_dirty=60.50
BUFFERPOOL size=2k,buffers=50000,lrus=8,lru_min_dirty=50,lru_max_dirty=60
BUFFERPOOL size=6k,buffers=3000,lrus=8,lru_min_dirty=50,lru_max_dirty=60

The order of precedence for the BUFFERPOOL configuration parameter settings is:

  1. The BUFFERPOOL size line, for example:
    BUFFERPOOL size=2k,buffers=50000,lrus=8,lru_min_dirty=50,lru_max_dirty=60
  2. Any deprecated parameters in the onCONFIG file:
    • BUFFERS
    • LRUS
    • LRU_MAX_DIRTY
    • LRU_MIN_DIRTY

    For more information about deprecated configuration parameters, see Discontinued Configuration Parameters.

  3. The BUFFERPOOL default line, for example:
    BUFFERPOOL default,buffers=10000,lrus=8,lru_min_dirty=50.00,lru_max_dirty=60.50
  4. Database server defaults.

When you use onspaces to create a new dbspace with a new page size, the database server takes the values of bufferslruslru_min_dirty and lru_max_dirtyfrom BUFFERPOOL default line unless there already is a BUFFERPOOL entry for that page size.

You can use the onparams utility when the database server is in online, quiescent, or in administration mode to add a new buffer pool with a different page size. There must be one buffer pool for each page size used by the dbspaces and all dbspaces using that page size must use the single buffer pool with that page size. When you use the onparams utility to add a buffer pool or when you add a dbspace with a different page size with the onspaces utility, the information you specify is automatically appended to the onCONFIG file and new values are specified using the BUFFERPOOL keyword. You cannot change the values by editing theonconfig.std file. If you need to resize or delete an existing buffer pool, you must restart the database server and then run onparams again.

Buffer pools that are added while the database server is running go into virtual memory, not into resident memory. only those buffer pool entries that are specified in the onCONFIG file at startup go into resident memory, depending on the availability of the memory you are using.

The fields in the BUFFERPOOL lines are not case sensitive (so you can specify lrus or Lrus or LRUS) and the fields can appear in any order.

For more information on buffer pools, including information on resizing and deleting buffer pools, see IBM Informix Dynamic Server Administrator's Guide.

The lrus Field

onconfig.std value
lrus=8
syntax
lrus=num_lrus
units
Number of LRU queues
range of values
32-bit platforms: 1 through 128 64-bit platforms: 1 through 512

The lrus field specifies the number of LRU (least-recently-used) queues in the shared-memory buffer pool. You can tune the value of lrus, in combination with thelru_min_dirty and lru_max_dirty fields, to control how frequently the shared-memory buffers are flushed to disk.

Setting lrus too high might result in excessive page-cleaner activity.

The buffers Field

onconfig.std value
buffers=10000
syntax
buffers=num_buffers
units
Number of buffers. Each buffer is the size of the operating system page.
range of values
For 32-bit platform on UNIX®: with page size equal to 2048 bytes: 100 through 1,843,200 buffers (1843200 1800 * 1024)

with page size equal to 4096 bytes: 100 through 921,600 buffers (921,600 = ((1800 * 1024)/4096) * 2048 )

For 32-bit platform on Windows®: 100 through 524,288 buffers (524,288 = 512 * 1024)

For 64-bit platforms: 100 through 231-1 buffers (For the actual value for your 64-bit platform, see your machine notes. The maximum number of buffers on Solaris is 536,870,912.)

The buffers value specifies the maximum number of shared-memory buffers that the database server user threads have available for disk I/O on behalf of client applications. Therefore, the number of buffers that the database server requires depends on the applications. For example, if the database server accesses 15 percent of the application data 90 percent of the time, you need to allocate enough buffers to hold that 15 percent. Increasing the number of buffers can improve system performance.

Recommendation: Set the buffer space before you calculate other shared-memory parameters. on systems with a large amount of physical memory (4 GB or more), buffer space can be as much as 90 percent of physical memory.

If you also want to perform read-ahead, increase the value of buffers. After you have configured all other shared-memory parameters, if you find that you can afford to increase the size of shared memory, increase the value of buffers until buffer space reaches the recommended 25 percent maximum.

If your databases contain smart large objects, you need to consider them when you calculate the value for buffers, because smart large objects are stored in the default page size buffer pool. If your applications frequently access smart large objects that are 2 kilobytes or 4 kilobytes in size, use the buffer pool to keep them in memory longer.

Use the following formula to increase the value of buffers:
Additional_BUFFERS = numcur_open_lo *
                     (lo_userdata / pagesize)
numcur_open_lo
is the number of concurrently opened smart large objects that you can obtain from the onstat -g smb fdd option.
lo_userdata
is the number of bytes of smart-large-object data that you want to buffer.
pagesize
is the page size in bytes for the database server.

As a general rule, try to have enough buffers to hold two smart-large-object pages for each concurrently open smart large object. (The additional page is available for read-ahead purposes).

If the system uses lightweight I/O (as set by the access-mode constant LO_NOBUFFER), the system allocates the buffers from shared memory and does not store the smart large objects in the buffer pool. For information on access-mode flags and constants, see the chapter on “Working with Smart Large Objects of the Universal Data Option” in the IBM Informix ESQL/C Programmer's Manual.

The lru_min_dirty Field

onconfig.std value
lru_min_dirty=50.00
syntax
lru_min_dirty=percent_min
units
Percent
range of values
0 through 100 (fractional values are allowed)

The lru_min_dirty field specifies the percentage of modified pages in the LRU queues at which page cleaning is no longer mandatory. Page cleaners might continue cleaning beyond this point under some circumstances. If a field is specified out of the range of values, then the default of 80.00 percent is set.

The lru_max_dirty Field

onconfig.std value
lru_max_dirty=60.50
syntax
lru_max_dirty=percent_max
units
Percent
range of values
0 through 100 (fractional values are allowed)

The lru_max_dirty field specifies the percentage of modified pages in the LRU queues at which the queue is cleaned. If a field is specified out of the range of values, then the default of 60.00 percent is set.

The size Field

onconfig.std value
2K default page size: size=2k 4K default page size: size=4k
syntax
size=size
units
Kilobytes
range of values
2 through 16

The size field specifies the page size for the particular BUFFERPOOL line. The k is optional.

System Page Size

The system page size is the default page size and is platform-dependent on Dynamic Server.

You can use the following utilities to display the system page size.
Utility
Description
onstat -b
Displays the system page size, given as buffer size on the last line of the output
oncheck -pr
Checks the root-dbspace reserved pages and displays the system page size in the first section of its output
ON-Monitor(UNIX)
Displays the system page size under the Parameters > Initialize option. Displays system page size under the Parameters > Shared-Memory option, which does not require the database server to be running.

728x90

'Informix > informix reference' 카테고리의 다른 글

EILSEQ_COMPAT_MODE  (0) 2010.10.22
AIX 64bit 설치시 주의사항  (0) 2010.08.12
Set the SHMVIRTSIZE Configuration Parameter  (0) 2010.07.15
SHMVIRTSIZE  (0) 2010.07.15
Resident Portion size  (0) 2010.06.01
728x90

Set the Virtual Shared-Memory Segment Size with the SHMVIRTSIZE Configuration Parameter

The SHMVIRTSIZE configuration parameter specifies the initial size of a virtual shared-memory segment. A suggested initial value is:

32000 + expected number of users * 800  

The best practice is to allocate only memory that is necessary for your environment. Therefore, you need to find the point at which, during the peak resource usage, IDS will not add any segments, while if you reduce the size of SHMVIRTSIZE, IDS will add another segment. The following method is one approach to find the value of SHMVIRTSIZE:

  1. Set SHMVIRTSIZE to 50% of your memory.
  2. During the peak resource usage, check how many additional segments have been added. You can use the onstat -g seg command. If no additional segments were added, then reduce the SHMVIRTSIZE. When you notice additional segments, proceed to the next step.
  3. Use the following formula:
    new_SHMVIRTSIZE= old_SHMVIRTSIZE + (number_of_segments_added * SHMADD) 
  4. When you find the optimal SHMVIRTSIZE, reduce the size a little to see if an additional segment is created. This is a way to verify your calculations.

728x90

'Informix > informix reference' 카테고리의 다른 글

AIX 64bit 설치시 주의사항  (0) 2010.08.12
BUFFERPOOL Configuration Parameter  (0) 2010.07.15
SHMVIRTSIZE  (0) 2010.07.15
Resident Portion size  (0) 2010.06.01
informix version 확인  (0) 2010.06.01
728x90

SHMVIRTSIZE

onconfig.std value
8000 on UNIX and 8192 on Windows
if not present
If SHMADD is present: SHMADD If SHMADD is not present: 8
units
Kilobytes
range of values
32-bit platforms: 
Positive integer with a maximum value of 
2 gigabytes

64-bit platforms: 
Positive integer with a maximum value of 
4 terabytes

The maximum value might be less on some platforms due to operating-system limitations. For the actual maximum value for your UNIX platform, see the machine notes.

takes effect
When the database server is shut down and restarted
utilities
onstat -g seg (see page ***)
refer to
The following material:
  • Virtual portion of shared memory, in the shared-memory chapter of the IBM Informix Administrator's Guide
  • Chapter on configuration effects on memory utilization, in your IBM Informix Performance Guide

SHMVIRTSIZE specifies the initial size of a virtual shared-memory segment. Use the following algorithm to determine the size of the virtual portion of shared memory:

shmvirtsize = fixed overhead + shared structures +
             mncs * private structures) + other buffers

This algorithm includes the following values.

Value
Description
fixed_overhead
Global pool + thread pool after booting (partially dependent on the number of virtual processors)
shared_structures
AIO vectors + sort memory + dbspace backup buffers + dictionary size + size of stored-procedure cache + histogram pool + other pools (See the onstatdisplay.)
mncs
Maximum number of concurrent sessions
private_structures
Stack (generally 32 kilobytes but dependent on recursion in SPL routines and triggers) + heap (about 30 kilobytes) + session-control-block structures

If messages in the message file indicate that the database server is adding segments to the virtual portion of shared memory for you, add the amount that these messages indicate to the value of SHMVIRTSIZE. It is recommended that you initially create a virtual portion of shared memory of a size that is more than sufficient for your daily processing, if possible.

Use the onstat -g seg command to determine peak usage and lower the value of SHMVIRTSIZE accordingly.

728x90

'Informix > informix reference' 카테고리의 다른 글

BUFFERPOOL Configuration Parameter  (0) 2010.07.15
Set the SHMVIRTSIZE Configuration Parameter  (0) 2010.07.15
Resident Portion size  (0) 2010.06.01
informix version 확인  (0) 2010.06.01
ONBAR  (0) 2010.05.26
728x90

상주 분할 영역에는 버퍼, 로크, 로그 파일과 DB영역 청크, 테이블영역의 위치 등을 포함하여 데이터베이스 서버의 상태를 기록하는 공유 메모리 영역이 들어 있습니다.

LOCKS, LOGBUFF 및 PHYSBUFF 구성 매개변수에 사용하는 설정은 상주 분할 영역 크기를 결정하는 데 도움이 됩니다.

BUFFERPOOL 구성 매개변수는 데이터베이스 서버가 시작될 때 상주 세그먼트에 할당되는 버퍼 크기를 결정합니다. 데이터베이스 서버를 실행하는 동안 추가되는 후속 버퍼 풀은 데이터베이스 서버를 재시작할 때까지 가상 메모리가 됩니다.

상주 분할 영역의 크기에 영향을 주는 이들 구성 매개변수와 더불어 RESIDENT 구성 매개변수는 메모리 이용에 영향을 줄 수 있습니다. RESIDENT를 강제 상주를 지원하는 컴퓨터의 ONCONFIG 파일에 1로 설정하면 상주 분할 영역이 페이지 아웃으로 처리되는 일이 결코 없습니다.

데이터베이스 서버의 시스템 정보 파일은 운영 체제가 강제 상주를 지원하는지 아닌지를 표시합니다. 시스템 정보 파일의 위치에 대한 정보는 소개에서 이 안내서를 참조하십시오.

운영 체제 공유 메모리를 할당할 때 상주 분할 영역의 크기를 추정하려면(KB 단위) 다음 단계를 따르십시오. 결과로 상주 분할 영역에 사용되는 실제 메모리를 약간 초과하는 추정치가 제공됩니다.

상주 분할 영역의 크기를 추정하는 방법
  1. 다음 공식을 사용하여 데이터 버퍼의 크기를 추정합니다.
    buffer_value = (BUFFERS * pagesize) + (BUFFERS * 254)
    pagesize
    공유 메모리 페이지 크기입니다. onstat -b가 buffer size 필드로 마지막 라인에 이를 표시합니다.
  2. 다음 공식으로 값을 계산합니다.
    locks_value = LOCKS * 44
    logbuff_value = LOGBUFF * 1024 * 3
    physbuff_value = PHYSBUFF * 1024 * 2
  3. 다음 공식을 사용하여 추정된 상주 분할 영역의 크기(KB 단위)를 계산합니다.
    rsegsize = (buffer_value + locks_value + logbuff_value 
               + physbuff_value + 51,200) / 1024
팁:
LOCKS 구성 매개변수는 로크 테이블의 초기 크기를 지정합니다. 만일 세션이 할당하는 로크의 수가 LOCKS 값을 초과하면 데이터베이스 서버는 로크 테이블의 크기를 동적으로 증가시킵니다. 로크 테이블을 동적으로 커지도록 하려면 SHMTOTAL을 0으로 설정하십시오. SHMTOTAL이 0이면, 전체 메모리(공유 메모리의 상주, 가상, 통신, 가상 확장 분할 영역)에 한계가 없고 할당을 보장합니다.

BUFFERPOOLLOCKSLOGBUFF 및 PHYSBUFF 구성 매개변수에 대한 자세한 정보는 메모리 이용에 영향을 주는 구성 매개변수를 참조하십시오.

728x90

'Informix > informix reference' 카테고리의 다른 글

Set the SHMVIRTSIZE Configuration Parameter  (0) 2010.07.15
SHMVIRTSIZE  (0) 2010.07.15
informix version 확인  (0) 2010.06.01
ONBAR  (0) 2010.05.26
테이블을 특정 시점으로 복구하는 기능  (0) 2010.05.24
728x90


현재 사용하시는 버전이 어떤 버전인지 알아야 할 것입니다. 
위 그림을 보시면 하시겠지만,  onstat –V 를 치시면  현재 사용하시는 버전이 나옵니다

다음은 각각에 대한 설명입니다. 참고하세요~


1) Major_Release :                             ( = 9 ) 
Major New Product Features + Fixes
;7 = IDS(Informix Dynamic Server), RDBMS
;8 = XPS(Informix eXtended Parallel Server)
;9 = IDS ,   ORDBMS


Major Release에 해당하는 정수 부분은 DB Server의 종류를 구분할 수 있도록 합니다. 즉,
7 = IDS(Informix Dynamic Server), RDBMS
8 = XPS(Informix eXtended Parallel Server)
9 = IDS.2000 또는 IIF.2000(Informix Internet Foundation.2000), ORDBMS
임을 의미합니다.



2) Enhancement_Release :                  = ( 4 )
; Feature or Performance Additions + Fixes

3) Maintenance_Release :                 = ( 0 ) 
;Fixes onLY, No New Features or Performance Additions

4) Operating_System                                  = ( U )
; U = 32 bit Unix Informix product
; F = 64 bit Unix 64 bit Informix product
; H = 64 bit Unix 32 bit Informix product
; T = Windows NT / Windows

5) Port_Master                        = ( C )  
; Sequential Commercial Port Release Letter

6) Interim_Release                                 = ( 4 )
;Sequential Interim Release number for this Port_Master

7) Patch_Release                        = (X1)





>현재 informix 7.3.1.(UC2A) 를  solaris 8에서 사용하고 있는데 이제품이 32bit 모드로 운영되는 버전인지 아니면 32bit와 64bit 모두 지원하는 버전인지 알고 싶습니다. 그리고 인포믹스에서 이러한 
>정보를 확인하는 방법이 있으면 이것두...*^^*

==> 4) 에서 보시는것 처럼,

         U : 32bit 용
         F : 64bit 용
         H : 64bit에 지원되는 32bit용 제품 ( HP-UX 에서만 볼수있는 버전임 )
         T : Windows 용

728x90

'Informix > informix reference' 카테고리의 다른 글

SHMVIRTSIZE  (0) 2010.07.15
Resident Portion size  (0) 2010.06.01
ONBAR  (0) 2010.05.26
테이블을 특정 시점으로 복구하는 기능  (0) 2010.05.24
Porting from Oracle to Informix  (0) 2009.12.29
728x90

Problem(Abstract)

This article describes three common causes for listener-thread: err = -27001: Read error occurred during connection attempt errors.

Symptom

This error appears in the IBM® Informix® Dynamic Server (IDS) message log file (ONCONFIG configuration file parameter MSGPATH) and users are not able to connect to the database server.:

listener-thread: err = -27001: Read error occurred during connection attempt.


Resolving the problem

Common causes and solutions for the error are:

1. The connectivity files in the /INFORMIXTMP directory are not removed.

    The files are in the form of : VP.server_name.0100a

      server_name
        Database server name as was set in INFORMIXSERVER environment variable and associated with the tcp connections.
    Solution:

    Stop the database server, remove the files from the /INFORMIXTMP directory, and start the database server.

2. The onCONFIG file settings for the NETTYPE parameter are not correct. This error is widely seen involving tcp network connections when the VP class in the NETTYPE setting is set for CPU vp.

    Solution:

    As a work around Change the vp class setting for the NETTYPE configuration parameter from CPU to NET.

Factors outside of Informix that can cause 27001

3. An operating system resource limit was reached. Kernel parameters settings require changes.

    Solution:

    Check and possibly increase settings for the following kernel parameters or parameters equivalent to them depending on Unix platform:


4. Network problem. Perhaps the network is busy or packets are being lost. Monitor network and alleviate the problem.

5. Hardware involved in the system ( network card, cables, router, and so on ) is intermittently failing and causing the error.


728x90

'Informix > informix troubleshooting' 카테고리의 다른 글

CKPT REQ 상태 해결 방법  (0) 2011.03.12
KAIO: out of OS resources, errno = 11, pid = xxxxxxx  (0) 2011.03.02
err = -27001  (0) 2010.06.01
IDS Down DBSpace / Chunk  (0) 2010.05.19
Chunk Down 확인  (0) 2010.05.17

+ Recent posts