Sign in
Data Access Technologies
(Data Access, XML, SSIS, LINQ, System.Data ...)
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Common Tasks
Blog Home
Email Blog Author
About
OK
RSS for comments
RSS for posts
Atom
Search
Tags
ADO
ADO .NET Sync Service
ADO.NET
ADO.NET Data Services
Attunity
Custom Entity
JDBC
Kerberos
Linked Server
Native Data Access Technologies
NONSSIS
ODBC
OLEDB
Oracle
SAP BI
SPN
SQL CE
SQL Server
SQL Server Connectivity
SQL-CLR
SSIS
SSMA
SYNC Framework
System.XML
XML
Monthly Archives
Archives
March 2013
(5)
December 2012
(4)
September 2012
(2)
August 2012
(5)
April 2012
(1)
January 2012
(3)
November 2011
(2)
October 2011
(4)
September 2011
(1)
August 2011
(3)
June 2011
(1)
May 2011
(1)
April 2011
(2)
February 2011
(2)
January 2011
(3)
December 2010
(2)
November 2010
(1)
October 2010
(2)
September 2010
(1)
August 2010
(2)
June 2010
(6)
May 2010
(3)
April 2010
(4)
March 2010
(6)
February 2010
(1)
January 2010
(7)
December 2009
(6)
November 2009
(4)
October 2009
(7)
April 2009
(4)
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Data Access Technologies
SSIS Error Code DTS_E_OLEDBERROR. An OLE DB error has occurred :- Reasons and troubleshooting.
Posted
over 4 years ago
by
Snehadeep
18
Comments
This is a very generic error and can occur due to multiple reasons. I am documenting as much as of them based on Case studies. Refer to the description and the error codes for each of the unique errors. A: Error: "DTS_E_OLEDBERROR. An...
Data Access Technologies
“ORA-12154: TNS: could not resolve the connect identifier specified” error while creating a linked server to Oracle
Posted
over 3 years ago
by
Snehadeep
7
Comments
This is one of the most common errors while creating linked server to Oracle database. Today I will discuss the reason for this error and possible resolutions. Full error message: OLE DB provider "MSDAORA" for linked server "LINKED_ORA...
Data Access Technologies
Connectivity Issue with Oracle in x64 Environment “ORA-12154: TNS:could not resolve the connect identifier specified”
Posted
over 3 years ago
by
Snehadeep
6
Comments
When you try to develop an SSIS package in x64 Environment in BIDS that connects to a Oracle Database, you will invariably run into connectivity issues if the installed Oracle Client tools version is 10.2.0.1 (x86). You will obviously need to install...
Data Access Technologies
SQL BULK COPY ERROR (“Operating system error code 5(Access is denied.)”)
Posted
over 3 years ago
by
Snehadeep
6
Comments
While there are various forms of bulk copy this blog specifically deals with copying data from a file into SQL Server. It deals about the specific error “Operating system error code 5(Access is denied.)” which might crop up under certain circumstances...
Data Access Technologies
Permissions needed to set up linked server with out-of-process provider
Posted
over 3 years ago
by
Snehadeep
8
Comments
When setting up linked server to third-party Databases, it is recommended to run the third-party provider in out-of-process mode, because when the provider is run in-process (within the same process as SQL Server), then any issues with the provider can...
Data Access Technologies
Consuming Web Services in SSIS Script Task
Posted
over 3 years ago
by
Snehadeep
3
Comments
In this blog I will discuss about how to consume a Web Service in the Script Task of a SSIS package. To consume web methods in SSIS script task you need to follow the following steps: Create a Proxy Class of a Published Web Service ...
Data Access Technologies
Zombie check on Transaction - Error : This SqlTransaction has completed; it is no longer usable.
Posted
over 3 years ago
by
Snehadeep
2
Comments
You may get intermittent error from your application saying " This SqlTransaction has completed; it is no longer usable.". This may have to do with the way connection and transaction are handled in your application. One of the most frequent reasons I...
Data Access Technologies
ODBC drivers not visible in the ODBC Data Source Administrator (odbcad32.exe)
Posted
over 2 years ago
by
Snehadeep
3
Comments
I recently had an issue where after the installation of a Third party Client side tools, we were not able view the drivers listed in the ODBC Data Source Administrator (odbcad32.exe). In order to create a DSN to use this third party driver, we had...
Data Access Technologies
Testing connection to SQL Server from a service running under Local System Account
Posted
over 3 years ago
by
Snehadeep
0
Comments
We sometimes run into scenarios where an application or a windows service running under Local System Account needs to connect to SQL Server and encounter authentication Errors/issues with SQL Server. In SQL Developer support team, we have worked on customer...
Data Access Technologies
Error: "The underlying provider failed on Open" in Entity Framework application
Posted
9 months ago
by
Snehadeep
2
Comments
My name is Archana CM from Microsoft SQL Developer Support team, we support many data access technologies including Entity Framework, SSIS. I had chance to work with developer who was having issues in his Entity Framework, one of the issue was while adding...
Data Access Technologies
Running SQL Server ‘Default’ instance on a non-default (or non-standard) TCP port: : tips for making application connectivity work
Posted
over 3 years ago
by
Snehadeep
1
Comments
We know that with the default setup of SQL Server (SQL Server 2000/2005/2008), the ‘Default’ instance listens on TCP port 1433. But we have seen that some customers prefer running SQL Server ‘Default’ instance on a TCP Port other...
Data Access Technologies
SSIS error “Failed to retrieve data for this request”: reasons and resolutions
Posted
over 4 years ago
by
Snehadeep
2
Comments
1. After connecting to SQL Server Integration Services 2005 from SQL Server Management Studio, when you expand MSDB under Stored Packages to see list of stored packages, you may get below error. Failed to retrieve data for this request...
Data Access Technologies
Unable to execute a remote stored procedure over a linked server
Posted
over 3 years ago
by
Snehadeep
2
Comments
I ran into an interesting situation when executing a Remote Stored Procedure on Linked Server using four part query. Vista-3139 which is a SQL Server 2005 instance is linked to the SERV2003\SQLDUMMY which is a SQL Server 2000 named instance. ...
Data Access Technologies
Importing Excel 2010 Data into Sql Server
Posted
over 2 years ago
by
Snehadeep
1
Comments
Guys, I was really excited to find out that Excel 2010 overcomes the limitation of having a maximum number of 255 columns in a worksheet. Personally I always wanted Excel to get around this column limitation while storing data. However, I wanted to share...
Data Access Technologies
Using Network trace to troubleshoot intermittent connectivity issues
Posted
over 3 years ago
by
Snehadeep
7
Comments
Intermittent connectivity issues from a client machine when connecting to a remote database server can be often attributed to the network layer. By collecting the network traces and reviewing them we can tell why the connections failed to succeed or if...
Data Access Technologies
Connecting to remote SQL Server Integration Service from SQL Server management Studio
Posted
over 3 years ago
by
Snehadeep
0
Comments
Today I am trying to cover a common issue that we face while trying to connect to a remote SSIS service. Sometimes, it happens that when you try to connect to SSIS using SSMS on the machine where SSIS is running and it connects just fine. ...
Data Access Technologies
How to create a linked server in SQL Server 2005 for Sybase ASE 12.5 database using DataDirect's ODBC Driver and OLEDB provider?
Posted
over 4 years ago
by
Snehadeep
2
Comments
Linked server in SQL Server 2005 to Sybase ASE 12.5 can be created with both ODBC driver and OLEDB provider. Below are the steps. A. Creating Linked server for Sybase ASE 12.5 from SQL Server using DataDirect Sybase Wire Protocol ODBC driver...
Data Access Technologies
SQL Server Import Export Wizard fails while trying to retrieve the data from Pervasive Database
Posted
over 3 years ago
by
Snehadeep
4
Comments
When trying to import data from Pervasive DB to SQL Server 2008 DB using import/ export wizard we get the following error message :- "Column information for the source and the destination data could not be retrieved, or the data types of...
Data Access Technologies
Why is my ConnectionString incorrect..?
Posted
over 3 years ago
by
Snehadeep
6
Comments
Folks, I wanted to post this experience as I struggled for a couple of days trying to figure out what’s wrong in my connection string when I handled a migration scenario from Windows 2000 to Windows 2008. I had a bunch of VBScripts doing database...
Data Access Technologies
Troubleshooting “Cannot create an instance of OLE DB provider”
Posted
over 2 years ago
by
Snehadeep
4
Comments
Today I am going to blog about a frequent issue that we come across while creating linked server-: Cannot create an instance of OLE DB provider "MSDADASQL" for linked server "MyDB2" In this scenario I was creating a linked server to a DB2 server...
Data Access Technologies
Connection leak , its symptoms and troubleshooting
Posted
over 4 years ago
by
Snehadeep
0
Comments
To know about connection leak you first need to have a basic idea of connection pooling. If you are not sure about connection pooling please visit the following link –: http://msdn.microsoft.com/en-us/library/ms810829.aspx http://msdn.microsoft...
Data Access Technologies
Way to Expose Custom method in an Entity class from WCF Data Service
Posted
over 4 years ago
by
Snehadeep
0
Comments
There are scenarios where we may want to add additional methods to an Entity class. When we implement them we have to extend the Entity Data Model Class project by implementing a partial class in our Entity Project. We then create a data service...
Data Access Technologies
Sync Framework Frequently Asked Questions (FAQ)
Posted
over 3 years ago
by
Snehadeep
6
Comments
In this blog, I have attempted to answer some common questions we have seen on Sync framework (and Sync services for ADO .Net) while working with our customers on Sync framework issues. After working with multiple versions of Sync Framework and Sync Services...
Data Access Technologies
How to grant ReadServicePrincipalName and WriteServicePrincipalName rights to SQL Server service start-up account without using ADSDIEDIT tool.
Posted
over 3 years ago
by
Snehadeep
4
Comments
I hope you probably know how to fix below different authentication related errors that can occur while connecting to SQL Server with Windows Integrated Authentication. 1. Login failed for user '( null) '. Reason: Not associated with a trusted...
Data Access Technologies
The SSIS and Excel Story Continues
Posted
over 2 years ago
by
Snehadeep
5
Comments
Folks, in my continued experimentation with SSIS and Excel I found out another roadblock which is typically permission related and want to highlight the same in this post. This time I used the script task to read and save an Excel (.xls) document using...
Page 1 of 4 (95 items)
1
2
3
4