Hi All..
Is there any any difference between Card and Dataline Statements ????
Please Clarify me...
Thanks & Regards..
Sanjeev.K
Only the spelling.
Thanks for your detailed explanation..:-)
I wouldn't put a big bet on it but I believe in ancient days, SAS 5 perhaps, CARDS meant 80 column input to simulate punch cards, hence the name.
Hi..
Did't get you completely...
Regards..
Sanjeev.K
From my trusty SAS 1979 manual (I believe the last time that all of SAS fit into one book), CARDS and CARDS4 statements only, no DATALINES.
I remember reading once that if I wanted to use an infile statement to provide options (I frequently use dlm='09'x for tab delimited), I had to use datalines NOT cards. But I just ran a test, and cards works on an infile statement also, so I guess this assumption is out of date (like I'm beginning to feel!).
Tom
Actually datalines is an alias of cards and vice-versa as per sas documentation.....
Tom,
>>...SAS 1979 manual...all of SAS fit into one book...
I had Gayle Sayers autograph mine as I only had that at hand when I was working at Hitachi in Brisbane, Ca. He asked me what the book was and after I told him he just smiled and said, "Okay".
Your sense of humour is great.
: Apparently, if you are using an older version of SAS, there may be one difference.
The following 2007 SGF paper, by last year's SGF chair (Andy Kuligowski) http://www2.sas.com/proceedings/forum2007/220-2007.pdf, describes a case where one worked while the other didn't:
data _null_;
set sashelp.class;
file cards;
put name;
run;
data _null_;
set sashelp.class;
file datalines;
put name;
run;
However, this is one case where SAS decided not to insure that code working on one version would continue to work on the next version. With 9.3 both of the above will result in an error.
I guess my verion of 9.3 is a little different from your. I get the Kuligowski result. It is interesting to see what SAS says the name of the file is.
29 data _null_;
30 set sashelp.class;
31 file datalines filename=fname;
32 put fname=;
33 put name;
34 stop;
35 datalines;
fname=CARDS
Alfred
NOTE: There were 1 observations read from the data set SASHELP.CLASS.
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.