Questions about oracle Database Development

Source: Internet
Author: User

I recently attended 4 or 5 interviews to summarize the most common questions about competing for oracle development jobs:

1. What is the difference between delete and truncate?

1) truncate is a DDL statement and delete is a DML statement;

2) truncate is much faster than delete;

The reason is: When we perform the delete operation, all table data is first copied to the rollback tablespace, and the data size takes different time. However, truncate directly deletes data and does not roll back the tablespace.

3) connect to (2). This causes the delete data to be rolled back by running rollback, while truncate means permanent deletion and cannot be rolled back;

4) The truncate operation will not trigger the delete trigger on the table, but the delete operation will trigger normally;

5) The truncate statement does not contain the where condition, which means that only all data can be deleted, while the delete statement can delete some data;

6) The truncate operation resets the table's High Water Mark, but the delete operation does not.

Ps: high water level line HWM knowledge clear reference: http://blog.csdn.net/indexman/article/details/25910255

2. What is the three paradigm of database?

See http://blog.csdn.net/indexman/article/details/19907731

Coming soon!

------------------------------

Dylan Presents.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.