ORACLE EXP/IMP &DATAPUMP INTERVIEW QUESTIONS
- How can i make export faster?
- By using DIRECT=Y and BUFFER parameters
- Which process is responsible for writing data into dumpfile?
- Which process is responsible for writing data into dumpfile?
- What is the use of consistent=y parameter in export?
- It will take consistent values while taking export of a table
- What the parameter COMPRESS will do during export?
- During import, It will put entire data in a single extent
- How can we confirm that export dumpfile is valid?
- By using SHOW=Y option during import
- If you got a dumpfile to import and don’t know the fromuser, how you will get that information?
- We can check that in export log file. If not, we can do import with SHOW=Y which generates a log file. Fromuser will be there in that log file
- What precautions you will take t perform a schema exp/imp between a prod and dev database?
- We need to check if already user existing in dev database
- If so, drop the user (take DDL and permissions info well before) or drop all the objects
- What are the advantages of datapump over exp/imp?
- It is faster than exp/imp as we can use parallel and other options
- List all other from your class notes
- Can we import a 11g dumpfile into 10g database using datapump? If so, is it also possible between 10g and 9i?
- Yes we can import from 11g to 10g using VERSION option. This is not possible between 10g and 9i as datapump is not there in 9i
- We exported a table and imported into dev database. After checking we found table is residing in SYSTEM tablespace. What could be the reason?
- The user is having RESOURCE role assigned. If we assign RESOURCE role, it will give some quota on SYSTEM tablespace which is dangerous
- What you will do when export is running slow?
- We need to skip taking export of indexes, use BUFFER and DIRECT parameters
- Import process is running slow, what can you do now to make it faster?
- We can skip importing indexes as it is the most time taking job during import
- You are observing undo tablespace error during import, how you will avoid it?
- We can use COMMIT=Y option
Comments
Post a Comment