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

general....

Former Member
0 Likes
626

Hi,

A table is buffered. By select statement i dont want to get

the data from table buffer. i want to get the data from

database. how?

Thx in adv,

Reg,

Suresh Kumar.V

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
603

you can use

SELECT * FROM SPPROD INTO WA_SPPROD BYPASSING BUFFER WHERE PRODUCER = 'BOE'.

like this

regards

shiba dutta

Message was edited by:

SHIBA DUTTA

5 REPLIES 5
Read only

Former Member
0 Likes
604

you can use

SELECT * FROM SPPROD INTO WA_SPPROD BYPASSING BUFFER WHERE PRODUCER = 'BOE'.

like this

regards

shiba dutta

Message was edited by:

SHIBA DUTTA

Read only

Former Member
0 Likes
603

Hi,

Use the BYPASSING BUFFER addition..


SELECT * FROM ZTABLE BYPASSING BUFFER
             INTO TABLE T_ZTABLE
             

Thanks,

Naren

Read only

Former Member
0 Likes
603

hi Suresh,

Use<b> BYPASSING BUFFER</b> statement

SELECT * FROM <TABLE> BYPASSING BUFFER WHERE .... .

Refer

Read only

Former Member
0 Likes
603

Hi,

Normally we will use this by passing buffer for T tables to optimize the fetching.

Use statement BYPASSING BUFFER in the select statement.

Eg:

SELECT persg " Employee group

persk " Employee sub group

trfkz " ES grouping for collective agreement provision

FROM t503

BYPASSING BUFFER

INTO TABLE i_t503.

Regards,

Priyanka.

Read only

Former Member
0 Likes
603

Hi,

You can use the BYPASSING BUFFER addition in the seelect statement,

Reward points if it is helpful.

'

Regards,

Sangeetha.a