I am getting an error like below when I rerun a failed job in SAS GRID 9.4: I had used the option GRIDRESTARTOK to enable checkpoint mode and when i run the second time a failed job, I am getting this error Checkpoint library is missing, so checkpoint RESTART mode is not set.
... View more
You can use fuser -u recource-name to find which process is using it up. You can also fuser -k command to kill the process thats locking up the resource.
... View more
You could read the data as below: data have; Input alpha; cards; 00100 1019 099 185 1010 0803 12398; run; data formatted; format new z6.2; set have; new=alpha/100; run; This should work, however in the example u gave the data is not consistant. For example, if the first row has trainling zeros, how come rest of them dont have.
... View more
There are options in SAS Batch programming to assign as part of command line that you can use to add checkpoints. You need to run your programs in modes- Checkpoint mode and restart mode to help ease of operations. Here are the options that you can use: stepchkpt steprestart noworkinit noworkterm errorcheck errorabend
... View more