BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
smijosimon
Calcite | Level 5

Hi,

 

while reading on Proc DS2, i came across a comment
which said PROC DSTRANS will help you by translating a subset of your DATA step code into DS2 code.
However i am not able to find a good documentation on this procedure.  some have put the code but not the result or log.
i use the same code and it does not work for me .. 

Could someone please guide me on this ... DS2 seems very promising.  (Fyi I am using sas 9.4 on Eg 7.1 in noprofile mode) 


so I created a dummy code like 

 

data side_L;
	SET Sashelp.geoexs;
		where side='L';
run;


data side_R;
	SET Sashelp.geoexs;
		where side='R';
run;

saved the code and then tried proc dstrans as follows 

 

PROC DSTRANS DS_TO_DS2  
	IN='F:\sas\sas statistic practise dsn/ds2_proc_dstrans.sas'
	OUTdir='F:\sas\sas statistic practise dsn/' 
	out='ds2_proc_dstrans_Converted.sas'  ;
RUN;
quit;

 

 

 

Here is the log - 

 

 

23         PROC DSTRANS DS_TO_DS2
24         IN='F:\sas\sas statistic practise dsn/ds2_proc_dstrans.sas'
25         OUTdir='F:\sas\sas statistic practise dsn/'
26         out='ds2_proc_dstrans_Converted.sas'  ;
27         RUN;

3          data side_L;
           ____
           180
4          	SET Sashelp.geoexs;
            ___
            180
5          		where side='L';
             _____
             180
9          data side_R;
           ____
           180
ERROR: Could not compile source code.
10         	SET Sashelp.geoexs;
            ___
            180
11         		where side='R';
             _____
             180
ERROR 180-322: Statement is not valid or it is used out of proper order.
1 ACCEPTED SOLUTION

Accepted Solutions
ChrisHemedinger
Community Manager

DSTRANS is used mainly by SAS solutions, such as SAS Decision Services, to convert DATA step to DS2 or C.  There are some references to it being documented as part of the DS2 Language Reference, but I don't see it there.  At best, I'd say this isn't a highly-documented procedure as it was designed to facilitate SAS-provided solutions -- pushing DATA step work into databases or creating parallelized data flows.

View solution in original post

4 REPLIES 4
Reeza
Super User

Can you post references to PROC DSTRANS?

I can't find anything either, except a random comment in someone's blog.

That type of code translation seems a bit too good to be true to me 🙂

smijosimon
Calcite | Level 5

 

Here is the description that comes up on  SAS EG. However on clicking the product documentation links results in "no results found"
and some links say its explained in the "DS2 language reference guide", however i do not find any mention of it there too.

makes me wonder if it was an internal training procedure 😄

 

 

dstrans.png

 

 

dstrans2.PNG

ChrisHemedinger
Community Manager

DSTRANS is used mainly by SAS solutions, such as SAS Decision Services, to convert DATA step to DS2 or C.  There are some references to it being documented as part of the DS2 Language Reference, but I don't see it there.  At best, I'd say this isn't a highly-documented procedure as it was designed to facilitate SAS-provided solutions -- pushing DATA step work into databases or creating parallelized data flows.

smijosimon
Calcite | Level 5
Thanks Chris. That makes sense.

SAS INNOVATE 2024

Innovate_SAS_Blue.png

Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.

If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website. 

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.

Get the $99 certification deal.jpg

 

 

Back in the Classroom!

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

View all other training opportunities.

Discussion stats
  • 4 replies
  • 2092 views
  • 0 likes
  • 3 in conversation