每天创建表以将日志报告存储在数据库中
我们的项目,我们正在跟踪每天的日志报告,现在我们正在将数据写入一个文件,其中包含
我们现在将数据存储到数据库的所有记录,
我的问题是我们计划每天创建表来存储日志报告。这是一个正确的过程吗
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建一个表来存储您的日志条目。现代数据库可以毫无问题地处理单个表中的数百万(甚至数十亿)行。
这将允许您使用一组查询对任何日志条目进行分析。您不必编写不同的查询(或使用动态 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.