<?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: Oracle PL/SQL code running from UX shell script ??? in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-pl-sql-code-running-from-ux-shell-script/m-p/3705362#M790280</link>
    <description>Thanks for all the replies.   Maybe, the example above is misleading a bit.&lt;BR /&gt;&lt;BR /&gt;Forget about the update.sql script.  That one WORKS fine via the wrapped unix script.  It does not block anything on the second script.  They are completely detached, and for purposes of troubleshooting here, lets assume that we are only dealing with the PL/SQL block one !!!&lt;BR /&gt;&lt;BR /&gt;Now, I am running this script from root cron, that is why I was setting up the oracle profile on the script.  So, I went ahead and ran it as oracle, via the &lt;BR /&gt;su - oracle -c full path, after commenting out the .profile call, and same thing.  It just sits there.  &lt;BR /&gt;&lt;BR /&gt;I added the alter session right after the connect string ( the user and passwd are for the application schema, a non-privileged schema ), and when I try to run it from the shell, again, this is what I get :&lt;BR /&gt;&lt;BR /&gt;Starting on Tue Jan 10 09:26:42 EST 2006&lt;BR /&gt;&lt;BR /&gt;Connected.&lt;BR /&gt;&lt;BR /&gt;Session altered.&lt;BR /&gt;&lt;BR /&gt;and nothing else !!!    :-(    &lt;BR /&gt;&lt;BR /&gt;I ran the same exact code from a sqlplus window, just now, and this is what I got :&lt;BR /&gt;&lt;BR /&gt;Session altered.&lt;BR /&gt;&lt;BR /&gt;.&lt;BR /&gt;Records changed = 73&lt;BR /&gt;End of Program&lt;BR /&gt;.&lt;BR /&gt;&lt;BR /&gt;PL/SQL procedure successfully completed.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Commit complete.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;    What gives  ?   :-)&lt;BR /&gt;&lt;BR /&gt;Henrique&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Tue, 10 Jan 2006 09:30:04 GMT</pubDate>
    <dc:creator>Henrique Silva_3</dc:creator>
    <dc:date>2006-01-10T09:30:04Z</dc:date>
    <item>
      <title>Oracle PL/SQL code running from UX shell script ???</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-pl-sql-code-running-from-ux-shell-script/m-p/3705354#M790272</link>
      <description>&lt;BR /&gt;Hello everyone, and happy new year.&lt;BR /&gt;&lt;BR /&gt;I have a PL/SQL block, which runs a cursor, which works fine from a sqlplus session, however, when I wrap it in a ux shell script ( sh ), it just sites there and nothing seems to happen.&lt;BR /&gt;&lt;BR /&gt;Is there anything especifically I need to do within the shell, to get this to run from the script ?  &lt;BR /&gt;&lt;BR /&gt;example of script !!!&lt;BR /&gt;&lt;BR /&gt;#!/bin/sh&lt;BR /&gt;&lt;BR /&gt;echo "Starting on `date`"; echo ""&lt;BR /&gt;&lt;BR /&gt;. ~oracle/.profile&lt;BR /&gt;&lt;BR /&gt;sqlplus -s /nolog @/home/oracle/update.sql&lt;BR /&gt;sqlplus -s /nolog @/home/oracle/cursor.sql&lt;BR /&gt;&lt;BR /&gt;echo ""; echo "Ending on `date`"; echo ""&lt;BR /&gt;&lt;BR /&gt;exit 0&lt;BR /&gt;&lt;BR /&gt;the first sql, which is a simple update, works fine, but the cursor.sql just sits there, from the shell, and from cron, I am not sure if it is just creating oracle sessions, or not ( need to investigate it ), and not disconnecting them.  &lt;BR /&gt;&lt;BR /&gt;In any case, the cursor goes something like this ( changed table names and columns to protect the inocent :_) ).  In any case, it is a simple cursor that updates a column if a condition is true.  Again, it works fine from a sqlplus session, not from script !!! :&lt;BR /&gt;&lt;BR /&gt;spool /tmp/UID.txt&lt;BR /&gt;&lt;BR /&gt;CONNECT user/passwd@DB&lt;BR /&gt;&lt;BR /&gt;set echo off&lt;BR /&gt;set serveroutput on size 1000000 format wrapped&lt;BR /&gt;&lt;BR /&gt;column v1format 999999999999999999&lt;BR /&gt;column v2 format 999999999999999999&lt;BR /&gt;&lt;BR /&gt;DECLARE&lt;BR /&gt;&lt;BR /&gt;      CURSOR c_TEST IS&lt;BR /&gt;&lt;BR /&gt;      select v1, v2&lt;BR /&gt;      from table1 P&lt;BR /&gt;, table2 C&lt;BR /&gt;where P.T1_oid = C.T2_oid&lt;BR /&gt;and P.T1_email is not null&lt;BR /&gt;and C.T2_uid is null&lt;BR /&gt;and P.T1_oid != ( Select org_oid from T3&lt;BR /&gt;where T3.code = 'SOMETHING');&lt;BR /&gt;&lt;BR /&gt;i   number := 0;&lt;BR /&gt;&lt;BR /&gt;    BEGIN&lt;BR /&gt;&lt;BR /&gt;      FOR c_TEST_rec IN c_TEST&lt;BR /&gt;&lt;BR /&gt;     LOOP&lt;BR /&gt;&lt;BR /&gt;     i := i +1;&lt;BR /&gt;    update T3&lt;BR /&gt;      set column = c_TEST_rec.email&lt;BR /&gt;    where t3_oid = c_TEST_rec.oid;&lt;BR /&gt;&lt;BR /&gt;    commit;&lt;BR /&gt;&lt;BR /&gt;     END LOOP;&lt;BR /&gt;&lt;BR /&gt;      DBMS_OUTPUT.PUT_LINE('.');&lt;BR /&gt;      DBMS_OUTPUT.PUT_LINE('Records updated = '||i );&lt;BR /&gt;      DBMS_OUTPUT.PUT_LINE('End of Program');&lt;BR /&gt;&lt;BR /&gt;commit;BMS_OUTPUT.PUT_LINE('.');&lt;BR /&gt;&lt;BR /&gt;spool off&lt;BR /&gt;&lt;BR /&gt;output from sqlplus session &lt;BR /&gt;&lt;BR /&gt;Records updated = 0&lt;BR /&gt;End of Program&lt;BR /&gt;.&lt;BR /&gt;&lt;BR /&gt;PL/SQL procedure successfully completed.&lt;BR /&gt;&lt;BR /&gt;ANY IDEAS HERE ?????&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;&lt;BR /&gt;Henrique&lt;BR /&gt;</description>
      <pubDate>Mon, 09 Jan 2006 11:39:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-pl-sql-code-running-from-ux-shell-script/m-p/3705354#M790272</guid>
      <dc:creator>Henrique Silva_3</dc:creator>
      <dc:date>2006-01-09T11:39:51Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle PL/SQL code running from UX shell script ???</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-pl-sql-code-running-from-ux-shell-script/m-p/3705355#M790273</link>
      <description>Henrique,&lt;BR /&gt;&lt;BR /&gt;It may be as simple as adding an "exit" at the end of the sql script.  Because SQL*Plus is an interactive program, it could be waiting for your next command.&lt;BR /&gt;&lt;BR /&gt;Hope this helps.&lt;BR /&gt;&lt;BR /&gt;Robert</description>
      <pubDate>Mon, 09 Jan 2006 13:50:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-pl-sql-code-running-from-ux-shell-script/m-p/3705355#M790273</guid>
      <dc:creator>rtdewi0</dc:creator>
      <dc:date>2006-01-09T13:50:35Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle PL/SQL code running from UX shell script ???</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-pl-sql-code-running-from-ux-shell-script/m-p/3705356#M790274</link>
      <description>&lt;BR /&gt;     Thanks.&lt;BR /&gt;&lt;BR /&gt;     Actually exit is there :-(  I forgot to add that last line on the example above :-(&lt;BR /&gt;&lt;BR /&gt;     But I am thinking it has to be something else, because the file I am spooling this info to, has connected as the only entry in it.  It never goes through the code and displays the output expected.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 09 Jan 2006 14:54:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-pl-sql-code-running-from-ux-shell-script/m-p/3705356#M790274</guid>
      <dc:creator>Henrique Silva_3</dc:creator>
      <dc:date>2006-01-09T14:54:05Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle PL/SQL code running from UX shell script ???</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-pl-sql-code-running-from-ux-shell-script/m-p/3705357#M790275</link>
      <description>Hello Henrique,&lt;BR /&gt;&lt;BR /&gt;Could you attach your PL/SQL code (NOT paste) so that it is more understandable. &lt;BR /&gt;&lt;BR /&gt;Atleast from the code you have pasted here it looks like you are missing the "end" statement followed by the forward slash "/" terminator for your PL/SQL block.&lt;BR /&gt;&lt;BR /&gt;Might be more obvious once you have attached your code.&lt;BR /&gt;&lt;BR /&gt;cheers!&lt;BR /&gt;</description>
      <pubDate>Mon, 09 Jan 2006 15:24:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-pl-sql-code-running-from-ux-shell-script/m-p/3705357#M790275</guid>
      <dc:creator>Sandman!</dc:creator>
      <dc:date>2006-01-09T15:24:29Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle PL/SQL code running from UX shell script ???</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-pl-sql-code-running-from-ux-shell-script/m-p/3705358#M790276</link>
      <description>Here is the PL/SQL code !!&lt;BR /&gt;&lt;BR /&gt;Again, it works fine on a sql plus session, not wrapped on the script.  And I would not pay attention to what it is actually doing, but why it does not work on the ux script.&lt;BR /&gt;&lt;BR /&gt;I did have the END and EXIT on it, not on the copy and past, my bad , but I am attaching it it here so that you can see it and let me know what is wrong !!&lt;BR /&gt;&lt;BR /&gt;Henrique&lt;BR /&gt;&lt;BR /&gt;PS.: I added the "/" at the end and that did not it either :-(&lt;BR /&gt;&lt;BR /&gt;PS2.:  The unix wrapper is on the original message, just say that this file is called cursor.sql instead of the attachment name.  Again, the update.sql part works fine, the cursor does not :-(</description>
      <pubDate>Mon, 09 Jan 2006 23:12:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-pl-sql-code-running-from-ux-shell-script/m-p/3705358#M790276</guid>
      <dc:creator>Henrique Silva_3</dc:creator>
      <dc:date>2006-01-09T23:12:31Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle PL/SQL code running from UX shell script ???</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-pl-sql-code-running-from-ux-shell-script/m-p/3705359#M790277</link>
      <description>You have to execute this script as sql user only? Are you executing the scripting with normal or super user? Then It will not work. Try to log with sql user or use as,&lt;BR /&gt;&lt;BR /&gt;su - sqluser -c "full script path"&lt;BR /&gt;&lt;BR /&gt;or&lt;BR /&gt;&lt;BR /&gt;use sudo to execute the script as sql user without password.&lt;BR /&gt;&lt;BR /&gt;--&lt;BR /&gt;Muthu</description>
      <pubDate>Mon, 09 Jan 2006 23:16:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-pl-sql-code-running-from-ux-shell-script/m-p/3705359#M790277</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2006-01-09T23:16:41Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle PL/SQL code running from UX shell script ???</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-pl-sql-code-running-from-ux-shell-script/m-p/3705360#M790278</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;are you sure the first script does not lock any record that the second script is waiting for?&lt;BR /&gt;&lt;BR /&gt;if yes, can you try to set sql_trace on in your PLSQL code and see what's happenning?&lt;BR /&gt;&lt;BR /&gt;e.g. alter session set sql_trace=true; &lt;BR /&gt;&lt;BR /&gt;let us know what happens.&lt;BR /&gt;&lt;BR /&gt;kind regards&lt;BR /&gt;yogeeraj</description>
      <pubDate>Tue, 10 Jan 2006 00:29:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-pl-sql-code-running-from-ux-shell-script/m-p/3705360#M790278</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2006-01-10T00:29:30Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle PL/SQL code running from UX shell script ???</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-pl-sql-code-running-from-ux-shell-script/m-p/3705361#M790279</link>
      <description>Maybe it is better to keep things basic and simple.&lt;BR /&gt;&lt;BR /&gt;Leaving out the pl/sql and&lt;BR /&gt;just come back to a simple &lt;BR /&gt;query&lt;BR /&gt;&lt;BR /&gt;What happens when you run this in&lt;BR /&gt;your unix script ?&lt;BR /&gt;&lt;BR /&gt;spool /tmp/UID.txt&lt;BR /&gt;&lt;BR /&gt;CONNECT user/passwd@instance&lt;BR /&gt;&lt;BR /&gt;set echo off&lt;BR /&gt;set serveroutput on size 1000000 format wrapped&lt;BR /&gt;&lt;BR /&gt;select * from dual;&lt;BR /&gt;spool off&lt;BR /&gt;exit;&lt;BR /&gt;&lt;BR /&gt;---------&lt;BR /&gt;This has three purposes for troubleshooting logic , first &lt;BR /&gt;we test your unix environment,&lt;BR /&gt;secondly we test the CONNECT&lt;BR /&gt;and thirdly if it works we know&lt;BR /&gt;it is located in the pl/sql block,&lt;BR /&gt;(and then the sqltrace=true has to be&lt;BR /&gt;used and more debugging)&lt;BR /&gt;if not it is dependent of pl/sql&lt;BR /&gt;we need to look furhter at the&lt;BR /&gt;environment or CONNECT instance&lt;BR /&gt;maybe even sql*net&lt;BR /&gt;&lt;BR /&gt;Get cooking :)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 10 Jan 2006 02:31:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-pl-sql-code-running-from-ux-shell-script/m-p/3705361#M790279</guid>
      <dc:creator>Frank de Vries</dc:creator>
      <dc:date>2006-01-10T02:31:37Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle PL/SQL code running from UX shell script ???</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-pl-sql-code-running-from-ux-shell-script/m-p/3705362#M790280</link>
      <description>Thanks for all the replies.   Maybe, the example above is misleading a bit.&lt;BR /&gt;&lt;BR /&gt;Forget about the update.sql script.  That one WORKS fine via the wrapped unix script.  It does not block anything on the second script.  They are completely detached, and for purposes of troubleshooting here, lets assume that we are only dealing with the PL/SQL block one !!!&lt;BR /&gt;&lt;BR /&gt;Now, I am running this script from root cron, that is why I was setting up the oracle profile on the script.  So, I went ahead and ran it as oracle, via the &lt;BR /&gt;su - oracle -c full path, after commenting out the .profile call, and same thing.  It just sits there.  &lt;BR /&gt;&lt;BR /&gt;I added the alter session right after the connect string ( the user and passwd are for the application schema, a non-privileged schema ), and when I try to run it from the shell, again, this is what I get :&lt;BR /&gt;&lt;BR /&gt;Starting on Tue Jan 10 09:26:42 EST 2006&lt;BR /&gt;&lt;BR /&gt;Connected.&lt;BR /&gt;&lt;BR /&gt;Session altered.&lt;BR /&gt;&lt;BR /&gt;and nothing else !!!    :-(    &lt;BR /&gt;&lt;BR /&gt;I ran the same exact code from a sqlplus window, just now, and this is what I got :&lt;BR /&gt;&lt;BR /&gt;Session altered.&lt;BR /&gt;&lt;BR /&gt;.&lt;BR /&gt;Records changed = 73&lt;BR /&gt;End of Program&lt;BR /&gt;.&lt;BR /&gt;&lt;BR /&gt;PL/SQL procedure successfully completed.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Commit complete.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;    What gives  ?   :-)&lt;BR /&gt;&lt;BR /&gt;Henrique&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 10 Jan 2006 09:30:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-pl-sql-code-running-from-ux-shell-script/m-p/3705362#M790280</guid>
      <dc:creator>Henrique Silva_3</dc:creator>
      <dc:date>2006-01-10T09:30:04Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle PL/SQL code running from UX shell script ???</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-pl-sql-code-running-from-ux-shell-script/m-p/3705363#M790281</link>
      <description>Hi Henrique,&lt;BR /&gt;&lt;BR /&gt;What happens when you run the PL/SQL block by itself within a script i.e. without using the Unix wrapper script.&lt;BR /&gt;&lt;BR /&gt;It would be easy to troubleshoot if the root cause is narrowed down to either the shell script or the SQL embedded within the PL/SQL anonymous block.&lt;BR /&gt;&lt;BR /&gt;Could you attach the wrapper shell script as well.&lt;BR /&gt;&lt;BR /&gt;cheers!</description>
      <pubDate>Tue, 10 Jan 2006 12:48:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-pl-sql-code-running-from-ux-shell-script/m-p/3705363#M790281</guid>
      <dc:creator>Sandman!</dc:creator>
      <dc:date>2006-01-10T12:48:10Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle PL/SQL code running from UX shell script ???</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-pl-sql-code-running-from-ux-shell-script/m-p/3705364#M790282</link>
      <description>GOT IT :-)&lt;BR /&gt;&lt;BR /&gt;Thanks everyone !!!&lt;BR /&gt;&lt;BR /&gt;It turns out that the issue was the slash ( "/" )missing after the END; block :-)&lt;BR /&gt;&lt;BR /&gt;I am not sure why this did not work before, unless all I did was put the "/" after the exit !!!&lt;BR /&gt;&lt;BR /&gt;This was driving me nuts, and I really do appreciate all the help here.  Without your insight, I would be pulling all my hair out :-)&lt;BR /&gt;&lt;BR /&gt;Thanks a lot,&lt;BR /&gt;&lt;BR /&gt;Henrique</description>
      <pubDate>Tue, 10 Jan 2006 13:36:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-pl-sql-code-running-from-ux-shell-script/m-p/3705364#M790282</guid>
      <dc:creator>Henrique Silva_3</dc:creator>
      <dc:date>2006-01-10T13:36:53Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle PL/SQL code running from UX shell script ???</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-pl-sql-code-running-from-ux-shell-script/m-p/3705365#M790283</link>
      <description>Hi Henrique,&lt;BR /&gt;&lt;BR /&gt;I'm glad you got the solution. I had mentioned this in my very first post.&lt;BR /&gt;&lt;BR /&gt;&amp;gt;&amp;gt; ...you are missing the "end" statement followed by the forward slash "/" terminator for your PL/SQL block. &amp;lt;&amp;lt;&lt;BR /&gt;&lt;BR /&gt;cheers!&lt;BR /&gt;</description>
      <pubDate>Tue, 10 Jan 2006 17:46:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-pl-sql-code-running-from-ux-shell-script/m-p/3705365#M790283</guid>
      <dc:creator>Sandman!</dc:creator>
      <dc:date>2006-01-10T17:46:53Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle PL/SQL code running from UX shell script ???</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-pl-sql-code-running-from-ux-shell-script/m-p/3705366#M790284</link>
      <description>You are right !!&lt;BR /&gt;&lt;BR /&gt;I was putting the "/" after the exit, as opposed to after the END; block :-)&lt;BR /&gt;&lt;BR /&gt;Thanks a lot guys, &lt;BR /&gt;&lt;BR /&gt;Henrique&lt;BR /&gt;</description>
      <pubDate>Tue, 10 Jan 2006 17:52:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-pl-sql-code-running-from-ux-shell-script/m-p/3705366#M790284</guid>
      <dc:creator>Henrique Silva_3</dc:creator>
      <dc:date>2006-01-10T17:52:28Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle PL/SQL code running from UX shell script ???</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-pl-sql-code-running-from-ux-shell-script/m-p/3705367#M790285</link>
      <description>That is bonkers,&lt;BR /&gt;you know what I had this at least a couple &lt;BR /&gt;of times, just seemed to obvious.&lt;BR /&gt;that shows me !!!!&lt;BR /&gt;End well , all well</description>
      <pubDate>Wed, 11 Jan 2006 04:09:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-pl-sql-code-running-from-ux-shell-script/m-p/3705367#M790285</guid>
      <dc:creator>Frank de Vries</dc:creator>
      <dc:date>2006-01-11T04:09:16Z</dc:date>
    </item>
  </channel>
</rss>

