Is there a way to convert .sas7bitm files from 32 bit to 64 bit?
We are now using EG and need to be able to use the item store files we already have.
If there is not a way to do that, is there a way to 'view' what's in the current .sas7bitm files?
Thanks.
Thanks Chris, the 2nd link you provided led me to the STORE statement link.
Basically, I modified the example code below that was provided and was able to get everything I needed:
proc plm restore=sasuser.mixed;
show cov Parms;
lsmeans A B / diff;
score data=NewData out=ScoreResults;
run;
I appreciate all your help!
Sharon
Thanks Chris, but from everything we've seen it doesn't look like we can migrate item store files (as the documentation states below), but I was hoping maybe something has changed?!?
Ok, if we can't migrate/convert, is there a way to READ or VIEW what's in those files?
Items Stores
I think you'll need access to a SAS environment (32-bit Windows, I guess) that can read them, and then use SAS code to reveal the contents so you can transport. For example, if you're trying to copy ODS templates, you would use PROC TEMPLATE as doc'd here:
http://support.sas.com/rnd/migration/procmigrate/execution/special_odstemplates.html
For SAS/STAT Linear stores, this topic:
http://support.sas.com/rnd/migration/procmigrate/execution/special_linearitemstore.html
You might want to verify this guidance with SAS Tech Support to see if there are other options.
Thanks Chris, the 2nd link you provided led me to the STORE statement link.
Basically, I modified the example code below that was provided and was able to get everything I needed:
proc plm restore=sasuser.mixed;
show cov Parms;
lsmeans A B / diff;
score data=NewData out=ScoreResults;
run;
I appreciate all your help!
Sharon
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
Check out this tutorial series to learn how to build your own steps in SAS Studio.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.