How does proc sql work?
No Answer is Posted For this Question
Be the First to Post Answer
i am importing large data from oracle to work library. in log there is a error message worklibrary space is not enough. then how to import the data safely to sas environment.
Dear all, proc means data=dsn noprint completetypes; class trtmntgroup /preloadfmt; output out=tot n=n; format trtmntgroup trtf. ; by vstgrp descending severity; run; This is the code I used for AE table. I got the values without giving the variable ‘trtmntgroup(numeric)’ in var statement. And if I give the var statement for that variable i’m getting the same values.How is that possible? What is the difference between class and var statement? Could any one explain me how does proc means work at the back end. And what is the difference between _freq_ value and N value in proc means. Thanks and regards, Rajesh.
what are the softwares and applications that are used most frequently used by sas bi applications developers? : Sas-bi
what techniques and/or procs do you use for tables? : Sas programming
data jagan1.s; input bp$; cards; 100/90 120/89 112/87 run; in the above code how to convert character data values to numeric data values?
what are sas/access and sas/connect? : Sas programming
how to get second highest salary from a employee table and how get a 5th highest salary from a employee table?
What are the best sas programming practices for handling very large datasets? : sas-grid-administration
What do you know about sas data set?
Does anybody have SAS Training manual or documentation or can you refer me any book to have better understanding on SAS. I am fresher to SAS tool. (Ready to pay)
what are validation tools that are used in sas? : Sas-administrator
What is the difference between class statement and by statement in proc means?