how to migrate ssis/ssas

时间:2017-06-15 10:30:39

标签: ssis ssas

I am migrating from a local sql server 2012, to a sql server 2016 in AWS.

For the databases I will backup them up, and then restore them in the new server, I will also transfer the logins and jobs. (I have done this a few times in the past).

I am puzzled about how to migrate SSIS and SSAS… is there a script to back it all up and restore in the new server? I have never migrated neither SSIS nor SSAS, not sure what to expect.

1 个答案:

答案 0 :(得分:1)

SSIS - 核心SSIS是扩展名为.dtsx的文件或扩展名为.ispac的zip文件

.ispac应该住在SSISDB on your SQL Server。您只需右键单击项目即可将其导出,然后选择Export

.dtsx文件可能位于sysssispackages下的msdb中,但它们也可能位于SSIS包存储中,这是SQL Server安装下的一个奇特位置。或者它们可能位于文件系统的任何位置。最好的方法是找到运行包的作业,然后挑选目标以发现其中的位置。

SSAS - 他们是一个很好的模特,所以你不会back that cube up {向少年致歉}。备份SSAS的另一篇文章,但最终会得到一个.abf文件,这是恢复所需的一切。您可能还需要花一点时间来开始安排AS实例的定期备份,因为它听起来像是从未完成过。

您还可以启动SSDT并对现有模型(表格或多维)进行反向工程并从VS进行部署。