Unable to connect to IBM DB2 from SSIS / VS.NET 2015, though works with VS.NET 2013 - ssis

We are planning to upgrade from SQL Server 2014 and Visual Studio 2013 to SQL Server 2016 and Visual Studio 2015.
The error message:
[IBM][System i Access ODBC Driver]Communication link failure.
comm rc=25202 - CWBCO1034 - SSL error, function returned 25202
Background
We have an SSIS project which connects to an IBM DB2 server and retrieves data. This has been working for years.
The working setup looks like this:
Windows 10
Visual Studio 2013
SQL Server Data Tools for Visual Studio 2013
IBM i Access for Windows, version 7 Release 1
A DSN pointing to the IBM DB2 server
ADO.NET Connection Manager with ODBC Data Provider pointing to the DSN mentioned above.
SSL enabled on the DSN.
If we on the same machine use Visual Studio 2015 and subsequently SQL Server Data Tools 2015, it no longer works. Everything else is the same!
As soon as the package is opened and SSIS starts to validate the connection managers the error message arises.

Related

Failed to open a connection to the database

I have used Visual Studio 2008 for crystal report development and try to connect SQL database (SQL server 2008-R2) in .xsd file, but I have failed. I have also try to fixed issue by installing service pack of visual studio 2008, but still issue is not resolve.
https://www.microsoft.com/en-us/download/details.aspx?id=10986
Error Message:
Microsoft Visual Studio
Failed to open a connection to the database
This server version is not supported. Only servers up to Microsoft SQL Server 2005 are supported.
Please give your suggestion
Thank You in advance

Error while Deploying SSIS package to SQL Server 2012 DB SSIS Catalog using SQL Server 2014 client

I am trying to deply SSIS Package (ispac file) created in SQL 2012 Data Tools using SQL Server 2014
I have followed following steps
Opened SQL 2014
Connected to Datase Server (SQL Server 2012)
Created a folder under Integration Services Catalog/SSISDB
Double clicked on my ispac file and selected source as Ispac file and Destination as the folder created in step 2
The package was deployed successfully.
Configured the parameters properly
However when I Validated or tried to execute the package it gave me following errors.
When I tried to deploy it on SQL 2012 using SQL 2012 client instead of MS SQL 2014 it worked fine. I tried it by remotely logging into database server.
Is there any solution for it?
Do I have to login to server and perform the deployment. Can't I just do it from my Local machine?
Your log definitely shows that packages were upgraded to SSIS 2014 format - see message with PackageFormatVersion 8. When you deploy project with SSIS Deployment Wizard, which is invoked from SQL 2014 SSMS, the Project is converted implicitly. Recommendation - install SSMS from SQL 2012 and deploy from it. You might do it locally, not necessarily logging on to the server.

Connection to a database

How do i connect visual studio c++ 2010 to my sql database and transfer information?
A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible
Should i type a program for this?
Full integration with Visual Studio 2010 is available only with MySQL Connector/Net 6.3.2 and up, although applications using earlier versions of the connector can be built with the Visual Studio 2010 environment using .NET 2.x frameworks.
Once you have installed the connector follow the MySQL documentation

Team Foundation Server 2010 on Windows Server 2012

We will migrate from Windows Server 2003 to Windows Server 2012.
My question is if we can use Team Foundation Server 2010 on the new server, or if we need to update to TFS 2012?
It appears that Sharepoint Foundation 2010 doesn't support Windows Server 2012, and I believe SQL 2012 doesn't work with TFS 2010, but if you can live without Sharepoint and you can use SQL 2008 R2 (or prior), you should be fine.
Take a look at: http://msdn.microsoft.com/en-us/library/vstudio/dd578592.aspx
Notice where it says:
Because Team Foundation Server installs SharePoint Foundation 2010 with the standard configuration, you can’t use it on Windows Server 2012. If you want to install Team Foundation Server on Windows Server 2012, use the advanced configuration and skip the installation of SharePoint Foundation 2010.
Regarding SQL 2012, take a look at this: http://blogs.msdn.com/b/bharry/archive/2013/01/11/tfs-2010-will-not-support-sql-2012.aspx
I am unable to get TFS 2010 running on Windows Server 2012 because TFS doesn't seem to recognize the IIS 6.0 compatibility mode. See:
Error installing TFS 2010 in Windows Server 2012
and
Application Tier Configuration Failed For TFS 2010 on Windows Server 2012 R2
Magol and Adam (or anyone else), have you got it running successfully?

Error adding database to a mvc3 application

I found this error when I was adding my database to visual studio 2010 for making a MVC3 application. I am using SQL Server 2008.
The database 'C:\USERS\KAPIL.AGRAWAL\DOCUMENTS\VISUAL STUDIO 2010\PROJECTS\DT\DT\APP_DATA\DTRIAL.MDF'
cannot be opened because it is **version 661**.
This **server supports version 655** and earlier. A downgrade path is not supported.
**Could not open new database** 'C:\USERS\KAPIL.AGRAWAL\DOCUMENTS\VISUAL STUDIO 2010\PROJECTS\DT\DT\APP_DATA\DTRIAL.MDF'.
CREATE DATABASE is aborted.
An attempt to attach an auto-named database for file c:\users\kapil.agrawal\documents\visual studio 2010\Projects\dt\dt\App_Data\dtrial.mdf failed.
A database with the same name exists, or specified file cannot be opened,
or it is located on UNC share.
It seems that the database was created with SQL Server 2008 R2 (version 611) and you are trying to open it with SQL Server 2008 RTM or SP1 (version 655). You cannot backup/restore or detach/attach from a higher version to a lower version. You could upgrade your local database server to SQL 2008 R2. See this article for more information.