<?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: Copy all tables beginning with certain keyword from one lib to other in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Copy-all-tables-beginning-with-certain-keyword-from-one-lib-to/m-p/543957#M150385</link>
    <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt;&amp;nbsp;beat me by 8 seconds &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 18 Mar 2019 12:21:29 GMT</pubDate>
    <dc:creator>PeterClemmensen</dc:creator>
    <dc:date>2019-03-18T12:21:29Z</dc:date>
    <item>
      <title>Copy all tables beginning with certain keyword from one lib to other</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Copy-all-tables-beginning-with-certain-keyword-from-one-lib-to/m-p/543951#M150381</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I wanto to copy all tables that begin with keyword AB (e.g. AB_tabl1, AB_emp, AB_department etc..) from library "Slave" into the master library "Master".&lt;/P&gt;
&lt;P&gt;I tried with Proc copy which is working but I need to mention the table name which I dont want. Is there any approach to find it&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 18 Mar 2019 12:02:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Copy-all-tables-beginning-with-certain-keyword-from-one-lib-to/m-p/543951#M150381</guid>
      <dc:creator>Abraham</dc:creator>
      <dc:date>2019-03-18T12:02:26Z</dc:date>
    </item>
    <item>
      <title>Re: Copy all tables beginning with certain keyword from one lib to other</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Copy-all-tables-beginning-with-certain-keyword-from-one-lib-to/m-p/543955#M150383</link>
      <description>&lt;P&gt;You can use wildcards for dataset names:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc copy inlib=slave outlib=master;
select ab:;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 18 Mar 2019 12:20:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Copy-all-tables-beginning-with-certain-keyword-from-one-lib-to/m-p/543955#M150383</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-03-18T12:20:39Z</dc:date>
    </item>
    <item>
      <title>Re: Copy all tables beginning with certain keyword from one lib to other</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Copy-all-tables-beginning-with-certain-keyword-from-one-lib-to/m-p/543956#M150384</link>
      <description>&lt;P&gt;I think PROC COPY with the : Operator is the way to go? Does this solve your problem?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc copy in=Slave out=Master memtype=data;
   select AB:;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 18 Mar 2019 12:20:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Copy-all-tables-beginning-with-certain-keyword-from-one-lib-to/m-p/543956#M150384</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2019-03-18T12:20:47Z</dc:date>
    </item>
    <item>
      <title>Re: Copy all tables beginning with certain keyword from one lib to other</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Copy-all-tables-beginning-with-certain-keyword-from-one-lib-to/m-p/543957#M150385</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt;&amp;nbsp;beat me by 8 seconds &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Mar 2019 12:21:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Copy-all-tables-beginning-with-certain-keyword-from-one-lib-to/m-p/543957#M150385</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2019-03-18T12:21:29Z</dc:date>
    </item>
    <item>
      <title>Re: Copy all tables beginning with certain keyword from one lib to other</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Copy-all-tables-beginning-with-certain-keyword-from-one-lib-to/m-p/543958#M150386</link>
      <description>Presumably you have set up the PROC COPY, but need to know how to select just the tables of interest.  Here is the way to ask for that list:&lt;BR /&gt;&lt;BR /&gt;select AB_: ;</description>
      <pubDate>Mon, 18 Mar 2019 12:23:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Copy-all-tables-beginning-with-certain-keyword-from-one-lib-to/m-p/543958#M150386</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2019-03-18T12:23:25Z</dc:date>
    </item>
    <item>
      <title>Re: Copy all tables beginning with certain keyword from one lib to other</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Copy-all-tables-beginning-with-certain-keyword-from-one-lib-to/m-p/543961#M150387</link>
      <description>I'm the sluggard using the handheld:  3 minutes late.</description>
      <pubDate>Mon, 18 Mar 2019 12:25:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Copy-all-tables-beginning-with-certain-keyword-from-one-lib-to/m-p/543961#M150387</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2019-03-18T12:25:35Z</dc:date>
    </item>
  </channel>
</rss>

