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

Hello All,

Please help me for this. This is my program.

 

filename prtsort catalog 'Mysas.Mymacro';
%include prtsort(multnorm)/source2;
proc iml;
X={5 3 1  0.2,
3.9 3 1.4 5.2,
9.9 3.2 1.3 0.2};

 

varNames = "x1":"x4";
create Normal from X[c=varNames]; append from X; close Normal;
quit;

/* Tests for MV normality */
/* Tests for MV normality */
%inc "C:\Users\Desktop\dataMY Sas Files\Mysas.Mymacro\multnorm";
%multnorm(data=Normal, var=x1 x2 x3 x4, plot=MULT);

 

but I am getting an ERROR: RROR: "You cannot open WORK.NORMAL.DATA for output access with member-level control because
WORK.NORMAL.DATA is in use by you in resource environment DMS Process."

 

I cant understand the reason. Please help me to fix this. 

 

1 ACCEPTED SOLUTION

Accepted Solutions
Ksharp
Super User
That says table NORMAL has already been open , you can't use it until it is closed.
Restart your SAS session and better reboot your computer to fix it .

View solution in original post

2 REPLIES 2
Ksharp
Super User
That says table NORMAL has already been open , you can't use it until it is closed.
Restart your SAS session and better reboot your computer to fix it .

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!

Discussion stats
  • 2 replies
  • 23371 views
  • 1 like
  • 2 in conversation