- In this SAS/ACCESS LIBNAME statement, what does oracle represent?
libname sports oracle
user=edu001 pw=edu001
path=dbmssrv schema=educ;
- Which PROC step successfully prints a list of all data sets in the orionx library without printing descriptor portions for the individual data sets?
- When you use the SAS/ACCESS LIBNAME statement to assign a libref to a Microsoft Excel workbook, you can view the workbook using SAS Explorer or Microsoft Excel.
- When you use the SAS/ACCESS LIBNAME statement to assign a libref to a Microsoft Excel workbook, SAS treats each worksheet within the workbook as a library.
- What does the program shown here create?
libname sales excel 'c:\mydata\annual.xls';
data sales.qtr1_2011;
set sasdata.qtr1_2011;
run;
data sales.qtr2_2011;
set sasdata.qtr2_2011;
run;
- What statement is used to read an Oracle table in a DATA step?
- A SAS name literal is a string that contains one or more special characters, enclosed in quotation marks, followed by the letter n.
- When a date value is read from a worksheet, it is converted automatically to a SAS date. Which SAS format is used to display the value?
-
When a SAS data set is created from a spreadsheet, the spreadsheet column headings are always stored as which of the following?
-
A WHERE statement or a subsetting IF can be used to subset a Microsoft Excel worksheet.
|