T) Explain the differences between api & utility mode?
- Get link
- X
- Other Apps
Answer 1:
- When u load the data into a table in Utility mode all the constraints are disabled & then data is loaded which leads to faster access. During API Mode constraints will be enabled so that the access will be slow.
Answer 2:
- API & UTILITY are two possible interfaces to connect to the db’s to perform certain user specific tasks. These interfaces allow the user to access or use certain functions (provided by the db vendor) to perform operation on db’s. The functionality of each of these interfaces depends on db’s. API has more flexibility but often considered as a slower process as compared to UTILITY mode. Well the trade off is their performance and usage.
Answer 3:
- API mode is more diagnostic purpose for retrieving data from db means like selecting particular fields like retrieving the data relatively according to the constraints. Whenever we select API we will get the option of ablocal expression (ab_exp) every time where ever record is passing it will look for the query we write in that ablocal expression block then it will send. That is why it’s slow. Where as utility is like retrieving the data fields without any constraints or any conditions that is why it is fast.
Answer 4:
- In API mode data processing(load/update/insert/delete) is slow however other process can access the database tables during the update. Compared to above Utility mode processing(load/update/insert/delete) goes faster as it handles data records in large chunks however during that time no other process can access db table i.e. the process running in Utility mode locks the table/owns exclusive ownership of that db instance. In cross functional & largely distributed organizations API mode is recommended considering the performance aspect over Utility mode. For one time loads/initialization of huge volume data in tables Utility mode can be used.
Ab Initio
Ab Initio Architecture
API Mode
Co>Operating System
Data Processing Modes
ETL Performance
GDE Configuration
graph execution
Parallel Processing
Utility Mode
- Get link
- X
- Other Apps
Comments
Post a Comment