A table is bufferd. By select statement i dont want to get the data from table buffer. i want to get thae data from database. how?

Showing Answers 1 - 3 of 3 Answers

Murali Krishna

  • Jun 23rd, 2006
 

 If buffering is allowed for a table in the ABAP Dictionary, the SELECT statement always reads the data from the buffer in the database interface of the current application server. To read data directly from the database table instead of from the buffer, use the following:

SELECT... FROM <tables> BYPASSING BUFFER. ..

This addition guarantees that the data you read is the most up to date. However, as a rule, only data that does not change frequently should be buffered, and using the buffer where appropriate improves performance. You should therefore only use this option where really necessary.

  Was this answer useful?  Yes

Murali Krishna

  • Jun 23rd, 2006
 

 If buffering is allowed for a table in the ABAP Dictionary, the SELECT statement always reads the data from the buffer in the database interface of the current application server. To read data directly from the database table instead of from the buffer, use the following:

SELECT... FROM <tables> BYPASSING BUFFER. ..

This addition guarantees that the data you read is the most up to date. However, as a rule, only data that does not change frequently should be buffered, and using the buffer where appropriate improves performance. You should therefore only use this option where really necessary.

  Was this answer useful?  Yes

sri

  • Sep 9th, 2006
 

SELECT * FROM TABLE BYPASS BUFFERING

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions