归一化属性

发布于 2024-10-28 13:06:18 字数 55 浏览 1 评论 0原文

与数据库相关的规范化有哪些属性?

ACID 属性和规范化属性之间有任何关系吗?

what are the properties of Normalization related to Database?

Is there any relation between ACID properties and Normalization properties?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

帅冕 2024-11-04 13:06:18

标准化和 ACID 是不同的东西。

ACID指的是事务的四个重要属性。每个事务都是

  • 原子的(全有或全无),
  • 一致的(更改数据库
    从一种一致的状态到
    另一个),
  • 隔离(对其他人隐藏)
    事务直到提交),
  • 持久(COMMIT 之后,数据
    正常化是指通过识别导致问题

的依赖关系来细化关系(非正式地为表)结构的过程,然后将表分解为两个或多个具有更多信息的表。有利的特性。

在规范化期间,创建和更改表的语句本身就是数据库事务。 ACID 属性适用于这些语句,以及更常见的 SELECT、UPDATE 和 DELETE 语句。

Normalization and ACID are different things.

ACID refers to four important properties of transactions. Each transaction is

  • Atomic (all or nothing),
  • Consistent (changing the database
    from one consistent state to
    another),
  • Isolated (hidden from other
    transactions until it's committed),
  • Durable (after COMMIT, data
    survives a crash)

Normalization refers to the process of refining the structure of a relation (informally, a table) by identifying dependencies that lead to trouble, and then decomposing a table into two or more tables that have more favorable properties.

During normalization, the statements that create and alter tables are themselves database transactions. The ACID properties apply to those statements, as well as the more common SELECT, UPDATE, and DELETE statements.

永言不败 2024-11-04 13:06:18

不,ACID 和标准化属性之间没有关系。

检查规范化的基础:http://databases.about.com/od/specicproducts/ a/归一化.htm

No there is no relation between ACID and Normalization properties.

check basic of normalization : http://databases.about.com/od/specificproducts/a/normalization.htm

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文