InterviewSolution
| 1. |
What Is The Basic Difference Internal Tables And Database Tables? |
|
Answer» The basic difference is database tables are stored in DB serverand the INTERNAL tables are VIRTUAL tables these are created RUN time only Internal tables are created dynamically, the memory of internal tables is not permant memory, for internal tables the memory will be created in the application server and it is EXTERNAL memory and terminates after the PROGRAM termination. The basic difference is database tables are stored in DB serverand the internal tables are virtual tables these are created run time only Internal tables are created dynamically, the memory of internal tables is not permant memory, for internal tables the memory will be created in the application server and it is external memory and terminates after the program termination. |
|