存储数据的重复

发布于 2024-10-19 19:58:26 字数 111 浏览 3 评论 0原文

我们有用于边境检查站自动化的 Oracle 8i,其中存储了卡车入境详细信息。很多时候,输入的卡车数据会重复多次。 如何过滤掉这样的重复数据。作为该数据存储的一部分,数据存储变得巨大。请告知如何克服这个问题

We have oracle 8i for border checkpost automation where truck entry details are stored . Many a time the truck data entered once get duplicated several time.
How to filter out such duplicated data. As a part of this data-storage becomes huge. Please advise how to overcome this problem

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

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

发布评论

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

评论(2

夜深人未静 2024-10-26 19:58:26

标准方法是使用 UNIQUE 约束。

The standard method is to use a UNIQUE constraint.

一世旳自豪 2024-10-26 19:58:26

这取决于卡车数据的谨慎性。如果这些是每天进/出的相同卡车,那么您可以创建一个新的卡车详细信息表,而不是为每辆卡车存储新条目并将外键放入CheckPost条目Table中,每次通过条目详细信息时只需输入新条目。

但是,如果每天都有新的卡车进出,那么创建新的Truck Detail表就不太可行,而且您现有的Schema 最适合这种情况。

对于性能问题,您应该查看表分区

This depends upon the discreetness of truck data. If these are same trucks that go in/out every day then instead of storing new entry for each truck you can Create a new Truck Detail table and Put a Foreign key in CheckPost entry Table and just enter new entry every time it passes with Entry details.

But if every day new trucks go in/out then creating New Truck Detail table won't be that much feasible and your existing Schema is optimum for this situation.

For Performance issues you should look in table Partitioning.

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