Skip to content

Commit

Permalink
fix: mp_ds2cards was failing when the maxobs was less than the number…
Browse files Browse the repository at this point in the history
… of variables. SQL maxobs option is now reset.
  • Loading branch information
allanbowe committed Oct 12, 2020
1 parent ac46489 commit f50cb03
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions all.sas
Original file line number Diff line number Diff line change
Expand Up @@ -2297,8 +2297,7 @@ proc sql
order by ranuni(42)
%end;
;
reset outobs=max;
create table datalines1 as
select name,type,length,varnum,format,label from dictionary.columns
where libname="%upcase(%scan(&base_ds,1))"
Expand Down
3 changes: 1 addition & 2 deletions base/mp_ds2cards.sas
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,7 @@ proc sql
order by ranuni(42)
%end;
;


reset outobs=max;
create table datalines1 as
select name,type,length,varnum,format,label from dictionary.columns
where libname="%upcase(%scan(&base_ds,1))"
Expand Down

0 comments on commit f50cb03

Please sign in to comment.