<?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: Internal table Overflow in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-overflow/m-p/7722166#M1580191</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your only option is package processing. When you say you have incorporated this already, then it was not properly done. In many installations you have at least 2 GB available before your process dumps, so packages of 100,000 rows should fit well, unless your row length is truely extraordinary. Then reduce the package size.&lt;/P&gt;&lt;P&gt;Make sure you are clearing/freeing all internal tables before processing the next package.&lt;/P&gt;&lt;P&gt;Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 22 Mar 2011 08:49:57 GMT</pubDate>
    <dc:creator>ThomasZloch</dc:creator>
    <dc:date>2011-03-22T08:49:57Z</dc:date>
    <item>
      <title>Internal table Overflow</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-overflow/m-p/7722164#M1580189</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a requirement in which I need to fetch the data from standard database table into an internal table, manipulate the data fetched and finally write it on the application server in form of .txt file. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But the number of records to be fetched are more than 4 Crores &lt;EM&gt;(= 40 million)&lt;/EM&gt; and for that I am getting the dump,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"No more storage space available for extending an internal table"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The below possible solutions have been incorporated or ruled out:&lt;/P&gt;&lt;P&gt;·         Data is being fetched using cursor with  package size of 1 Lakh &lt;EM&gt;(= 100,000)&lt;/EM&gt; records.&lt;/P&gt;&lt;P&gt;·         The approach of using the logical data base has been ruled out.&lt;/P&gt;&lt;P&gt;·         The memory allocated to internal table canu2019t be increased.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please suggest a solution to the above problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Manish&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;Moderator message: please use international units only.&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Thomas Zloch on Mar 22, 2011 9:42 AM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Mar 2011 00:32:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-overflow/m-p/7722164#M1580189</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-22T00:32:23Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table Overflow</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-overflow/m-p/7722165#M1580190</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use the package size statement in the select query with 1crore &lt;EM&gt;(= 10 million)&lt;/EM&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If same has been used and still getting dump them ask your basis to increase memory of application area as internal table are dynamic table which do increase its memory at runtime and if sufficient space will not be available on the server it goes to dump, checkout many other threads also as same is looking very frequant issus.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Umang mehta&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;Moderator message: please use international units only.&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Thomas Zloch on Mar 22, 2011 9:45 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Mar 2011 03:41:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-overflow/m-p/7722165#M1580190</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-22T03:41:50Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table Overflow</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-overflow/m-p/7722166#M1580191</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your only option is package processing. When you say you have incorporated this already, then it was not properly done. In many installations you have at least 2 GB available before your process dumps, so packages of 100,000 rows should fit well, unless your row length is truely extraordinary. Then reduce the package size.&lt;/P&gt;&lt;P&gt;Make sure you are clearing/freeing all internal tables before processing the next package.&lt;/P&gt;&lt;P&gt;Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Mar 2011 08:49:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-overflow/m-p/7722166#M1580191</guid>
      <dc:creator>ThomasZloch</dc:creator>
      <dc:date>2011-03-22T08:49:57Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table Overflow</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-overflow/m-p/7722167#M1580192</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should use  the package size statement but you could improve it by using it on a online parallel processing mode, it should  pump up your performance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this example: &lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/22/0425c6488911d189490000e829fbbd/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/22/0425c6488911d189490000e829fbbd/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Helder Gonçalves&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Mar 2011 10:09:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-overflow/m-p/7722167#M1580192</guid>
      <dc:creator>former_member389775</dc:creator>
      <dc:date>2011-03-22T10:09:27Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table Overflow</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-overflow/m-p/7722168#M1580193</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Manish,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If after changing package size also,this is not working,there is a kind of dirty approach.&lt;/P&gt;&lt;P&gt;As you are fetching 40 million records from one table,so it seems that this is not a kind of daily report.so you can use a less performance report also.&lt;/P&gt;&lt;P&gt;try something like this :&lt;/P&gt;&lt;P&gt;all the records would be categorised into groups, like order type,document type.so first select all those document types.and select data from database for each document type.write those records into ur file,refresh ur internal table and select again.&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Mar 2011 11:52:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-overflow/m-p/7722168#M1580193</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-22T11:52:03Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table Overflow</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-overflow/m-p/7722169#M1580194</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Manish,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is not a good practice to fetch all the 40 Million records at a time from DB table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use Package size of around 100,000  records with parallel processing, using this approach report might take some time to execute but it will not run out of memory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Ramnivas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Mar 2011 12:41:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-overflow/m-p/7722169#M1580194</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-25T12:41:21Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table Overflow</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-overflow/m-p/7722170#M1580195</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am giving you perfect solution, Which i have found.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My Question why you are reading all data at sinlge attempt ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Package size will not also help you at all.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have to read some chunk of data in loop and process that much of record append data to you resultant table, refresh the internal table and call commit satement inside the loop to reset the exection time (i.e. timeout error will not come)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below is just an idea&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If your resultant data is having the more entries 10 million then store it to database table and download it to excel if required.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Mar 2011 13:08:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-overflow/m-p/7722170#M1580195</guid>
      <dc:creator>ravi_lanjewar</dc:creator>
      <dc:date>2011-03-25T13:08:54Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table Overflow</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-overflow/m-p/7722171#M1580196</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;Package size will not also help you at all.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please elaborate how you arrived at this wrong conclusion.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;call commit satement inside the loop to reset the exection time (i.e. timeout error will not come)&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a very nasty workaround, misusing the COMMIT WORK statement, and this process here might well run in batch process&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;If your resultant data is having the more entries 10 million then store it to database table and download it to excel if required&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;10 million records in Excel!?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Mar 2011 13:17:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-overflow/m-p/7722171#M1580196</guid>
      <dc:creator>ThomasZloch</dc:creator>
      <dc:date>2011-03-25T13:17:49Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table Overflow</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-overflow/m-p/7722172#M1580197</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Ravi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As said by Thomas already please dont give a solution whcih is a workaround and also dont make wrong Statment like &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Package size will not also help you at all.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sandipan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 Mar 2011 09:11:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-overflow/m-p/7722172#M1580197</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-27T09:11:47Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table Overflow</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-overflow/m-p/7722173#M1580198</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Thomas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
What do you mean by Package size ?
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Define the package in select SQL or reading data in loop (i.e. 1000 or 2000 which is sutaible figure after test)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Recently, I have face same problem. I first try for package size between 10 to 100, but it won't work, &lt;/P&gt;&lt;P&gt;then I decided to used read data in loop like 100 records then it work. I don't know why this happend ?. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
If your resultant data is having the more entries 10 million then store it to database table
 and download it to excel if required
10 million records in Excel!?
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By mistake written 10 million it. 1 million approximatly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Mar 2011 05:44:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-overflow/m-p/7722173#M1580198</guid>
      <dc:creator>ravi_lanjewar</dc:creator>
      <dc:date>2011-03-28T05:44:12Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table Overflow</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-overflow/m-p/7722174#M1580199</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use command&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;UPDATE dbtab SET ... WHERE ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for all of your update cases. Don't forget the COMMIT after that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To find your update cases you can start a SELECT DISTINCT on your db table!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Klaus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Mar 2011 05:55:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-overflow/m-p/7722174#M1580199</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-28T05:55:13Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table Overflow</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-overflow/m-p/7722175#M1580200</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Ravi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;I first try for package size between 10 to 100, but it won't work, &lt;/P&gt;&lt;P&gt;then I decided to used read data in loop like 100 records then it work. I don't know why this happend ?&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you're not sure, why confuse others? PACKAGE SIZE we're talking about is the one we use with the FETCH statement. Read the F1 documentation for further clarification.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;By mistake written 10 million it. 1 million approximatly.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Still incorrect!! If i am not mistaken, max recs you can fill in an excel is ~65k.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Mar 2011 08:07:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-overflow/m-p/7722175#M1580200</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2011-03-28T08:07:14Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table Overflow</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-overflow/m-p/7722176#M1580201</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ravi, in order to clarify, I was referring only to PACKAGE SIZE option of the SELECT or FETCH statements. In my experience this is the option to choose when the amount of data you are processing can become so large that you will run into memory problems (heap, extended, roll back areas, etc.) when processed in one chunk.&lt;/P&gt;&lt;P&gt;Ideally the package size is a parameter on the selection screen or a global constant that can be adjusted to a value that provides the best compromise between runtime and memory consumption.&lt;/P&gt;&lt;P&gt;Thomas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P.S. up until Excel 2003 it was 65K rows, since then 1 million rows (I believe), but still a pain to scroll through &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Mar 2011 08:30:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-overflow/m-p/7722176#M1580201</guid>
      <dc:creator>ThomasZloch</dc:creator>
      <dc:date>2011-03-28T08:30:13Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table Overflow</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-overflow/m-p/7722177#M1580202</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your replies.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I fetched the records in package size of 100000 records.&lt;/P&gt;&lt;P&gt;The problem is solved now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Manish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Apr 2011 16:16:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-overflow/m-p/7722177#M1580202</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-04-06T16:16:24Z</dc:date>
    </item>
  </channel>
</rss>

