1.Explain inner and outer joins?
2.Explain a sub-query? How does a sub-query impact on performance?
http://blog.csdn.net/AJAXBloger/article/details/1764506
3.What is normalization? When to denormalize?
4.How do you implement one-to-one, one-to-many and many-to-many relationships while designing tables?
一对多关系
一对多关系是最普通的一种关系。在这种关系中,A 表中的一行可以匹配 B 表中的多行,但是 B 表中的一行只能匹配 A 表中的一行。例如,publishers 和 titles 表之间具有一对多关系:每个出版社出版很多书,但是每本书名只能出自一个出版社。
只有当一个相关列是一个主键或具有唯一约束时,才能创建一对多关系。
多对多关系
在多对多关系中,A 表中的一行可以匹配 B 表中的多行,反之亦然。要创建这种关系,需要定义第三个表,称为结合表,它的主键由 A 表和 B 表的外部键组成。例如,authors 和 titles 表具有多对多关系,这是由于这些表都与 titleauthors 表具有一对多关系。titleauthors 表的主键是 au_id 列(authors 表的主键)和 title_id 列(titles 表的主键)的组合。
一对一关系
在一对一关系中,A 表中的一行最多只能匹配于 B 表中的一行,反之亦然。如果相关列都是主键或都具有唯一约束,则可以创建一对一关系。
这种关系并不常见,因为一般来说,按照这种方式相关的信息都在一个表中。可以利用一对一关系来:
分割具有多列的表。
由于安全原因而隔离表的一部分。
保存临时的数据,并且可以毫不费力地通过删除该表而删除这些数据。
保存只适用于主表的子集的信息。
http://blog.csdn.net/qking93415981/article/details/1774753
5.How will you map objects to a relational database? How will you map class inheritance to relational data model?
http://blog.csdn.net/chho/article/details/254669
http://blog.csdn.net/chho/article/details/254670
6.What is a view? Why will you use a view? What is an aggregate function?
http://baike.baidu.com/view/71981.htm
7.What is a database trigger?
8.What's the difference between a primary key and a unique key?
Primary key在建立的时候会默认地建立此field的索引,
且此primary key可以作为作为另外的表的foreign key,
再者primary key跟unique得区别是
Primary key 一定是not null,
而unique则没有此限制
9.What are constraints? Explain different types of constraints.
完整性约束用于增强数据的完整性,Oracle提供了5种完整性约束:
Check
NOT NULL
Unique
Primary
Foreign key
http://blog.csdn.net/wenbingcai/article/details/4054054
10.What is an index? What are the types of indexes? How many clustered indexes can be created on a table? What are the advantages and disadvantages of creating separate index on each column of a table?
最大区别在于clustered是物理上实现数据排序,并且同一个表里只能有一个clustered索引,而nonclustered是逻辑上的排序。
There are clustered and nonclustered indexes. A clustered index is a special type of index that reorders the way records in the table are physically stored. Therefore table can have only one clustered index. The leaf nodes of a clustered index contain the data pages.
A nonclustered index is a special type of index in which the logical order of the index does not match the physical stored order of the rows on disk. The leaf node of a nonclustered index does not consist of the data pages. Instead, the leaf nodes contain index rows.
11.What is procedure? why we are using the procedure?
http://baike.baidu.com/view/68525.htm
12.What is trigger? How many trigger define on a table?
http://baike.baidu.com/view/71792.htm
分享到:
相关推荐
Oracle Database Administration Interview Questions
Oracle Database Administration Interview Questions.zip Oracle Database Administration Interview Questions.zip Oracle Database Administration Interview Questions.zip
In addition, questions are also included at the end of each of the six steps and one of the previous case studies has been replaced, making the case study selection more diverse. Six-Step Relational...
内容简介 《数据库处理:基础、设计与实现(第11版)(英文版)》从基础、设计... ·Discuss the dimensional database concepts used in database designs for data ware-houses and 0nLine Analytical Processing(OLAP).
在SQL Server数据库相关的面试中,可能会遇到关于字符集、排序规则和校对、以及服务器启动账户选择等关键问题。这些知识点对于理解SQL Server如何处理数据和确保系统安全至关重要。 首先,字符集是SQL Server识别...
在SQL Server数据库相关的面试中,会涉及到多个技术层面的问题,包括服务器管理、数据备份与恢复策略、数据量处理以及查询语言TSQL的应用。以下是对这些关键知识点的详细解释: 1. **数据库服务器数量与应用**: ...
Database Concepts Chapter 6. Algorithms Introduction Chapter 7. Recursion and Backtracking Chapter 8. Linked Lists Chapter 9. Stacks Chapter 10. Queues Chapter 11. Trees Chapter 12. Priority Queue ...
The database of the Pentagon contains a top-secret information. We don't know what the information is — you know, it's top-secret, — but we know the format of its representation. It is extremely ...
### Oracle Interview Questions详解 #### 一、Co-related Subquery与Nested Subquery的区别 **知识点:** - **Co-related Subquery(关联子查询)**: 在这种类型的子查询中,内部查询只执行一次,并根据该结果来...
美国数据库教材, An eleventh edition is a milestone that few textbooks achieve.We wrote the first edition of this book because we wanted to explain the complexity of database systems in a language ...
Tom Kyte is the same "Ask Tom" whose column appears in Oracle Magazine, where he answers questions about the Oracle database and tools that developers and DBAs struggle with every day.
总之,CISM Practice Question Database v14 和 ISACA CISM Exam Review 2014 及 CISM Success Guide 组成了一套完整的复习工具,为准备CISM考试的人士提供了丰富的学习资源。通过深入学习和反复练习,考生能够更好...
1. It adds a degree of intelligence and sophistication to a transportation database that has previously been unknown. 2. It is possible to perform geographic queries I a straight forward, intuitive ...
1. 数据存储与管理(Topic 1: 57 Questions):这一部分主要涉及Azure的数据存储选项,如Blob存储、Table Storage、 Cosmos DB、SQL Database等,以及如何设计和实施高效的数据存储策略。考生需要了解不同存储服务的...
Java/J2EE interview questions这本书是为准备面试的Java开发者准备的,涵盖了核心概念、设计和编码问题,以及如何应对面试中可能遇到的问题。 核心概念包括Java语言基础,比如Java语言的基本原则、语法、核心库的...
关系型数据库管理系统(Relational Database Management System,简称RDBMS)是一种用于存储和管理数据的软件系统,它将数据组织成表格形式,并通过表格之间的关系来表达和维护数据之间的关联性。RDBMS支持SQL...
使用 CREATE DATABASE 语句可以创建一个新的数据库。 10. 如何在 MySQL 中创建表? 使用 CREATE TABLE 语句可以创建一个新的表。 11. 如何在 MySQL 中插入数据? 使用 INSERT 语句可以将数据插入到表中。 12. ...
C++, Java, C, Database, 无所不包,无所不含,非常推荐。作为一个技术人员,这个是面试的宝典