Hi:
If you also have access to SAS (either local or remote), one work-around might be to comress the file after transferring to SAS with a little post-processing via the SAS Submit command.
e.g.
dt = Open("$SAMPLE_DATA\Big Class.jmp");
dt << Save As("C:\temp\BigClass.sas7bdat", SAS);
// or
dt << SAS Export Data( dt, temp, BigClass, Replace Existing);
// then
SAS Submit("
libname temp "C:\temp";
data temp.BigClass(compress=yes);
set temp.BisClass;
run;
proc contents data=temp.BigClass;
run;
");
Best regards,
-Matt