Abhishek Tiwari
Abhishek Tiwari

Reputation: 332

Refer library via IFS when program running on iASP in IBM i

I have a CL program which is referring to a library via IFS like

/QSYS.LIB/<libname>.LIB/<filename>.FILE

Currently this program is running on *SYSBAS, where everything runs fine. I want to know when this program will be executing on iASP, then will it run to any sort of problem or not?

I have two situations:

I want my program to run fine in both the situations.

Upvotes: 1

Views: 294

Answers (2)

Brad Wernicke
Brad Wernicke

Reputation: 1

*SYSBAS = /QSYS.LIB/.LIB/.FILE
IASP01 = /iasp01/QSYS.LIB/.LIB/.FILE

Upvotes: 0

Charles
Charles

Reputation: 23783

Recommended practice when dealing with iASP, is to have user programs & data in the iASP.

Basically, an iASP is designed to keep multiple DB's separate. You can have stuff work cross iASP's, but it's extra work.

See also, Application considerations for independent disk pools

Upvotes: 1

Related Questions