<?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: Is SQL faster than SE11? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/is-sql-faster-than-se11/m-p/2707600#M627396</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Rob.&lt;/P&gt;&lt;P&gt;I will try it, but I think since the data is too much, it is difficult to win performance...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But anyway thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 28 Aug 2007 06:42:03 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-28T06:42:03Z</dc:date>
    <item>
      <title>Is SQL faster than SE11?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/is-sql-faster-than-se11/m-p/2707589#M627385</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have a problem on using se11. Since the data in my table is more than 1 millard, when I use se11 or se16 to check how many data there is, it takes so long. Will it be faster if I user SQL Statement with ABAP&lt;/P&gt;&lt;P&gt;like &lt;/P&gt;&lt;P&gt;select max ()&lt;/P&gt;&lt;P&gt;from ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If not, how can I get the information (how many data there is and so on)as quickly as possible?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for any hint!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Liying&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Aug 2007 09:46:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/is-sql-faster-than-se11/m-p/2707589#M627385</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-27T09:46:59Z</dc:date>
    </item>
    <item>
      <title>Re: Is SQL faster than SE11?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/is-sql-faster-than-se11/m-p/2707590#M627386</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If there are millions of records , then write one SQL in a program and schedule that program in background and check the spool to check the no of records&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;select count(*) from ztablw.
write : "No of Records :" , sy-dbcnt.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;value of sy-dbcnt can be seen in spool output&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Aug 2007 09:53:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/is-sql-faster-than-se11/m-p/2707590#M627386</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-27T09:53:26Z</dc:date>
    </item>
    <item>
      <title>Re: Is SQL faster than SE11?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/is-sql-faster-than-se11/m-p/2707591#M627387</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Chandrasekhar Jagarlamudi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this might be helpful. But I'd like to get a maximum number of one field. Should the "Max" be used, isnt' it? How can I use it as fast as possible?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Aug 2007 10:06:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/is-sql-faster-than-se11/m-p/2707591#M627387</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-27T10:06:40Z</dc:date>
    </item>
    <item>
      <title>Re: Is SQL faster than SE11?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/is-sql-faster-than-se11/m-p/2707592#M627388</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How many records do you have in your table, 1.000.000 or 1.000.000.000????&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The maximum works in the same way as said, use max(field) instead of count(*).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is no way to get the maximum by SE11 or SE16.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Siegfried&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Aug 2007 10:47:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/is-sql-faster-than-se11/m-p/2707592#M627388</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-27T10:47:32Z</dc:date>
    </item>
    <item>
      <title>Re: Is SQL faster than SE11?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/is-sql-faster-than-se11/m-p/2707593#M627389</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;do u want to select the maximum value of a field, then you can try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT ZTEST.

DATA : V_CARRID LIKE SFLIGHT-CARRID.

SELECT MAX( CARRID ) FROM SFLIGHT INTO V_CARRID.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Aug 2007 10:53:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/is-sql-faster-than-se11/m-p/2707593#M627389</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-27T10:53:43Z</dc:date>
    </item>
    <item>
      <title>Re: Is SQL faster than SE11?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/is-sql-faster-than-se11/m-p/2707594#M627390</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;thanks, guys.&lt;/P&gt;&lt;P&gt;My problem is I have a table with more than 1,000,000,000 data. It take so long to get my expected information by using&lt;/P&gt;&lt;P&gt;SELECT MAX...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any more efficient way?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Aug 2007 11:02:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/is-sql-faster-than-se11/m-p/2707594#M627390</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-27T11:02:50Z</dc:date>
    </item>
    <item>
      <title>Re: Is SQL faster than SE11?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/is-sql-faster-than-se11/m-p/2707595#M627391</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in principle there is not better solution, 10e+9 (one billion) is extremely large.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Question: How important is your query in relation to other queries and changes going on on this tables. Tables become obviously only that large if there are a lot of inserts. The inserts are probably much more important than your query.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If not, then you could create an index with your field as first column.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And you need to know a reasonably large start-point.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select max (field)  from table&lt;/P&gt;&lt;P&gt;         where field &amp;gt; field_0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;could work faster. But you must be aware that the index costs database size and performance (inserts are slower). If your query is exeuted onyl once in a while, then it is better not to optimize it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check where data archiving is not the much better option!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Aug 2007 12:56:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/is-sql-faster-than-se11/m-p/2707595#M627391</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-27T12:56:34Z</dc:date>
    </item>
    <item>
      <title>Re: Is SQL faster than SE11?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/is-sql-faster-than-se11/m-p/2707596#M627392</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Siegfried,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the solution about "index" can not be used since it causes the performance problem during "Insert", as you said.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So from your opinion, it is not possible to improve it, isn't it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Liying&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Aug 2007 13:15:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/is-sql-faster-than-se11/m-p/2707596#M627392</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-27T13:15:01Z</dc:date>
    </item>
    <item>
      <title>Re: Is SQL faster than SE11?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/is-sql-faster-than-se11/m-p/2707597#M627393</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you need the max value for all table entries, there's no way to speed it up except maybe creating an index on that column (depending on it's type and amount of possible values, that may help or not). How many possible values does that column have? If it's a date field, an index may help, if it's a gender field (M/F), there's no use in creating it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Otherwise, it will always be a full table scan (which has a big performance cost).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Aug 2007 13:15:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/is-sql-faster-than-se11/m-p/2707597#M627393</guid>
      <dc:creator>alejandro_bindi</dc:creator>
      <dc:date>2007-08-27T13:15:36Z</dc:date>
    </item>
    <item>
      <title>Re: Is SQL faster than SE11?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/is-sql-faster-than-se11/m-p/2707598#M627394</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Alejandro Bindi ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think I got the answer: it is not possible to improve the performance except to create an index. Although it is a sad news, thanks for your help so much.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Aug 2007 13:20:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/is-sql-faster-than-se11/m-p/2707598#M627394</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-27T13:20:48Z</dc:date>
    </item>
    <item>
      <title>Re: Is SQL faster than SE11?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/is-sql-faster-than-se11/m-p/2707599#M627395</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't know if this is faster than SELECT MAX, but you can give it a try:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
REPORT ztest LINE-SIZE 80 MESSAGE-ID 00.

TABLES: bsis.

SELECT dmbtr
  FROM bsis
  INTO bsis-dmbtr
  UP TO 1 ROWS
  ORDER BY dmbtr DESCENDING.
  WRITE: /001 bsis-dmbtr.
ENDSELECT.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Later, I ran a small test of this code against SELECT MAX with the performance trace turned on. The results (of the EXPLAIN) were almost identical.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, for aggregate functions (like MAX) buffering is turned off, so my approach may be slightly faster.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyway, try it and see.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Rob Burbank&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Aug 2007 22:09:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/is-sql-faster-than-se11/m-p/2707599#M627395</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-27T22:09:22Z</dc:date>
    </item>
    <item>
      <title>Re: Is SQL faster than SE11?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/is-sql-faster-than-se11/m-p/2707600#M627396</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Rob.&lt;/P&gt;&lt;P&gt;I will try it, but I think since the data is too much, it is difficult to win performance...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But anyway thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Aug 2007 06:42:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/is-sql-faster-than-se11/m-p/2707600#M627396</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-28T06:42:03Z</dc:date>
    </item>
    <item>
      <title>Re: Is SQL faster than SE11?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/is-sql-faster-than-se11/m-p/2707601#M627397</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;the trick with the up to 1 rows plus order by will not work, because the order by must be processed first, and then there is any way only one record coming back.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check data archiving, one billion records is anyway extremely large for a table, usual large table have 1 to 10 million records.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Siegfried&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Aug 2007 07:14:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/is-sql-faster-than-se11/m-p/2707601#M627397</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-28T07:14:13Z</dc:date>
    </item>
    <item>
      <title>Re: Is SQL faster than SE11?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/is-sql-faster-than-se11/m-p/2707602#M627398</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Siegfried,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what do u you mean "willl no work"? Do you mean the performance will not be improved, don't you? Because it works actully, but until now I am not able to transport to producitve system to test the performance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know the data is too much, and the reason is our data model. Until our data model will be changed, I am afraid we have to keep these data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Aug 2007 08:04:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/is-sql-faster-than-se11/m-p/2707602#M627398</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-28T08:04:42Z</dc:date>
    </item>
    <item>
      <title>Re: Is SQL faster than SE11?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/is-sql-faster-than-se11/m-p/2707603#M627399</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Siegfried - I tested after I posted. The results were almost identical. Can you show an example where it doesn't work?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Aug 2007 13:08:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/is-sql-faster-than-se11/m-p/2707603#M627399</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-28T13:08:53Z</dc:date>
    </item>
    <item>
      <title>Re: Is SQL faster than SE11?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/is-sql-faster-than-se11/m-p/2707604#M627400</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think what he meant is that it won't enhance performance neither, i.e. optimization won't work, the query is valid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Aug 2007 14:00:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/is-sql-faster-than-se11/m-p/2707604#M627400</guid>
      <dc:creator>alejandro_bindi</dc:creator>
      <dc:date>2007-08-28T14:00:01Z</dc:date>
    </item>
    <item>
      <title>Re: Is SQL faster than SE11?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/is-sql-faster-than-se11/m-p/2707605#M627401</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes of course, the statement is o.k., but the trick (the improvement) will not work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Siegfried&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Aug 2007 14:38:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/is-sql-faster-than-se11/m-p/2707605#M627401</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-28T14:38:18Z</dc:date>
    </item>
    <item>
      <title>Re: Is SQL faster than SE11?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/is-sql-faster-than-se11/m-p/2707606#M627402</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, the "trick" was that buffering is turned off for the aggregate function, but I don't think it is for the ORDER BY. My thinking is that it might give a slight statistical improvement. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My testing didn't show any, but it will be up to the original poster to decide how to proceed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Aug 2007 15:23:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/is-sql-faster-than-se11/m-p/2707606#M627402</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-28T15:23:54Z</dc:date>
    </item>
    <item>
      <title>Re: Is SQL faster than SE11?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/is-sql-faster-than-se11/m-p/2707607#M627403</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks u guys!&lt;/P&gt;&lt;P&gt;I will post the result here if I am possible to use Robs'  suggestion.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Aug 2007 15:27:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/is-sql-faster-than-se11/m-p/2707607#M627403</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-28T15:27:04Z</dc:date>
    </item>
    <item>
      <title>Re: Is SQL faster than SE11?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/is-sql-faster-than-se11/m-p/2707608#M627404</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes Rob, buffering is off for ORDER BY:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/aa/4734a00f1c11d295380000e8353423/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/aa/4734a00f1c11d295380000e8353423/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;The SELECT statement bypasses the buffer when you use any of the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;The BYPASSING BUFFER addition in the FROM clause&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;The DISTINCT addition in the SELECT clause&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Aggregate expressions in the SELECT clause&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Joins in the FROM clause&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;The IS NULL condition in the WHERE clause&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Subqueries in the WHERE clause&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;The ORDER BY clause&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;The GROUP BY clause&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;The FOR UPDATE addition&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No harm to try tough.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Aug 2007 15:55:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/is-sql-faster-than-se11/m-p/2707608#M627404</guid>
      <dc:creator>alejandro_bindi</dc:creator>
      <dc:date>2007-08-28T15:55:27Z</dc:date>
    </item>
  </channel>
</rss>

