I am using visual studio 2017 and I am trying to create a SSIS package that connects to oracle. I am getting the ORA-12638: Credential Retrieval Failed. The server connection and the username and password that I am using works. I can connect using the same information through a linked server in SQL Management Studio and SQL Oracle Developer.
I have made the SQLNET.ora change to SQLNET.AUTHENTICATION_SERVICES= (NONE). I have also ran the tnsping.exe for the server that I am connecting too and verified that I changed the correct file.
How can I make a oracle connection in SSIS to oracle?
I had to install the Oracle Data Access Components (ODAC) bundle which includes "Oracle Developer Tools for Visual Studio" from oracle.
http://www.oracle.com/technetwork/topics/dotnet/whatsnew/vs2012welcome-1835382.html
Related
I want to connect to informix database from Visual Studio 2013. I've checked the IBM site and it contains whole lot of drivers and plugins. I've installed Client SDK and then I installed IBM server driver package then I installed Visual Studio add-in.
I tried connecting using setnet 32 and I'm able to succeed.
I'm able to connect to database using Squirrel and IBM Data Studio.
I'm able to connect to server using Visual Studio but it crashes when I opened a new query.
How can I connect to an Informix database from Visual Studio 2013?
Can you please clarify how are you trying to connect IDS database.
Are you trying to connect the database by using application code such as ODBC, .NET, ESQL/C etc while it is debug using VS.
Or
are you trying to create a connection node under VS database explorer.
If it is VS database explorer then Informix CSDK do not have support for it.
You will have to install IBM Database Add-Ins for Visual Studio 2013.
This Add-Ins are part of IBM Data Server driver package.
This connectivity uses DRDA protocol, so you will have to enable DRDA port on the IDS server.
Then try create VS database explorer entries by specifying the DRDA port.
(or connect if the entry already exist)
I'm trying to use the Microsoft Connectors v2.0 for Oracle (https://www.microsoft.com/en-us/download/details.aspx?id=29283) to connect to an Oracle database through SSIS.
I am running Windows 7 SP 1 (64-bit), with Visual Studio 2013 Ultimate. I have installed the connector:
I also have the 32-bit Oracle client installed on my machine for PL/SQL Developer - it works.
But when I create a package in VS 2013 and try to connect to the Oracle DB - I don't have the option to connect to the Oracle source:either by trying to add a new connection through the connection manager or creating a Data Flow Task and dragging the Oracle Source from "Other Sources" within the data flow.
Any suggestions on how to make this work?
Thanks,
Apparently you need the Microsoft Connectors v3.0 for Oracle to work with VS 2013.
Microsoft Connectors v3.0 for Oracle and Teradata
I'm trying to connect SQL Server 2008 R2 to Visual Studio 2010. It seems that the versions are not consistent, it's a little strange for me since SQL Server is 2008 and VS is 2010!!! Since I'm a new user and cant upload image here you may find a screen shot of the error here:
http://img4up.com/up2/51497019025204797538.jpg
Would appreciate if anyone can help me.
Best Regards
Instead of using "Microsoft SQL Server Database File" use "Microsoft SQL Server"
Then connect using the server address and user information.
Visual Studio 2010 installs SQL Server Express 2008 and your database was created with SQL Server 2008 R2. You'll need to upgrade to SQL Server Express 2008 R2 to open this database.
You shouldn't be using the file option if the instance of SQL Server already exists and you plan to create a persistent database there (or use an existing one). You should be selecting a proper instance of SQL Server.
Follow the same steps as iamkrillin/Stecenko Ruslan suggested., If you had provided a username and password during the installation of SQL Server R2 , then choose the radio button "Use SQL Authentication" instead of "Use Windows Authentication"., in the "Add Connection" dialog of Visual Studio 2010.
I am new so please go easy!
I am using visual studio 2010 express. I use the wizard to add a dataset and my only options are:
Microsoft Access DB file
Microsoft SQL server compact
Microsoft SQL server db file
I have a few different types of databases set up on my system that I typically query from:
informix odbc
oracle
postgre
I am at a loss as to how to get visual studio to recognize these data source types... any help is greatly appreciated
I have Database project which I'm unable to load in VS2008 and I have SQL Server 2008 Express edition installed on my machine..
I get following error message, when I try to load
Database projects require a connection
to a local instance of Microsoft SQL
Server 2005 for design-time
validation. To perform this operation,
you must open the Tools menu, click
Options and specify an instance of SQL
Server 2005 that is running and to
which you can connect in the Database
Tools, Design-time Validation Database
property page. When that is corrected,
you must then refresh or reload the
database project.
Any suggestions/update to solve this issue?
You don't mention if you have VS2008 SP1 installed, but this is a requirement for SQL Server 2008 support in Visual Studio (KB956139)
Did you verify your instance name is correct? Tools > Options > Database Tools > Data Connections -> SQL server instance name: SQLEXPRESS (or the name you chose during install)
Does your instance accept remote connections? (mine always does, not sure if this is required) (Source)
I know this is an old thread, but...
Were you able to get this combination working? Visual Studio 2008 with SQL Server Express 2008? I had the same issue that no matter what I entered into the instance fields in the Tools->Options->Database Tools boxes, it said I did not have them entered.
From what I could find on the interwebs, everything indicated that SQL Server Express 2008 should work with Visual Studio 2008 as long as you have the SP1 installed. I tried reinstalling SP1, but received the same error - "no instance specified".
So I downloaded and installed SQL Express 2005 x64 and specified a new instance name, SQLEXPRESS2005. Then I plugged that into Visual Studio 2008's settings and it worked right away.