在 SQL Server 中使用 StoredProcedure 保存历史记录
在我的网站中,我创建了一个程序(xp_SaveInfo)来为新用户保存信息,如果已经存在,他们可以更新。但现在我们需要知道谁是更新者以及他们更新了什么。为此,我正在创建一个单独的表,该表需要在保存更新数据时使用相同的过程(xp_SaveInfo)进行填充。所以我想比较数据并将其保存到新参数中,并且该参数需要插入到表中。
In my website i have created a procedure (xp_SaveInfo) to save information for new users and if already exist they can update.But now we need to know who are the persons updating and what was they updated. For this i am creating a separate table this table need to fill from using same procedure(xp_SaveInfo) when updating data is saving.So i want to compare and save the data into new parameters and this parameters need to insert into table.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 SUSER_SNAME() 和 GETDATE() 函数使您能够知道谁以及何时运行当前脚本,例如 那:
Using SUSER_SNAME() and GETDATE() functions give to you ability to know who and when running current script now, something like that: