1 The SAS System 09:58 Monday, May 18, 2009
NOTE: Unable to open SASUSER.REGSTRY. WORK.REGSTRY will be opened instead.
NOTE: All registry changes will be lost at the end of the session.
WARNING: Unable to copy SASUSER registry to WORK registry. Because of this, you will not see registry customizations during this
session.
NOTE: Copyright (c) 2002-2003 by SAS Institute Inc., Cary, NC, USA.
NOTE: SAS (r) 9.1 (TS1M3)
Licensed to THE CURATORS OF THE UNIV OF MISSOURI - T&R, Site 0001242018.
NOTE: This session is executing on the AIX 5.2 platform.
NOTE: SAS 9.1.3 Service Pack 4
NOTE: SAS initialization used:
real time 0.21 seconds
cpu time 0.09 seconds
NOTE: AUTOEXEC processing beginning; file is /home/john/autoexec.sas.
v8= 0 v9= 1 *****
****** Standard OSEDA/MCDC autoexec (autoexec9.sas in sascode) rev. 12/28/2004 3:06PM - Begin execution *******
_v9= v9
Standard filerefs and librefs assigned *****
NOTE: Libref SF32000X was successfully assigned as follows:
Levels: 1
Engine(1): V9
Physical Name(1): /pub/data/sf32000x
NOTE: Libref SF3X was successfully assigned as follows:
Levels: 1
Engine(1): V9
Physical Name(1): /pub/data/sf32000x
NOTE: Libref INDCTRS was successfully assigned as follows:
Levels: 1
Engine(1): V9
Physical Name(1): /pub/data/indctrs
NOTE: Libname LIBRARY refers to the same physical library as SASCTLGS.
NOTE: Libref LIBRARY was successfully assigned as follows:
Engine: V9
Physical Name: /pub/sasctlgs/v9
****Finished with generic autoexec ****
***
****Executing my private autoexec.sas file, rev. 02/28/2006 7:40AM
WARNING: Library MAPS is not assigned in this scope.
WARNING: Library GISMAPS is not assigned in this scope.
***** dmsflag= NODMS
dmchk execution begins ***
**Begin execution on Monday 18MAY09 at 09:58 PID=553136
NOTE: AUTOEXEC processing completed.
1 x cd /pub/data/sf32000/Tools
1 ! ; %let pgm=invoke_dosets_slds2007; filename pgm "&pgm..sas";
2 The SAS System 09:58 Monday, May 18, 2009
2 /*--Invoke the %doset macro to create observations in the Datasets dataset for this sub-directory.
3 J. Blodgett, OSEDA, May., 2009 (this is the "do-over" version created after we lost our data and had
4 to restore and/or reconvert it, spring, 2009.
5 -- */
6 title "Job to Invoke doset Macro for Sets in sf32000/slds2007, recreating sf32000.datasets";
7
8 %let libnameg=slds2007;
9
10 libname sf32000 '/pub/data/sf32000';
NOTE: Libref SF32000 was successfully assigned as follows:
Engine: V9
Physical Name: /pub/data/sf32000
11 libname slds2007 '/pub/data/sf32000/slds2007';
NOTE: Libref SLDS2007 was successfully assigned as follows:
Engine: V9
Physical Name: /pub/data/sf32000/slds2007
12
13 *-----Run this step ONLY ONCE------------------------------------------;
14 *----If you need to rerun (start over) then delete the datasets dataset first. doset will not
15 allow initialize mode if the datasets set already exists.---;
16 %***doset(mode=initialize,
17 libname=slds2007,debug=0);
18 *----------------------------------------------------------------------;
19
20 %macro doit(state,stab);
21 %doset(mode=,filetype=sf32000,
22 memname=&stab.sldph,
23 geouniv=&statenm,
24 units=State Leg Dists 2002,
25 Year=2000,
26 CreatePgm=cnvtsf3_slds,
27 Description=%nrbquote(P & H tables for the 2002 state legislative districts),
28 keyvars=SumLev county sldu sldl,
29 keyfmats=sumlev county ,
30 DataSource=%str(2000 Census, Summary File 3 (special tab rel. 2007)),
31 SortedBy=LogRecNo,
32 UsageNotes=%nrbquote(
- We did not convert the data for all the geographic areas represented on this data
32 ! set. We
33 kept only summaries for the state, complete districts and districts within counties.
34
- These districts were created in 2001-2002 and were in effect for state legislatures elected in 2002.
35
),
36 SubType=ph,
37 SetGroup=&stab,
38 VarSet=variablesph,
39 URLMeta=%str(http://www.census.gov/Press-Release/www/2007/sld_sumfiles.html),
40 debug=0)
41
42
43 %doset(mode=,filetype=sf32000,
44 memname=&stab.sldphct,
45 geouniv=&statenm,
46 units=State Leg Dists 2002,
47 Year=2000,
48 CreatePgm=cnvtsf3_slds,
49 Description=%nrbquote(PCT & HCT tables for the 2002 state legislative districts),
50 keyvars=SumLev county sldu sldl,
3 The SAS System 09:58 Monday, May 18, 2009
51 keyfmats=sumlev county ,
52 DataSource=%str(2000 Census, Summary File 3 (special tab rel. 2007)),
53 SortedBy=LogRecNo,
54 UsageNotes=%nrbquote(- We only converted summaries
55 for the state, complete districts and districts within counties. Further detail by MCD and city (within SLD) are
55 ! available from the
56 Bureau but not here.
57
- These districts were the result of redistricting done in 2001-2002 and were in effect for state legislatures
57 ! elected in 2002.
58
),
59 SubType=phct,
60 SetGroup=&stab,
61 VarSet=variablesphct,
62 URLMeta=%str(http://www.census.gov/Press-Release/www/2007/sld_sumfiles.html),
63 debug=0)
64
65 %mend doit;
66
67 %dostates(n=52,names=1)
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.04 seconds
cpu time 0.03 seconds
NOTE: The data set WORK.CONTENTS has 5583 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.37 seconds
cpu time 0.23 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 5583 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._ALSLDPH has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.28 seconds
cpu time 0.09 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._ALSLDPH.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.41 seconds
cpu time 0.08 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
4 The SAS System 09:58 Monday, May 18, 2009
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.17 seconds
cpu time 0.04 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.02 seconds
NOTE: The data set WORK.CONTENTS has 4416 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.41 seconds
cpu time 0.20 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 4416 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._ALSLDPHCT has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.08 seconds
cpu time 0.07 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._ALSLDPHCT.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.23 seconds
cpu time 0.07 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.17 seconds
cpu time 0.03 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.02 seconds
5 The SAS System 09:58 Monday, May 18, 2009
NOTE: The data set WORK.CONTENTS has 5583 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.36 seconds
cpu time 0.24 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 5583 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._AKSLDPH has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.23 seconds
cpu time 0.10 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._AKSLDPH.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.22 seconds
cpu time 0.06 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.15 seconds
cpu time 0.04 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.02 seconds
NOTE: The data set WORK.CONTENTS has 4416 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.52 seconds
cpu time 0.22 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
6 The SAS System 09:58 Monday, May 18, 2009
marks.
SubDir=slds2007
NOTE: There were 4416 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._AKSLDPHCT has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.41 seconds
cpu time 0.08 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._AKSLDPHCT.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.22 seconds
cpu time 0.07 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.16 seconds
cpu time 0.06 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 5583 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.37 seconds
cpu time 0.21 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 5583 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._AZSLDPH has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.19 seconds
cpu time 0.08 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
7 The SAS System 09:58 Monday, May 18, 2009
NOTE: There were 1 observations read from the data set WORK._AZSLDPH.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.22 seconds
cpu time 0.06 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.15 seconds
cpu time 0.03 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 4416 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.40 seconds
cpu time 0.22 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 4416 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._AZSLDPHCT has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.14 seconds
cpu time 0.07 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._AZSLDPHCT.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.23 seconds
cpu time 0.07 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.16 seconds
8 The SAS System 09:58 Monday, May 18, 2009
cpu time 0.05 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 5583 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.37 seconds
cpu time 0.23 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 5583 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._ARSLDPH has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.17 seconds
cpu time 0.08 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._ARSLDPH.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.23 seconds
cpu time 0.08 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.23 seconds
cpu time 0.02 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 4416 observations and 39 variables.
9 The SAS System 09:58 Monday, May 18, 2009
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.43 seconds
cpu time 0.20 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 4416 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._ARSLDPHCT has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.11 seconds
cpu time 0.07 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._ARSLDPHCT.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.23 seconds
cpu time 0.08 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.18 seconds
cpu time 0.02 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 5583 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.43 seconds
cpu time 0.24 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 5583 observations read from the data set WORK.CONTENTS.
10 The SAS System 09:58 Monday, May 18, 2009
NOTE: The data set WORK._CASLDPH has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.17 seconds
cpu time 0.09 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._CASLDPH.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.23 seconds
cpu time 0.06 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.16 seconds
cpu time 0.03 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 4416 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.38 seconds
cpu time 0.23 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 4416 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._CASLDPHCT has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.09 seconds
cpu time 0.07 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._CASLDPHCT.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.23 seconds
11 The SAS System 09:58 Monday, May 18, 2009
cpu time 0.06 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.16 seconds
cpu time 0.03 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 5583 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.38 seconds
cpu time 0.24 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 5583 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._COSLDPH has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.19 seconds
cpu time 0.08 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._COSLDPH.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.22 seconds
cpu time 0.05 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.15 seconds
cpu time 0.05 seconds
12 The SAS System 09:58 Monday, May 18, 2009
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.02 seconds
NOTE: The data set WORK.CONTENTS has 4416 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.39 seconds
cpu time 0.20 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 4416 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._COSLDPHCT has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.08 seconds
cpu time 0.07 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._COSLDPHCT.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.23 seconds
cpu time 0.07 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.17 seconds
cpu time 0.03 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 5583 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.40 seconds
cpu time 0.23 seconds
13 The SAS System 09:58 Monday, May 18, 2009
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 5583 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._CTSLDPH has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.14 seconds
cpu time 0.10 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._CTSLDPH.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.22 seconds
cpu time 0.05 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.14 seconds
cpu time 0.04 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 4416 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.39 seconds
cpu time 0.20 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 4416 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._CTSLDPHCT has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.09 seconds
cpu time 0.08 seconds
14 The SAS System 09:58 Monday, May 18, 2009
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._CTSLDPHCT.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.23 seconds
cpu time 0.07 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.16 seconds
cpu time 0.02 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 5583 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.38 seconds
cpu time 0.20 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 5583 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._DESLDPH has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.14 seconds
cpu time 0.07 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._DESLDPH.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.22 seconds
cpu time 0.06 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
15 The SAS System 09:58 Monday, May 18, 2009
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.16 seconds
cpu time 0.03 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 4416 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.38 seconds
cpu time 0.22 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 4416 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._DESLDPHCT has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.10 seconds
cpu time 0.07 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._DESLDPHCT.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.23 seconds
cpu time 0.07 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.16 seconds
cpu time 0.02 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
16 The SAS System 09:58 Monday, May 18, 2009
NOTE: The data set WORK.CONTENTS has 5583 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.40 seconds
cpu time 0.24 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 5583 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._DCSLDPH has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.14 seconds
cpu time 0.09 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._DCSLDPH.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.22 seconds
cpu time 0.08 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.15 seconds
cpu time 0.02 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 4416 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.40 seconds
cpu time 0.20 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
17 The SAS System 09:58 Monday, May 18, 2009
marks.
SubDir=slds2007
NOTE: There were 4416 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._DCSLDPHCT has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.09 seconds
cpu time 0.08 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._DCSLDPHCT.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.23 seconds
cpu time 0.08 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.16 seconds
cpu time 0.03 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 5583 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.41 seconds
cpu time 0.22 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 5583 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._FLSLDPH has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.11 seconds
cpu time 0.09 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
18 The SAS System 09:58 Monday, May 18, 2009
NOTE: There were 1 observations read from the data set WORK._FLSLDPH.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.21 seconds
cpu time 0.07 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.14 seconds
cpu time 0.03 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 4416 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.41 seconds
cpu time 0.21 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 4416 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._FLSLDPHCT has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.09 seconds
cpu time 0.07 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._FLSLDPHCT.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.22 seconds
cpu time 0.05 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.15 seconds
19 The SAS System 09:58 Monday, May 18, 2009
cpu time 0.03 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.02 seconds
NOTE: The data set WORK.CONTENTS has 5583 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.47 seconds
cpu time 0.23 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 5583 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._GASLDPH has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.09 seconds
cpu time 0.08 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._GASLDPH.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.22 seconds
cpu time 0.06 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.16 seconds
cpu time 0.05 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 4416 observations and 39 variables.
20 The SAS System 09:58 Monday, May 18, 2009
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.39 seconds
cpu time 0.20 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 4416 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._GASLDPHCT has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.11 seconds
cpu time 0.07 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._GASLDPHCT.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.23 seconds
cpu time 0.08 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.14 seconds
cpu time 0.04 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 5583 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.41 seconds
cpu time 0.22 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 5583 observations read from the data set WORK.CONTENTS.
21 The SAS System 09:58 Monday, May 18, 2009
NOTE: The data set WORK._HISLDPH has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.11 seconds
cpu time 0.08 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._HISLDPH.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.22 seconds
cpu time 0.06 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.14 seconds
cpu time 0.03 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.02 seconds
NOTE: The data set WORK.CONTENTS has 4416 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.39 seconds
cpu time 0.21 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 4416 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._HISLDPHCT has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.09 seconds
cpu time 0.08 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._HISLDPHCT.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.23 seconds
22 The SAS System 09:58 Monday, May 18, 2009
cpu time 0.06 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.16 seconds
cpu time 0.03 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.02 seconds
NOTE: The data set WORK.CONTENTS has 5583 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.44 seconds
cpu time 0.25 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 5583 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._IDSLDPH has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.09 seconds
cpu time 0.07 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._IDSLDPH.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.23 seconds
cpu time 0.08 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.16 seconds
cpu time 0.03 seconds
23 The SAS System 09:58 Monday, May 18, 2009
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 4416 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.40 seconds
cpu time 0.20 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 4416 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._IDSLDPHCT has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.08 seconds
cpu time 0.07 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._IDSLDPHCT.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.23 seconds
cpu time 0.07 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.16 seconds
cpu time 0.05 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 5583 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.47 seconds
cpu time 0.22 seconds
24 The SAS System 09:58 Monday, May 18, 2009
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 5583 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._ILSLDPH has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.10 seconds
cpu time 0.08 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._ILSLDPH.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.22 seconds
cpu time 0.07 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.14 seconds
cpu time 0.04 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 4416 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.41 seconds
cpu time 0.21 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 4416 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._ILSLDPHCT has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.08 seconds
cpu time 0.07 seconds
25 The SAS System 09:58 Monday, May 18, 2009
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._ILSLDPHCT.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.23 seconds
cpu time 0.06 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.16 seconds
cpu time 0.05 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 5583 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.46 seconds
cpu time 0.25 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 5583 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._INSLDPH has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.08 seconds
cpu time 0.07 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._INSLDPH.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.23 seconds
cpu time 0.06 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
26 The SAS System 09:58 Monday, May 18, 2009
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.15 seconds
cpu time 0.02 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 4416 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.39 seconds
cpu time 0.19 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 4416 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._INSLDPHCT has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.10 seconds
cpu time 0.07 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._INSLDPHCT.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.22 seconds
cpu time 0.07 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.15 seconds
cpu time 0.03 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
27 The SAS System 09:58 Monday, May 18, 2009
NOTE: The data set WORK.CONTENTS has 5583 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.46 seconds
cpu time 0.23 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 5583 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._IASLDPH has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.11 seconds
cpu time 0.08 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._IASLDPH.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.23 seconds
cpu time 0.05 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.16 seconds
cpu time 0.06 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.03 seconds
NOTE: The data set WORK.CONTENTS has 4416 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.40 seconds
cpu time 0.20 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
28 The SAS System 09:58 Monday, May 18, 2009
marks.
SubDir=slds2007
NOTE: There were 4416 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._IASLDPHCT has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.08 seconds
cpu time 0.07 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._IASLDPHCT.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.22 seconds
cpu time 0.05 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.17 seconds
cpu time 0.04 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 5583 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.49 seconds
cpu time 0.24 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 5583 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._KSSLDPH has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.10 seconds
cpu time 0.07 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
29 The SAS System 09:58 Monday, May 18, 2009
NOTE: There were 1 observations read from the data set WORK._KSSLDPH.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.22 seconds
cpu time 0.07 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.14 seconds
cpu time 0.03 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 4416 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.41 seconds
cpu time 0.22 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 4416 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._KSSLDPHCT has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.08 seconds
cpu time 0.07 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._KSSLDPHCT.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.23 seconds
cpu time 0.06 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.16 seconds
30 The SAS System 09:58 Monday, May 18, 2009
cpu time 0.04 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 5583 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.47 seconds
cpu time 0.19 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 5583 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._KYSLDPH has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.08 seconds
cpu time 0.08 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._KYSLDPH.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.23 seconds
cpu time 0.06 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.14 seconds
cpu time 0.04 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.00 seconds
NOTE: The data set WORK.CONTENTS has 4416 observations and 39 variables.
31 The SAS System 09:58 Monday, May 18, 2009
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.39 seconds
cpu time 0.20 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 4416 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._KYSLDPHCT has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.10 seconds
cpu time 0.07 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._KYSLDPHCT.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.23 seconds
cpu time 0.06 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.16 seconds
cpu time 0.04 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 5583 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.48 seconds
cpu time 0.24 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 5583 observations read from the data set WORK.CONTENTS.
32 The SAS System 09:58 Monday, May 18, 2009
NOTE: The data set WORK._LASLDPH has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.09 seconds
cpu time 0.08 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._LASLDPH.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.23 seconds
cpu time 0.05 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.15 seconds
cpu time 0.04 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.02 seconds
NOTE: The data set WORK.CONTENTS has 4416 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.39 seconds
cpu time 0.22 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 4416 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._LASLDPHCT has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.08 seconds
cpu time 0.07 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._LASLDPHCT.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.23 seconds
33 The SAS System 09:58 Monday, May 18, 2009
cpu time 0.07 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.15 seconds
cpu time 0.05 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 5583 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.48 seconds
cpu time 0.22 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 5583 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._MESLDPH has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.13 seconds
cpu time 0.09 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._MESLDPH.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.24 seconds
cpu time 0.07 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.15 seconds
cpu time 0.04 seconds
34 The SAS System 09:58 Monday, May 18, 2009
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.02 seconds
NOTE: The data set WORK.CONTENTS has 4416 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.41 seconds
cpu time 0.20 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 4416 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._MESLDPHCT has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.11 seconds
cpu time 0.07 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._MESLDPHCT.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.26 seconds
cpu time 0.06 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.15 seconds
cpu time 0.03 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.02 seconds
NOTE: The data set WORK.CONTENTS has 5583 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.45 seconds
cpu time 0.25 seconds
35 The SAS System 09:58 Monday, May 18, 2009
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 5583 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._MDSLDPH has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.08 seconds
cpu time 0.08 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._MDSLDPH.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.22 seconds
cpu time 0.06 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.17 seconds
cpu time 0.05 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 4416 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.40 seconds
cpu time 0.22 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 4416 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._MDSLDPHCT has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.08 seconds
cpu time 0.07 seconds
36 The SAS System 09:58 Monday, May 18, 2009
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._MDSLDPHCT.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.23 seconds
cpu time 0.06 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.17 seconds
cpu time 0.03 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.02 seconds
NOTE: The data set WORK.CONTENTS has 5583 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.47 seconds
cpu time 0.24 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 5583 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._MASLDPH has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.10 seconds
cpu time 0.08 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._MASLDPH.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.22 seconds
cpu time 0.05 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
37 The SAS System 09:58 Monday, May 18, 2009
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.16 seconds
cpu time 0.05 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 4416 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.39 seconds
cpu time 0.21 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 4416 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._MASLDPHCT has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.11 seconds
cpu time 0.07 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._MASLDPHCT.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.22 seconds
cpu time 0.07 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.17 seconds
cpu time 0.04 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
38 The SAS System 09:58 Monday, May 18, 2009
NOTE: The data set WORK.CONTENTS has 5583 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.50 seconds
cpu time 0.24 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 5583 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._MISLDPH has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.09 seconds
cpu time 0.09 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._MISLDPH.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.23 seconds
cpu time 0.06 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.16 seconds
cpu time 0.06 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.00 seconds
NOTE: The data set WORK.CONTENTS has 4416 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.39 seconds
cpu time 0.20 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
39 The SAS System 09:58 Monday, May 18, 2009
marks.
SubDir=slds2007
NOTE: There were 4416 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._MISLDPHCT has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.09 seconds
cpu time 0.08 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._MISLDPHCT.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.22 seconds
cpu time 0.06 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.16 seconds
cpu time 0.05 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 5583 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.51 seconds
cpu time 0.24 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 5583 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._MNSLDPH has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.08 seconds
cpu time 0.09 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
40 The SAS System 09:58 Monday, May 18, 2009
NOTE: There were 1 observations read from the data set WORK._MNSLDPH.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.23 seconds
cpu time 0.09 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.16 seconds
cpu time 0.03 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.02 seconds
NOTE: The data set WORK.CONTENTS has 4416 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.40 seconds
cpu time 0.20 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 4416 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._MNSLDPHCT has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.09 seconds
cpu time 0.07 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._MNSLDPHCT.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.22 seconds
cpu time 0.07 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.17 seconds
41 The SAS System 09:58 Monday, May 18, 2009
cpu time 0.03 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 5583 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.46 seconds
cpu time 0.20 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 5583 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._MSSLDPH has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.09 seconds
cpu time 0.09 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._MSSLDPH.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.22 seconds
cpu time 0.07 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.15 seconds
cpu time 0.03 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 4416 observations and 39 variables.
42 The SAS System 09:58 Monday, May 18, 2009
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.39 seconds
cpu time 0.21 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 4416 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._MSSLDPHCT has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.09 seconds
cpu time 0.08 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._MSSLDPHCT.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.22 seconds
cpu time 0.08 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.17 seconds
cpu time 0.03 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 5583 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.49 seconds
cpu time 0.23 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 5583 observations read from the data set WORK.CONTENTS.
43 The SAS System 09:58 Monday, May 18, 2009
NOTE: The data set WORK._MOSLDPH has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.10 seconds
cpu time 0.09 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._MOSLDPH.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.23 seconds
cpu time 0.08 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.16 seconds
cpu time 0.03 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 4416 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.42 seconds
cpu time 0.21 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 4416 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._MOSLDPHCT has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.10 seconds
cpu time 0.09 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._MOSLDPHCT.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.22 seconds
44 The SAS System 09:58 Monday, May 18, 2009
cpu time 0.07 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.16 seconds
cpu time 0.04 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 5583 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.49 seconds
cpu time 0.20 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 5583 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._MTSLDPH has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.09 seconds
cpu time 0.09 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._MTSLDPH.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.23 seconds
cpu time 0.07 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.15 seconds
cpu time 0.03 seconds
45 The SAS System 09:58 Monday, May 18, 2009
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 4416 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.41 seconds
cpu time 0.22 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 4416 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._MTSLDPHCT has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.09 seconds
cpu time 0.07 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._MTSLDPHCT.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.22 seconds
cpu time 0.07 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.18 seconds
cpu time 0.02 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 5583 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.50 seconds
cpu time 0.24 seconds
46 The SAS System 09:58 Monday, May 18, 2009
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 5583 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._NESLDPH has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.09 seconds
cpu time 0.08 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._NESLDPH.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.24 seconds
cpu time 0.08 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.18 seconds
cpu time 0.04 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 4416 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.41 seconds
cpu time 0.21 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 4416 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._NESLDPHCT has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.10 seconds
cpu time 0.08 seconds
47 The SAS System 09:58 Monday, May 18, 2009
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._NESLDPHCT.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.23 seconds
cpu time 0.07 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.16 seconds
cpu time 0.02 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 5583 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.49 seconds
cpu time 0.21 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 5583 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._NVSLDPH has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.09 seconds
cpu time 0.08 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._NVSLDPH.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.23 seconds
cpu time 0.06 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
48 The SAS System 09:58 Monday, May 18, 2009
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.16 seconds
cpu time 0.06 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 4416 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.42 seconds
cpu time 0.21 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 4416 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._NVSLDPHCT has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.11 seconds
cpu time 0.07 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._NVSLDPHCT.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.23 seconds
cpu time 0.06 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.18 seconds
cpu time 0.02 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
49 The SAS System 09:58 Monday, May 18, 2009
NOTE: The data set WORK.CONTENTS has 5583 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.48 seconds
cpu time 0.21 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 5583 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._NHSLDPH has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.09 seconds
cpu time 0.08 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._NHSLDPH.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.24 seconds
cpu time 0.07 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.15 seconds
cpu time 0.02 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 4416 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.40 seconds
cpu time 0.20 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
50 The SAS System 09:58 Monday, May 18, 2009
marks.
SubDir=slds2007
NOTE: There were 4416 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._NHSLDPHCT has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.11 seconds
cpu time 0.07 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._NHSLDPHCT.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.24 seconds
cpu time 0.08 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.17 seconds
cpu time 0.02 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 5583 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.50 seconds
cpu time 0.23 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 5583 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._NJSLDPH has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.08 seconds
cpu time 0.09 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
51 The SAS System 09:58 Monday, May 18, 2009
NOTE: There were 1 observations read from the data set WORK._NJSLDPH.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.23 seconds
cpu time 0.06 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.16 seconds
cpu time 0.02 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 4416 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.42 seconds
cpu time 0.24 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 4416 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._NJSLDPHCT has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.11 seconds
cpu time 0.07 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._NJSLDPHCT.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.24 seconds
cpu time 0.07 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.16 seconds
52 The SAS System 09:58 Monday, May 18, 2009
cpu time 0.03 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.02 seconds
NOTE: The data set WORK.CONTENTS has 5583 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.51 seconds
cpu time 0.22 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 5583 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._NMSLDPH has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.10 seconds
cpu time 0.08 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._NMSLDPH.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.22 seconds
cpu time 0.07 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.14 seconds
cpu time 0.03 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 4416 observations and 39 variables.
53 The SAS System 09:58 Monday, May 18, 2009
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.40 seconds
cpu time 0.21 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 4416 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._NMSLDPHCT has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.09 seconds
cpu time 0.08 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._NMSLDPHCT.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.23 seconds
cpu time 0.08 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.17 seconds
cpu time 0.03 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 5583 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.53 seconds
cpu time 0.22 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 5583 observations read from the data set WORK.CONTENTS.
54 The SAS System 09:58 Monday, May 18, 2009
NOTE: The data set WORK._NYSLDPH has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.12 seconds
cpu time 0.09 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._NYSLDPH.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.30 seconds
cpu time 0.08 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.16 seconds
cpu time 0.03 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 4416 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.44 seconds
cpu time 0.20 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 4416 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._NYSLDPHCT has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.13 seconds
cpu time 0.08 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._NYSLDPHCT.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.23 seconds
55 The SAS System 09:58 Monday, May 18, 2009
cpu time 0.05 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.15 seconds
cpu time 0.02 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.02 seconds
NOTE: The data set WORK.CONTENTS has 5583 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.53 seconds
cpu time 0.22 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 5583 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._NCSLDPH has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.11 seconds
cpu time 0.08 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._NCSLDPH.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.23 seconds
cpu time 0.06 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.16 seconds
cpu time 0.03 seconds
56 The SAS System 09:58 Monday, May 18, 2009
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 4416 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.39 seconds
cpu time 0.21 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 4416 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._NCSLDPHCT has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.09 seconds
cpu time 0.08 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._NCSLDPHCT.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.22 seconds
cpu time 0.09 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.17 seconds
cpu time 0.04 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 5583 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.50 seconds
cpu time 0.22 seconds
57 The SAS System 09:58 Monday, May 18, 2009
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 5583 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._NDSLDPH has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.10 seconds
cpu time 0.08 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._NDSLDPH.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.23 seconds
cpu time 0.08 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.15 seconds
cpu time 0.06 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.02 seconds
NOTE: The data set WORK.CONTENTS has 4416 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.41 seconds
cpu time 0.20 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 4416 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._NDSLDPHCT has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.09 seconds
cpu time 0.08 seconds
58 The SAS System 09:58 Monday, May 18, 2009
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._NDSLDPHCT.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.22 seconds
cpu time 0.07 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.16 seconds
cpu time 0.04 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 5583 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.53 seconds
cpu time 0.23 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 5583 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._OHSLDPH has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.09 seconds
cpu time 0.08 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._OHSLDPH.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.22 seconds
cpu time 0.07 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
59 The SAS System 09:58 Monday, May 18, 2009
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.17 seconds
cpu time 0.03 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.02 seconds
NOTE: The data set WORK.CONTENTS has 4416 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.41 seconds
cpu time 0.20 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 4416 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._OHSLDPHCT has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.08 seconds
cpu time 0.08 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._OHSLDPHCT.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.22 seconds
cpu time 0.08 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.16 seconds
cpu time 0.03 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
60 The SAS System 09:58 Monday, May 18, 2009
NOTE: The data set WORK.CONTENTS has 5583 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.53 seconds
cpu time 0.23 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 5583 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._OKSLDPH has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.09 seconds
cpu time 0.07 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._OKSLDPH.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.22 seconds
cpu time 0.07 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.17 seconds
cpu time 0.05 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 4416 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.41 seconds
cpu time 0.20 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
61 The SAS System 09:58 Monday, May 18, 2009
marks.
SubDir=slds2007
NOTE: There were 4416 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._OKSLDPHCT has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.09 seconds
cpu time 0.08 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._OKSLDPHCT.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.22 seconds
cpu time 0.09 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.17 seconds
cpu time 0.05 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 5583 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.53 seconds
cpu time 0.24 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 5583 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._ORSLDPH has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.09 seconds
cpu time 0.08 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
62 The SAS System 09:58 Monday, May 18, 2009
NOTE: There were 1 observations read from the data set WORK._ORSLDPH.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.23 seconds
cpu time 0.07 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.15 seconds
cpu time 0.03 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 4416 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.41 seconds
cpu time 0.20 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 4416 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._ORSLDPHCT has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.09 seconds
cpu time 0.07 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._ORSLDPHCT.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.22 seconds
cpu time 0.06 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.15 seconds
63 The SAS System 09:58 Monday, May 18, 2009
cpu time 0.02 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 5583 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.52 seconds
cpu time 0.24 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 5583 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._PASLDPH has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.09 seconds
cpu time 0.09 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._PASLDPH.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.22 seconds
cpu time 0.07 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.15 seconds
cpu time 0.03 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.02 seconds
NOTE: The data set WORK.CONTENTS has 4416 observations and 39 variables.
64 The SAS System 09:58 Monday, May 18, 2009
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.42 seconds
cpu time 0.21 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 4416 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._PASLDPHCT has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.13 seconds
cpu time 0.07 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._PASLDPHCT.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.22 seconds
cpu time 0.07 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.16 seconds
cpu time 0.06 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 5583 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.53 seconds
cpu time 0.22 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 5583 observations read from the data set WORK.CONTENTS.
65 The SAS System 09:58 Monday, May 18, 2009
NOTE: The data set WORK._RISLDPH has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.10 seconds
cpu time 0.07 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._RISLDPH.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.23 seconds
cpu time 0.06 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.15 seconds
cpu time 0.03 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 4416 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.44 seconds
cpu time 0.20 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 4416 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._RISLDPHCT has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.10 seconds
cpu time 0.08 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._RISLDPHCT.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.24 seconds
66 The SAS System 09:58 Monday, May 18, 2009
cpu time 0.06 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.16 seconds
cpu time 0.04 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 5583 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.53 seconds
cpu time 0.22 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 5583 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._SCSLDPH has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.11 seconds
cpu time 0.08 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._SCSLDPH.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.22 seconds
cpu time 0.06 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.16 seconds
cpu time 0.03 seconds
67 The SAS System 09:58 Monday, May 18, 2009
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 4416 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.45 seconds
cpu time 0.22 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 4416 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._SCSLDPHCT has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.09 seconds
cpu time 0.08 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._SCSLDPHCT.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.23 seconds
cpu time 0.07 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.17 seconds
cpu time 0.05 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 5583 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.54 seconds
cpu time 0.23 seconds
68 The SAS System 09:58 Monday, May 18, 2009
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 5583 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._SDSLDPH has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.11 seconds
cpu time 0.08 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._SDSLDPH.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.22 seconds
cpu time 0.06 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.15 seconds
cpu time 0.02 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 4416 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.44 seconds
cpu time 0.20 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 4416 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._SDSLDPHCT has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.08 seconds
cpu time 0.07 seconds
69 The SAS System 09:58 Monday, May 18, 2009
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._SDSLDPHCT.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.25 seconds
cpu time 0.06 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.17 seconds
cpu time 0.02 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 5583 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.53 seconds
cpu time 0.24 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 5583 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._TNSLDPH has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.15 seconds
cpu time 0.08 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._TNSLDPH.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.22 seconds
cpu time 0.07 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
70 The SAS System 09:58 Monday, May 18, 2009
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.17 seconds
cpu time 0.05 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.02 seconds
NOTE: The data set WORK.CONTENTS has 4416 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.47 seconds
cpu time 0.22 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 4416 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._TNSLDPHCT has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.11 seconds
cpu time 0.07 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._TNSLDPHCT.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.23 seconds
cpu time 0.06 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.17 seconds
cpu time 0.03 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.02 seconds
71 The SAS System 09:58 Monday, May 18, 2009
NOTE: The data set WORK.CONTENTS has 5583 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.57 seconds
cpu time 0.25 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 5583 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._TXSLDPH has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.11 seconds
cpu time 0.08 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._TXSLDPH.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.21 seconds
cpu time 0.08 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.16 seconds
cpu time 0.03 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 4416 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.47 seconds
cpu time 0.21 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
72 The SAS System 09:58 Monday, May 18, 2009
marks.
SubDir=slds2007
NOTE: There were 4416 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._TXSLDPHCT has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.11 seconds
cpu time 0.07 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._TXSLDPHCT.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.23 seconds
cpu time 0.07 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.16 seconds
cpu time 0.03 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 5583 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.54 seconds
cpu time 0.24 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 5583 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._UTSLDPH has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.11 seconds
cpu time 0.08 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
73 The SAS System 09:58 Monday, May 18, 2009
NOTE: There were 1 observations read from the data set WORK._UTSLDPH.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.23 seconds
cpu time 0.06 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.15 seconds
cpu time 0.02 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.02 seconds
NOTE: The data set WORK.CONTENTS has 4416 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.45 seconds
cpu time 0.24 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 4416 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._UTSLDPHCT has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.12 seconds
cpu time 0.07 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._UTSLDPHCT.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.23 seconds
cpu time 0.06 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.15 seconds
74 The SAS System 09:58 Monday, May 18, 2009
cpu time 0.05 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.02 seconds
NOTE: The data set WORK.CONTENTS has 5583 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.57 seconds
cpu time 0.23 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 5583 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._VTSLDPH has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.11 seconds
cpu time 0.08 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._VTSLDPH.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.23 seconds
cpu time 0.07 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.15 seconds
cpu time 0.03 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 4416 observations and 39 variables.
75 The SAS System 09:58 Monday, May 18, 2009
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.46 seconds
cpu time 0.19 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 4416 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._VTSLDPHCT has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.10 seconds
cpu time 0.07 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._VTSLDPHCT.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.23 seconds
cpu time 0.06 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.16 seconds
cpu time 0.04 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 5583 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.54 seconds
cpu time 0.25 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 5583 observations read from the data set WORK.CONTENTS.
76 The SAS System 09:58 Monday, May 18, 2009
NOTE: The data set WORK._VASLDPH has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.14 seconds
cpu time 0.09 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._VASLDPH.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.27 seconds
cpu time 0.07 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.15 seconds
cpu time 0.02 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 4416 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.42 seconds
cpu time 0.23 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 4416 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._VASLDPHCT has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.11 seconds
cpu time 0.07 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._VASLDPHCT.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.24 seconds
77 The SAS System 09:58 Monday, May 18, 2009
cpu time 0.08 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.17 seconds
cpu time 0.03 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 5583 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.54 seconds
cpu time 0.25 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 5583 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._WASLDPH has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.13 seconds
cpu time 0.08 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._WASLDPH.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.24 seconds
cpu time 0.07 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.15 seconds
cpu time 0.02 seconds
78 The SAS System 09:58 Monday, May 18, 2009
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 4416 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.44 seconds
cpu time 0.21 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 4416 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._WASLDPHCT has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.10 seconds
cpu time 0.09 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._WASLDPHCT.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.23 seconds
cpu time 0.06 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.19 seconds
cpu time 0.02 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 5583 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.64 seconds
cpu time 0.21 seconds
79 The SAS System 09:58 Monday, May 18, 2009
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 5583 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._WVSLDPH has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.14 seconds
cpu time 0.08 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._WVSLDPH.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.22 seconds
cpu time 0.06 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.18 seconds
cpu time 0.02 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 4416 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.47 seconds
cpu time 0.22 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 4416 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._WVSLDPHCT has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.10 seconds
cpu time 0.07 seconds
80 The SAS System 09:58 Monday, May 18, 2009
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._WVSLDPHCT.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.23 seconds
cpu time 0.07 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.16 seconds
cpu time 0.02 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 5583 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.54 seconds
cpu time 0.24 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 5583 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._WISLDPH has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.12 seconds
cpu time 0.09 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._WISLDPH.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.22 seconds
cpu time 0.07 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
81 The SAS System 09:58 Monday, May 18, 2009
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.15 seconds
cpu time 0.03 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 4416 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.43 seconds
cpu time 0.19 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 4416 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._WISLDPHCT has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.09 seconds
cpu time 0.08 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._WISLDPHCT.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.23 seconds
cpu time 0.08 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.18 seconds
cpu time 0.06 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
82 The SAS System 09:58 Monday, May 18, 2009
NOTE: The data set WORK.CONTENTS has 5583 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.55 seconds
cpu time 0.24 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 5583 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._WYSLDPH has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.13 seconds
cpu time 0.08 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._WYSLDPH.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.22 seconds
cpu time 0.06 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.15 seconds
cpu time 0.03 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.02 seconds
NOTE: The data set WORK.CONTENTS has 4416 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.45 seconds
cpu time 0.21 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
83 The SAS System 09:58 Monday, May 18, 2009
marks.
SubDir=slds2007
NOTE: There were 4416 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._WYSLDPHCT has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.09 seconds
cpu time 0.08 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._WYSLDPHCT.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.24 seconds
cpu time 0.06 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.15 seconds
cpu time 0.03 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 5583 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.56 seconds
cpu time 0.23 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 5583 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._PRSLDPH has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.14 seconds
cpu time 0.08 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
84 The SAS System 09:58 Monday, May 18, 2009
NOTE: There were 1 observations read from the data set WORK._PRSLDPH.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.22 seconds
cpu time 0.07 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.15 seconds
cpu time 0.05 seconds
Mode has been assigned as update
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: The data set WORK.CONTENTS has 4416 observations and 39 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.50 seconds
cpu time 0.22 seconds
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
SubDir=slds2007
NOTE: There were 4416 observations read from the data set WORK.CONTENTS.
NOTE: The data set WORK._PRSLDPHCT has 1 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.11 seconds
cpu time 0.08 seconds
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 1 observations read from the data set WORK._PRSLDPHCT.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.23 seconds
cpu time 0.07 seconds
_indxfilename= /pub/data/sf32000/slds2007/datasets.sas7bndx
NOTE: Composite index dataset has been defined.
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.17 seconds
85 The SAS System 09:58 Monday, May 18, 2009
cpu time 0.04 seconds
68
69
70 proc sort data=slds2007.datasets out=bysortprio;
71 by SortPrio GeoUniv SetGroup SubType Memname ; run;
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: The data set WORK.BYSORTPRIO has 209 observations and 46 variables.
NOTE: PROCEDURE SORT used (Total process time):
real time 0.21 seconds
cpu time 0.06 seconds
72
73 proc datasets library=slds2007 nolist;
74 modify datasets;
75 index delete dataset memname;
NOTE: Index dataset deleted.
WARNING: No key variables have been defined for file DATASETS.
WARNING: No index named memname.
76 index create dataset=(libname memname) / unique;
NOTE: Composite index dataset has been defined.
77 index create memname;
NOTE: Simple index memname has been defined.
78 quit;
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.22 seconds
cpu time 0.05 seconds
79
80 options mprint msglevel=i;
81 %gendshtm(libname=slds2007,debug=0,runprocc=1);
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
MPRINT(GENDSHTM): proc datasets library=slds2007 nolist;
MPRINT(GENDSHTM): modify datasets;
MPRINT(GENDSHTM): index delete memname;
NOTE: Index memname deleted.
MPRINT(GENDSHTM): *--in case it already exists--;
MPRINT(GENDSHTM): index create memname ;
NOTE: Simple index memname has been defined.
MPRINT(GENDSHTM): quit;
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.14 seconds
cpu time 0.02 seconds
86 The SAS System 09:58 Monday, May 18, 2009
MPRINT(GENDSHTM): *----Generate a Datasets.html file in the current directory based on dataset info from the datasets dataset and
proc contents----;
MPRINT(GENDSHTM): proc contents data=slds2007._all_ noprint out=datasets_contents( keep=memname memtype memlabel nobs crdate
engine varnum where=(varnum=1 and lowcase(memname) ne 'datasets_contents') rename=(crdate=created));
MPRINT(GENDSHTM): run;
NOTE: The data set WORK.DATASETS_CONTENTS has 209 observations and 7 variables.
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 19.59 seconds
cpu time 14.64 seconds
MPRINT(GENDSHTM): data slds2007.datasets_contents;
MPRINT(GENDSHTM): set datasets_contents;
MPRINT(GENDSHTM): memname=lowcase(memname);
MPRINT(GENDSHTM): if memlabel="'" then memlabel=" ";
MPRINT(GENDSHTM): drop varnum;
MPRINT(GENDSHTM): format created datetime7.;
MPRINT(GENDSHTM): run;
NOTE: There were 209 observations read from the data set WORK.DATASETS_CONTENTS.
NOTE: The data set SLDS2007.DATASETS_CONTENTS has 209 observations and 6 variables.
NOTE: DATA statement used (Total process time):
real time 0.13 seconds
cpu time 0.03 seconds
MPRINT(GENDSHTM): proc sort data=slds2007.datasets_contents;
MPRINT(GENDSHTM): by memname;
MPRINT(GENDSHTM): run;
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS_CONTENTS.
NOTE: SAS sort was used.
NOTE: The data set SLDS2007.DATASETS_CONTENTS has 209 observations and 6 variables.
NOTE: PROCEDURE SORT used (Total process time):
real time 0.11 seconds
cpu time 0.04 seconds
MPRINT(GENDSHTM): data slds2007.datasets ;
MPRINT(GENDSHTM): *<----New, 11/16/2006 11:54AM. We update the datasets dataset per contents data-;
MPRINT(GENDSHTM): update slds2007.datasets (in=indatasets) slds2007.datasets_contents(rename=(memlabel=memlabelC));
MPRINT(GENDSHTM): by memname;
MPRINT(GENDSHTM): if memlabel=' ' then memlabel=memlabelC;
MPRINT(GENDSHTM): drop memlabelC;
MPRINT(GENDSHTM): if not indatasets then sortprio="9";
MPRINT(GENDSHTM): if setgroup= ' ' then setgroup=geouniv;
MPRINT(GENDSHTM): run;
INFO: Index memname selected for BY clause processing.
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS.
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS_CONTENTS.
NOTE: The data set SLDS2007.DATASETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
87 The SAS System 09:58 Monday, May 18, 2009
real time 0.22 seconds
cpu time 0.08 seconds
MPRINT(GENDSHTM): proc datasets library=slds2007 nolist;
MPRINT(GENDSHTM): *--we just updated the dataset so we have to replace indices-;
MPRINT(GENDSHTM): modify datasets;
MPRINT(GENDSHTM): index delete dataset memname;
WARNING: No key variables have been defined for file DATASETS.
WARNING: No index named dataset.
MPRINT(GENDSHTM): index create dataset=(libname memname) / unique;
NOTE: Composite index dataset has been defined.
MPRINT(GENDSHTM): index create memname;
NOTE: Simple index memname has been defined.
MPRINT(GENDSHTM): quit;
NOTE: MODIFY was successful for SLDS2007.DATASETS.DATA.
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.19 seconds
cpu time 0.04 seconds
MPRINT(GENDSHTM): data allsets;
MPRINT(GENDSHTM): update slds2007.datasets (where=(SortPrio ne "X" and not( memname=:'_template') and libname="slds2007" )
in=indatasets) slds2007.datasets_contents(rename=(memlabel=memlabelC));
INFO: Index dataset selected for WHERE clause optimization.
MPRINT(GENDSHTM): by memname;
MPRINT(GENDSHTM): if memlabel=' ' then memlabel=memlabelC;
MPRINT(GENDSHTM): drop memlabelC;
MPRINT(GENDSHTM): if not indatasets then sortprio="9";
MPRINT(GENDSHTM): format created datetime7.;
MPRINT(GENDSHTM): if indatasets then call symput('libpath',trim(libpath));
MPRINT(GENDSHTM): if setgroup= ' ' then setgroup=geouniv;
MPRINT(GENDSHTM): run;
INFO: Use of index dataset for WHERE clause optimization cancelled.
INFO: Index memname selected for BY clause processing.
NOTE: There were 104 observations read from the data set SLDS2007.DATASETS.
WHERE (SortPrio not = 'X') and (not (memname=:'_template')) and (libname='slds2007');
NOTE: There were 209 observations read from the data set SLDS2007.DATASETS_CONTENTS.
NOTE: The data set WORK.ALLSETS has 209 observations and 46 variables.
NOTE: DATA statement used (Total process time):
real time 0.16 seconds
cpu time 0.09 seconds
MPRINT(GENDSHTM): proc sort data=allsets;
MPRINT(GENDSHTM): by SortPrio SetGroup Geouniv SubType descending years Memname;
MPRINT(GENDSHTM): run;
NOTE: There were 209 observations read from the data set WORK.ALLSETS.
NOTE: SAS sort was used.
NOTE: The data set WORK.ALLSETS has 209 observations and 46 variables.
NOTE: PROCEDURE SORT used (Total process time):
real time 0.18 seconds
cpu time 0.06 seconds
88 The SAS System 09:58 Monday, May 18, 2009
MPRINT(GENDSHTM): proc format;
MPRINT(GENDSHTM): *--the $tb format will cause a character to be put in the cell so it will not be empty when value is blank;
MPRINT(GENDSHTM): *--we leave all those blanks ON PURPOSE to make the format length sufficiently long.--;
MPRINT(GENDSHTM): value $tb ' '=' ' other=[$char200.];
NOTE: Format $TB has been output.
MPRINT(GENDSHTM): run;
NOTE: PROCEDURE FORMAT used (Total process time):
real time 0.09 seconds
cpu time 0.00 seconds
MPRINT(GENDSHTM): data _null_;
MPRINT(GENDSHTM): set allsets end=last;
MPRINT(GENDSHTM): by SortPrio SetGroup;
MPRINT(GENDSHTM): file "/pub/data/sf32000/slds2007/Datasets.html" lrecl=500;
MPRINT(GENDSHTM): if _n_=1 then do;
MPRINT(GENDSHTM): put " Datasets in directory /pub/data/sf32000/slds2007 " / ' ' ' ';
MPRINT(GENDSHTM): put '';
MPRINT(GENDSHTM): put '';
MPRINT(GENDSHTM): put "Summary of Data Tables in /pub/data/sf32000/slds2007 With Links to
Detailed Metadata
";
MPRINT(GENDSHTM): put ' ';
MPRINT(GENDSHTM): end;
MPRINT(GENDSHTM): _n+1;
MPRINT(GENDSHTM): if mod(_n,14)=1 or (first.setgroup and _n gt 6) then do;
MPRINT(GENDSHTM): *<---repeat the headers every 14 observations or when a new group starts but no more than every 6---;
MPRINT(GENDSHTM): _n=1;
MPRINT(GENDSHTM): put '';
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
WARNING: The quoted string currently being processed has become more than 262 characters long. You may have unbalanced quotation
marks.
MPRINT(GENDSHTM): put '|
# | Name
(dexter link) | Label | ' ' #Rows | #Cols | Geographic Universe | ' ' Units | Link to Details | Size in KB | Created | Eng |
';
MPRINT(GENDSHTM): end;
MPRINT(GENDSHTM): length _url $255;
MPRINT(GENDSHTM): retain filetype "slds2007";
MPRINT(GENDSHTM):
89 The SAS System 09:58 Monday, May 18, 2009
_url='http://mcdc2.missouri.edu/cgi-bin/broker?_PROGRAM=websas.dispdada.sas&_SERVICE='||"appdev"||'&libname='||trim(libname)||
'&memname='||trim(memname);
MPRINT(GENDSHTM): *<=============platform dependent================;
MPRINT(GENDSHTM): if scan(libpath,-1) ne filetype then _url=trim(_url)||'&libpath='||urlencode(trim(libpath));
MPRINT(GENDSHTM): _url=quote(trim(_url));
MPRINT(GENDSHTM): length _xref $200;
MPRINT(GENDSHTM): length _view $1;
MPRINT(GENDSHTM): if memtype='VIEW' then _view='1';
MPRINT(GENDSHTM): else _view='0';
MPRINT(GENDSHTM): *<--flag for uex2dex pgm--;
MPRINT(GENDSHTM): *---no longer accessing URLxtract variable -- we always generate _xref pointing to dexter---;
MPRINT(GENDSHTM):
_xref='"'||'http://mcdc2.missouri.edu/cgi-bin/broker?_PROGRAM=websas.uex2dex.sas&_SERVICE='||"appdev"||'&path='||"/pub/data/sf32000/
slds2007"||'&dset='|| trim(memname)||'&view='||_view||'"';
MPRINT(GENDSHTM): ***else _xref="http://mcdc2.missouri.edu/cgi-bin/callapp.pl?dir=&libpath"||'&dset='||trim(memname)||
'&form=xtract.html';
MPRINT(GENDSHTM): put '' '| ' _n_ ' | ' '' memname ' | ' / '' memlabel $tb. ' | ' nobs comma7. ' | ' nvars comma7. ' | ' GeoUniv $tb. ' | ' Units $tb.
' | ';
MPRINT(GENDSHTM): put '';
MPRINT(GENDSHTM): if GeoUniv ne " " or Description ne " " then put 'Details | ';
MPRINT(GENDSHTM): else put ' NA ';
MPRINT(GENDSHTM): put '' kbytes
comma9. ' | ' created
datetime7. ' | ' engine
$6. ' | ' ;
MPRINT(GENDSHTM): put '
';
MPRINT(GENDSHTM): if last then do;
MPRINT(GENDSHTM): put '
' / '';
MPRINT(GENDSHTM): end;
MPRINT(GENDSHTM): run;
NOTE: The file "/pub/data/sf32000/slds2007/Datasets.html" is:
File Name=/pub/data/sf32000/slds2007/Datasets.html,
Owner Name=john,Group Name=mcdc,
Access Permission=rw-rw-r--
NOTE: 1805 records were written to the file "/pub/data/sf32000/slds2007/Datasets.html".
The minimum record length was 5.
The maximum record length was 500.
NOTE: There were 209 observations read from the data set WORK.ALLSETS.
NOTE: DATA statement used (Total process time):
real time 0.17 seconds
cpu time 0.15 seconds
82
83
84 %include sascode(notify);
0
90 The SAS System 09:58 Monday, May 18, 2009
**** invoke_dosets_slds2007 (553136) has completed 18MAY09 10:00:44 syserr=0 sysrc= 0 *****
NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414
NOTE: The SAS System used:
real time 2:07.63
cpu time 1:00.84