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: 

Regarding select Statement

Former Member
0 Kudos
160

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

Former Member
0 Kudos
125

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

Former Member
0 Kudos
125

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

Former Member
0 Kudos
126

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]

former_member156446
Active Contributor
0 Kudos
125

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.