1

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:

  • When library it is referring to is on the *SYSBAS.
  • When library it is referring to is on the iASP itself.

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

Abhishek Tiwari
  • 332
  • 2
  • 16

1 Answers1

1

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

Charles
  • 21,637
  • 1
  • 20
  • 44