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

Hello,

 

i try in Enterprise Guide (EG) to delete_physical an OLAP, that is on another host/environment:

 

I´m connectet in EG on the DEV-environment and want to delete_physical an OLAP on the TEST-environment with this statement:

 

 

options metaserver="TEST-environment"
        metaport=8888
        metaprotocol="bridge"
        metarepository="foundation"
        metauser="USER"
        metapass="PASSWORD"
        ;

%macro _delete_physical_olap;

  proc olap cube="OLAP-NAME" delete_physical;
     metasvr
        host        = "TEST-environment"
        port        = 8888
        olap_schema = "SASApp - OLAP Schema";
  quit;
%mend _delete_physical_olap;

%_delete_physical_olap;

 

 

 

So what happend:

On the TEST-environment the Metadata-Registration is disabled--> that is what expected -> That´s OK

BUT the physical files on the TEST-environment STILL exists - however the physical files on the DEV-environment are deleted! --> That´s not OK.

 

Is this statement not correct? Or can "proc olap delete_physical" just disable the Metadata-Registration and NOT the physical files on another host? If so - is there an opportunity to do this?

 

Thank you very much

Best regards

George

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
Kurt_Bremser
Super User

If the physical path in both environments is the same (but on different servers), then the files will be deleted on the server where the process runs, and if the process runs on the dev server, the files there will be gone.

Bottom line: run the process on the intended server, don't try to switch metadata environments on the fly.

View solution in original post

3 REPLIES 3
Kurt_Bremser
Super User

If the physical path in both environments is the same (but on different servers), then the files will be deleted on the server where the process runs, and if the process runs on the dev server, the files there will be gone.

Bottom line: run the process on the intended server, don't try to switch metadata environments on the fly.

sorosch
Fluorite | Level 6

Hi Kurt,

 

thanks for the info.

 

But for me this is an illogical behavior. So i have to run the STP on the intended server.

 

Thank you

Best regards

George

Kurt_Bremser
Super User

In the metadata definition, there is only the path stored, without an identification of the server on which it is located. The setup always assumes that you 

  • connect to metadata
  • start the SAS process from a definition on that metadata server
  • use resources from that same metadata repository

The SAS process assumes that its environment is consistent. By changing metadata servers mid-process, you undermine that.

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
  • 3 replies
  • 525 views
  • 1 like
  • 2 in conversation