mirror of
https://github.com/sasjs/core.git
synced 2026-01-13 19:40:06 +00:00
Merge pull request #343 from sasjs/logging
fix: increasing logging of mp_chop to 200 records when mdebug is enabled
This commit is contained in:
8
all.sas
8
all.sas
@@ -4007,7 +4007,7 @@ run;
|
|||||||
infile &outfile lrecl=32767;
|
infile &outfile lrecl=32767;
|
||||||
input;
|
input;
|
||||||
list;
|
list;
|
||||||
if _n_>50 then stop;
|
if _n_>200 then stop;
|
||||||
run;
|
run;
|
||||||
%end;
|
%end;
|
||||||
/* END */
|
/* END */
|
||||||
@@ -10926,8 +10926,7 @@ drop table &ds1, &ds2;
|
|||||||
@file
|
@file
|
||||||
@brief Generates an md5 expression for hashing a set of variables
|
@brief Generates an md5 expression for hashing a set of variables
|
||||||
@details This is the same algorithm used to hash records in
|
@details This is the same algorithm used to hash records in
|
||||||
[Data Controller for SAS](https://datacontroller.io) (free for up
|
[Data Controller for SAS](https://datacontroller.io).
|
||||||
to 5 users).
|
|
||||||
|
|
||||||
It is not designed to be efficient - it is designed to be effective,
|
It is not designed to be efficient - it is designed to be effective,
|
||||||
given the range of edge cases (large floating points, special missing
|
given the range of edge cases (large floating points, special missing
|
||||||
@@ -12716,8 +12715,7 @@ select distinct tgtvar_nm into: missvars separated by ' '
|
|||||||
data recovery, and change re-application. This macro is one of many
|
data recovery, and change re-application. This macro is one of many
|
||||||
data management utilities used in [Data Controller for SAS](
|
data management utilities used in [Data Controller for SAS](
|
||||||
https:datacontroller.io) - a comprehensive data ingestion solution, which
|
https:datacontroller.io) - a comprehensive data ingestion solution, which
|
||||||
works on any SAS platform (Viya, SAS 9, Foundation) and is free for up to 5
|
works on any SAS platform (Viya, SAS 9, Foundation).
|
||||||
users.
|
|
||||||
|
|
||||||
NOTE - this macro does not validate the inputs. It is assumed that the
|
NOTE - this macro does not validate the inputs. It is assumed that the
|
||||||
datasets containing the new / changed / deleted rows are CORRECT, contain
|
datasets containing the new / changed / deleted rows are CORRECT, contain
|
||||||
|
|||||||
@@ -185,7 +185,7 @@ run;
|
|||||||
infile &outfile lrecl=32767;
|
infile &outfile lrecl=32767;
|
||||||
input;
|
input;
|
||||||
list;
|
list;
|
||||||
if _n_>50 then stop;
|
if _n_>200 then stop;
|
||||||
run;
|
run;
|
||||||
%end;
|
%end;
|
||||||
/* END */
|
/* END */
|
||||||
|
|||||||
@@ -2,8 +2,7 @@
|
|||||||
@file
|
@file
|
||||||
@brief Generates an md5 expression for hashing a set of variables
|
@brief Generates an md5 expression for hashing a set of variables
|
||||||
@details This is the same algorithm used to hash records in
|
@details This is the same algorithm used to hash records in
|
||||||
[Data Controller for SAS](https://datacontroller.io) (free for up
|
[Data Controller for SAS](https://datacontroller.io).
|
||||||
to 5 users).
|
|
||||||
|
|
||||||
It is not designed to be efficient - it is designed to be effective,
|
It is not designed to be efficient - it is designed to be effective,
|
||||||
given the range of edge cases (large floating points, special missing
|
given the range of edge cases (large floating points, special missing
|
||||||
|
|||||||
@@ -6,8 +6,7 @@
|
|||||||
data recovery, and change re-application. This macro is one of many
|
data recovery, and change re-application. This macro is one of many
|
||||||
data management utilities used in [Data Controller for SAS](
|
data management utilities used in [Data Controller for SAS](
|
||||||
https:datacontroller.io) - a comprehensive data ingestion solution, which
|
https:datacontroller.io) - a comprehensive data ingestion solution, which
|
||||||
works on any SAS platform (Viya, SAS 9, Foundation) and is free for up to 5
|
works on any SAS platform (Viya, SAS 9, Foundation).
|
||||||
users.
|
|
||||||
|
|
||||||
NOTE - this macro does not validate the inputs. It is assumed that the
|
NOTE - this macro does not validate the inputs. It is assumed that the
|
||||||
datasets containing the new / changed / deleted rows are CORRECT, contain
|
datasets containing the new / changed / deleted rows are CORRECT, contain
|
||||||
|
|||||||
Reference in New Issue
Block a user