Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
845 views

BDE, Delphi, ODBC, SQL Native Client & Dead lock

We have some Delphi code that uses the BDE to Access SQL Server 2008 through the SQL Server Native Client ODBC driver (2005 version). Our issue is that we're experiencing some deadlock issues in a ...
3
votes
3answers
5k views

Cannot connect from Classic ASP to SQL Server 2008 R2 using SQL Native Client (Windows 7 - IIS7)

I'm able to connect to SQL server 2008 R2 when I use Provider=SQLOLEDB in my connection string. But when I use Provider=SQLNCLI in connection string I'm unable to connect. ADODB.Connection error ...
1
vote
1answer
60 views

When is it safe to uninstall SQL Server Native Client programmatically?

How do you determine when it is safe to uninstall the 'SQL Server Native Client'? I believe that simply checking whether there is an SQL Server instance installed is naive. I've tried researching and ...
1
vote
1answer
51 views

Is there a best practice on how to connect to a SQL Server database from a 2-tier application?

I'm developing a desktop client application in wpf and I want to put my database which I currently have in Access on our SQL Server instance. I don't think it's a good idea to use windows ...
1
vote
1answer
74 views

SQL Server 2008 Native Client issue [closed]

We have two virtual machines on a server. We have Sql server installed on one vm and on another vm sybase is installed. We can't find "SQL Server 2008 Native Client" driver on the machine where we ...
1
vote
1answer
107 views

Notifying Excel 2007 about changes in a database in SQL Server 2008 R2

I have a lot of trouble using Excel 2007 together with SQL server 2008 R2. I need to share data between two or more workbooks, and I want to do this through a SQL database (placed in SQL Server 2008 ...
1
vote
1answer
2k views

ODBC Error: Invalid String or Buffer Length--Microsoft Server 2008 32bit vs 2008 R2 64bit

Attempting to connect from Java 6 console app to Microsoft SQL Server 2008 R2 on an Microsoft Windows Server 2008 R2 64bit system via an ODBC System DSN using SQL Server Native Client 10.0. The ...
1
vote
3answers
865 views

Why doesn't SQL Server automatically up-convert DATE to DATETIME for comparison purposes?

I love the new DATE datatype in SQL Server 2008, but when I compare a DATE field to a DATETIME field on a linked server (SQL 2005, in this case), like this: DECLARE @MyDate DATE SET @MyDate = ...
0
votes
0answers
122 views

SQL Server Native Client, ODBC, corrupted nvarchar(max) values

We have a Classic ASP application that has been running successfully using the SQL Server ODBC driver (6.01.7601.17514). Our database is SQL Server 2008 R2 SP1. We have recently decided to implement ...
0
votes
1answer
674 views

sqlcmd not working after installing sql server 2005 express

I downloaded the 53.5 MB setup of SQL Server 2005 Express from this URL: http://www.microsoft.com/downloads/en/details.aspx?familyid=220549B5-0B07-4448-8848-DCC397514B41&displaylang=en Then I ...
0
votes
2answers
459 views

VB6 “Provider cannot be found.”

I have a few applications written in VB6 that are all using the same connection string on the same machine. They are using the ODBC provider with the SQL Server Native Client 10.0 driver and ...
0
votes
2answers
590 views

How to run a win32 native application that requires sql server native client on MacOSX with winebottler?

I am experimenting with WineBottler and I would like to try to run my win32 native application written in Delphi on OSX. The application runs, but I stop at login screen since I cannot connect to SQL ...
0
votes
2answers
677 views

Inserting a BLOB with OLE DB

I'm working on an app which is using OLE DB and SQL Server Native Client to access a SQL Server DB. To date, I've only been dealing with fairly simple SQL. For this, I've been obtaining an ...
-3
votes
3answers
402 views

SQL Server 2005, SQL Driver for PHP v1.1 eats “Transaction doomed in trigger” errors

short version: the sqlsrv driver (Native Client wrapper) "eats" constraint violation errors generated from triggers; the mssql driver (ntwdlib wrapper) reports them just fine. SQL Server 2005 PHP ...