如何在 Sql Server 2005 中查找更新到表中的行的时间?

发布于 2024-11-10 04:21:18 字数 331 浏览 0 评论 0原文

是否可以找到该行更新到表中的时间。例如

  ID            NAME               COURSE                   
 ----          ------             --------
  1            SACHIN              B.TECH
  2            AJITH               B.E
  3            ASIN                M.TECH

,我想找到我更新表的第二行的时间。不仅适用于更新,还适用于插入和删除。是否可以?如何?

Is it possible to find the time when the row was updated into a table. For Example

  ID            NAME               COURSE                   
 ----          ------             --------
  1            SACHIN              B.TECH
  2            AJITH               B.E
  3            ASIN                M.TECH

I want to find at which time, I updated the 2nd row of a table. Not only for Updating, but also during Insertion and Deletion. Is it possible? How?

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

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

发布评论

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

评论(2

尬尬 2024-11-17 04:21:18

除非您在更改发生时运行跟踪,否则这是不可能的。

Unless you run a trace when the changes happen it is not possible.

过期情话 2024-11-17 04:21:18

您可以使用 SQL Profiler

Microsoft SQL Server Profiler 是 SQL Trace 的图形用户界面,用于监视数据库引擎或 Analysis Services 的实例。您可以捕获有关每个事件的数据并将其保存到文件或表中以供稍后分析。例如,您可以监视生产环境以查看哪些存储过程因执行速度过慢而影响性能。

SQL Server Profiler

使用 SQL Server Profiler

You can use SQL Profiler

Microsoft SQL Server Profiler is a graphical user interface to SQL Trace for monitoring an instance of the Database Engine or Analysis Services. You can capture and save data about each event to a file or table to analyze later. For example, you can monitor a production environment to see which stored procedures are affecting performance by executing too slowly.

SQL Server Profiler

Using SQL Server Profiler

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