每天创建表以将日志报告存储在数据库中

发布于 2024-10-29 04:31:45 字数 116 浏览 2 评论 0原文

我们的项目,我们正在跟踪每天的日志报告,现在我们正在将数据写入一个文件,其中包含

我们现在将数据存储到数据库的所有记录,

我的问题是我们计划每天创建表来存储日志报告。这是一个正确的过程吗

Our project, we are tracking the log reports for each day, now we are writing data to a files which has all the records

we are now storing the data to database,

My Question is we are planned to create table daily to store the log reports. Is this a correct Process

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

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

发布评论

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

评论(1

毁梦 2024-11-05 04:31:45

创建一个表来存储您的日志条目。现代数据库可以毫无问题地处理单个表中的数百万(甚至数十亿)行。

这将允许您使用一组查询对任何日志条目进行分析。您不必编写不同的查询(或使用动态 SQL)来读取不同日期的条目。

Create a single table to store your log entries. Modern databases can handle millions (or even billions) of rows in a single table without any issue.

This will allow you to do analysis on any of your log entries using a single set of queries. You won't have to write different queries (or use dynamic SQL) to read from each different days' entries.

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