- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
您有两个表,foo
和 bar
,它们具有 M:N
关系。
您想维护 foo
和 bar
的相当极端的历史版本,以及它们之间的关系,例如:
你在 Foo
中插入一行,然后在 Bar
中插入一行,然后在 FooBar
中插入一行链接两人在一起。您应该能够及时回顾并看到 Foo
中的行曾经是独立的,Bar
中的行也是如此。
然后,您将另一行插入到 Bar
中,并在 FooBar
中插入一行,将第二个 bar
链接到第一个 >富
。您应该能够及时回顾并看到 foo
行仅链接到第一个 bar
行。
然后您更新 foo
行的属性之一。您应该能够及时回顾并看到 Bar
中的两行都曾经链接到具有前一个属性的 foo
行。
虽然我能够实现这一点,但我的解决方案相当乏味,并且会导致针对单个更新/插入的大量 DML 操作。在 Bar 和 Baz 之间添加一个带有 M:N 的 Baz 表会显着增加 DML 的数量。是否有比以下方法更好地完成此任务的标准方法?
这是我的解决方案:
DDL
Foo
--------------
foo_id INT --sequence generated
foo_version_id INT UNIQUE --sequence generated
foo_name VARCHAR
active INT CHECK (active in (0,1))
CONSTRAINT PRIMARY_KEY (foo_id, foo_version_id)
Bar
--------------
bar_id INT --sequence generated
bar_version_id INT UNIQUE --sequence generated
bar_name VARCHAR
active INT CHECK (active in (0,1))
CONSTRAINT PRIMARY_KEY (bar_id, bar_version_id)
FooBar
--------------
foo_version_id FK to foo.foo_version_id
bar_version_id FK to bar.bar_version_id
CONSTRAINT PRIMARY KEY (foo_version_id, bar_version_id)
DML
以下是三种情况的伪代码。我已将这些作为程序实现。
对于案例#1,这导致 4 个 DML 操作将两个独立的 foo
和 bar
链接在一起,不包括前两个行:
Insert the first foo row
Insert the first bar row
Update the first foo row and set active to 0.
Insert a new foo row with the same foo_id, foo_name, but new foo_version_id
Update the first bar row and set active to 0
Insert a new bar row and with the same bar_id, bar_name, but new bar_version_id
Insert a row into foo_bar with the foo_version_id and bar_version_id from the newly created active foo and bar rows.
对于案例 #2,这会导致 9 个 DML 操作将新的 bar
链接到 foo
,而 foo
链接到第一个 bar
,不包括第一行:
Insert the second bar row
Update the active foo and set active to 0
Insert a new foo row with same foo_id, foo_name, but new foo_version_id
Update the first active bar and set active to 0
Insert a new bar row with same bar_id, bar_name, but new bar_version_id
Update the second active bar and set active to 0
Insert a new bar row with same bar_id, bar_name, but new bar_version_id
Insert a row into foo_bar with the foo_version_id and bar_version_id from the foo and first bar.
Insert a row into foo_bar with the foo_version_id and bar_version_id from the foo and second bar.
对于案例 #3,这会导致 8 个 DML 操作来更新链接到两个 bars
的 foo
上的属性:
Update the active foo and set active to 0
Insert a new foo row with same foo_id, but new foo_version_id, foo_name
(repeat from case #2 starting at line 4)
SQL
给定一个已知的 foo_id
,我可以在 foo_version_id 上加入
和 foo
、foo_bar
、bar
bar_version_id
并查看所讨论的特定 foo 的所有可能的历史状态。
select f.foo_id, f.foo_version_id, f.foo_name, b.bar_id, b.bar_version_id, b.bar_name
FROM foo f, foo_bar fb, bar b
WHERE 1 = 1
AND f.foo_version_id = fb.foo_version_id (+)
AND fb.bar_version_id = b.bar_version_id (+)
ORDER BY f.foo_version_id, b.bar_version_id
;
foo_id | foo_version_id | foo_name | bar_id | bar_version_id | bar_name
1 | 1 | a | | | -- 1) independent foo
1 | 2 | a | 1 | 2 | b -- 2) link foo to first bar
1 | 3 | a | 1 | 4 | b -- 3) link second bar to foo
1 | 3 | a | 2 | 5 | b2 -- 3) link second bar to foo
1 | 4 | A | 1 | 6 | b -- 4) rename foo_name to A
1 | 4 | A | 2 | 7 | b2 -- 4) rename foo_name to A
最佳答案
您需要一个时态数据库,即支持 SQL:2011 Temporal 的数据库(或类似的专有系统)
据我所知,没有开源数据库支持这一点。一段时间以来,我一直在缠着 Posgres 的人去做这件事。
这意味着您需要支付一些现金。以下数据库支持它:
IBM DB2 10+
甲骨文 12c
微软 SQL Server 2016
关于mysql - RDBMS 建模 : Many to Many with Extreme Historical Versioning,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35399312/
我正在使用JQuery Mobile,有两个可用版本:稳定版和旧版。我不熟悉后者。 什么是旧版?或与稳定版有什么区别? 建议在生产现场中使用哪一个? 非常感谢 最佳答案 旧版本是一个旧的稳定版本,由于
Lotus Notes 具有“版本控制”功能。您可以将其设置为在用户需要单击 File->New->Version 以创建新版本的模式下工作。我想在表单上的按钮中使用该功能。 有没有办法(使用 Lot
关闭。这个问题是opinion-based 。目前不接受答案。 已关闭10 年前。 已锁定。这个问题及其答案是locked因为这个问题是题外话,但却具有历史意义。目前不接受新的答案或互动。 是否有任何
我对使用数据库和数据库设计/创建模式非常陌生,我非常感谢一些建议/建议。我正在创建一个应用程序,用户在其中输入数据,并向用户提供该数据的版本控制。用户可以进入并恢复更改或更新值(有点像 git)等,我
尝试启动带头 Selenium session 时出现此错误。 我使用的命令是driver = webdriver.Chrome(executable_path=r'C:\Users\Administ
Apple 的文档本来可以更清楚地说明如何提交更新版本。 正如标题所问,有什么区别 itunes connect 中的版本号(提交更新时必须提供) xcode 中的捆绑版本 捆绑版本字符串,短 它们有
当我在我的 Android 设备上运行我的应用程序时出现错误: meteor run android-device --settings settings.json --mobile-server=m
v = data.getValues(XP_PHONE); for (int i = 0; i alter 'table_foo', {NAME => 'column_fam_foo', V
我在Google CoLab中有这样一个错误:。以下是我的Cuda和Torch版本:。CUDA版本:。这是pytorch版本:2.0.1+cu118我试图安装Cuda 11.8,但没有成功。
我从其他用户那里发现了“类似”的问题,但没有一个答案有效。我正在尝试安装这些软件包: if (!require("BiocManager")) install.packages("BiocMana
我正在使用 Version Maven Plugin插件 use-latest-versions将 groupID=com.example* 内部依赖版本更新到最新版本的功能。这是使用 Jenkins
我是 Kotlin 应用程序开发的初学者。当我尝试构建应用程序时发生以下错误 - e: C:/Users/Lenovo/.gradle/caches/transforms-2/files-2.1/32
我正在尝试安装一个名为 metaBIT 的程序。我能够将它添加到我的路径中。但是当我执行时: metaBIT -h 它出错并给我这个: Traceback (most recent call last
在使用选项 -smt2 -in 启动 Z3 后,我可以获取 Z3 的版本吗?有点像 (get-z3-version) ; Z3 4.3.2 x64 // Desired reply 最佳答案 在SM
这个问题在这里已经有了答案: What is the difference between Version and 'Runtime Version' in .Net? (1 个回答) 关闭 9 年
new Version(AssemblyFileVersionAttribute.Version) 总是会成功吗? 这是我的代码。 Contract.Ensures(Contract.Result()
我正在尝试针对另一个使用 libcurl 共享库的共享库 (libtheirstuff.so) 交叉编译我自己的共享库 (libmystuff.so),但出现以下错误: libmystuff.so:
在 Bazaar 中,如果您在 foo.html 中有冲突,它将生成额外的 3 个文件 foo.html.BASE foo.html.OTHER foo.html.THIS 那么你可以 diff -N
我的 java 7 和 java 8 都安装在我的 Windows 系统的 C:\Program Files\Java 下 在环境的路径中我像这样指定了java 7的路径。 %JAVA_HOME%/b
#version 330 和 #version 330 core 有什么区别? 核心重要吗? 最佳答案 这两个版本声明是等价的。 核心 是默认值。来自 GLSL 3.30 规范: If no prof
我是一名优秀的程序员,十分优秀!