<?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 Proc upload option to exclude index files in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Proc-upload-option-to-exclude-index-files/m-p/191080#M48139</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm doing a proc upload to a linux server.&amp;nbsp; The issue i'm having is that the SAS Data Set Index (*.sas7bndx) files are also uploaded.&amp;nbsp; How can I exclude them from being moved?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_14217836155003581" jivemacro_uid="_14217836155003581" modifiedtitle="true"&gt;
&lt;P&gt;rsubmit;&lt;/P&gt;
&lt;P&gt;proc upload in=temp out=tempOut ;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; select tab1 tab2 tab3 etc..... ;&lt;/P&gt;
&lt;P&gt;run ;&lt;/P&gt;
&lt;P&gt;endrsubmit;&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I only want tab1.sas7bdat not tab1.sas7bndx&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 20 Jan 2015 19:54:48 GMT</pubDate>
    <dc:creator>jerry898969</dc:creator>
    <dc:date>2015-01-20T19:54:48Z</dc:date>
    <item>
      <title>Proc upload option to exclude index files</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-upload-option-to-exclude-index-files/m-p/191080#M48139</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm doing a proc upload to a linux server.&amp;nbsp; The issue i'm having is that the SAS Data Set Index (*.sas7bndx) files are also uploaded.&amp;nbsp; How can I exclude them from being moved?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_14217836155003581" jivemacro_uid="_14217836155003581" modifiedtitle="true"&gt;
&lt;P&gt;rsubmit;&lt;/P&gt;
&lt;P&gt;proc upload in=temp out=tempOut ;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; select tab1 tab2 tab3 etc..... ;&lt;/P&gt;
&lt;P&gt;run ;&lt;/P&gt;
&lt;P&gt;endrsubmit;&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I only want tab1.sas7bdat not tab1.sas7bndx&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jan 2015 19:54:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-upload-option-to-exclude-index-files/m-p/191080#M48139</guid>
      <dc:creator>jerry898969</dc:creator>
      <dc:date>2015-01-20T19:54:48Z</dc:date>
    </item>
    <item>
      <title>Re: Proc upload option to exclude index files</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-upload-option-to-exclude-index-files/m-p/191081#M48140</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;libname educlib 'sasdemo.educcats.screens' server=abcserv sapw=demopw;&lt;/P&gt;&lt;P&gt;libname tempOut '.';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc datasets;&lt;/P&gt;&lt;P&gt;copy in=educlib out=tempOut index=no;&lt;/P&gt;&lt;P&gt;select tab1 tab2 tab3 etc......;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROC UPLOAD only allows for the upload or the destination-side recreation of an index.&amp;nbsp; If you want to no have an index at all after the transfer use a different procedure, such as PROC DATASETS.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jan 2015 20:22:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-upload-option-to-exclude-index-files/m-p/191081#M48140</guid>
      <dc:creator>FriedEgg</dc:creator>
      <dc:date>2015-01-20T20:22:29Z</dc:date>
    </item>
    <item>
      <title>Re: Proc upload option to exclude index files</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-upload-option-to-exclude-index-files/m-p/191082#M48141</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi FriedEgg,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your reply.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is currently how I have to connect to my linux version of sas.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;options netencryptalgorithm = tripledes ;&lt;/P&gt;&lt;P&gt;%let host=xxxxxxxx.xxx ;&lt;/P&gt;&lt;P&gt;signon host.10000 user=temp password=temp1 ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a way to use proc datasets within rsubmit?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jan 2015 20:39:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-upload-option-to-exclude-index-files/m-p/191082#M48141</guid>
      <dc:creator>jerry898969</dc:creator>
      <dc:date>2015-01-20T20:39:31Z</dc:date>
    </item>
  </channel>
</rss>

