SSIS 构建项目并重试
SSIS Build the project and try again
在我的工作流程之一中添加注释后,我不断收到以下错误,如下所示
The package 'x.dtsx' has been modified since the last build. Build the project
and try again. (Microsoft.DataTransformationServices.VsIntegration)
我尝试 debug/recompile,关闭并打开项目,但我仍然遇到同样的问题。
你们中有人遇到过这个错误消息吗?能否分享一下您是如何解决的?
谢谢。
尝试删除构建文件(在 bin 文件夹内)并重新构建它。
更改部署模型
由于您使用的是 SSIS 2017,请尝试将部署模型更改为包部署模型,而不是项目部署模型。
The project deployment model was introduced in SQL Server 2012 Integration Services (SSIS). With this deployment model, you were not able to deploy one or more packages without deploying the whole project. SQL Server 2016 Integration Services (SSIS) introduced the package deployment model, which lets you deploy one or more packages without deploying the whole project.
Microsoft 提供了一篇非常详细的文章,描述了两种部署模型之间的差异。你可以看看:
类似问题
在我的工作流程之一中添加注释后,我不断收到以下错误,如下所示
The package 'x.dtsx' has been modified since the last build. Build the project and try again. (Microsoft.DataTransformationServices.VsIntegration)
我尝试 debug/recompile,关闭并打开项目,但我仍然遇到同样的问题。
你们中有人遇到过这个错误消息吗?能否分享一下您是如何解决的?
谢谢。
尝试删除构建文件(在 bin 文件夹内)并重新构建它。
更改部署模型
由于您使用的是 SSIS 2017,请尝试将部署模型更改为包部署模型,而不是项目部署模型。
The project deployment model was introduced in SQL Server 2012 Integration Services (SSIS). With this deployment model, you were not able to deploy one or more packages without deploying the whole project. SQL Server 2016 Integration Services (SSIS) introduced the package deployment model, which lets you deploy one or more packages without deploying the whole project.
Microsoft 提供了一篇非常详细的文章,描述了两种部署模型之间的差异。你可以看看:
类似问题