- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Tom Kyte 描述时态表 here :
temporal tables are tables that can return the answer that existed at a point in time -- you can ask the table to return the answer that existed at midnight last night, instead of the answer that exists right now
Oracle 中是否存在这样的表?我找不到它们的文档。如何创建并使用它?他说它们存在于数据库中,尽管他没有说它们存在于 Oracle 或任何其他产品中。这是概念上的东西没有实现吗?
最佳答案
好吧,我相信你的意思是获取比现在早一段时间的数据状态。在这种情况下,Oracle 建议闪回查询:
SQL> select * from t where x in (1,2,3);
X Y
---------- ----------
1 1
2 2
3 3
SQL> delete from t where x in (1,2,3);
SQL> commit;
SQL> select * from t where x in (1,2,3);
No rows selected
SQL> select * from t as of timestamp(systimestamp - interval '2' minute) where x in (1,2,3)
2 /
X Y
---------- ----------
1 1
2 2
3 3
Oracle 在那里描述了这个选项
http://docs.oracle.com/cd/B12037_01/appdev.101/b10795/adfns_fl.htm#1008580
从临时表开始 - 请参阅此引用资料:
http://docs.oracle.com/cd/B28359_01/server.111/b28310/tables003.htm#ADMIN01503
关于oracle - Oracle 中的时态表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21139448/
我正在使用斯坦福标记器来确定词性。但是,我想从文本中获取更多信息。是否有可能获得更多信息,例如句子的时态或是否处于主动/被动状态? 到目前为止,我使用的是非常基本的 PoS 标记方法: List> t
我是一名优秀的程序员,十分优秀!