相关试题
单选题 A quick rule of thumb for the space required to run PROC SORT is:
单选题 The SAS data set WORK.CHECK has an index on the variable Code and the following SAS program is submitted.
Proc sort data=WORK.CHECK;
by Code;
Run;
Which describes the result of submitting the SAS program?
单选题 Given the SAS data sets: WORK.EMPLOYEE WORK.NEWEMPLOYEE Name Dept Names Salary ------------------ ------------------- Alan Sales Michelle 50000 Michelle Sales Paresh 60000 A SAS program is submitted and the following is written to the SAS log: 101 proc sql; 102 select dept, name 103 from WORK.EMPLOYEE 104 where name=(select names from newemployee where salary > 40000) ERROR: Subquery evaluated to more than one row. 105 ; 106 quit; What would allow the program to successfully execute without errors?
单选题 The table WORK.PILOTS contains the following data:
WORK.PILOTS
Id Name Jobcode Salary
-----------------------------
001 Albert PT1 50000
002 Brenda PT1 70000
003 Carl PT1 60000
004 Donna PT2 80000
005 Edward PT2 90000
006 Flora PT3 100000
The data set was summarized to include average salary based on jobcode:
Jobcode Salary Avg
-----------------------
PT1 50000 60000
PT1 70000 60000
PT1 60000 60000
PT2 80000 85000
PT2 90000 85000
PT3 100000 100000
Which SQL statement could NOT generate this result?
单选题 与 QUESTION 16 采用类似数据集。
Given the SAS data set SASUSER.HIGHWAY:
Steering Seatbelt Speed Status Count
-----------------------------------------
Absent No 0-29 serious 31
Absent No 0-29 not 1419
Absent No 30-49 serious 191
Absent no 30-49 not 2004
Absent no 50+ serious 216
The following SAS program is submitted:
Proc sql noprint;
select distinct
Speed [INSERT SQL CLAUSE]
from SASUSER.HIGHWAY;
Quit;
Title1 "Speed values represented are: &GROUPS";
Proc print data=SASUSER.HIGHWAY;
Run;
Which SQL clause stores the text 0-29,30-49,50+ in the macro variable GROUPS?
单选题 Multi-threaded processing for PROC SORT will affect which of these system resources?
单选题 The SAS data set WORK.CHECK has a variable named Id_Code in it.
Which SQL statement would create an index on this variable?
单选题 When attempting to minimize memory usage, the most efficient way to do group processing when using the MEANS procedure is to use: