2
votes
1answer
30 views
FULLSTIMER - cpu stats for an entire program
I would like to know the system CPU time for an entire program (not just the individual steps).
Is there an easy way to do this?
2
votes
3answers
178 views
Convert data from from SAS to SPSS using SAS
I have SAS data files that I need to convert to SPSS data files and would like to know if I can do this from within SAS and not have to use SPSS to convert the files. This is what …
1
vote
2answers
51 views
Large Character field sizes in SAS
Hi All
I am trying to import a large blob field from a MySQL table via SAS ODBC passthrough. The field is larger than the maximum length allowed in SAS. According to SAS 9.2 docum …
1
vote
3answers
37 views
How to draw pairs to records with all possiblities ?
Suppose I have a dataset with no. of records =24,000. Since I need to determine whether there are any duplications in respect of certain records, hence I want to draw a pair sample …
1
vote
1answer
28 views
Maximum size of a SAS script
Is there a maximum size of a SAS SCRIPT? If so, how does this differ (if at all) between SAS 8 and 9?
1
vote
2answers
72 views
SAS Enterprise Guide UNIX WORK library - viewing files
How do I view the file below in Enterprise Guide (v 4.1 ) ??
%let libWORK=%sysfunc(pathname(WORK)); * work lib is on UNIX ;
data _null_;
file "&libWORK./MYFILE.htm";
…
1
vote
2answers
24 views
hash table ‘scalar’ error
Does anyone have any idea why I am getting the following error?
ERROR: Scalar cannot be converted to object of type hash.
the hash table has three columns and one row. I am loa …