In a few days I will have a interview for a job as Oracle Administrator Junior. Do you have any tips on some specific knowledge on Oracle that would help me? Right know I have studied more in general like: sql: inner query, join query, view,... and database design: entity relationship, object oriented.

link|improve this question
2  
You may want to avoid saying phrases like "high-end architecture" in the interview – skaffman Dec 10 '10 at 12:15
1  
If I employed someone I'd ask them about how to list all views in database through sqlplus – damir Dec 10 '10 at 12:24
+1, I meant like SAN or NAS – Pietro Dec 10 '10 at 12:26
feedback

migrated from stackoverflow.com Dec 10 '10 at 13:11

This question came from our site for professional and enthusiast programmers.

2 Answers

up vote 5 down vote accepted

Some fairly routine DBA tasks that you should become familiar with:

  1. Importing/Exporting databases (Just so you are aware there are two methods - the "old" way, which is normally just referred to as "import or export", and a tool called Data Pump, which is immensely faster for large databases. It is only available on Oracle Database 10g and higher though)
  2. Monitoring Instance Performance (Oracle Enterprise Manager helps a ton with this)
  3. Familiarize yourself with some of the DBA_XXXXX and V$XXXXXXXX views. These are incredibly helpful in troubleshooting. *I would start with DBA_TABLES, DBA_TAB_COLUMNS and V$SESSION for some basics. Then let your imagination just go. The ALL_SOURCE view is also very handy.*

A question to ask in the interview is "Does your company have an Oracle support contract?". You need a contract with Oracle so you can get access to GOOD support when you need it. There are lots of places on the net to get help, but I've found Oracle Support to be the easiest most of the time when you are completely stuck. (Ha, no I'm not a salesperson for Oracle)

link|improve this answer
feedback

Don't pretend you know everything, if you don't know the answer say so. IMO the most important qualities for a junior DBA are:

  1. eagerness to learn
  2. not be afraid to ask questions
  3. know where to get your information
link|improve this answer
1  
+1, know where to get information – Pietro Dec 10 '10 at 13:09
Really like your answer, Robert! – 3molo Dec 10 '10 at 13:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.