1
0
mirror of https://github.com/sasjs/core.git synced 2025-12-10 22:14:35 +00:00

fix: increasing logging of mp_chop to 200 records when mdebug is enabled

Also updated some program headers to reflect new Data Controller pricing structure.  all.sas regenerated.
This commit is contained in:
Allan
2023-07-21 00:34:36 +01:00
parent 6c64de651d
commit a497976eae
4 changed files with 6 additions and 10 deletions

View File

@@ -4007,7 +4007,7 @@ run;
infile &outfile lrecl=32767;
input;
list;
if _n_>50 then stop;
if _n_>200 then stop;
run;
%end;
/* END */
@@ -10926,8 +10926,7 @@ drop table &ds1, &ds2;
@file
@brief Generates an md5 expression for hashing a set of variables
@details This is the same algorithm used to hash records in
[Data Controller for SAS](https://datacontroller.io) (free for up
to 5 users).
[Data Controller for SAS](https://datacontroller.io).
It is not designed to be efficient - it is designed to be effective,
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 management utilities used in [Data Controller for SAS](
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
users.
works on any SAS platform (Viya, SAS 9, Foundation).
NOTE - this macro does not validate the inputs. It is assumed that the
datasets containing the new / changed / deleted rows are CORRECT, contain

View File

@@ -185,7 +185,7 @@ run;
infile &outfile lrecl=32767;
input;
list;
if _n_>50 then stop;
if _n_>200 then stop;
run;
%end;
/* END */

View File

@@ -2,8 +2,7 @@
@file
@brief Generates an md5 expression for hashing a set of variables
@details This is the same algorithm used to hash records in
[Data Controller for SAS](https://datacontroller.io) (free for up
to 5 users).
[Data Controller for SAS](https://datacontroller.io).
It is not designed to be efficient - it is designed to be effective,
given the range of edge cases (large floating points, special missing

View File

@@ -6,8 +6,7 @@
data recovery, and change re-application. This macro is one of many
data management utilities used in [Data Controller for SAS](
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
users.
works on any SAS platform (Viya, SAS 9, Foundation).
NOTE - this macro does not validate the inputs. It is assumed that the
datasets containing the new / changed / deleted rows are CORRECT, contain