2020-7-7
server2008,IIS,ftp,WinServer Tomcat安装,centos,制作u盘系统启动,Linux常用命令,vim命令,https://blog.csdn.net/qq_28189423/article/list/2?t=1
Linux系统(Centos)安装tomcat和部署Web项目https://blog.csdn.net/qq_21077715/article/details/85541685
Linux常用命令:https://www.runoob.com/w3cnote/linux-common-command-2.html,https://www.cnblogs.com/gaojun/p/3359355.html
docker-machine:https://www.cnblogs.com/ChromeT/p/12302435.html#_label4_1
菜鸟教程:https://www.runoob.com/docker/docker-tutorial.html
docker--发布一个应用程序 https://blog.csdn.net/Linux2_SCDN/article/details/74999352
SqlServer Agent差异备份数据库:https://www.cnblogs.com/xwdreamer/archive/2012/06/26/2563618.html
ISO Images - SSDT https://blog.csdn.net/lliushanmei/article/details/80296532
SSIS SSAS SSRS cnblog https://www.cnblogs.com/biwork/p/biworklog.html
SSAShttps://www.cnblogs.com/miro/p/5775151.html
SSIS保存包错误:无法保存数据流对象。(数据流任务)
下载安装这个软件即可https://www.microsoft.com/zh-cn/download/details.aspx?id=19662
在执行Package的的时候提示错误:
未能加载文件或程序集“Microsoft.SqlServer.Diagnostics.STrace.dll, Version=14.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91”或它的某一个依赖项。系统找不到指定的文件。
未能加载文件或程序集“Microsoft.SqlServer.SqlTDiagM, Version=14.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91”或它的某一个依赖项。系统找不到指定的文件。
Microsoft.SqlServer.BatchParser.dll
原因: C:Windowsassembly这个目录下找不到 Version=14.0.0.0版本的Microsoft.SqlServer.Diagnostics.STrace.dll和Microsoft.SqlServer.SqlTDiagM,需要用命令把这两个dll添加进去
执行命令如下:(gacutil.exe在“C:Program Files (x86)Microsoft SDKsWindowsv10.0AinNETFX 4.6.1 Tools”文件夹下,需要cd过去)
gacutil.exe -i "E:Program Files (x86)Microsoft Visual Studio 14.0Common7IDEExtensionsMicrosoftSQLCommon140Microsoft.SqlServer.Diagnostics.STrace.dll"
gacutil.exe -i "E:Program Files (x86)Microsoft Visual Studio 14.0Common7IDEExtensionsMicrosoftSQLCommon140Microsoft.SqlServer.SqlTDiagM.dll"
gacutil.exe -i "E:Program Files (x86)Microsoft Visual Studio 14.0Common7IDEExtensionsMicrosoftSQLCommon140Microsoft.SqlServer.BatchParser.dll"