SQL 2005/2008创建存储过程与数据库交互的时序图
我们有一组非常复杂的存储过程,它们已从 Oracle 迁移到 SQL 2005。有一次,我听说有一种解决方案,可以通过观察 VS 中的堆栈跟踪或通过 SQL 分析器来创建序列图。 我进行了长时间的艰苦搜索,发现可能有一些工具可以创建代码的序列图,但不能创建数据库交互。 有人知道一套可能可以帮助我的工具吗?
我可以承受许多不同的环境,包括 SQL 2005、SQL 2005、VS 2005、VS 2008。
We have a very complex set of stored procedures that have been migrated over from Oracle in to SQL 2005. At one time, I heard there was a solution where sequence diagrams could be created from either watching a stack trace in VS or by the SQL profiler. I've searched long and hard and have found may tools that will create sequence diagrams of your code, but not the DB interaction. Is anybody aware of a set of tools that maybe able to help me out.
I can stand up many different environments including SQL 2005, SQL 2005, VS 2005, VS 2008.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道有什么,但您可以添加一个带有时间戳和 sp/函数名称的调用日志表,并让每个 sp 和函数都包含在调用日志表中。 函数记录其活动。
I'm not aware of any, but you could add a call-log table with a timestamp and sp/function name, and have each sp & function log its activity.