Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Interview Question
The following are a list of questions that I personnaly have come across, although I must admit that the interview for the my current job (as a contractor) contained no technical questions. It rested on this question:
How would you react if you were presented with the Tart of The Week Trophy in front of the whole office ???
Well, why not ?? Anyway, I've listed the ones I can remember, and I hasten to add that these were not all asked at just one interview.
PER_NAME VARCHAR2 (40) NOT NULL, PER_DOB DATE NOT NULL, PER_ADDRESS VARCHAR2 (100)
The age bands are < 20, 21 - 25, 26 - 30, 31 - 35, 36 - 50, > 50. How would you do it ?
5. In the development environment, programmers take local copies of the main tables and work on them so as not to trash one anothers test data. How would you take a copy of a table togther with triggers, constraints, indexes attached to it ?
6. How would you delete all rows from a table but retain its storage area ?
7. How would you run batch jobs in PL/SQL on UNIX but keep the username password hidden (dont say '/') from prying 'ps -efa' eyes ?
8, Consider the following:
SELECT a.policy_number,
b.policy_status
FROM policy a,
policy_state b
WHERE b.status_date =
( SELECT max(c.status_date) FROM policy_state c WHERE c.policy_number = a.policy_number )
How might you use indices and hints to improve the above query.
9. What are indicator variable used for (in Pro*C) ?
I think the last question is good for determining exactly the level of experience the interviewee has.
Let me know when a fully compiled list is available.
Regards
-- Saeed RanaReceived on Sat Jun 21 1997 - 00:00:00 CDT
![]() |
![]() |