View previous topic :: View next topic
|
Author |
Message |
nivedhitha
New User
Joined: 12 Apr 2007 Posts: 8 Location: chennai
|
|
|
|
ERROR: SVC99 error rc=4, reason=0238 : IKJ56220I UTILITY DATA SET NOT ALLOCATED, TOO MANY DATA SETS+IKJ56220I MAXIMUM NUMBER OF DATA SET ALLOCATIONS ALLOWED BY YOUR SESSION HAS BEEN REACHED, YOU SHOULD FREE UNUSED DATA SETS.
this is the ERROR i encounter when creating PDF file in sas using ODS PDF.
i have used maximum DYNAMNBR allocations.
is there any way to eliminate this error?? |
|
Back to top |
|
|
expat
Global Moderator
Joined: 14 Mar 2007 Posts: 8796 Location: Welsh Wales
|
|
|
|
What's the DYNAMBR setting in use, and have you changed it to 256 ? |
|
Back to top |
|
|
nivedhitha
New User
Joined: 12 Apr 2007 Posts: 8 Location: chennai
|
|
|
|
DYNAMNBR=1430 |
|
Back to top |
|
|
expat
Global Moderator
Joined: 14 Mar 2007 Posts: 8796 Location: Welsh Wales
|
|
|
|
The max is 256 as far as I know. |
|
Back to top |
|
|
expat
Global Moderator
Joined: 14 Mar 2007 Posts: 8796 Location: Welsh Wales
|
|
|
|
Are you running this online or in batch ? |
|
Back to top |
|
|
nivedhitha
New User
Joined: 12 Apr 2007 Posts: 8 Location: chennai
|
|
|
|
in batch mode |
|
Back to top |
|
|
expat
Global Moderator
Joined: 14 Mar 2007 Posts: 8796 Location: Welsh Wales
|
|
|
|
I've never come across this with SAS before. Strange.
And I ain't got access to the SAS manuals here, as they don't use it.
I can take a look at the code, but will not promise anything. |
|
Back to top |
|
|
nivedhitha
New User
Joined: 12 Apr 2007 Posts: 8 Location: chennai
|
|
|
|
//MONTH500 EXEC MICS1,SYSPARM=
//WORK DD SPACE=(CYL,(300,10),RLSE)
//PROJECT DD DSN=output file,
// DISP=(NEW,CATLG,DELETE),
// SPACE=(CYL,(50,10),RLSE),UNIT=SYSDA,
// DCB=(RECFM=VB,LRECL=259,BLKSIZE=27998)
//sysin dd *
OPTIONS PS=96 NODATE NONUMBER;
ODS PDF FILE=PROJECT NOTOC;
DATA _NULL_;
FILE PRINT;
SET WORK.PFILE;
FORMAT INLINE $CHAR133.;
INFORMAT INLINE $CHAR133.;
IF SUBSTR(LEFT(INLINE),1,5)='* * *' THEN PUT _PAGE_;
PUT @1 INLINE $CHAR133.;
RUN;
ODS PDF CLOSE; |
|
Back to top |
|
|
expat
Global Moderator
Joined: 14 Mar 2007 Posts: 8796 Location: Welsh Wales
|
|
|
|
Nothing really strikes me as being out of order there.
I guess the only option would be to open a ticket with SAS and see what they say. |
|
Back to top |
|
|
nivedhitha
New User
Joined: 12 Apr 2007 Posts: 8 Location: chennai
|
|
|
|
thank u |
|
Back to top |
|
|
expat
Global Moderator
Joined: 14 Mar 2007 Posts: 8796 Location: Welsh Wales
|
|
|
|
Worth a look, but sometimes these strange problems need to go back to SAS for resolution. |
|
Back to top |
|
|
nevilh
Active User
Joined: 01 Sep 2006 Posts: 262
|
|
|
|
The max value that can be coded on the DYNAMNBR is dependent on the value coded in the TIOT parameter in the ALLOCxx member in PARMLIB.
I believe the theoretical max value is 3273. Have you tried increasing the DYNAMNBR from 1430 to 1635/3273 ? |
|
Back to top |
|
|
|