How the Excel file enter into the SAS environment without
Code of Infile & Import procs,if i have no file Conversion?
Answers were Sorted based on User's Feedback
Answer / raghava pamulapati
by using pass through facility in sql we can read directly
with out conversion
| Is This Answer Correct ? | 11 Yes | 0 No |
Answer / ram
proc Import datafile='file path\ram.xls out=output
dbms=excel replace;
sheet='sheet$4;
run;
| Is This Answer Correct ? | 2 Yes | 4 No |
In which case u go for libname and in which case u go for proc sql pass thru facilit diff?
I have a SCD Type 2 Dimention for Location In which A Sales Office in Having two Surrogate Keys just because of the change in it's Sales Group. SKey SalesGroup Sales Office BeginDate EndDate 280 SG1 SO1 01APR2000 01APR2010 281 SG2 SO1 02APR2010 31MAR2999 Now while loading the Fact, the Lookup ir returning SKey 280 for records before and after 01APR2010. I am not able to give WHERE condition in the Lookup Properties (TranDate between BeginDate and EndDate). Please help.
When looking for data contained in a character string of 150 bytes, which function is the best to locate that data: scan, index, or indexc?
If reading an external file to produce an external file, what is the shortcut to write that record without coding every single variable on the record?
IS SAS COMPILER OR INTERPRETER? EXPLAIN?
3 Answers Aon Hewitt, HSBC, SCL, TCS,
Give some ways by which you can define the variables to produce the summary report (using proc report)?
what is the difference between nodup and nodupkey options? : Sas programming
explain the function of substr in sas? : Sas-administrator
how do the in= variables improve the capability of a merge? : Sas programming
How does SAS handle missing values in: assignment statements, functions, a merge, an update, sort order, formats, PROCs?
How sas treats the dsd delimiters?
Explain the difference between using drop = data set option in set and data statement?