<?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: DBIF_DSQL2_SQL_ERROR when connect external database in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dbif-dsql2-sql-error-when-connect-external-database/m-p/1016246#M80104</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is very strange.&lt;/P&gt;&lt;P&gt;That code is exatly what I have now. The database is MSSQL.&lt;/P&gt;&lt;P&gt;When I stop the database or kill the processes manually, the next time I run it gives the error. No any process was created at this time in database. But if I run again it creates two processes and everthing is ok.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The sy-subrc after the connect is always 0, even in the situations that becomes in error (the dump refers to the line with the "insert").&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Andre Tomada&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 30 Aug 2005 12:01:41 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-08-30T12:01:41Z</dc:date>
    <item>
      <title>DBIF_DSQL2_SQL_ERROR when connect external database</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dbif-dsql2-sql-error-when-connect-external-database/m-p/1016241#M80099</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a program that does an insert query in an external database using open sql.&lt;/P&gt;&lt;P&gt;The code is something like this:&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;exec sql.&lt;/P&gt;&lt;P&gt; connect to 'MINERVA'&lt;/P&gt;&lt;P&gt;endexec.&lt;/P&gt;&lt;P&gt;exec sql.&lt;/P&gt;&lt;P&gt; insert into MY_TABLE values ( 'OK', 'XPTO' )&lt;/P&gt;&lt;P&gt; commit work&lt;/P&gt;&lt;P&gt;endexec.&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It works Ok. Althought, when I stop and start the external database, next time I run it happens a run time error 'DBIF_DSQL2_SQL_ERROR':&lt;/P&gt;&lt;P&gt;SQL error 11 occurred when executing EXEC SQL.&lt;/P&gt;&lt;P&gt;The error occurred in the current database connection "MINERVA".&lt;/P&gt;&lt;P&gt;Database error text........: "[DBNETLIB][ConnectionWrite (send()).]General&lt;/P&gt;&lt;P&gt; network error. Check your network documentation."                        &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The connection string is created in table DBCON.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyone as any ideia, why is this happening.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Andre Tomada&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Aug 2005 16:57:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dbif-dsql2-sql-error-when-connect-external-database/m-p/1016241#M80099</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-29T16:57:34Z</dc:date>
    </item>
    <item>
      <title>Re: DBIF_DSQL2_SQL_ERROR when connect external database</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dbif-dsql2-sql-error-when-connect-external-database/m-p/1016242#M80100</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello André,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you close the connection in you're program when you're done with it ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kind regards &lt;/P&gt;&lt;P&gt;Pieter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Aug 2005 08:44:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dbif-dsql2-sql-error-when-connect-external-database/m-p/1016242#M80100</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-30T08:44:59Z</dc:date>
    </item>
    <item>
      <title>Re: DBIF_DSQL2_SQL_ERROR when connect external database</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dbif-dsql2-sql-error-when-connect-external-database/m-p/1016243#M80101</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Pieter,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One of the tests I did was to close connection with this code:&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt;exec sql.&lt;/P&gt;&lt;P&gt;  disconnect 'MINERVA'&lt;/P&gt;&lt;P&gt;endexec.&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt;I don't know if it this correct way, the behaviour was the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Andre Tomada&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Aug 2005 08:54:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dbif-dsql2-sql-error-when-connect-external-database/m-p/1016243#M80101</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-30T08:54:20Z</dc:date>
    </item>
    <item>
      <title>Re: DBIF_DSQL2_SQL_ERROR when connect external database</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dbif-dsql2-sql-error-when-connect-external-database/m-p/1016244#M80102</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Andre,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This looks good, what DB system is this Minerva ? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pieter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Aug 2005 09:28:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dbif-dsql2-sql-error-when-connect-external-database/m-p/1016244#M80102</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-30T09:28:16Z</dc:date>
    </item>
    <item>
      <title>Re: DBIF_DSQL2_SQL_ERROR when connect external database</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dbif-dsql2-sql-error-when-connect-external-database/m-p/1016245#M80103</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;Recently we updated the External Database in the similar fashion.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please make note of below points before Testing.&lt;/P&gt;&lt;P&gt;A).Syntax should be as shown below:&lt;/P&gt;&lt;P&gt;1.Open connection &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONSTANTS:c_dbname(3)  TYPE c VALUE 'XYZ'.&lt;/P&gt;&lt;P&gt;"Database Connection&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Call Native SQL to connect&lt;/P&gt;&lt;P&gt;  EXEC SQL.&lt;/P&gt;&lt;P&gt;    CONNECT TO :C_DBNAME&lt;/P&gt;&lt;P&gt;  ENDEXEC.&lt;/P&gt;&lt;P&gt;*If Connection successful&lt;/P&gt;&lt;P&gt;  IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;    EXEC SQL.&lt;/P&gt;&lt;P&gt;      SET CONNECTION :C_DBNAME&lt;/P&gt;&lt;P&gt;    ENDEXEC.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.Insert &lt;/P&gt;&lt;P&gt;    EXEC SQL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     insert into external database table T_EXTERNAL_TABLE_NAME&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      insert into T_EXTERNAL_TABLE_NAME&lt;/P&gt;&lt;P&gt;                  (FIELD1,&lt;/P&gt;&lt;P&gt;                   FIELD2,&lt;/P&gt;&lt;P&gt;                   ..... &lt;/P&gt;&lt;P&gt;                   FIELD N)&lt;/P&gt;&lt;P&gt;                   values(:V_FIELD1,&lt;/P&gt;&lt;P&gt;                          :V_FIELD2,&lt;/P&gt;&lt;P&gt;                           .....&lt;/P&gt;&lt;P&gt;                          :V_FIELDN)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    ENDEXEC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3.Close connection &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  EXEC SQL.&lt;/P&gt;&lt;P&gt;    DISCONNECT :C_DBNAME&lt;/P&gt;&lt;P&gt;  ENDEXEC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;B)Make sure the connection has been set in Transaction DBC0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;c)Take care of datatypes and lengths while inserting.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Chandu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Aug 2005 09:33:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dbif-dsql2-sql-error-when-connect-external-database/m-p/1016245#M80103</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-30T09:33:48Z</dc:date>
    </item>
    <item>
      <title>Re: DBIF_DSQL2_SQL_ERROR when connect external database</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dbif-dsql2-sql-error-when-connect-external-database/m-p/1016246#M80104</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is very strange.&lt;/P&gt;&lt;P&gt;That code is exatly what I have now. The database is MSSQL.&lt;/P&gt;&lt;P&gt;When I stop the database or kill the processes manually, the next time I run it gives the error. No any process was created at this time in database. But if I run again it creates two processes and everthing is ok.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The sy-subrc after the connect is always 0, even in the situations that becomes in error (the dump refers to the line with the "insert").&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Andre Tomada&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Aug 2005 12:01:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dbif-dsql2-sql-error-when-connect-external-database/m-p/1016246#M80104</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-30T12:01:41Z</dc:date>
    </item>
    <item>
      <title>Re: DBIF_DSQL2_SQL_ERROR when connect external database</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dbif-dsql2-sql-error-when-connect-external-database/m-p/1016247#M80105</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;dear Andre Tomada &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am not able to help u out but the thing is that i have also get some requirement like ur to update my external data base in SQL, i have tried my best to do so, but not able to reach the expected results, if so how can u guide me how u have done this, the various steps of doing so, as now i have done thru very complex programs to achieve this, we are using SAP 6.20, &lt;/P&gt;&lt;P&gt;i will be thankful to u if u can send me the steps and necessary setiings involved in doing so at &amp;lt;b&amp;gt;abhiaries@yahoo.com&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;ur response will be very helpfulf to me&lt;/P&gt;&lt;P&gt;thanx in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;abhishek suppal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Aug 2005 12:10:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dbif-dsql2-sql-error-when-connect-external-database/m-p/1016247#M80105</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-30T12:10:37Z</dc:date>
    </item>
    <item>
      <title>Re: DBIF_DSQL2_SQL_ERROR when connect external database</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dbif-dsql2-sql-error-when-connect-external-database/m-p/1016248#M80106</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Can you tell why you are "stopping the database or killing the processes manually?".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you can paste the code,I guess I can help you out.&lt;/P&gt;&lt;P&gt;Errors can occur in this scenario's also:&lt;/P&gt;&lt;P&gt;1.Check if any date fields are their while inserting?if the value of date fields are initial.Pass space instead.&lt;/P&gt;&lt;P&gt;2.Also with out opening the Connection if you try to close it dumps at Close connection.&lt;/P&gt;&lt;P&gt;3.Try to pass fields in the same order as in External Database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks ,&lt;/P&gt;&lt;P&gt;Chandu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Aug 2005 12:45:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dbif-dsql2-sql-error-when-connect-external-database/m-p/1016248#M80106</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-30T12:45:26Z</dc:date>
    </item>
    <item>
      <title>Re: DBIF_DSQL2_SQL_ERROR when connect external database</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dbif-dsql2-sql-error-when-connect-external-database/m-p/1016249#M80107</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chandu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm stopping the database manually just to test the problem. The issue is that this is a diary process, and sporadically it can be done a restart to external server or database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The code as I have now, is very simple as you can see:&lt;/P&gt;&lt;P&gt;(I deleted only the comment lines)&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt;REPORT ZFI_FIM_CADEIA .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: timestamp(20).&lt;/P&gt;&lt;P&gt;data: date(10),&lt;/P&gt;&lt;P&gt;      time(10).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;constants: c_dbname(7) type c value 'MINERVA'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    exec sql.&lt;/P&gt;&lt;P&gt;      connect to :c_dbname&lt;/P&gt;&lt;P&gt;    endexec.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    if sy-subrc eq 0.&lt;/P&gt;&lt;P&gt;      exec sql.&lt;/P&gt;&lt;P&gt;        set connection :c_dbname&lt;/P&gt;&lt;P&gt;      endexec.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    exec sql.&lt;/P&gt;&lt;P&gt;     insert into minerva.gestao.dbo.TB_GS_SAPLOG001&lt;/P&gt;&lt;P&gt;           select 'OK' as sap_descritivo,&lt;/P&gt;&lt;P&gt;           cast(getdate() as smalldatetime) as sap_timestamp&lt;/P&gt;&lt;P&gt;     commit work&lt;/P&gt;&lt;P&gt;    endexec.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    exec sql.&lt;/P&gt;&lt;P&gt;      disconnect :c_dbname&lt;/P&gt;&lt;P&gt;    endexec.&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Everything runs Ok, the insert is well done. Except the first time I run after restart the database! Very strange! &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Andre Tomada&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Aug 2005 17:32:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dbif-dsql2-sql-error-when-connect-external-database/m-p/1016249#M80107</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-30T17:32:54Z</dc:date>
    </item>
    <item>
      <title>Re: DBIF_DSQL2_SQL_ERROR when connect external database</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dbif-dsql2-sql-error-when-connect-external-database/m-p/1016250#M80108</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Andre,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you tried turning on a trace as specified in oss-note 738371 ? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3.  If a connection fails or takes a very long time, the first place to&lt;/P&gt;&lt;P&gt;    look for errors is in the developer trace files&lt;/P&gt;&lt;P&gt;    (SID\DVEBMGS00\work\dev_w??).  The error messages will indicate&lt;/P&gt;&lt;P&gt;    which network protocol was attempted:&lt;/P&gt;&lt;P&gt;    [DBNMPNTW]ConnectionOpen&lt;/P&gt;&lt;P&gt;    for example means that named pipes were being used.  However the&lt;/P&gt;&lt;P&gt;    trace files don't show a lot of detail beyond that. To get a more&lt;/P&gt;&lt;P&gt;    detailed trace you can do the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    a) se38 -&amp;gt; Run program RSMSS_DBSL_PROFILE_SWITCH.  Choose to set&lt;/P&gt;&lt;P&gt;       profiling ON.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    b) Run the program that connects to the remote server and wait for&lt;/P&gt;&lt;P&gt;       it to fail.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    c) Run program RSMSS_DBSL_PROFILE_SWITCH again and turn profiling&lt;/P&gt;&lt;P&gt;       OFF. NEVER leave the profiling on for extended periods.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    Now new trace file(s) will exist in SID\DVEBMGS00\work named&lt;/P&gt;&lt;P&gt;    dbsl_w??. These files contain much more detail about the server&lt;/P&gt;&lt;P&gt;    name, and other connect options being used.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Aug 2005 08:38:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dbif-dsql2-sql-error-when-connect-external-database/m-p/1016250#M80108</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-31T08:38:20Z</dc:date>
    </item>
  </channel>
</rss>

