SAS Studio

Write and run SAS programs in your web browser
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;

 

sas-innovate-white.png

Our biggest data and AI event of the year.

Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.

Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.

 

Register now!

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 1177 views
  • 0 likes
  • 3 in conversation