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

Buffer mgnt

Former Member
0 Likes
758

Can we perform a direct db read from a buffered db table. If yes how? thxn in advance

1 ACCEPTED SOLUTION
Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
735

Isn't this handled automatically by the runtime?

Regards,

Rich Heilman

6 REPLIES 6
Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
736

Isn't this handled automatically by the runtime?

Regards,

Rich Heilman

Read only

Former Member
0 Likes
735

1. Use BYPASSING BUFFER option:

SELECT ... FROM tables options ...

In tables, you specify the names of database tables and define joins.

In options, you can specify the following:

· CLIENT SPECIFIED to disable automatic client handling

· BYPASSING BUFFER to disable data buffering

2. Use native SQL EXEC - ENDEXEC

Read only

0 Likes
735

Oh, I guess that I read the question backwards.

Regards,

RIch Heilman

Read only

0 Likes
735

thanks vishnu

vijayendra

Read only

0 Likes
735

Don't think my my answer solved your problem, please assign the 10 points to Vishnu. Thanks.

Regards,

RIch Heilman

Read only

Former Member
0 Likes
735

"By pass buffer" is the best option in the select query will provide the provision that the data cann't be read from the buffer .it takes data from the table.