2007 Mar 07 6:12 PM
Can we perform a direct db read from a buffered db table. If yes how? thxn in advance
2007 Mar 07 6:15 PM
2007 Mar 07 6:15 PM
2007 Mar 07 6:21 PM
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
2007 Mar 07 6:25 PM
2007 Mar 07 6:27 PM
2007 Mar 07 6:29 PM
2007 Mar 07 6:24 PM
"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.