Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Regarding select Statement

Former Member
0 Kudos
167

Dear Friends,

How to fetch data from data base table directly instead of table buffer.Plz give me one example.

Thanks in advance...

1 ACCEPTED SOLUTION
Read only

Former Member
0 Kudos
132

This is the syntax that incorporates bypassing buffer addition, in order to read data directly from database

Select... FROM { {dbtab [AS tabalias]}

| join

| {(dbtab_syntax) [AS tabalias]} }

[UP TO n ROWS]

[CLIENT SPECIFIED]

[BYPASSING BUFFER]

3 REPLIES 3
Read only

Former Member
0 Kudos
132

In SE38,Press F1 on BYPASSING BUFFER.You have to use this with select clause.

Edited by: Harsh Bhalla on Nov 26, 2009 9:31 AM

Read only

Former Member
0 Kudos
133

This is the syntax that incorporates bypassing buffer addition, in order to read data directly from database

Select... FROM { {dbtab [AS tabalias]}

| join

| {(dbtab_syntax) [AS tabalias]} }

[UP TO n ROWS]

[CLIENT SPECIFIED]

[BYPASSING BUFFER]

Read only

former_member156446
Active Contributor
0 Kudos
132

the advantage of using buffer tables ( transparent tables) is the concept of buffer why do you want to not select using buffer... if you by pass buffer the load might be higher on database... make sure you know what you are doing.