<?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: Redshift and SAS in SAS Data Management</title>
    <link>https://communities.sas.com/t5/SAS-Data-Management/Redshift-and-SAS/m-p/415541#M12697</link>
    <description>&lt;P&gt;I found some documentation on it. There are additional options that should be supplied. The example is here:&amp;nbsp;&lt;A href="https://communities.sas.com/t5/SAS-Communities-Library/Redshift-and-SAS/ta-p/361738" target="_blank"&gt;https://communities.sas.com/t5/SAS-Communities-Library/Redshift-and-SAS/ta-p/361738&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 22 Nov 2017 15:25:52 GMT</pubDate>
    <dc:creator>test12342341</dc:creator>
    <dc:date>2017-11-22T15:25:52Z</dc:date>
    <item>
      <title>Redshift and SAS</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Redshift-and-SAS/m-p/415316#M12686</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to upload a large table from SAS to Amazon RedShift using the bulkload option(&lt;A href="http://documentation.sas.com/?docsetId=acreldb&amp;amp;docsetTarget=n1getgqem5whhmn1bxx7ct75ns82.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_blank"&gt;http://documentation.sas.com/?docsetId=acreldb&amp;amp;docsetTarget=n1getgqem5whhmn1bxx7ct75ns82.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en&lt;/A&gt;).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It requires the BL_Bucket option (&lt;A href="http://documentation.sas.com/?docsetId=acreldb&amp;amp;docsetTarget=n1n1jcqd49bk0kn1r66oe3o3dt47.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=ja" target="_blank"&gt;http://documentation.sas.com/?docsetId=acreldb&amp;amp;docsetTarget=n1n1jcqd49bk0kn1r66oe3o3dt47.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=ja&lt;/A&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have the bucket name, access and secret keys, but I don't&amp;nbsp;know how they should be entered into the data set option. Could someone post an example of proc append with the bl_bucket option?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Tue, 21 Nov 2017 21:11:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Redshift-and-SAS/m-p/415316#M12686</guid>
      <dc:creator>test12342341</dc:creator>
      <dc:date>2017-11-21T21:11:48Z</dc:date>
    </item>
    <item>
      <title>Re: Redshift and SAS</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Redshift-and-SAS/m-p/415317#M12687</link>
      <description>&lt;P&gt;Here is how I expect it to work. I note you need to be using SAS 9.4M4 for this option to be available.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc datasets library = REDSHIFT;
  append base =  BaseTable
               data = AppendTable (bl_bucket = MyBucketName)
         ;
  run;
quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 21 Nov 2017 21:22:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Redshift-and-SAS/m-p/415317#M12687</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2017-11-21T21:22:00Z</dc:date>
    </item>
    <item>
      <title>Re: Redshift and SAS</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Redshift-and-SAS/m-p/415518#M12696</link>
      <description>&lt;P&gt;Thanks for your reply.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The data set option should go on the base table since that is the destination.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The bulkload=yes option should be used as well.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is what I tried and it is not working. Gives me an error saying 'Unknown region'. There doesn't seem to be a way to supply region.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; proc append base=rds_lib.base_table( bulkload=yes BL_BUCKET=bucket_name)&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; data=data_table;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; run;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Nov 2017 14:24:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Redshift-and-SAS/m-p/415518#M12696</guid>
      <dc:creator>test12342341</dc:creator>
      <dc:date>2017-11-22T14:24:02Z</dc:date>
    </item>
    <item>
      <title>Re: Redshift and SAS</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Redshift-and-SAS/m-p/415541#M12697</link>
      <description>&lt;P&gt;I found some documentation on it. There are additional options that should be supplied. The example is here:&amp;nbsp;&lt;A href="https://communities.sas.com/t5/SAS-Communities-Library/Redshift-and-SAS/ta-p/361738" target="_blank"&gt;https://communities.sas.com/t5/SAS-Communities-Library/Redshift-and-SAS/ta-p/361738&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Nov 2017 15:25:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Redshift-and-SAS/m-p/415541#M12697</guid>
      <dc:creator>test12342341</dc:creator>
      <dc:date>2017-11-22T15:25:52Z</dc:date>
    </item>
    <item>
      <title>Re: Redshift and SAS</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Redshift-and-SAS/m-p/416218#M12717</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/107246"&gt;@test12342341&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;The bulkload options need to be on source table (data=) as this is the one you want to load in bulk.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;...I stay corrected: The bulkload option needs to be on the target table.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Nov 2017 20:33:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Redshift-and-SAS/m-p/416218#M12717</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2017-11-27T20:33:05Z</dc:date>
    </item>
    <item>
      <title>Re: Redshift and SAS</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Redshift-and-SAS/m-p/416433#M12725</link>
      <description>&lt;P&gt;Not according to the example in this documentation&amp;nbsp;&lt;A href="https://communities.sas.com/t5/SAS-Communities-Library/Redshift-and-SAS/ta-p/361738" target="_blank"&gt;https://communities.sas.com/t5/SAS-Communities-Library/Redshift-and-SAS/ta-p/361738&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Nov 2017 15:26:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Redshift-and-SAS/m-p/416433#M12725</guid>
      <dc:creator>test12342341</dc:creator>
      <dc:date>2017-11-27T15:26:20Z</dc:date>
    </item>
    <item>
      <title>Re: Redshift and SAS</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Redshift-and-SAS/m-p/416500#M12727</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/107246"&gt;@test12342341&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;Given that the link you've posted provides sample code and demonstrates how to use some of the bulkload options: What's still not working for you?&lt;/P&gt;</description>
      <pubDate>Mon, 27 Nov 2017 20:35:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Redshift-and-SAS/m-p/416500#M12727</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2017-11-27T20:35:19Z</dc:date>
    </item>
  </channel>
</rss>

