<?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: Standard Program (SQ02) hangs @ delete statement in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/standard-program-sq02-hangs-delete-statement/m-p/974169#M70433</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;Check with the delete satatement&lt;/P&gt;&lt;P&gt;DELETE FROM dbtab WHERE cond. &lt;/P&gt;&lt;P&gt;DELETE FROM (dbtabname) WHERE cond. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;delete from aqgdb where relid = 'AQ'&lt;/P&gt;&lt;P&gt;and srtfd &amp;lt;b&amp;gt;like&amp;lt;/b&amp;gt; l_sukeylang. Like is not recommended with in delete right?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 29 Jun 2005 12:46:10 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-06-29T12:46:10Z</dc:date>
    <item>
      <title>Standard Program (SQ02) hangs @ delete statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/standard-program-sq02-hangs-delete-statement/m-p/974166#M70430</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 have problem when i try to display a infoset @ SQ02, when i debug it, it hangs @ this statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    delete from aqgdb where relid = 'AQ'&lt;/P&gt;&lt;P&gt;                        and srtfd like l_sukeylang.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea what could be wrong? AQGDB is not a big table, and i try selecting from SE16 with the same select statement, it is fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;CK&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jun 2005 08:49:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/standard-program-sq02-hangs-delete-statement/m-p/974166#M70430</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-29T08:49:35Z</dc:date>
    </item>
    <item>
      <title>Re: Standard Program (SQ02) hangs @ delete statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/standard-program-sq02-hangs-delete-statement/m-p/974167#M70431</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One explanation could be that srtfd is a 60Char field and a 'like' clause in the sql is going to take long (if it tries to match through the string for each record).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SE16 may be working because of its row-count limit (200/500 etc). You can probably remove this row-count to read all records (also specify a &lt;STRONG&gt;str&lt;/STRONG&gt; value which is not normally to be found in aqgdb-srtfd, this will make it take longer).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jun 2005 09:03:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/standard-program-sq02-hangs-delete-statement/m-p/974167#M70431</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-29T09:03:15Z</dc:date>
    </item>
    <item>
      <title>Re: Standard Program (SQ02) hangs @ delete statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/standard-program-sq02-hangs-delete-statement/m-p/974168#M70432</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But the this table in my system has only 63 records. It shouldn't take that long either, it juz seem to hang @ this statement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jun 2005 09:20:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/standard-program-sq02-hangs-delete-statement/m-p/974168#M70432</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-29T09:20:09Z</dc:date>
    </item>
    <item>
      <title>Re: Standard Program (SQ02) hangs @ delete statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/standard-program-sq02-hangs-delete-statement/m-p/974169#M70433</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;Check with the delete satatement&lt;/P&gt;&lt;P&gt;DELETE FROM dbtab WHERE cond. &lt;/P&gt;&lt;P&gt;DELETE FROM (dbtabname) WHERE cond. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;delete from aqgdb where relid = 'AQ'&lt;/P&gt;&lt;P&gt;and srtfd &amp;lt;b&amp;gt;like&amp;lt;/b&amp;gt; l_sukeylang. Like is not recommended with in delete right?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jun 2005 12:46:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/standard-program-sq02-hangs-delete-statement/m-p/974169#M70433</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-29T12:46:10Z</dc:date>
    </item>
  </channel>
</rss>

