oracle中dbms_如何在DBMS中找到关系的最高范式?

oracle中dbms

To find the highest normal form of a relation, you have to first understand the basics of Functional dependency, Candidate keys, and Normal Forms.

查找关系的最高范式 ,您必须首先了解功能依赖项 ,候选键和范式的基础。

In relation, a Functional Dependency P holds Q (P->Q) if two tuples having similar values of attributes for P also have similar values of attributes for Q i.e. P distinctively decides Q.

相对地,如果具有相似属性值P的两个元组也具有相似属性值Q,P独特地决定Q ,则功能相关性P保持Q(P-> Q)

In a Database, Functional dependency performs assistance as a restriction between two sets of attributes.

在数据库中,功能依赖项作为辅助功能来限制两组属性。

A Candidate Key in a relation is a minimal set of attributes of which can be used to identify a tuple distinctively. A candidate key is a column or set of columns in a table or relation that can distinctly identify any database collection of record without indicating towards any other data. Each table may contain one or more candidate keys, but one candidate key is distinct in each table or relation, and it is called the primary key. The primary key is the best among the candidate keys which is usually used for identification.

关系中的候选关键字是属性的最小集合,可用于区别性地标识元组。 候选键是表或关系中的一列或一组列,它们可以清楚地标识记录的任何数据库集合,而无需指示其他任何数据。 每个表可以包含一个或多个候选键,但是一个候选键在每个表或关系中都不同,因此称为主键。 主密钥是通常用于标识的候选密钥中最好的。

The process of Normalization is to minimize redundancy from a database table or relation or a set of relations. Insertion, Deletion and Updation anomalies may cause by redundancy. So, it aids to reduce the redundancy in relations.

规范化的过程是最小化数据库表或关系或一组关系的冗余。 插入,删除和更新异常可能是由冗余引起的。 因此,它有助于减少关系中的冗余。

Normal forms are used to eliminate or minimize redundancy in database tables or relations. These Normal Forms are:

范式用于消除或最小化数据库表或关系中的冗余。 这些范式为:

  1. First Normal Form

    第一范式

  2. Second Normal Form

    第二范式

  3. Third Normal Form

    第三范式

  4. Boyce-Codd Normal Form (BCNF)

    博伊斯·科德范式(BCNF)

Steps to follow to find the highest normal form of a relation

查找关系的最高范式的步骤

  1. The first step is to find all feasible candidate keys of the relation and its attributes.

    第一步是找到该关系及其属性的所有可行候选键。

  2. The second step is to organize into two categories all the attributes of the relation:

    第二步是将关系的所有属性分为两类:

    1. Prime attributes
    2. Non-prime attributes
  3. Third and the last step is to examine to determine for 1st normal form and then 2nd and so on. If the process is unsuccessful in satisfying nth normal form condition, then the highest normal form will be n-1.

    第三步也是最后一步是检查确定第一个范式,然后确定第二个,依此类推。 如果该过程不能满足第n个范式条件,则最高范式将为n-1。

例子 (Examples)

Problem 1) Find the highest normal form of a relation R(P, Q, R, S, T) with Functional dependency set as (QR->S, PR->QT, Q->T).

问题1)找到功能依赖项设置为(QR-> S,PR-> QT,Q-> T)的关系R(P,Q,R,S,T)的最高范式。

Solution:

解:

Step 1:

第1步:

As the relation (PR)+ = (P, Q, R, S, T) is given, but not a single of its subset can determine all attributes of relation, So PR will be candidate key. P or R can’t be derived from any other attribute of the relation, so there will be only one candidate key (PR).

由于给出了关系(PR)+ =(P,Q,R,S,T),但没有一个子集可以确定关系的所有属性,因此PR将成为候选关键字。 P或R不能从关系的任何其他属性派生,因此将只有一个候选键(PR)。

Step 2:

第2步:

  1. The attributes which are part of candidate key (P, R) are Prime attributes.

    属于候选键(P,R)的属性是素数属性。

  2. The others will be non-prime attributes (Q, R, S).

    其他将是非素数属性(Q,R,S)。

Step 3:

第三步:

A Relational Database Management System does not enable multi-valued or composite attribute. So, the relation R(P, Q, R, S, T) is in 1st normal form.

关系数据库管理系统不启用多值或复合属性。 因此,关系R(P,Q,R,S,T)为第一范式。

Because QR->S is in 2nd normal form (QR is not a proper subset of candidate key PR) and PR->QT is in 2nd normal form (PR is candidate key) and Q->T is in 2nd normal form (Q is not a proper subset of candidate key PR).So, the relation is in 2nd normal form.

因为QR-> S为第二范式(QR不是候选关键字PR的适当子集),而PR-> QT为第二范式(PR为候选关键字),而Q-> T为第二范式(Q不是候选密钥PR的适当子集)。因此,该关系为第二范式。

Because in QR->S (neither QR is a super key nor S is a prime attribute) and in Q->T (neither Q is a super key nor T is a prime attribute) but to satisfy 3rd normal form, either LHS of a Functional Dependency should be super key or RHS should be prime attribute. So, the relation is not in 3rd normal form.

因为在QR-> S中(QR既不是超键也不是S是素数属性),而在Q-> T中(Q既不是超键也不是T是素数属性)但是要满足第三范式,所以LHS功能依赖关系应该是超级键,RHS应该是主要属性。 因此,该关系不是第三范式。

So, the highest normal form of relation will be 2nd Normal form.

因此,关系的最高范式将是第二范式。

Problem 2) Find the highest normal form of a relation R (P, Q, R, S, T) with Functional Dependency set (Q->P, P->R, QR->S, PR->QT).

问题2)找到具有功能相关性集(Q-> P,P-> R,QR-> S,PR-> QT)的关系R(P,Q,R,S,T)的最高范式。

Solution:

解:

Step 1:

第1步:

As the relation (PR) + = (P, Q, R, S, T) is given, Q will be a candidate key. Q can be derived from PR using PR->Q (Decomposing PR->QT to PR->Q and PR->T). So PR will be super key but (R) + ={R} and (P) + = {P, R, Q, S, T}. So P (subset of PR) will be a candidate key.

由于关系(PR)+ =(P,Q,R,S,T),Q将成为候选关键字。 可以使用PR-> Q(将PR-> QT分解为PR-> Q和PR-> T)从PR导出Q。 因此PR将是超级键,但(R)+ = {R}和(P)+ = {P,R,Q,S,T}。 因此,P(PR的子集)将成为候选关键字。

So there will be two candidate keys {P, Q}.

因此将有两个候选键{P,Q}。

Step 2:

第2步:

  1. The attributes which are part of candidate key (P, Q) are Prime attributes.

    属于候选键(P,Q)的属性是素数属性。

  2. The others will be non-prime attributes (R, S, T).

    其他将是非素数属性(R,S,T)。

Step 3:

第三步:

A Relational Database Management System does not enable multi-valued or composite attribute. So, the relation R (P, Q, R, S, T) is in 1st normal form.

关系数据库管理系统不启用多值或复合属性。 因此,关系R(P,Q,R,S,T)处于第一范式。

The relation is in 2nd normal form because Q->P is in 2nd normal form (Q is a super key) and P->R is in 2nd normal form (P is super key) and QR->S is in 2nd normal form (QR is a super key) and PR->QT is in 2nd normal form (PR is a super key).

该关系为第二范式,因为Q-> P为第二范式(Q为超级键),而P-> R为第二范式(P为超级键),而QR-> S为第二范式。 (QR是超级键),PR-> QT为第二范式(PR是超级键)。

Because LHS of all Functional Dependencies are super keys, the relation is in 3rd normal form.

因为所有功能依赖项的LHS都是超键,所以该关系为第三范式。

The relation is in BCNF as all LHS of all Functional Dependencies are super keys.

该关系在BCNF中,因为所有功能依赖项的所有LHS都是超级键。

So, the highest normal form is BCNF.

因此,最高范式是BCNF。

Problem 3) Find the highest normal form of a relation R (P, Q, R, S, T) with Functional Dependency set (P->S, Q->P, QR->S, PR->QT).

问题3)找到具有功能相关性集(P-> S,Q-> P,QR-> S,PR-> QT)的关系R(P,Q,R,S,T)的最高范式。

Solution:

解:

Step 1:

第1步:

As the relation (PR) + = (P, Q, R, S, T) is given, but not a single of its subset can determine all attributes of relation, so PR will be candidate key. P can be derived from Q, so we can replace P in PR by Q. So QR will also be a candidate key.

由于给出了关系(PR)+ =(P,Q,R,S,T),但是没有一个子集可以确定关系的所有属性,因此PR将成为候选关键字。 P可以从Q派生,所以我们可以用Q代替PR中的P。因此QR也是候选关键字。

So the two candidate keys will be (PR, QR).

因此,两个候选键将是(PR,QR)。

Step 2:

第2步:

  1. The attributes which are part of candidate key (P, Q, R) are Prime attributes.

    属于候选键(P,Q,R)的属性是素数属性。

  2. The others will be non-prime attributes (S, T).

    其他将是非素数属性(S,T)。

Step 3:

第三步:

A Relational Database Management System does not enable multi-valued or composite attribute. So, the relation R (P, Q, R, S, T) is in 1st normal form.

关系数据库管理系统不启用多值或复合属性。 因此,关系R(P,Q,R,S,T)处于第一范式。

Because P->S is partial dependency (P which is a subset of candidate key PR is determining non-prime attribute S), the relation is not in 2nd Normal form because the 2nd normal form does not enable partial dependency.

因为P-> S是部分依赖关系(作为候选键PR的子集的P正在确定非主要属性S),所以该关系不是第二范式,因为第二范式不允许部分依赖。

So, the highest normal form will be 1st Normal Form.

因此,最高范式将是第一范式。

翻译自: https://www.includehelp.com/dbms/how-to-find-the-highest-normal-form-of-a-relation.aspx

oracle中dbms

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/545590.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

MySQL 面试题汇总

1.说一下 MySQL 执行一条查询语句的内部执行过程? 答:MySQL 执行一条查询的流程如下: 客户端先通过连接器连接到 MySQL 服务器;连接器权限验证通过之后,先查询是否有查询缓存,如果有缓存(之前执行过此语句)则直接返回缓存数据,如果没有缓存则进入分析器;分析器会对查…

几种简单电路知识汇总

这篇文章用于记录平时设计电路或者在书中遇到的一些电路方面的知识,会不定期更新。就先从运算放大器开始,对此做个简单的介绍。 运算放大器 说到运算放大器就不得不说两个概念,虚短与虚断。 虚短: 在理想情况下,运算…

Oracle 创建表 练习题

a) 建立下列教学管理用的数据表。注意,表名和字段名都是英文。 学生表(student) 字段 名称 数据类型 约束 学号 S_NO CHAR(6) 主键 姓名 S_NAME CHAR(10) 非空 性别 S_SEX CHAR(2) 只取男、女 出生日期 S_BIRTHDAY DA…

算法常用面试题汇总

1.说一下什么是二分法?使用二分法时需要注意什么?如何用代码实现? 二分法查找(Binary Search)也称折半查找,是指当每次查询时,将数据分为前后两部分,再用中值和待搜索的值进行比较,如果搜索的值大于中值,则使用同样的方式(二分法)向后搜索,反之则向前搜索,直到搜…

Java LocalDateTime类| 带示例的getDayOfYear()方法

LocalDateTime类getDayOfYear()方法 (LocalDateTime Class getDayOfYear() method) getDayOfYear() method is available in java.time package. getDayOfYear()方法在java.time包中可用。 getDayOfYear() method is used to get the field value day-of-year from this date-t…

51单片机——交通灯

原理图 功能描述 1、基本功能就是如同红绿灯一般,不做赘述。   2、红灯时长和绿灯时长可通过按键设置,即按键列中的上面4个,当这4个按键有一个按下后便进入时长设置功能,设置完成后按最下面两个按键(紧急控制按钮&am…

设置TextField内文字距左边框的距离

2019独角兽企业重金招聘Python工程师标准>>> //设置文本框左边的viewUITextField *textField [[UITextField alloc]init];textField.frame CGRectMake(10, 30, 300, 30);[self.view addSubview:textField];textField.leftView [[UIView alloc]initWithFrame:CGRe…

Oracle注册表修改 乱码编码

HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\HOME0"NLS_LANG"值改为"SIMPLIFIED CHINESE_CHINA.ZHS16GBK"AMERICAN.AL32UTF8乱码更改oracle 10g装上后,建了个表写入中文数据,发现通过工具DbVisualizer 6.5 写入/读取中文都正常,就sqlplus和PL/SQL Developer不正常…

设计模式常见面试题汇总

1.说一下设计模式?你都知道哪些? 答:设计模式总共有 23 种,总体来说可以分为三大类:创建型模式( Creational Patterns )、结构型模式( Structural Patterns )和行为型模式( Behavioral Patterns )。 分类包含关注点创建型模式工厂模式、抽象工厂模式、单例模式、建…

java 根据类名示例化类_Java LocalDateTime类| minusMinutes()方法与示例

java 根据类名示例化类LocalDateTime类minusMinutes()方法 (LocalDateTime Class minusMinutes() method) minusMinutes() method is available in java.time package. minusMinutes()方法在java.time包中可用。 minusMinutes() method is used to subtract the given minutes …

类的三大特性

类有三大特性:继承,封装,多态,这个也是介绍类的时候,必须提到的话题,那么今天就来看一下OC中类的三大特性: 一、封装 学习过Java中类的同学可能都知道了,封装就是对类中的一些字段&a…

JVM 面试题汇总

1.什么是 JVM?它有什么作用? 答:JVM 是 Java Virtual Machine(Java 虚拟机)的缩写,顾名思义它是一个虚拟计算机,也是 Java 程序能够实现跨平台的基础。它的作用是加载 Java 程序,把字节码翻译成机器码再交由 CPU 执行的一个虚拟计算器。 2.JVM 主要组成部分有哪些? …

Java BigInteger类| isProbablePrime()方法与示例

BigInteger类isProbablePrime()方法 (BigInteger Class isProbablePrime() method) isProbablePrime() method is available in java.math package. isProbablePrime()方法在java.math包中可用。 isProbablePrime() method is used to check whether this BigInteger is probab…

20141215胡思乱想

书读得越多,越发现自己无知。 我们的就像在一个空白的圆里面,周围都是黑暗,不断成长,圆会越来越大,接触到的黑暗会越多。所以要时刻保持谦逊。 Stay Hungry, Stay Foolish!! 时刻要思考,不要急于求成。 转载…

常见面试题翻车合集

1.去掉 main 方法的 static 修饰符,程序会怎样? A:程序无法编译 B:程序正常编译,正常运行 C:程序正常编译,正常运行一下马上退出 D:程序正常编译,运行时报错 答:D 题目解析:运行时异常如下: 错误: main 方法不是类 xxx 中的 static, 请将 main 方法定义为: p…

c语言i++和++i程序_使用C ++程序从链接列表中消除重复项

c语言i和i程序Given a sorted linked list (elements are sorted in ascending order). Eliminate duplicates from the given LL, such that output LL contains only unique elements. 给定一个排序的链表(元素按升序排序)。 从给定的LL中消除重复项,以便输出LL仅…

struts的开发模式

<constant name"struts.devMode" value"true" /> struts.devMode也就是struts的开发模式&#xff0c;默认值为false&#xff0c;这里修改为true就可以了&#xff0c;以后一旦就该这个文件中的配置就不用去重启tomcat。struts2.1的bug&#xff0c;tom…

nginx启动与停止

转自&#xff1a;http://www.nginx.cn/nginxchscommandline#commandnginx启动sudo /usr/local/nginx/nginx (nginx二进制文件绝对路径&#xff0c;可以根据自己安装路径实际决定)nginx从容停止命令&#xff0c;等所有请求结束后关闭服务ps -ef |grep nginxPID PPID USER …

编程c语言 十进制转八进制_使用C编程语言处理八进制值

编程c语言 十进制转八进制Octal value has 8 digit values from 0 to 7, with the base 8. (Read more about Computer number systems), here we will learn how to work with octal values in c programming language? 八进制值具有从0到7的8位数字&#xff0c;以8为底。(阅…

加餐 | Java 面试通关攻略

面试分为三个重要的阶段: 面试前准备面试中表现面试后复盘做好这三个阶段的准备,相信一定会有很大的收获。下面来分别看看这三个阶段需要准备哪些内容。 一. 面试前准备 1. 研究待面试的公司 所谓知己知彼方能百战不殆,对待面试同样如此,企业希望招聘的人能够直接上手工…