简体   繁体   English

谁在 SQL Server 2016 上部署了 SSIS 包?

[英]Who deployed SSIS package on SQL Server 2016?

I am seeing the version of the SSIS project which got deployed yesterday and I don't remember deploying anything in production.我看到了昨天部署的 SSIS 项目的版本,我不记得在生产中部署了任何东西。 So, is there any way to find out what user performed the deployment?那么,有没有办法找出执行部署的用户?

Query the catalog.operations view in the SSISDB database.查询 SSISDB 数据库中的catalog.operations视图。

SELECT TOP 100 * 
FROM catalog.operations O 
WHERE O.operation_type <> 200 -- everything but create_execution and start_execution
ORDER BY O.start_time desc

ref: catalog.operations (SSISDB Database)参考: catalog.operations(SSISDB 数据库)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM