oracle中dbms_DBMS中的功能依赖性和属性关闭

oracle中dbms

功能依赖 (Functional Dependency)

A relational Database management System (RDBMS) represents the database o a collection of relations/tables. A functional dependency is a constraint between two sets of attributes in a relation. It is the property of semantics or meaning of attribute. Functional dependency is also a property of relational schema "R" and not a particular legal relation "r" of "R".

关系数据库管理系统(RDBMS)代表数据库是关系/表的集合。 功能依赖性是关系中两组属性之间的约束。 它是语义的属性或属性的含义。 功能依赖性也是关系模式“ R”的属性,而不是“ R”的特定法律关系“ r”

Now let us consider, a relational "a" schema "R" and let "x" and "y" be the two set of attributes, now there is a functional dependency from "x" to "y"

现在让我们考虑一个关系“ a”模式“ R”,并让“ x”和“ y”成为两组属性,现在存在一个从“ x”到“ y”的功能依赖关系。

If, t1[x] = t2[x] then, t1[y] = t2[y]

如果t1 [x] = t2 [x],t1 [y] = t2 [y]

Here, "x" is the determinant and "y" is the dependent or "x" determines "y".

在此 ,“ x”是行列式,“ y”是从属项,“ x”确定“ y”。

  • Some functional dependency is directly visible in relational model but some either set of dependencies also hold good which are not directly visible.

    一些功能依赖关系在关系模型中是直接可见的,但是某些依赖关系集也可以保持良好状态,而不能直接看到。

  • The entire set of functional dependency is called as complete set.

    整个功能依赖性集称为完整集。

  • Therefore, we must know how to calculate closure set of functional dependencies before Normalization.

    因此,我们必须知道如何在归一化之前计算函数依赖的闭包集。

  • A functional dependency from "A" to "B" is said to be trivial if "B" is a subset of "A".

    如果“ B”是“ A”的子集,则从“ A”到“ B”的功能依赖关系被认为是微不足道的。

Example: In the corresponding relation,

示例:在对应关系中,

    Tuple   A       C
t1      a1      c1
t2      a1      c1
t3      a2      c2
t3      a2      c2
t4      a3      c3
t5      a3      c2
A → C holds as
t1[A] = t2[A] then t1[C] = t2[C]
t3[A] = t3[A] then t3[C] = t4[C]
but, C → A does not holds as.
t3[C] = t4[C] = t3[C] but t3[A] = t4[A] does not equal t5[A].

如何查找功能依赖项有效还是无效? (How to find whether a functional Dependency is valid or invalid?)

There are some steps to find whether a functional dependency is valid or invalid:

有一些步骤可以确定功能依赖项是有效的还是无效的

Step 1) Check if all the values of "A" are distinct than it is valid otherwise invalid.

步骤1)检查“ A”的所有值是否均不同,否则有效。

Step 2) Check if all the values of the "B" are same than the functional dependency is also valid.

步骤2)检查“ B”的所有值是否均与功能依赖项相同是否有效。

Step 3) Otherwise we have to find at least one value of "A" on which are having different values of "B" than the functional dependency is invalid.

步骤3)否则,我们必须找到至少一个值“ A”,在该值上具有不同于功能依赖项无效的“ B”值。

属性关闭 (Attribute Closure)

The set "A*" is said to be the closure set of "A" if the set of attributes are functionally dependent on the attributes of "A"

如果属性集在功能上取决于“ A”的属性,则将集合“ A *”称为“ A”的闭包集合。

一些计算封闭集的推理规则 (Some inference rules to calculate the closure set)

  1. Reflexive rule: A rule is said to be reflexive if B is a subset of a then A → B. This is called trivial functional dependency rule.

    自反规则:如果B是A→B的子集,则规则说是自反的。这称为琐碎功能依赖规则。

  2. Augmentation rule: A rule is said to be augmented if A → B then Ar → Br holds good.

    增强规则:如果A→B然后Ar→Br保持良好,则可以说是增强规则。

  3. Transitive rule: A rule is said to be transitive if A → B, B → r then A → r.

    传递规则:如果A→B,B→r然后是A→r,则称为传递规则

These three rules are functionally complete and known as RAT rule or RAT axioms and also called Armstrong rule which means only theses rules are sufficient enough to find closure set.

这三个规则在功能上是完整的,称为RAT规则或RAT公理,也称为Armstrong规则,这意味着仅这些规则足以找到闭合集。

4) Union rule

4)联盟规则

A rule is said to be union if A → B, B → r then A → Br also holds good.

如果A→B,B→r那么A→Br也成立,则规则称为并集。

  1. Decomposition rule: A rule is said to be decomposed if A → Br, A → B then A → r.

    分解规则:如果A→Br,A→B然后A→r,则称为分解规则

  2. Pseudo transitivity rule: If A → B and BW → r then WA → r.

    伪传递性规则:如果A→B和BW→r,则WA→r。

翻译自: https://www.includehelp.com/dbms/functional-dependency-and-attribute-closure.aspx

oracle中dbms

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

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

相关文章

java invoke 泛型_利用Java反射机制和泛型,全自动解析json

有啦这个简直,太爽啦,利用Java 反射机制,利用Class 就可以得到 类的 变量 Field[] fieldscls.getDeclaredFields();还可以通过类中 的方法名字 去执行这个方法m1 cls.getDeclaredMethod(getMothodName(fields[j].getName()), String.class)…

2_C语言中的数据类型 (四)整数与无符号数

1.1 sizeof关键字 sizeof是c语言关键字,功能是求指定数据类型在内存中的大小,单位:字节 sizeof与size_t类型 1.1 int类型 1.1.1 int常量,变量 int就是32位的一个二进制整数,在内存当中占据4个字节…

python 示例_Python TextCalendar类别| pryear()方法与示例

python 示例Python TextCalendar.pryear()方法 (Python TextCalendar.pryear() Method) pryear() method is an inbuilt method of the TextCalendar class of calendar module in Python. It works on text calendars. It uses an instance of TextCalendar class and prints …

Spring实战——通过Java代码装配bean

上篇说的是无需半行xml配置完成bean的自动化注入。这篇仍然不要任何xml配置,通过Java代码也能达到同样的效果。 这么说,是要把上篇的料拿出来再煮一遍? 当然不是,上篇我们几乎都在用注解的方式如ComponentScan Component等就完成了…

java 谓词_java8-谓词(predicate)

传递代码我们首先看一个例子,假设你有一个 Apple 类,它有一个getColor方法,还有一个变量inventory保存着一个Apples的列表。你可能想要选出所有的绿苹果,并返回一个列表。通常我们用筛选(filter)一词来表达这个概念。在 Java 8之前…

getlong_Java LocalDateTime类| 带示例的getLong()方法

getlongLocalDateTime类的getLong()方法 (LocalDateTime Class getLong() method) getLong() method is available in java.time package. getLong()方法在java.time包中可用。 getLong() method is used to get the value as long for the given temporal field from this dat…

java.io和util的区别_Java NIO与IO的区别和比较

Java NIO与IO的区别和比较导读J2SE1.4以上版本中发布了全新的I/O类库。本文将通过一些实例来简单介绍NIO库提供的一些新特性:非阻塞I/O,字符转换,缓冲以及通道。一. 介绍NIONIO包(java.nio.*)引入了四个关键的抽象数据类型,它们共…

Java LocalDate类| isSupported()方法与示例

LocalDate类isSupported()方法 (LocalDate Class isSupported() method) Syntax: 句法: public boolean isSupported (TemporalField t_field);public boolean isSupported (TemporalUnit t_unit);isSupported() method is available in java.time package. isSupp…

区块链+税务的思考

2016年,区块链技术火了!各大金融公司、互联网巨头都竞相参加到区块链技术的研究中。我们公司的业务是税务的信息化领域,也希望通过区块链技术的应用,来提升为财税领域的服务。 区块链技术优缺点总结 下图是对区块链技术的一些特点…

java hasset 顺序_java集合排序问题

List: 元素是有序的,元素可以重复,因为该集合体系有索引(脚标)常用的子类对象:1————ArrayList 底层的数据结构是使用的数组结构特点:查询速度快,但是增删比较慢2————LinkedList底层的数据结构使用的是链表结构…

如何使用JavaScript删除CSS属性?

In this article, well see how we can remove a CSS property from a certain element using JavaScript? We can remove only those properties that we assign ourselves and the pre-default ones cannot be removed by this method. 在本文中,我们将看到如何使…

Django 缓存系统

Django 是动态网站,一般来说需要实时地生成访问的网页,展示给访问者,这样,内容可以随时变化,但是从数据库读多次把所需要的数据取出来,要比从内存或者硬盘等一次读出来 付出的成本大很多。 缓存系统工作原理…

java web截屏_java_WebDriver中实现对特定的Web区域截图方法,用过 WebDriver 的同学都知道,We - phpStudy...

WebDriver中实现对特定的Web区域截图方法用过 WebDriver 的同学都知道,WebDriver 可以对浏览器中的页面进行截图。例如:public byte[] takeScreenshot() throws IOException {TakesScreenshot takesScreenshot (TakesScreenshot) driver;return takesSc…

c语言 关键字const_C ++ const关键字| 查找输出程序| 套装1

c语言 关键字constProgram 1: 程序1&#xff1a; #include <iostream>using namespace std;void fun(int& A) const{A 10;}int main(){int X 0;fun(X);cout << X;return 0;}Output: 输出&#xff1a; [Error] non-member function void fun(int) cannot ha…

【喜报】JEEWX荣获“2016 年度码云新增热门开源软件排行榜”第一名!

为什么80%的码农都做不了架构师&#xff1f;>>> 2016 年度码云新增项目排行榜 TOP 50 正式出炉&#xff01;根据 2016 年在码云上新增开源项目的 Watch、Star、Fork 数量以及其他角度的统计&#xff0c;JEEWX捷微管家荣获“2016 年度码云新增热门开源软件排行榜”第…

java 二叉树特点_疯狂java笔记之树和二叉树

树的概述树是一种非常常用的数据结构&#xff0c;树与前面介绍的线性表&#xff0c;栈&#xff0c;队列等线性结构不同&#xff0c;树是一种非线性结构1.树的定义和基本术语计算机世界里的树&#xff0c;是从自然界中实际的树抽象而来的&#xff0c;它指的是N个有父子关系的节点…

编辑距离 dp_使用动态编程(DP)编辑距离

编辑距离 dpProblem: You are given two strings s1 and s2 of length M and N respectively. You can perform following operations on the string. 问题&#xff1a;给您两个长度分别为M和N的字符串s1和s2 。 您可以对字符串执行以下操作。 Insert a character at any posi…

tomcat +apache 配置集群

2019独角兽企业重金招聘Python工程师标准>>> APACHE2.2.25TOMCAT6.0.37配置负载均衡 目标: 使用 apache 和 tomcat 配置一个可以应用的 web 网站&#xff0c;要达到以下要求&#xff1a; 1. Apache 做为 HttpServer &#xff0c;后面连接多个 tomcat 应用实例&…

java双缓存机制_详解JVM类加载机制及类缓存问题的处理方法

前言大家应该都知道&#xff0c;当一个Java项目启动的时候&#xff0c;JVM会找到main方法&#xff0c;根据对象之间的调用来对class文件和所引用的jar包中的class文件进行加载(其步骤分为加载、验证、准备、解析、初始化、使用和卸载)&#xff0c;方法区中开辟内存来存储类的运…