右键单击 SQL Server Management Studio 中的查询结果行并运行宏
是否可以在 SQL Server Management Studio 中编写一个宏,该宏将显示在右键单击查询结果集中的行时出现的上下文菜单中?该宏将获取并处理该行的内容(数据)。
Is it possible to write a macro in SQL Server Management Studio that will be displayed in the context menu that comes up when right-clicking a row in the result set of a query? This macro would take and process the contents (data) of that row.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不,如果没有一些严重的 SSMS 内部黑客攻击,你就无法做到这一点。
您可以选择网格中的所有数据并复制粘贴。
no, you can't do that without some serious SSMS internals hacking.
you can select all data in the grid and copy paste it.
听起来您需要 Excel 和 VBA 功能。
为什么不将数据从 SQL Server 导出到 Excel 并编写 Visual Basic 脚本来完成您的需要呢?
It sounds like you need Excel and VBA functionality.
Why don't you export your data from SQL Server to Excel and write Visual Basic script to accomplish what you need?