-
Notifications
You must be signed in to change notification settings - Fork 90
/
test_assert_unique_keys.log
1538 lines (1136 loc) · 65.5 KB
/
test_assert_unique_keys.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1 The SAS System 12:57 Monday, September 21, 2015
NOTE: Copyright (c) 2002-2008 by SAS Institute Inc., Cary, NC, USA.
NOTE: SAS (r) Proprietary Software 9.2 (TS2M3)
Licensed to F. HOFFMANN LA ROCHE AG, Site 50701490.
NOTE: This session is executing on the X64_VSPRO platform.
NOTE: SAS initialization used:
real time 2.63 seconds
cpu time 1.02 seconds
1 /***
2 Qualification tests for PhUSE/CSS utility macro ASSERT_UNIQUE_KEYS
3
4 SETUP: Ensure that PhUSE/CSS utilities are in the AUTOCALL path
5
6 TEST PLAN:
7 https://github.com/phuse-org/phuse-scripts/blob/master/whitepapers/qualification/test
7 ! plan_assert_unique_keys.docx
8
9 ***/
10
11
12 *--- SETUP ---*;
13
14 %let macroname = ASSERT_UNIQUE_KEYS;
15
16 %put WARNING: (TEST_%upcase(¯oname)) User must ensure PhUSE/CSS utilities are in
16 ! the AUTOCALL path.;
WARNING: (TEST_ASSERT_UNIQUE_KEYS) User must ensure PhUSE/CSS utilities are in the AUTOCALL path.
17
18 OPTIONS mrecall sasautos=(%sysfunc(getoption(sasautos)) "C:\CSS\phuse-scripts\whitepapers\utilities") ls=max ps=max;
19 /*** EXECUTE ONE TIME only as needed
20
21 Ensure PhUSE/CSS utilities are in the AUTOCALL path
22 NB: This line is not necessary if PhUSE/CSS utilities are in your default AUTOCALL paths
23
24 OPTIONS mrecall sasautos=(%sysfunc(getoption(sasautos)) "C:\CSS\phuse-scripts\whitepapers\utilities") ls=max ps=max;
25
26 ***/
27
28
29 *--- SAVE TEST RESULTS as XML filename ---*;
30 *--- NB: if this filename is blank, do NOT save xml test results ---*;
31
32 %let XML_FILENAME = .\outputs_sas\testresults_%lowcase(¯oname).xml;
33
34
35 *--- Test Definitions ---*;
36 *--- Full Specs for test definitions: https://github.com/phuse-org/phuse-scripts/blob/master/whitepapers/utilities/util_passfail.sas ---*;
37
38 proc sql;
39 create table my_test_definitions
40 ( test_mac char(32) label='Name of macro to test'
41 , test_id char(15) label="Test ID for %upcase(¯oname)"
42 , test_dsc char(60) label='Test Description'
43
44 , test_type char(5) label='Test Type (Macro var, String-<B|C|L|T>, Data set, In data step)'
45 , Pparm_DS char(40) label='Test values for the Positional parameter DS'
46 , Pparm_KEYS char(30) label='Test values for the Positional parameter KEYS'
47 , Kparm_INCL char(30) label='Test values for the Keyword parameter INCL'
48 , Kparm_SQLWHR char(60) label='Test values for the Keyword parameter SQLWHR'
49
50 , test_expect char(30) label="EXPECTED test results for each call to %upcase(¯oname)"
51 , test_expect_sym char(30) label='TEST_PDLIM-delim Name=Value pairs of EXPECTED global syms created'
52 )
53 ;
NOTE: Table WORK.MY_TEST_DEFINITIONS created, with 0 rows and 10 columns.
54
55 * test type "I" (In data step) in order to wrap each test with code to create global macro var CONTINUE *;
56
57 insert into my_test_definitions
58 values("%lowcase(¯oname)", 'auk1.a.1', 'NULL dset name',
59 'D', '_NULLPARM_', 'var1 var2', 'var3', '', '-work.fail_auk', 'CONTINUE=0')
60 values("%lowcase(¯oname)", 'auk1.a.2', 'Invalid dset name',
61 'D', 'Work.Dne', 'var1 var2', '', '', '-work.fail_auk', 'CONTINUE=0')
62 values("%lowcase(¯oname)", 'auk1.a.3.i', 'Invalid truncated dset name',
63 'D', 'SAShelp.CLAS', 'name', 'sex age', '', '-work.fail_auk', 'CONTINUE=0')
64 values("%lowcase(¯oname)", 'auk1.a.3.ii', 'Invalid dset name with partial match',
65 'D', 'WORK.CSS_CLASSes', 'name sex', 'age', '', '-work.fail_auk', 'CONTINUE=0')
66 values("%lowcase(¯oname)", 'auk1.b.1', 'NULL keys',
67 'D', 'ClassES', '_NULLPARM_', '', '', '-work.fail_auk', 'CONTINUE=0')
68 values("%lowcase(¯oname)", 'auk1.b.2', 'Invalid single key',
69 'D', 'sasHelp.Class', 'nam', 'sex age', '', '-work.fail_auk', 'CONTINUE=0')
70 values("%lowcase(¯oname)", 'auk1.b.3', 'Invalid multiple keys',
71 'D', 'Work.CLASSes', 'nam gender', 'age', '', '-work.fail_auk', 'CONTINUE=0')
72 values("%lowcase(¯oname)", 'auk1.c.1', 'Invalid single INCL var',
73 'D', 'worK.ClassES', 'name sex', 'ag', '', '-work.fail_auk', 'CONTINUE=0')
74 values("%lowcase(¯oname)", 'auk1.c.2', 'Invalid multiple INCL vars',
75 'D', 'sasHelp.Class', 'name', 'gender aged', '', '-work.fail_auk', 'CONTINUE=0')
76
77 values("%lowcase(¯oname)", 'auk2.a', 'Unique single key',
78 'D', 'SasHelp.Class', 'name', '', '' '-fail_auk', 'CONTINUE=1')
79 values("%lowcase(¯oname)", 'auk2.b', 'Non-unique single key FAILS',
80 'D', 'classes', 'name', '', '' 'fail_auk2_b=fail_auk', 'CONTINUE=0')
81
82 values("%lowcase(¯oname)", 'auk3.a', 'Unique set of keys',
83 'D', 'Classes', 'name sex', '', '' '-fail_auk', 'CONTINUE=1')
84 values("%lowcase(¯oname)", 'auk3.b', 'Non-unique set of keys FAILS',
85 'D', 'Work.Classes', 'name age', '', '' 'fail_auk3_b=fail_auk', 'CONTINUE=0')
86
87 values("%lowcase(¯oname)", 'auk4.a', 'Non-unique single key FAILS & returns extra INCL vars',
88 'D', 'classes', 'name', 'sex source', '' 'fail_auk4_a=fail_auk', 'CONTINUE=0')
89 values("%lowcase(¯oname)", 'auk4.b', 'Non-unique set of keys FAILS & returns extra INCL vars',
90 'D', 'Work.Classes', 'name age', 'source', '' 'fail_auk4_b=fail_auk', 'CONTINUE=0')
91
92 values("%lowcase(¯oname)", 'auk5.a', 'Valid single key after SQLWHR subsetting',
93 'D', 'Work.Classes', 'name', '', 'where source="SASHELP"' '-work.fail_auk', 'CONTINUE=1')
94 values("%lowcase(¯oname)", 'auk5.b', 'Invalid single key after SQLWHR subsetting',
95 'D', 'Work.Classes', 'name', '', 'where height < 64' 'fail_auk5_b=work.fail_auk', 'CONTINUE=0')
96 values("%lowcase(¯oname)", 'auk5.c', 'Valid set of keys after SQLWHR subsetting',
97 'D', 'classes_dup', 'name sex', '', 'where copy = 1' '-FAIL_AUK', 'continue=1')
98 values("%lowcase(¯oname)", 'auk5.d', 'Invalid set of keys after SQLWHR subsetting',
99 'D', 'classes_DUP', 'name sex', '', 'where age < 13' 'fail_auk5_d=work.fail_auk', 'continue=0')
100
101 /*
102 values("%lowcase(¯oname)", '', '', '', '', '', '', '' '', '')
103 */
104 ;
NOTE: 19 rows were inserted into WORK.MY_TEST_DEFINITIONS.
105 quit;
NOTE: PROCEDURE SQL used (Total process time):
real time 0.04 seconds
cpu time 0.04 seconds
106
107
108 *--- Setup test environment here (dsets, macro vars, etc) ---*;
109
110 *--- Create EXPECTED test results ---*;
111 data classes;
112 * Duplicate SASHELP.CLASS records, but with SEX ('M', 'F') reversed *;
113 * Result: NAME is a valid unique key in SASHELP.CLASS, but not in WORK.CLASS, with valid keys NAME, SEX *;
114 set sashelp.class(in=in_orig) sashelp.class(in=in_rep);
115
116 if in_orig then source = 'SASHELP';
117 else do;
118 source = 'FLIPPED';
119 if sex = 'M' then sex = 'F';
120 else sex = 'M';
121 end;
122 run;
NOTE: There were 19 observations read from the data set SASHELP.CLASS.
NOTE: There were 19 observations read from the data set SASHELP.CLASS.
NOTE: The data set WORK.CLASSES has 38 observations and 6 variables.
NOTE: DATA statement used (Total process time):
real time 0.03 seconds
cpu time 0.03 seconds
123
124 data classes_dup;
125 set classes (in=in_one) classes;
126 if in_one then copy = 1;
127 else copy = 2;
128 run;
NOTE: There were 38 observations read from the data set WORK.CLASSES.
NOTE: There were 38 observations read from the data set WORK.CLASSES.
NOTE: The data set WORK.CLASSES_DUP has 76 observations and 7 variables.
NOTE: DATA statement used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds
129
130 data fail_auk2_b (keep=name)
131 fail_auk3_b (keep=name age)
132 fail_auk4_a (keep=name sex source)
133 fail_auk4_b (keep=name age source);
134 set classes;
135 run;
NOTE: There were 38 observations read from the data set WORK.CLASSES.
NOTE: The data set WORK.FAIL_AUK2_B has 38 observations and 1 variables.
NOTE: The data set WORK.FAIL_AUK3_B has 38 observations and 2 variables.
NOTE: The data set WORK.FAIL_AUK4_A has 38 observations and 3 variables.
NOTE: The data set WORK.FAIL_AUK4_B has 38 observations and 3 variables.
NOTE: DATA statement used (Total process time):
real time 0.03 seconds
cpu time 0.03 seconds
136
137 proc sort data=fail_auk2_b nodupkey;
138 by name;
NOTE: There were 38 observations read from the data set WORK.FAIL_AUK2_B.
NOTE: 19 observations with duplicate key values were deleted.
NOTE: The data set WORK.FAIL_AUK2_B has 19 observations and 1 variables.
NOTE: PROCEDURE SORT used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
139 proc sort data=fail_auk3_b nodupkey;
140 by name age;
NOTE: There were 38 observations read from the data set WORK.FAIL_AUK3_B.
NOTE: 19 observations with duplicate key values were deleted.
NOTE: The data set WORK.FAIL_AUK3_B has 19 observations and 2 variables.
NOTE: PROCEDURE SORT used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
141 proc sort data=fail_auk4_a nodupkey;
142 by name sex source;
NOTE: There were 38 observations read from the data set WORK.FAIL_AUK4_A.
NOTE: 0 observations with duplicate key values were deleted.
NOTE: The data set WORK.FAIL_AUK4_A has 38 observations and 3 variables.
NOTE: PROCEDURE SORT used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
143 proc sort data=fail_auk4_b nodupkey;
144 by name age source;
145 run;
NOTE: There were 38 observations read from the data set WORK.FAIL_AUK4_B.
NOTE: 0 observations with duplicate key values were deleted.
NOTE: The data set WORK.FAIL_AUK4_B has 38 observations and 3 variables.
NOTE: PROCEDURE SORT used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
146
147 proc sort data=classes (keep=name height where=(height < 64))
148 out=fail_auk5_b (keep=name) nodupkey;
149 by name;
NOTE: There were 22 observations read from the data set WORK.CLASSES.
WHERE height<64;
NOTE: 11 observations with duplicate key values were deleted.
NOTE: The data set WORK.FAIL_AUK5_B has 11 observations and 1 variables.
NOTE: PROCEDURE SORT used (Total process time):
real time 0.03 seconds
cpu time 0.03 seconds
150 proc sort data=classes (keep=name sex age where=(age < 13))
151 out=fail_auk5_d (keep=name sex) nodupkey;
152 by name sex;
153 run;
NOTE: There were 14 observations read from the data set WORK.CLASSES.
WHERE age<13;
NOTE: 0 observations with duplicate key values were deleted.
NOTE: The data set WORK.FAIL_AUK5_D has 14 observations and 2 variables.
NOTE: PROCEDURE SORT used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
154
155
156 *--- Execute & evaluate tests, and report & store test results ---*;
157 %util_passfail (my_test_definitions, savexml=&xml_filename, debug=N);
NOTE: PROCEDURE SQL used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: There were 19 observations read from the data set WORK.MY_TEST_DEFINITIONS.
NOTE: The data set WORK.CSS_PASSFAIL has 19 observations and 14 variables.
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE (BUILD_MACRO_CALLS): > auk1.a.1 , 1 call(s)
NOTE (BUILD_MACRO_CALLS): BUILDING MACRO CALL 1
NOTE (BUILD_MACRO_CALLS): GENERATED MACRO CALL 1 %assert_unique_keys( , var1 var2, INCL=var3)
NOTE (BUILD_MACRO_CALLS): <
NOTE (BUILD_MACRO_CALLS): > auk1.a.2 , 1 call(s)
NOTE (BUILD_MACRO_CALLS): BUILDING MACRO CALL 1
NOTE (BUILD_MACRO_CALLS): GENERATED MACRO CALL 1 %assert_unique_keys( Work.Dne, var1 var2)
NOTE (BUILD_MACRO_CALLS): <
NOTE (BUILD_MACRO_CALLS): > auk1.a.3.i , 1 call(s)
NOTE (BUILD_MACRO_CALLS): BUILDING MACRO CALL 1
NOTE (BUILD_MACRO_CALLS): GENERATED MACRO CALL 1 %assert_unique_keys( SAShelp.CLAS, name, INCL=sex age)
NOTE (BUILD_MACRO_CALLS): <
NOTE (BUILD_MACRO_CALLS): > auk1.a.3.ii , 1 call(s)
NOTE (BUILD_MACRO_CALLS): BUILDING MACRO CALL 1
NOTE (BUILD_MACRO_CALLS): GENERATED MACRO CALL 1 %assert_unique_keys( WORK.CSS_CLASSes, name sex, INCL=age)
NOTE (BUILD_MACRO_CALLS): <
NOTE (BUILD_MACRO_CALLS): > auk1.b.1 , 1 call(s)
NOTE (BUILD_MACRO_CALLS): BUILDING MACRO CALL 1
NOTE (BUILD_MACRO_CALLS): GENERATED MACRO CALL 1 %assert_unique_keys( ClassES, )
NOTE (BUILD_MACRO_CALLS): <
NOTE (BUILD_MACRO_CALLS): > auk1.b.2 , 1 call(s)
NOTE (BUILD_MACRO_CALLS): BUILDING MACRO CALL 1
NOTE (BUILD_MACRO_CALLS): GENERATED MACRO CALL 1 %assert_unique_keys( sasHelp.Class, nam, INCL=sex age)
NOTE (BUILD_MACRO_CALLS): <
NOTE (BUILD_MACRO_CALLS): > auk1.b.3 , 1 call(s)
NOTE (BUILD_MACRO_CALLS): BUILDING MACRO CALL 1
NOTE (BUILD_MACRO_CALLS): GENERATED MACRO CALL 1 %assert_unique_keys( Work.CLASSes, nam gender, INCL=age)
NOTE (BUILD_MACRO_CALLS): <
NOTE (BUILD_MACRO_CALLS): > auk1.c.1 , 1 call(s)
NOTE (BUILD_MACRO_CALLS): BUILDING MACRO CALL 1
NOTE (BUILD_MACRO_CALLS): GENERATED MACRO CALL 1 %assert_unique_keys( worK.ClassES, name sex, INCL=ag)
NOTE (BUILD_MACRO_CALLS): <
NOTE (BUILD_MACRO_CALLS): > auk1.c.2 , 1 call(s)
NOTE (BUILD_MACRO_CALLS): BUILDING MACRO CALL 1
NOTE (BUILD_MACRO_CALLS): GENERATED MACRO CALL 1 %assert_unique_keys( sasHelp.Class, name, INCL=gender aged)
NOTE (BUILD_MACRO_CALLS): <
NOTE (BUILD_MACRO_CALLS): > auk2.a , 1 call(s)
NOTE (BUILD_MACRO_CALLS): BUILDING MACRO CALL 1
NOTE (BUILD_MACRO_CALLS): GENERATED MACRO CALL 1 %assert_unique_keys( SasHelp.Class, name)
NOTE (BUILD_MACRO_CALLS): <
NOTE (BUILD_MACRO_CALLS): > auk2.b , 1 call(s)
NOTE (BUILD_MACRO_CALLS): BUILDING MACRO CALL 1
NOTE (BUILD_MACRO_CALLS): GENERATED MACRO CALL 1 %assert_unique_keys( classes, name)
NOTE (BUILD_MACRO_CALLS): <
NOTE (BUILD_MACRO_CALLS): > auk3.a , 1 call(s)
NOTE (BUILD_MACRO_CALLS): BUILDING MACRO CALL 1
NOTE (BUILD_MACRO_CALLS): GENERATED MACRO CALL 1 %assert_unique_keys( Classes, name sex)
NOTE (BUILD_MACRO_CALLS): <
NOTE (BUILD_MACRO_CALLS): > auk3.b , 1 call(s)
NOTE (BUILD_MACRO_CALLS): BUILDING MACRO CALL 1
NOTE (BUILD_MACRO_CALLS): GENERATED MACRO CALL 1 %assert_unique_keys( Work.Classes, name age)
NOTE (BUILD_MACRO_CALLS): <
NOTE (BUILD_MACRO_CALLS): > auk4.a , 1 call(s)
NOTE (BUILD_MACRO_CALLS): BUILDING MACRO CALL 1
NOTE (BUILD_MACRO_CALLS): GENERATED MACRO CALL 1 %assert_unique_keys( classes, name, INCL=sex source)
NOTE (BUILD_MACRO_CALLS): <
NOTE (BUILD_MACRO_CALLS): > auk4.b , 1 call(s)
NOTE (BUILD_MACRO_CALLS): BUILDING MACRO CALL 1
NOTE (BUILD_MACRO_CALLS): GENERATED MACRO CALL 1 %assert_unique_keys( Work.Classes, name age, INCL=source)
NOTE (BUILD_MACRO_CALLS): <
NOTE (BUILD_MACRO_CALLS): > auk5.a , 1 call(s)
NOTE (BUILD_MACRO_CALLS): BUILDING MACRO CALL 1
NOTE (BUILD_MACRO_CALLS): GENERATED MACRO CALL 1 %assert_unique_keys( Work.Classes, name, SQLWHR=where source="SASHELP")
NOTE (BUILD_MACRO_CALLS): <
NOTE (BUILD_MACRO_CALLS): > auk5.b , 1 call(s)
NOTE (BUILD_MACRO_CALLS): BUILDING MACRO CALL 1
NOTE (BUILD_MACRO_CALLS): GENERATED MACRO CALL 1 %assert_unique_keys( Work.Classes, name, SQLWHR=where height < 64)
NOTE (BUILD_MACRO_CALLS): <
NOTE (BUILD_MACRO_CALLS): > auk5.c , 1 call(s)
NOTE (BUILD_MACRO_CALLS): BUILDING MACRO CALL 1
NOTE (BUILD_MACRO_CALLS): GENERATED MACRO CALL 1 %assert_unique_keys( classes_dup, name sex, SQLWHR=where copy = 1)
NOTE (BUILD_MACRO_CALLS): <
NOTE (BUILD_MACRO_CALLS): > auk5.d , 1 call(s)
NOTE (BUILD_MACRO_CALLS): BUILDING MACRO CALL 1
NOTE (BUILD_MACRO_CALLS): GENERATED MACRO CALL 1 %assert_unique_keys( classes_DUP, name sex, SQLWHR=where age < 13)
NOTE (BUILD_MACRO_CALLS): <
NOTE: There were 19 observations read from the data set WORK.CSS_PASSFAIL.
NOTE: The data set WORK.CSS_PASSFAIL has 19 observations and 16 variables.
NOTE: DATA statement used (Total process time):
real time 0.03 seconds
cpu time 0.03 seconds
NOTE: There were 1 observations read from the data set WORK.CSS_PASSFAIL.
NOTE: DATA statement used (Total process time):
real time 0.00 seconds
cpu time 0.01 seconds
NOTE: PROCEDURE SQL used (Total process time):
real time 0.04 seconds
cpu time 0.04 seconds
NOTE: The file PFEXCODE is:
Filename=C:\Users\ditommd1\AppData\Local\Temp\SAS Temporary Files\_TD7740\#LN00007,
RECFM=V,LRECL=32767,File Size (bytes)=0,
Last Modified=21Sep2015:12:57:32,
Create Time=21Sep2015:12:57:32
NOTE: 1 record was written to the file PFEXCODE.
The minimum record length was 45.
The maximum record length was 45.
NOTE: There were 19 observations read from the data set WORK.CSS_PASSFAIL.
NOTE: The data set WORK.CSS_PASSFAIL has 19 observations and 16 variables.
NOTE: DATA statement used (Total process time):
real time 0.03 seconds
cpu time 0.00 seconds
ERROR: (ASSERT_DSET_EXIST) Result is FAIL. Please specify a data set name.
NOTE: There were 19 observations read from the data set WORK.CSS_PASSFAIL.
NOTE: The data set WORK.CSS_PASSFAIL has been updated. There were 19 observations rewritten, 0 observations added and 0 observations deleted.
NOTE: DATA statement used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds
NOTE: DATA statement used (Total process time):
real time 0.00 seconds
cpu time 0.01 seconds
NOTE: There were 19 observations read from the data set WORK.CSS_PASSFAIL.
NOTE: The data set WORK.CSS_PASSFAIL has been updated. There were 19 observations rewritten, 0 observations added and 0 observations deleted.
NOTE: CALL EXECUTE routine executed successfully, but no SAS statements were generated.
NOTE: PROCEDURE SQL used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds
NOTE: PROCEDURE SQL used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds
NOTE: The file PFEXCODE is:
Filename=C:\Users\ditommd1\AppData\Local\Temp\SAS Temporary Files\_TD7740\#LN00007,
RECFM=V,LRECL=32767,File Size (bytes)=0,
Last Modified=21Sep2015:12:57:33,
Create Time=21Sep2015:12:57:32
NOTE: 1 record was written to the file PFEXCODE.
The minimum record length was 41.
The maximum record length was 41.
NOTE: There were 19 observations read from the data set WORK.CSS_PASSFAIL.
NOTE: The data set WORK.CSS_PASSFAIL has 19 observations and 16 variables.
NOTE: DATA statement used (Total process time):
real time 0.02 seconds
cpu time 0.01 seconds
ERROR: (ASSERT_DSET_EXIST) Result is FAIL. Data set WORK.DNE is NOT accessible. Try another data set.
NOTE: There were 19 observations read from the data set WORK.CSS_PASSFAIL.
NOTE: The data set WORK.CSS_PASSFAIL has been updated. There were 19 observations rewritten, 0 observations added and 0 observations deleted.
NOTE: DATA statement used (Total process time):
real time 0.00 seconds
cpu time 0.01 seconds
NOTE: DATA statement used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds
NOTE: There were 19 observations read from the data set WORK.CSS_PASSFAIL.
NOTE: The data set WORK.CSS_PASSFAIL has been updated. There were 19 observations rewritten, 0 observations added and 0 observations deleted.
NOTE: CALL EXECUTE routine executed successfully, but no SAS statements were generated.
NOTE: PROCEDURE SQL used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds
NOTE: PROCEDURE SQL used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds
NOTE: The file PFEXCODE is:
Filename=C:\Users\ditommd1\AppData\Local\Temp\SAS Temporary Files\_TD7740\#LN00007,
RECFM=V,LRECL=32767,File Size (bytes)=0,
Last Modified=21Sep2015:12:57:33,
Create Time=21Sep2015:12:57:32
NOTE: 1 record was written to the file PFEXCODE.
The minimum record length was 54.
The maximum record length was 54.
NOTE: There were 19 observations read from the data set WORK.CSS_PASSFAIL.
NOTE: The data set WORK.CSS_PASSFAIL has 19 observations and 16 variables.
NOTE: DATA statement used (Total process time):
real time 0.04 seconds
cpu time 0.04 seconds
ERROR: (ASSERT_DSET_EXIST) Result is FAIL. Data set SASHELP.CLAS is NOT accessible. Try another data set.
NOTE: There were 19 observations read from the data set WORK.CSS_PASSFAIL.
NOTE: The data set WORK.CSS_PASSFAIL has been updated. There were 19 observations rewritten, 0 observations added and 0 observations deleted.
NOTE: DATA statement used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds
NOTE: DATA statement used (Total process time):
real time 0.00 seconds
cpu time 0.01 seconds
NOTE: There were 19 observations read from the data set WORK.CSS_PASSFAIL.
NOTE: The data set WORK.CSS_PASSFAIL has been updated. There were 19 observations rewritten, 0 observations added and 0 observations deleted.
NOTE: CALL EXECUTE routine executed successfully, but no SAS statements were generated.
NOTE: PROCEDURE SQL used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds
NOTE: PROCEDURE SQL used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds
NOTE: The file PFEXCODE is:
Filename=C:\Users\ditommd1\AppData\Local\Temp\SAS Temporary Files\_TD7740\#LN00007,
RECFM=V,LRECL=32767,File Size (bytes)=0,
Last Modified=21Sep2015:12:57:33,
Create Time=21Sep2015:12:57:32
NOTE: 1 record was written to the file PFEXCODE.
The minimum record length was 58.
The maximum record length was 58.
NOTE: There were 19 observations read from the data set WORK.CSS_PASSFAIL.
NOTE: The data set WORK.CSS_PASSFAIL has 19 observations and 16 variables.
NOTE: DATA statement used (Total process time):
real time 0.02 seconds
cpu time 0.03 seconds
ERROR: (ASSERT_DSET_EXIST) Result is FAIL. Data set WORK.CSS_CLASSES is NOT accessible. Try another data set.
NOTE: There were 19 observations read from the data set WORK.CSS_PASSFAIL.
NOTE: The data set WORK.CSS_PASSFAIL has been updated. There were 19 observations rewritten, 0 observations added and 0 observations deleted.
NOTE: DATA statement used (Total process time):
real time 0.00 seconds
cpu time 0.01 seconds
NOTE: DATA statement used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds
NOTE: There were 19 observations read from the data set WORK.CSS_PASSFAIL.
NOTE: The data set WORK.CSS_PASSFAIL has been updated. There were 19 observations rewritten, 0 observations added and 0 observations deleted.
NOTE: CALL EXECUTE routine executed successfully, but no SAS statements were generated.
NOTE: PROCEDURE SQL used (Total process time):
real time 0.00 seconds
cpu time 0.01 seconds
NOTE: PROCEDURE SQL used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds
NOTE: The file PFEXCODE is:
Filename=C:\Users\ditommd1\AppData\Local\Temp\SAS Temporary Files\_TD7740\#LN00007,
RECFM=V,LRECL=32767,File Size (bytes)=0,
Last Modified=21Sep2015:12:57:33,
Create Time=21Sep2015:12:57:32
NOTE: 1 record was written to the file PFEXCODE.
The minimum record length was 32.
The maximum record length was 32.
NOTE: There were 19 observations read from the data set WORK.CSS_PASSFAIL.
NOTE: The data set WORK.CSS_PASSFAIL has 19 observations and 16 variables.
NOTE: DATA statement used (Total process time):
real time 0.03 seconds
cpu time 0.04 seconds
NOTE: (ASSERT_DSET_EXIST) Result is PASS. Data set CLASSES is accessible.
ERROR: (ASSERT_UNIQUE_KEYS) Result is FAIL. Please specify a variable name.
NOTE: There were 19 observations read from the data set WORK.CSS_PASSFAIL.
NOTE: The data set WORK.CSS_PASSFAIL has been updated. There were 19 observations rewritten, 0 observations added and 0 observations deleted.
NOTE: DATA statement used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds
NOTE: DATA statement used (Total process time):
real time 0.00 seconds
cpu time 0.01 seconds
NOTE: There were 19 observations read from the data set WORK.CSS_PASSFAIL.
NOTE: The data set WORK.CSS_PASSFAIL has been updated. There were 19 observations rewritten, 0 observations added and 0 observations deleted.
NOTE: CALL EXECUTE routine executed successfully, but no SAS statements were generated.
NOTE: PROCEDURE SQL used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds
NOTE: PROCEDURE SQL used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds
NOTE: The file PFEXCODE is:
Filename=C:\Users\ditommd1\AppData\Local\Temp\SAS Temporary Files\_TD7740\#LN00007,
RECFM=V,LRECL=32767,File Size (bytes)=0,
Last Modified=21Sep2015:12:57:33,
Create Time=21Sep2015:12:57:32
NOTE: 1 record was written to the file PFEXCODE.
The minimum record length was 54.
The maximum record length was 54.
NOTE: There were 19 observations read from the data set WORK.CSS_PASSFAIL.
NOTE: The data set WORK.CSS_PASSFAIL has 19 observations and 16 variables.
NOTE: DATA statement used (Total process time):
real time 0.02 seconds
cpu time 0.01 seconds
NOTE: (ASSERT_DSET_EXIST) Result is PASS. Data set SASHELP.CLASS is accessible.
NOTE: (ASSERT_DSET_EXIST) Result is PASS. Data set SASHELP.CLASS is accessible.
NOTE: (ASSERT_VAR_EXIST) If DMS process locks data set SASHELP.CLASS, try closing data set ID 1
ERROR: (ASSERT_VAR_EXIST) Result is FAIL. "NAM" is NOT a variable on data set SASHELP.CLASS.
NOTE: There were 19 observations read from the data set WORK.CSS_PASSFAIL.
NOTE: The data set WORK.CSS_PASSFAIL has been updated. There were 19 observations rewritten, 0 observations added and 0 observations deleted.
NOTE: DATA statement used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds
NOTE: DATA statement used (Total process time):
real time 0.00 seconds
cpu time 0.01 seconds
NOTE: There were 19 observations read from the data set WORK.CSS_PASSFAIL.
NOTE: The data set WORK.CSS_PASSFAIL has been updated. There were 19 observations rewritten, 0 observations added and 0 observations deleted.
NOTE: CALL EXECUTE routine executed successfully, but no SAS statements were generated.
NOTE: PROCEDURE SQL used (Total process time):
real time 0.01 seconds
cpu time 0.00 seconds
NOTE: PROCEDURE SQL used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds
NOTE: The file PFEXCODE is:
Filename=C:\Users\ditommd1\AppData\Local\Temp\SAS Temporary Files\_TD7740\#LN00007,
RECFM=V,LRECL=32767,File Size (bytes)=0,
Last Modified=21Sep2015:12:57:33,
Create Time=21Sep2015:12:57:32
NOTE: 1 record was written to the file PFEXCODE.
The minimum record length was 56.
The maximum record length was 56.
NOTE: There were 19 observations read from the data set WORK.CSS_PASSFAIL.
NOTE: The data set WORK.CSS_PASSFAIL has 19 observations and 16 variables.
NOTE: DATA statement used (Total process time):
real time 0.03 seconds
cpu time 0.03 seconds
NOTE: (ASSERT_DSET_EXIST) Result is PASS. Data set WORK.CLASSES is accessible.
NOTE: (ASSERT_DSET_EXIST) Result is PASS. Data set WORK.CLASSES is accessible.
NOTE: (ASSERT_VAR_EXIST) If DMS process locks data set WORK.CLASSES, try closing data set ID 1
ERROR: (ASSERT_VAR_EXIST) Result is FAIL. "NAM" is NOT a variable on data set WORK.CLASSES.
NOTE: There were 19 observations read from the data set WORK.CSS_PASSFAIL.
NOTE: The data set WORK.CSS_PASSFAIL has been updated. There were 19 observations rewritten, 0 observations added and 0 observations deleted.
NOTE: DATA statement used (Total process time):
real time 0.00 seconds
cpu time 0.01 seconds
NOTE: DATA statement used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds
NOTE: There were 19 observations read from the data set WORK.CSS_PASSFAIL.
NOTE: The data set WORK.CSS_PASSFAIL has been updated. There were 19 observations rewritten, 0 observations added and 0 observations deleted.
NOTE: CALL EXECUTE routine executed successfully, but no SAS statements were generated.
NOTE: PROCEDURE SQL used (Total process time):
real time 0.00 seconds
cpu time 0.01 seconds
NOTE: PROCEDURE SQL used (Total process time):
real time 0.00 seconds
cpu time 0.01 seconds
NOTE: The file PFEXCODE is:
Filename=C:\Users\ditommd1\AppData\Local\Temp\SAS Temporary Files\_TD7740\#LN00007,
RECFM=V,LRECL=32767,File Size (bytes)=0,
Last Modified=21Sep2015:12:57:33,
Create Time=21Sep2015:12:57:32
NOTE: 1 record was written to the file PFEXCODE.
The minimum record length was 53.
The maximum record length was 53.
NOTE: There were 19 observations read from the data set WORK.CSS_PASSFAIL.
NOTE: The data set WORK.CSS_PASSFAIL has 19 observations and 16 variables.
NOTE: DATA statement used (Total process time):
real time 0.03 seconds
cpu time 0.01 seconds
NOTE: (ASSERT_DSET_EXIST) Result is PASS. Data set WORK.CLASSES is accessible.
NOTE: (ASSERT_DSET_EXIST) Result is PASS. Data set WORK.CLASSES is accessible.
NOTE: (ASSERT_VAR_EXIST) If DMS process locks data set WORK.CLASSES, try closing data set ID 1
NOTE: (ASSERT_VAR_EXIST) Result is PASS. NAME is a variable on data set WORK.CLASSES.
NOTE: (ASSERT_DSET_EXIST) Result is PASS. Data set WORK.CLASSES is accessible.
NOTE: (ASSERT_VAR_EXIST) If DMS process locks data set WORK.CLASSES, try closing data set ID 1
NOTE: (ASSERT_VAR_EXIST) Result is PASS. SEX is a variable on data set WORK.CLASSES.
NOTE: (ASSERT_DSET_EXIST) Result is PASS. Data set WORK.CLASSES is accessible.
NOTE: (ASSERT_VAR_EXIST) If DMS process locks data set WORK.CLASSES, try closing data set ID 1
ERROR: (ASSERT_VAR_EXIST) Result is FAIL. "AG" is NOT a variable on data set WORK.CLASSES.
NOTE: There were 19 observations read from the data set WORK.CSS_PASSFAIL.
NOTE: The data set WORK.CSS_PASSFAIL has been updated. There were 19 observations rewritten, 0 observations added and 0 observations deleted.
NOTE: DATA statement used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds
NOTE: DATA statement used (Total process time):
real time 0.00 seconds
cpu time 0.01 seconds
NOTE: There were 19 observations read from the data set WORK.CSS_PASSFAIL.
NOTE: The data set WORK.CSS_PASSFAIL has been updated. There were 19 observations rewritten, 0 observations added and 0 observations deleted.
NOTE: CALL EXECUTE routine executed successfully, but no SAS statements were generated.
NOTE: PROCEDURE SQL used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds
NOTE: PROCEDURE SQL used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds
NOTE: The file PFEXCODE is:
Filename=C:\Users\ditommd1\AppData\Local\Temp\SAS Temporary Files\_TD7740\#LN00007,
RECFM=V,LRECL=32767,File Size (bytes)=0,
Last Modified=21Sep2015:12:57:33,
Create Time=21Sep2015:12:57:32
NOTE: 1 record was written to the file PFEXCODE.
The minimum record length was 59.
The maximum record length was 59.
NOTE: There were 19 observations read from the data set WORK.CSS_PASSFAIL.
NOTE: The data set WORK.CSS_PASSFAIL has 19 observations and 16 variables.
NOTE: DATA statement used (Total process time):
real time 0.02 seconds
cpu time 0.03 seconds
NOTE: (ASSERT_DSET_EXIST) Result is PASS. Data set SASHELP.CLASS is accessible.
NOTE: (ASSERT_DSET_EXIST) Result is PASS. Data set SASHELP.CLASS is accessible.
NOTE: (ASSERT_VAR_EXIST) If DMS process locks data set SASHELP.CLASS, try closing data set ID 1
NOTE: (ASSERT_VAR_EXIST) Result is PASS. NAME is a variable on data set SASHELP.CLASS.
NOTE: (ASSERT_DSET_EXIST) Result is PASS. Data set SASHELP.CLASS is accessible.
NOTE: (ASSERT_VAR_EXIST) If DMS process locks data set SASHELP.CLASS, try closing data set ID 1
ERROR: (ASSERT_VAR_EXIST) Result is FAIL. "GENDER" is NOT a variable on data set SASHELP.CLASS.
NOTE: There were 19 observations read from the data set WORK.CSS_PASSFAIL.
NOTE: The data set WORK.CSS_PASSFAIL has been updated. There were 19 observations rewritten, 0 observations added and 0 observations deleted.
NOTE: DATA statement used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds
NOTE: DATA statement used (Total process time):
real time 0.00 seconds
cpu time 0.01 seconds
NOTE: There were 19 observations read from the data set WORK.CSS_PASSFAIL.
NOTE: The data set WORK.CSS_PASSFAIL has been updated. There were 19 observations rewritten, 0 observations added and 0 observations deleted.
NOTE: CALL EXECUTE routine executed successfully, but no SAS statements were generated.
NOTE: PROCEDURE SQL used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds
NOTE: PROCEDURE SQL used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds
NOTE: The file PFEXCODE is:
Filename=C:\Users\ditommd1\AppData\Local\Temp\SAS Temporary Files\_TD7740\#LN00007,
RECFM=V,LRECL=32767,File Size (bytes)=0,
Last Modified=21Sep2015:12:57:33,
Create Time=21Sep2015:12:57:32
NOTE: 1 record was written to the file PFEXCODE.
The minimum record length was 41.
The maximum record length was 41.
NOTE: There were 19 observations read from the data set WORK.CSS_PASSFAIL.
NOTE: The data set WORK.CSS_PASSFAIL has 19 observations and 16 variables.
NOTE: DATA statement used (Total process time):
real time 0.03 seconds
cpu time 0.03 seconds
NOTE: (ASSERT_DSET_EXIST) Result is PASS. Data set SASHELP.CLASS is accessible.
NOTE: (ASSERT_DSET_EXIST) Result is PASS. Data set SASHELP.CLASS is accessible.
NOTE: (ASSERT_VAR_EXIST) If DMS process locks data set SASHELP.CLASS, try closing data set ID 1
NOTE: (ASSERT_VAR_EXIST) Result is PASS. NAME is a variable on data set SASHELP.CLASS.
NOTE: Table WORK.FAIL_AUK created, with 0 rows and 1 columns.
NOTE: PROCEDURE SQL used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: (ASSERT_UNIQUE_KEYS) SASHELP.CLASS has unique records for keys NAME (SQLOBS = 0).
NOTE: Deleting WORK.FAIL_AUK (memtype=DATA).
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.08 seconds
cpu time 0.04 seconds
NOTE: There were 19 observations read from the data set WORK.CSS_PASSFAIL.
NOTE: The data set WORK.CSS_PASSFAIL has been updated. There were 19 observations rewritten, 0 observations added and 0 observations deleted.
NOTE: DATA statement used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds
NOTE: DATA statement used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds
NOTE: There were 19 observations read from the data set WORK.CSS_PASSFAIL.
NOTE: The data set WORK.CSS_PASSFAIL has been updated. There were 19 observations rewritten, 0 observations added and 0 observations deleted.
NOTE: CALL EXECUTE routine executed successfully, but no SAS statements were generated.
NOTE: PROCEDURE SQL used (Total process time):
real time 0.00 seconds
cpu time 0.01 seconds
NOTE: PROCEDURE SQL used (Total process time):
real time 0.00 seconds
cpu time 0.01 seconds
NOTE: The file PFEXCODE is:
Filename=C:\Users\ditommd1\AppData\Local\Temp\SAS Temporary Files\_TD7740\#LN00007,
RECFM=V,LRECL=32767,File Size (bytes)=0,
Last Modified=21Sep2015:12:57:33,
Create Time=21Sep2015:12:57:32
NOTE: 1 record was written to the file PFEXCODE.
The minimum record length was 35.
The maximum record length was 35.
NOTE: There were 19 observations read from the data set WORK.CSS_PASSFAIL.
NOTE: The data set WORK.CSS_PASSFAIL has 19 observations and 16 variables.
NOTE: DATA statement used (Total process time):
real time 0.03 seconds
cpu time 0.03 seconds
NOTE: (ASSERT_DSET_EXIST) Result is PASS. Data set CLASSES is accessible.
NOTE: (ASSERT_DSET_EXIST) Result is PASS. Data set CLASSES is accessible.
NOTE: (ASSERT_VAR_EXIST) If DMS process locks data set CLASSES, try closing data set ID 1
NOTE: (ASSERT_VAR_EXIST) Result is PASS. NAME is a variable on data set CLASSES.
NOTE: Table WORK.FAIL_AUK created, with 19 rows and 1 columns.
NOTE: PROCEDURE SQL used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
ERROR: (ASSERT_UNIQUE_KEYS) Unexpected duplicates in CLASSES with unique keys NAME (SQLOBS = 19). See WORK.FAIL_AUK.
NOTE: There were 19 observations read from the data set WORK.FAIL_AUK2_B.
NOTE: There were 19 observations read from the data set WORK.FAIL_AUK.
NOTE: PROCEDURE COMPARE used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds
NOTE: Deleting WORK.FAIL_AUK (memtype=DATA).
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.00 seconds
cpu time 0.01 seconds
NOTE: There were 19 observations read from the data set WORK.CSS_PASSFAIL.
NOTE: The data set WORK.CSS_PASSFAIL has been updated. There were 19 observations rewritten, 0 observations added and 0 observations deleted.
NOTE: DATA statement used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds
NOTE: DATA statement used (Total process time):
real time 0.00 seconds
cpu time 0.01 seconds
NOTE: There were 19 observations read from the data set WORK.CSS_PASSFAIL.
NOTE: The data set WORK.CSS_PASSFAIL has been updated. There were 19 observations rewritten, 0 observations added and 0 observations deleted.
NOTE: CALL EXECUTE routine executed successfully, but no SAS statements were generated.
NOTE: PROCEDURE SQL used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds
NOTE: PROCEDURE SQL used (Total process time):
real time 0.00 seconds
cpu time 0.01 seconds
NOTE: The file PFEXCODE is:
Filename=C:\Users\ditommd1\AppData\Local\Temp\SAS Temporary Files\_TD7740\#LN00007,
RECFM=V,LRECL=32767,File Size (bytes)=0,
Last Modified=21Sep2015:12:57:33,
Create Time=21Sep2015:12:57:32
NOTE: 1 record was written to the file PFEXCODE.
The minimum record length was 39.
The maximum record length was 39.
NOTE: There were 19 observations read from the data set WORK.CSS_PASSFAIL.
NOTE: The data set WORK.CSS_PASSFAIL has 19 observations and 16 variables.
NOTE: DATA statement used (Total process time):
real time 0.02 seconds
cpu time 0.03 seconds
NOTE: (ASSERT_DSET_EXIST) Result is PASS. Data set CLASSES is accessible.
NOTE: (ASSERT_DSET_EXIST) Result is PASS. Data set CLASSES is accessible.
NOTE: (ASSERT_VAR_EXIST) If DMS process locks data set CLASSES, try closing data set ID 1
NOTE: (ASSERT_VAR_EXIST) Result is PASS. NAME is a variable on data set CLASSES.
NOTE: (ASSERT_DSET_EXIST) Result is PASS. Data set CLASSES is accessible.
NOTE: (ASSERT_VAR_EXIST) If DMS process locks data set CLASSES, try closing data set ID 1
NOTE: (ASSERT_VAR_EXIST) Result is PASS. SEX is a variable on data set CLASSES.
NOTE: Table WORK.FAIL_AUK created, with 0 rows and 2 columns.
NOTE: PROCEDURE SQL used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
NOTE: (ASSERT_UNIQUE_KEYS) CLASSES has unique records for keys NAME SEX (SQLOBS = 0).
NOTE: Deleting WORK.FAIL_AUK (memtype=DATA).
NOTE: PROCEDURE DATASETS used (Total process time):
real time 0.00 seconds
cpu time 0.01 seconds
NOTE: There were 19 observations read from the data set WORK.CSS_PASSFAIL.
NOTE: The data set WORK.CSS_PASSFAIL has been updated. There were 19 observations rewritten, 0 observations added and 0 observations deleted.
NOTE: DATA statement used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds
NOTE: DATA statement used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds
NOTE: There were 19 observations read from the data set WORK.CSS_PASSFAIL.
NOTE: The data set WORK.CSS_PASSFAIL has been updated. There were 19 observations rewritten, 0 observations added and 0 observations deleted.
NOTE: CALL EXECUTE routine executed successfully, but no SAS statements were generated.
NOTE: PROCEDURE SQL used (Total process time):
real time 0.00 seconds