

InterviewSolution
Saved Bookmarks
1. |
Which of the following object types below cannot be replicated?(a) Data(b) Trigger(c) View(d) SequenceI had been asked this question at a job interview.This interesting question is from Storing and Guarding the Data in chapter Oracle Database 11g Architecture Options of Oracle |
Answer» <html><body><p>Correct option is (d) <a href="https://interviewquestions.tuteehub.com/tag/sequence-1201556" style="font-weight:bold;" target="_blank" title="Click to know more about SEQUENCE">SEQUENCE</a><br/><br/>To elaborate: Use the <a href="https://interviewquestions.tuteehub.com/tag/create-427332" style="font-weight:bold;" target="_blank" title="Click to know more about CREATE">CREATE</a> SEQUENCE <a href="https://interviewquestions.tuteehub.com/tag/statement-16478" style="font-weight:bold;" target="_blank" title="Click to know more about STATEMENT">STATEMENT</a> to create a sequence, which is a database object from which multiple users <a href="https://interviewquestions.tuteehub.com/tag/may-557248" style="font-weight:bold;" target="_blank" title="Click to know more about MAY">MAY</a> generate unique integers. You can use sequences to automatically generate primary key values.</p></body></html> | |