Oracle 面试宝典 - General Questions

  • 转自 http://www.orafaq.com/wiki/Interview_Questions
  • Tell us about yourself/ your background.
  • What are the three major characteristics that you bring to the job market?
  • What motivates you to do a good job?
  • What two or three things are most important to you at work?
  • What qualities do you think are essential to be successful in this kind of work?
  • What courses did you attend? What job certifications do you hold?
  • What subjects/courses did you excel in? Why?
  • What subjects/courses gave you trouble? Why?
  • How does your previous work experience prepare you for this position?
  • How do you define ‘success‘?
  • What has been your most significant accomplishment to date?
  • Describe a challenge you encountered and how you dealt with it.
  • Describe a failure and how you dealt with it.
  • Describe the ‘ideal‘ job... the ‘ideal‘ supervisor.
  • What leadership roles have you held?
  • What prejudices do you hold?
  • What do you like to do in your spare time?
  • What are your career goals (a) 3 years from now; (b) 10 years from now?
  • How does this position match your career goals?
  • What have you done in the past year to improve yourself?
  • In what areas do you feel you need further education and training to be successful?
  • What do you know about our company?
  • Why do you want to work for this company. Why should we hire you?
  • Where do you see yourself fitting in to this organization ...initially? ...in 5 years?
  • Why are you looking for a new job?
  • How do you feel about re-locating?
  • Are you willing to travel?
  • What are your salary requirements?
  • When would you be available to start if you were selected?
时间: 2024-07-31 15:35:38

Oracle 面试宝典 - General Questions的相关文章

Oracle 面试宝典 - 4

1. A tablespace has a table with 30 extents in it. Is this bad? Why or why not. Multiple extents in and of themselves aren?t bad. However if you also have chained rows this can hurt performance. 2. How do you set up tablespaces during an Oracle insta

Oracle 面试宝典 - 3

1. Describe the difference between a procedure, function and anonymous pl/sql block.  Candidate should mention use of DECLARE statement, a function must return a value while a procedure doesn't have to. 2. What is a mutating table error and how can y

Oracle 面试宝典 - 1

1. Explain the difference between a hot backup and a cold backup and the benefits associated with each. A hot backup is basically taking a backup of the database while it is still up and running and it must be in archive log mode. A cold backup is ta

Oracle 面试宝典 - 5

1. Give one method for transferring a table from one schema to another: There are several possible methods, export-import, CREATE TABLE... AS SELECT, or COPY. 2. What is the purpose of the IMPORT option IGNORE? What is it?s default setting The IMPORT

Oracle 面试宝典 - 2

1. How would you determine the time zone under which a database was operating? SELECT dbtimezone FROM DUAL; 2. Explain the use of setting GLOBAL_NAMES equal to TRUE. It ensure the use of consistent naming conventions for databases and links in a netw

Oracle 面试宝典 - 6

1. How can variables be passed to a SQL routine By use of the & symbol. For passing in variables the numbers 1-8 can be used (&1, &2,...,&8) to pass the values after the command into the SQLPLUS session. To be prompted for a specific varia

Oracle 面试宝典 - 7

1. What is a CO-RELATED SUBQUERY A CO-RELATED SUBQUERY is one that has a correlation name as table or view designator in the FROM clause of the outer query and the same correlation name as a qualifier of a search condition in the WHERE clause of the

Oracle 面试宝典 - 8

1. What is a pseudo column. Give some examples It is a column that is not an actual column in the table. eg USER, UID, SYSDATE, ROWNUM, ROWID, NULL, AND LEVEL. Suppose customer table is there having different columns like customer no, payments.What w

Java面试宝典2013版(超长版)

一. Java基础部分......................................................................................................2 1.一个".java"源文件里能否够包含多个类(不是内部类)?有什么限制?.....2 2.Java有没有goto?........................................................................