DBMS 面试题与答案
Test your skills through the online practice test: DBMS Quiz Online Practice Test
相关差异对比
问题 71. What are stand-alone procedures?
Procedures that are not part of a package are known as stand-alone because they independently defined. A good example of a stand-alone procedure is one written in a SQL*Forms application. These types of procedures are not available for reference from other Oracle tools. Another limitation of stand-alone procedures is that they are compiled at run time, which slows execution.
这有帮助吗?
添加评论
查看评论
问题 72. What are cursors give different types of cursors?
PL/SQL uses cursors for all database information accesses statements. The language supports the use two types
of cursors
1.) Implicit
2.) Explicit
这有帮助吗?
添加评论
查看评论
问题 73. What is a foreign key, and what is it used for?
A foreign key is used to establish relationships among relations in the relational model. Technically, a foreign key is a column (or columns) appearing in one relation that is (are) the primary key of another table. Although there may be exceptions, the values in the foreign key columns usually must correspond to values existing in the set of primary key values. This correspondence requirement is created in a database using a referential integrity constraint on the foreign key.
这有帮助吗?
添加评论
查看评论
用户评价最有帮助的内容:
- What is database or database management systems (DBMS)?
- What is SQL?
- What's the difference between file and database? Can files qualify as a database?
- What are E-R diagrams?
- Whats difference between DBMS and RDBMS?