<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Read Metadata objects/permissions from one environment to another environment. in Administration and Deployment</title>
    <link>https://communities.sas.com/t5/Administration-and-Deployment/Read-Metadata-objects-permissions-from-one-environment-to/m-p/667978#M19399</link>
    <description>Thanks,&lt;BR /&gt;I tried this before, I am getting below error&lt;BR /&gt;ERROR: The Bridge Protocol Engine Socket Access Method was unable to connect to host test.company.com, port XXX&lt;BR /&gt;The TCP/IP tcpSockConnect() support routine failed with error 110 (The connection has timed out.).&lt;BR /&gt;is this because of inbound outbound rules?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Thu, 09 Jul 2020 07:47:49 GMT</pubDate>
    <dc:creator>sathya66</dc:creator>
    <dc:date>2020-07-09T07:47:49Z</dc:date>
    <item>
      <title>Read Metadata objects/permissions from one environment to another environment.</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Read-Metadata-objects-permissions-from-one-environment-to/m-p/667642#M19376</link>
      <description>&lt;P&gt;All,&lt;/P&gt;&lt;P&gt;Have dev , test and prod environments. By using below macro we can get the metadata objects from a specified folder.&lt;/P&gt;&lt;P&gt;&lt;CODE class=" language-sas"&gt;%mdsecds(folder="/Shared data", includesubfolders=yes);&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE class=" language-sas"&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;is it possible to get the metadata object lists from dev ENV by specifying test credentials in options.&lt;/P&gt;&lt;P&gt;ex:if I run below code which uses test metadata host names and credentials&amp;nbsp; from DEV.&lt;/P&gt;&lt;P&gt;I know, it will give bridge protocol ERROR. is it possible actually by opening ports/config changes in meta/in compute,etc.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Off course we can run the above macro in different envs&amp;nbsp; but we want to run from one environment that pulls data about all environments (dev,test and prod)&lt;/P&gt;&lt;P&gt;is there any way we can do.&lt;/P&gt;&lt;P&gt;&lt;CODE class=" language-sas"&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let metaserver = %str(testmeta.company.com);
options metaserver="&amp;amp;metaserver"
metaport=&amp;lt;port&amp;gt;
metauser="ID"
metapass="XXXXXXX"
metarepository="Foundation"
metaprotocol=BRIDGE;

%mdsecds(folder="/Shared data", includesubfolders=yes);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 08 Jul 2020 07:23:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Read-Metadata-objects-permissions-from-one-environment-to/m-p/667642#M19376</guid>
      <dc:creator>sathya66</dc:creator>
      <dc:date>2020-07-08T07:23:25Z</dc:date>
    </item>
    <item>
      <title>Re: Read Metadata objects/permissions from one environment to another environment.</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Read-Metadata-objects-permissions-from-one-environment-to/m-p/667821#M19385</link>
      <description>&lt;P&gt;It is possible to use the options you mentioned to connect to a different environment's metadata server. If there are different credentials those would also need to be specified. This changes your effective Metadata connection so you would have to change them back if you then wanted to do something in the local environment's metadata server.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In the example below I have one user ID but 3 passwords and three different environments. I use outdata to supply a different prefix to each table in WORK, and the options statement to update only the variables that change between submissions. The result is a _join view with each prefix in WORK.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options metaserver="metadev.demo.sas.com" metaport=8561 metauser="sasdemo" metapass="password1" metarepository=foundation;
%mdsecds(outdata=dev,Folder="/User Folders/");
options metaserver="metatest.demo.sas.com" metapass="password2";
%mdsecds(outdata=test,Folder="/User Folders/");
options metaserver="metaprod.demo.sas.com" metapass="password3";
%mdsecds(outdata=prod,Folder="/User Folders/");
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jul 2020 18:58:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Read-Metadata-objects-permissions-from-one-environment-to/m-p/667821#M19385</guid>
      <dc:creator>gwootton</dc:creator>
      <dc:date>2020-07-08T18:58:35Z</dc:date>
    </item>
    <item>
      <title>Re: Read Metadata objects/permissions from one environment to another environment.</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Read-Metadata-objects-permissions-from-one-environment-to/m-p/667978#M19399</link>
      <description>Thanks,&lt;BR /&gt;I tried this before, I am getting below error&lt;BR /&gt;ERROR: The Bridge Protocol Engine Socket Access Method was unable to connect to host test.company.com, port XXX&lt;BR /&gt;The TCP/IP tcpSockConnect() support routine failed with error 110 (The connection has timed out.).&lt;BR /&gt;is this because of inbound outbound rules?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 09 Jul 2020 07:47:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Read-Metadata-objects-permissions-from-one-environment-to/m-p/667978#M19399</guid>
      <dc:creator>sathya66</dc:creator>
      <dc:date>2020-07-09T07:47:49Z</dc:date>
    </item>
    <item>
      <title>Re: Read Metadata objects/permissions from one environment to another environment.</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Read-Metadata-objects-permissions-from-one-environment-to/m-p/668026#M19405</link>
      <description>&lt;P&gt;Yes, a connection timeout suggests there is a firewall dropping the packets being sent between environments.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jul 2020 13:12:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Read-Metadata-objects-permissions-from-one-environment-to/m-p/668026#M19405</guid>
      <dc:creator>gwootton</dc:creator>
      <dc:date>2020-07-09T13:12:57Z</dc:date>
    </item>
  </channel>
</rss>

