Application Development 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: 

buffer is temprory storage Location?

laxman_sankhla3
Participant
0 Kudos

hi

buffer is temprory storage Location? or anythingelse.

why buffer is required.

how to use buffer.

thanks in advanced.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi

Yes it is a temp storage

apart from database.

first the record is fetched and stored for some time in Buffer.

Reward points if useful

Regards

Anji

5 REPLIES 5

Former Member
0 Kudos

Hi

Yes it is a temp storage

apart from database.

first the record is fetched and stored for some time in Buffer.

Reward points if useful

Regards

Anji

Former Member
0 Kudos

Former Member
0 Kudos

Hi Laxman,

Buffer is temporary storage location on Application server.

For ex: you read table MARA records in ur program, first time this data will be read from database, and a copy will be buffered in application server.

next time if you need same data the program will fetch it from Application server it self, rather going to Database server.

The main aim here is lessening the load on DATABASE Server, as it is a centralized and many appplication servers will be accessing.

- Satish

Former Member
0 Kudos

Hi

Buffer is a temporary storage location.The use of buffer is fast access of data only.Instead of going to database if the frequently data's are buffered we can save a lot of time, because retrieve data from database is always time consuming.While creating table in SE11 you can set buffer also.Goto technical setting, there you can see all the setting like whether buffer is required or not and also which type is buffer required etc..There you can see three types of bufferings,

1.single

2 Generic and

3.Full buffering...Click each function and press F1 you can see the detailed documentation and usage of this three buffers...

Reaward all Helpfull Answers....