‎2007 Aug 07 6:22 AM
Dear friends,
Please tell me the difference between "Select single* and Select up to 1 row".
Which one gives better performance?
Best regards.
Sailu.
‎2007 Aug 07 6:23 AM
Hi
Difference Between Select Single and Select UpTo One Rows
According to SAP Performance course the SELECT UP TO 1 ROWS is faster than SELECT SINGLE because you are not using all the primary key fields.
select single is a construct designed to read database records with primary key. In the absence of the primary key, it might end up doing a sequential search, whereas the select up to 1 rows may assume that there is no primary key supplied and will try to find most suitable index.
The best way to find out is through sql trace or runtime analysis.
Use "select up to 1 rows" only if you are sure that all the records returned will have the same value for the field(s) you are interested in. If not, you will be reading only the first record which matches the criteria, but may be the second or the third record has the value you are looking for.
The System test result showed that the variant Single * takes less time than Up to 1 rows as there is an additional level for COUNT STOP KEY for SELECT ENDSELECT UP TO 1 ROWS.
The 'SELECT SINGLE' statement selects the first row in the database that it finds that fulfils the 'WHERE' clause If this results in multiple records then only the first one will be returned and therefore may not be unique.
Mainly: to read data from
The 'SELECT .... UP TO 1 ROWS' statement is subtly different. The database selects all of the relevant records that are defined by the WHERE clause, applies any aggregate, ordering or grouping functions to them and then returns the first record of the result set.
Mainly: to check if entries exist.
<b>Reward points for useful Answers</b>
Regards
Anji
‎2007 Aug 07 6:34 AM
Hi,
In real time,
we use select single---- when we are retrieving a field/fields from a table which is/are primary key..
Eg; select single matnr werks from MARC ...........
In above bott MATNR and WERKS are primary Key.. so we are using select single..
Here usng select single gives better performance
We use select upto 1 rows when the field/fields retrieving from a table are part of primary key.
Eg: select werks from marc upto 1 rows..... end select.
In above both MATNR and WERKs are primary key but we are retrieving only werks so we use Select upto one rows..
Here usng select upto 1 rows gives better performance..
Performance depends on the type we retrieve.Both statements gives better performance according to their usage
rewards if useful,
regards,
nazeer
null
‎2007 Aug 07 6:42 AM
Hi,
both of them will do the same functionality but select single is better in performance wise to select a single record.
select *...up to 1 rows need endselect whereas select single will not have endselect.
rgds,
bharat.
‎2007 Aug 07 6:42 AM
Hi
A lot of people use the SELECT SINGLE statement to check for the existence of a value in a database prior to running a large report. Select singles are also used to look up values from a database where that value is going to be constant for the duration of the program run, or the value is being used to validate some user entry.
Other people prefer to use the 'UP TO 1 ROWS' variant of the SELECT statement.
So what's the difference between using 'SELECT SINGLE' statement as against a 'SELECT .... UP TO 1 ROWS' statement ?
If you're considering the statements
Code:
SELECT SINGLE field
INTO w_field
FROM table.
and
Code:
SELECT field
INTO w_field
FROM table
UP TO 1 ROWS.
ENDSELECT.
then looking at the result, not much apart from the extra ENDSELECT statement. Look at the run time and memeory usage and they may be worlds apart.
Why is this ?? The answer is simple.
The 'SELECT SINGLE' statement selects the first row in the database that it finds that fulfils the 'WHERE' clause If this results in multiple records then only the first one will be returned and therefore may not be unique.
The 'SELECT .... UP TO 1 ROWS' statement is subtly different. The database selects all of the relevant records that are defined by the WHERE clause or lack of, applies any aggregate, ordering or grouping functions to them and then returns the first record of the resultant result set.
Get the difference ??
If not, then create a Ztable called ZDifference with 2 fields in it, MANDT of type MANDT and POSNR of type POSNR. Make sure both of these are keys. Also create a table maintenance dialog for it (SE11->Utilities->Table Maintenance Generator). Fill the table with ten rows 000001-000010.
Then run the program shown below:
Code:
Program: Z_Difference
Purpose: A program that demonstrates the difference
between SELECT SINGLE and SELECT UP TO n ROWS.
This program requires the data table Z_DIFFERENCE
to have been created according to the structure
outlined in the text above and populated with
at least 10 records.
Creation Date: 21/04/2004
Requested By:
Reference Doc:
Author: R Harper
Modification History:
Date Reason Transport Who
Report Z_Difference
Message-id 38
Line-Size 80
Line-Count 0
No Standard Page Heading.
Start-Of-Selection.
Data: w_Single type Posnr,
t_Rows type standard table of Posnr
initial size 0
with header line.
Select single Posnr
from zDifference
into w_Single.
Select Posnr
into table t_Rows
from zDifference
up to 1 rows
order by Posnr descending.
Write 😕 'Select single:', w_Single.
Skip 1.
Write 😕 'Up to 1 rows :'.
Loop at t_Rows.
Write t_Rows.
EndLoop.
You should see the output:
Code:
Select single: 000001
Up to 1 rows : 000010
The first 'SELECT' statement has selected the first record in the database according to any selection criteria in the 'WHERE' clause. This is what a 'SELECT SINGLE' does. The second 'SELECT' has asked the database to reverse the order of the records before returning the first row of the result.
In order to be able to do this the database has read the entire table, sort it and then return the first record. If there was no ORDER BY clause then the results would have been identical (ie both '000001') but the second select if given a big enough table to look at would be far slower.
Now. This causes a problem in the Extended Program Check in that if the full key is not specified in a 'SELECT SINGLE' you get a message like this:
Quote:
Program: Z_DIFFERENCE Line : 39
Syntax check warning
This warning is only displayed in SLIN.
Select single Posnr
^
Messages:
In "SELECT SINGLE ...", the WHERE condition for the key field "POSNR" does not test for equality. Therefore, the single record you are searching for may not be unique.
If you haven't specified a full key and your QA person is complaining that your Extended Check has warnings tell him
"Yes. I can get rid of the warning but the program will run slower and consume more memory."
You could always tell him to "Get Lost" but it's always better to have a valid reason before you do that!
Reward all helpfull answers
Regards
Pavan