Resetting The Buffer in SAP
How to reset all the buffers of the particular instances?
Resetting buffers can significantly change the performance of the entire system for a long time. It should therefore only be used where there is a good reason to do so. Here is an overview of the buffers you're looking for: /$SYNC This resets all buffers of the application server
On which path should I run that command? You should run the command where you normally run the transaction. Is it different effects if I just restart our server? Because restarting our server also clearing the SAP buffer right? Restarting the buffer also cleans up the buffers. Sometimes resetting the buffers may lead to skipping of number ranges in certain transactions. But its very rare. And when buffers are reset, some transactions may take more time for it to be executed as it has to fetch the data from database. (its the same case if you restart the server). What is SQL Buffer? When the user send a request, an application has to be run supporting that particular request. This application(SQL appl.) is stored in the Shared SQL Buffer area in SGA .SQL buffer is shared by all the workprocess to run the process. In the documentation of function module EXIT_/SAPAPO/SAPLATPQ_010
there is the following statement:
The buffer area is the temporary storage area you would have defined for capturing the application logs. The log data are initially collected in local memory, and are then written to the database. This procedure speeds up processing and reduces the number of database accesses. It is also possible to write log data to the database individually, to avoid losing the log records collected up to that point in the event of termination of the application.The logged data can be read in the database and displayed on the screen. It is also possible to read and to display the log data which is buffered in local memory with a log number. You can capture the detailed information, either for the whole log or for each individual log msg in two ways:
In this way it is possible, for example, to save lists which can be displayed when the log is analyzed, with the help of the user exit and will ensure that you are not using values for other users.
SAP Basis Reference Books:
Back to Basis Menu:
Return to :-
(c) www.gotothings.com All material on this site is Copyright.
|