BookmarkSubscribeRSS Feed
mercedescnr
Calcite | Level 5

hello : I wrote this command:

 

PROC TRAJ data=Montreal out=b outstat=os outplot=os

outcomeresults=or;

var qcp84op qcp88op qcp89op qcp90op qcp91op; indep age1 age2 age3 age4 age5;

model cnorm; max 10; order 0 2 2;

outcome nbp14;

omodel poisson;

Run;

 

and SAS gave me this output:

 

NOTE: PROCEDURE TRAJ used (Total process time): real time 1.40 seconds cpu time 0.01 seconds ERROR: Unable to load the transient module (bridge error).

NOTE: The SAS System stopped processing this step because of errors.

3 PROC TRAJ data=Montreal out=b outstat=os outplot=os

4 outcomeresults=or;

5 var qcp84op qcp88op qcp89op qcp90op qcp91op; indep age1 age2 age3 age4 age5;

6 model cnorm; max 10; order 0 2 2;

7 outcome nbp14;

8 omodel poisson;

 

 

some one can help me?

 

3 REPLIES 3
Kurt_Bremser
Super User

PROC TRAJ is a third-party add-on, not created and not supported by SAS. Go to the website from which you downloaded it and report the issue there.

Since it is only available for Windows, most of us can't even test it, as we work on a UNIX platform.

 

Correction: it is also available for Linux and Solaris, so it won't work on HP-UX or AIX.

It is not available on SAS On Demand.

 

mercedescnr
Calcite | Level 5

hello 

I used this command :

PROC TRAJ data=Montreal out=b outstat=os outplot=os

outcomeresults=or;

var qcp84op qcp88op qcp89op qcp90op qcp91op; indep age1 age2 age3 age4 age5;

model cnorm; max 10; order 0 2 2;

outcome nbp14;

omodel poisson;

Run;

 

 

BUT IT GIVES ME THIS ERROR and i do not know what to do 

 

 

NOTE: PROCEDURE TRAJ used (Total process time): real time 1.40 seconds cpu time 0.01 seconds ERROR: Unable to load the transient module (bridge error).

NOTE: The SAS System stopped processing this step because of errors.

3 PROC TRAJ data=Montreal out=b outstat=os outplot=os

4 outcomeresults=or;

5 var qcp84op qcp88op qcp89op qcp90op qcp91op; indep age1 age2 age3 age4 age5;

6 model cnorm; max 10; order 0 2 2;

7 outcome nbp14;

8 omodel poisson;

 

some one can help me?

SASKiwi
PROC Star

Have you ever got TRAJ working or are you always getting this error? What OS have you installed it on?

 

Maybe not writing to the same output dataset for two of your OUT options might help. Try this:

PROC TRAJ data=Montreal out=b outstat=os outplot=op outcomeresults=or;
var qcp84op qcp88op qcp89op qcp90op qcp91op; indep age1 age2 age3 age4 age5;
model cnorm; max 10; order 0 2 2;
outcome nbp14;
omodel poisson;
Run;

 

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

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
  • 3 replies
  • 765 views
  • 0 likes
  • 3 in conversation