BookmarkSubscribeRSS Feed
TzufRaifMia
Calcite | Level 5

Hey all!

I'm interesting in using DQ Functions Within DS2 block (It is meant to be as part of CID process).

It seems that it is indeed possible to use these functions in DS2 block (directly or via FedSQL&QKB) but I am failed to succeed.

Is one of you have already done it? I'd love to see a little example!

 

Thanks in Advanced,

Tzuf

2 REPLIES 2
JosvanderVelden
SAS Super FREQ

Example:

%DQLOAD(DQLOCALE=(ENUSA), DQSETUPLOC='/opt/sas/spre/home/share/refdata/qkb/ci/31
');

proc ds2 libs=work;
  data _null_;
    /* init() - system method */
    method init();
      declare varchar(255) name; /* method (local) scope */
      name = 'Doctor Sam Spade’;
      stdName=dqStandardize(name, 'Name');
      put stdName;
    end;
  enddata;
  run;
quit;

Source: Paper SAS4079-2020 - What's New in SAS Data Management link

TzufRaifMia
Calcite | Level 5

Thanks!

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 516 views
  • 0 likes
  • 2 in conversation