<?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: SAS: Want to know how to pass data from a WORK.WHATEVER table into a Netezza table in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/SAS-Want-to-know-how-to-pass-data-from-a-WORK-WHATEVER-table/m-p/507223#M136100</link>
    <description>&lt;P&gt;OK, I have one question about the following:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;&lt;SPAN class="token procnames"&gt;data&lt;/SPAN&gt; netload&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;target&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
  &lt;SPAN class="token function"&gt;length&lt;/SPAN&gt; key &lt;SPAN class="token number"&gt;8&lt;/SPAN&gt; VarA VarB &lt;SPAN class="token punctuation"&gt;$&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;7&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
  stop&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="token procnames"&gt;run&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Would it be possible to just say:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;&lt;SPAN class="token procnames"&gt;data&lt;/SPAN&gt; netload&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;target&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
  stop&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="token procnames"&gt;run&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp; Assuming the columns will define themselves as I insert the data into the target. Like the SQL statement:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;create TABLE work&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;Vsource as
    &lt;SPAN class="token statement"&gt;select&lt;/SPAN&gt; 
      a&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;key&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt;
      a&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;varA&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt;
      b&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;varB
    &lt;SPAN class="token keyword"&gt;from&lt;/SPAN&gt; 
      work&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;source1 as a&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt; work&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;source2 as b
      &lt;SPAN class="token statement"&gt;where&lt;/SPAN&gt; a&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;key&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;b&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;key
    &lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;The way a table you're creating from a query figures out the columns by itself? Can I just do that?&lt;/P&gt;</description>
    <pubDate>Wed, 24 Oct 2018 16:24:49 GMT</pubDate>
    <dc:creator>Tater_Salad</dc:creator>
    <dc:date>2018-10-24T16:24:49Z</dc:date>
    <item>
      <title>SAS: Want to know how to pass data from a WORK.WHATEVER table into a Netezza table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-Want-to-know-how-to-pass-data-from-a-WORK-WHATEVER-table/m-p/506995#M135981</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Using SAS V 9.xxx.&lt;BR /&gt;&lt;BR /&gt;How do I pass data from a table in the generic WORK library to a table in Netezza.&lt;/P&gt;&lt;P&gt;Right now I can take data out of Netezza and store&amp;nbsp;the WORK library, for example:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;/* using “connect to” */

proc sql;
connect to netezza (&amp;amp;us_mkt.); 
execute (

drop table &amp;amp;tempdir..SALES_TBL_TST1; 

create table &amp;amp;tempdir..SALES_TBL_TST1
as
select * from &amp;amp;tempdir..SALES_TBL;
/*select * from &amp;amp;tempdir..SALES_TBL */

) by netezza;
disconnect from netezza;
quit;

/* using “connect using” */

proc sql;

connect using ROLAP;

drop table WORK.SALES_TBL_TST2;

create table WORK.SALES_TBL_TST2 AS
select * from connection to ROLAP
(select * from USER_ROLAP.SALES_TBL);

insert into WORK.SALES_TBL_TST2
select * from connection to ROLAP
(select * from &amp;amp;tempdir..SALES_TBL);

quit;&lt;/PRE&gt;&lt;P&gt;But what if I want to put data back into Netezza from the WORK library. So for example:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;insert into &amp;amp;tempdir..SALES_TBL_TST1 
select * from WORK.SALES_TBL_TST2;&lt;/PRE&gt;&lt;P&gt;Is there some way to do this?&lt;/P&gt;&lt;P&gt;Thanks in Advance!&lt;/P&gt;</description>
      <pubDate>Tue, 23 Oct 2018 19:47:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-Want-to-know-how-to-pass-data-from-a-WORK-WHATEVER-table/m-p/506995#M135981</guid>
      <dc:creator>Tater_Salad</dc:creator>
      <dc:date>2018-10-23T19:47:48Z</dc:date>
    </item>
    <item>
      <title>Re: SAS: Want to know how to pass data from a WORK.WHATEVER table into a Netezza table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-Want-to-know-how-to-pass-data-from-a-WORK-WHATEVER-table/m-p/507011#M135988</link>
      <description>&lt;P&gt;I suggest you try loading a SAS table as a Netezza temporary table, then you can use INSERT INTO from the temporary table. The easiest way to load a temporary table is to assign a LIBNAME statement accessing Netezza:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname netload netezza &amp;amp;us_mkt. ; * Might need to tweak your connection options;

data netload.sales_tbl_test;
  set work.sales_tbl_test;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Oct 2018 20:56:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-Want-to-know-how-to-pass-data-from-a-WORK-WHATEVER-table/m-p/507011#M135988</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2018-10-23T20:56:49Z</dc:date>
    </item>
    <item>
      <title>Re: SAS: Want to know how to pass data from a WORK.WHATEVER table into a Netezza table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-Want-to-know-how-to-pass-data-from-a-WORK-WHATEVER-table/m-p/507014#M135991</link>
      <description>Right now you're using SQL Pass through. Can you connect in a different manner, specifically a libname reference?</description>
      <pubDate>Tue, 23 Oct 2018 21:01:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-Want-to-know-how-to-pass-data-from-a-WORK-WHATEVER-table/m-p/507014#M135991</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-10-23T21:01:09Z</dc:date>
    </item>
    <item>
      <title>Re: SAS: Want to know how to pass data from a WORK.WHATEVER table into a Netezza table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-Want-to-know-how-to-pass-data-from-a-WORK-WHATEVER-table/m-p/507015#M135992</link>
      <description>&lt;P&gt;You need a libname statement pointing to Netezza. If inserting data into an existing table then Proc Append is an option.&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname netload netezza &amp;amp;us_mkt. ; * Might need to tweak your connection options;

proc append base=netload.sales_tbl_test data=work.sales_tbl_test;
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 23 Oct 2018 21:07:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-Want-to-know-how-to-pass-data-from-a-WORK-WHATEVER-table/m-p/507015#M135992</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2018-10-23T21:07:33Z</dc:date>
    </item>
    <item>
      <title>Re: SAS: Want to know how to pass data from a WORK.WHATEVER table into a Netezza table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-Want-to-know-how-to-pass-data-from-a-WORK-WHATEVER-table/m-p/507024#M135998</link>
      <description>&lt;P&gt;Yup, I did that one:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;data ROLAP.SALES_TBL_TST4;
    set WORK.SALES_TBL;

run;&lt;/PRE&gt;&lt;P&gt;Probably the quickest way to load data from SAS up to Neteeza.&lt;/P&gt;&lt;P&gt;But you have to load the whole table, it looks like. No more, no less.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Definitely one super-easy way.&lt;/P&gt;</description>
      <pubDate>Tue, 23 Oct 2018 21:48:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-Want-to-know-how-to-pass-data-from-a-WORK-WHATEVER-table/m-p/507024#M135998</guid>
      <dc:creator>Tater_Salad</dc:creator>
      <dc:date>2018-10-23T21:48:55Z</dc:date>
    </item>
    <item>
      <title>Re: SAS: Want to know how to pass data from a WORK.WHATEVER table into a Netezza table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-Want-to-know-how-to-pass-data-from-a-WORK-WHATEVER-table/m-p/507025#M135999</link>
      <description>&lt;P&gt;Yup, that's what they have me doing. I suspected libraries would be part of the solution but being new to SAS I didn't know their range.&lt;/P&gt;</description>
      <pubDate>Tue, 23 Oct 2018 21:50:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-Want-to-know-how-to-pass-data-from-a-WORK-WHATEVER-table/m-p/507025#M135999</guid>
      <dc:creator>Tater_Salad</dc:creator>
      <dc:date>2018-10-23T21:50:23Z</dc:date>
    </item>
    <item>
      <title>Re: SAS: Want to know how to pass data from a WORK.WHATEVER table into a Netezza table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-Want-to-know-how-to-pass-data-from-a-WORK-WHATEVER-table/m-p/507028#M136002</link>
      <description>&lt;P&gt;Ok, so it looks like this is an alternative to&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;data ROLAP.SALES_TBL_TST4;
set WORK.SALES_TBL;

run;&lt;/PRE&gt;&lt;P&gt;Only in this instance your adding data. It looks like you're taking everything from the source table and inserting it into&amp;nbsp; &amp;nbsp;netload.sales_tbl_test.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way to do a custom query as part of your install. Something complicated.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;insert into &lt;SPAN&gt;netload.sales_tbl_test &lt;BR /&gt;&lt;/SPAN&gt;  select a.c1, a.c2.... from work.table1 a, work.table2&amp;nbsp; b &lt;BR /&gt; where a.c1 = b.c1 and a.c2=b.c2 etc ,...&lt;/PRE&gt;&lt;P&gt;Something like that..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Oct 2018 22:03:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-Want-to-know-how-to-pass-data-from-a-WORK-WHATEVER-table/m-p/507028#M136002</guid>
      <dc:creator>Tater_Salad</dc:creator>
      <dc:date>2018-10-23T22:03:35Z</dc:date>
    </item>
    <item>
      <title>Re: SAS: Want to know how to pass data from a WORK.WHATEVER table into a Netezza table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-Want-to-know-how-to-pass-data-from-a-WORK-WHATEVER-table/m-p/507073#M136026</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/226084"&gt;@Tater_Salad&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;Code like below should do.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname netload (work); /* here your actual libname pointing to Netezza */

data work.source1;
  varA='source1';
  do key=1 to 5;
    output;
  end;
  stop;
run;

data work.source2;
  varB='source2';
  do key=2 to 6;
    output;
  end;
  stop;
run;

data netload.target;
  length key 8 VarA VarB $7;
  stop;
run;

/* option 1 */
proc sql;
  insert into netload.target 
    select 
      a.key,
      a.varA,
      b.varB
    from 
      work.source1 as a, work.source2 as b
      where a.key=b.key
    ;
quit;


/* option 2 */
proc sql;
  create view work.Vsource as
    select 
      a.key,
      a.varA,
      b.varB
    from 
      work.source1 as a, work.source2 as b
      where a.key=b.key
    ;
quit;

proc append base=netload.target data=work.vSource;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I personally would likely go for option 2 as this&amp;nbsp;makes it easier to use stuff like bulkload or fastload (or whatever Netezza offers).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Oct 2018 07:54:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-Want-to-know-how-to-pass-data-from-a-WORK-WHATEVER-table/m-p/507073#M136026</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2018-10-24T07:54:32Z</dc:date>
    </item>
    <item>
      <title>Re: SAS: Want to know how to pass data from a WORK.WHATEVER table into a Netezza table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-Want-to-know-how-to-pass-data-from-a-WORK-WHATEVER-table/m-p/507171#M136063</link>
      <description>&lt;P&gt;NOICE!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;** NOTE ** Everyone else's solution was correct as well. This one just took me the farthest.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Oct 2018 14:35:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-Want-to-know-how-to-pass-data-from-a-WORK-WHATEVER-table/m-p/507171#M136063</guid>
      <dc:creator>Tater_Salad</dc:creator>
      <dc:date>2018-10-24T14:35:37Z</dc:date>
    </item>
    <item>
      <title>Re: SAS: Want to know how to pass data from a WORK.WHATEVER table into a Netezza table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-Want-to-know-how-to-pass-data-from-a-WORK-WHATEVER-table/m-p/507223#M136100</link>
      <description>&lt;P&gt;OK, I have one question about the following:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;&lt;SPAN class="token procnames"&gt;data&lt;/SPAN&gt; netload&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;target&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
  &lt;SPAN class="token function"&gt;length&lt;/SPAN&gt; key &lt;SPAN class="token number"&gt;8&lt;/SPAN&gt; VarA VarB &lt;SPAN class="token punctuation"&gt;$&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;7&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
  stop&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="token procnames"&gt;run&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Would it be possible to just say:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;&lt;SPAN class="token procnames"&gt;data&lt;/SPAN&gt; netload&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;target&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
  stop&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="token procnames"&gt;run&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp; Assuming the columns will define themselves as I insert the data into the target. Like the SQL statement:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;create TABLE work&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;Vsource as
    &lt;SPAN class="token statement"&gt;select&lt;/SPAN&gt; 
      a&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;key&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt;
      a&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;varA&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt;
      b&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;varB
    &lt;SPAN class="token keyword"&gt;from&lt;/SPAN&gt; 
      work&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;source1 as a&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt; work&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;source2 as b
      &lt;SPAN class="token statement"&gt;where&lt;/SPAN&gt; a&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;key&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;b&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;key
    &lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;The way a table you're creating from a query figures out the columns by itself? Can I just do that?&lt;/P&gt;</description>
      <pubDate>Wed, 24 Oct 2018 16:24:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-Want-to-know-how-to-pass-data-from-a-WORK-WHATEVER-table/m-p/507223#M136100</guid>
      <dc:creator>Tater_Salad</dc:creator>
      <dc:date>2018-10-24T16:24:49Z</dc:date>
    </item>
    <item>
      <title>Re: SAS: Want to know how to pass data from a WORK.WHATEVER table into a Netezza table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-Want-to-know-how-to-pass-data-from-a-WORK-WHATEVER-table/m-p/507337#M136150</link>
      <description>Never Mind I figured it out.</description>
      <pubDate>Wed, 24 Oct 2018 20:50:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-Want-to-know-how-to-pass-data-from-a-WORK-WHATEVER-table/m-p/507337#M136150</guid>
      <dc:creator>Tater_Salad</dc:creator>
      <dc:date>2018-10-24T20:50:51Z</dc:date>
    </item>
    <item>
      <title>Re: SAS: Want to know how to pass data from a WORK.WHATEVER table into a Netezza table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-Want-to-know-how-to-pass-data-from-a-WORK-WHATEVER-table/m-p/507360#M136163</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/226084"&gt;@Tater_Salad&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;I normally prefer to explicitly define table structures in a data base using pass-through SQL. You can SAS have doing it implicitly but it gives you less control.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Oct 2018 23:18:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-Want-to-know-how-to-pass-data-from-a-WORK-WHATEVER-table/m-p/507360#M136163</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2018-10-24T23:18:39Z</dc:date>
    </item>
  </channel>
</rss>

