mirror of
https://github.com/yabwon/SAS_PACKAGES.git
synced 2025-12-15 21:14:34 +00:00
version 2.1
Recompiled due to new version of %generatePackage() inner macro pagesize=MAX added
This commit is contained in:
@@ -18,7 +18,7 @@
|
||||
|
||||
/* inner macro */
|
||||
%MACRO dsSQL_Inner() / secure;
|
||||
%local query tempfile1 tempfile2;
|
||||
%local query tempfile1 tempfile2 ps_tmp;
|
||||
%let query = %superq(query_arg);
|
||||
%let query = %sysfunc(dequote(&query));
|
||||
|
||||
@@ -29,6 +29,9 @@
|
||||
|
||||
filename &tempfile1. temp;
|
||||
filename &tempfile2. temp;
|
||||
|
||||
%let ps_tmp = %sysfunc(getoption(ps));
|
||||
options ps = MAX;
|
||||
proc printto log = &tempfile1.;
|
||||
run;
|
||||
/* get the query shape i.e. the executed one */
|
||||
@@ -38,6 +41,7 @@
|
||||
quit;
|
||||
proc printto;
|
||||
run;
|
||||
options ps = &ps_tmp.;
|
||||
|
||||
%put *** executed as ***;
|
||||
data _null_;
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
Type: Package :/*required, not null, constant value*/
|
||||
Package: SQLinDS :/*required, not null, up to 24 characters, naming restrictions like for a dataset name! */
|
||||
Title: SQL queries in Data Step :/*required, not null*/
|
||||
Version: 2.0 :/*required, not null*/
|
||||
Version: 2.1 :/*required, not null*/
|
||||
Author: Mike Rhoads (RhoadsM1@Westat.com) :/*required, not null*/
|
||||
Maintainer: Bartosz Jablonski (yabwon@gmail.com) :/*required, not null*/
|
||||
License: MIT :/*required, not null, values: MIT, GPL2, BSD, etc.*/
|
||||
|
||||
BIN
sqlinds.zip
BIN
sqlinds.zip
Binary file not shown.
Reference in New Issue
Block a user