Tagged Questions

15
votes
6answers
15k views

Check if a SQL table exists

What's the best way to check if a table exists in a Sql database in a database independant way? I came up with: bool exists; const string sqlStatement = @"SELECT COUNT(*) FROM my_table"; ...
13
votes
5answers
329 views

The riddle of the working broken query

I was going through some old code that was written in years past by another developer at my organization. Whilst trying to improve this code, I discovered that the query it uses had a very bad ...
8
votes
3answers
201 views

RODBC queries returning zero rows

Issue: RODBC (falsely) returning zero rows Situation: I'm using RODBC to connect to a DSN I created using a commercial DB's ODBC driver (OSI Soft's PI Historian Time Series DB, if you're curious). ...
8
votes
9answers
28k views

Need a row count after SELECT statement: what's the optimal SQL approach?

I'm trying to select a column from a single table (no joins) and I need the count of the number of rows, ideally before I begin retrieving the rows. I have come to two approaches that provide the ...
7
votes
3answers
4k views

Creating a custom ODBC driver

At my current job, we're looking to implement our own odbc driver to allow many different applications to be able to connect to our own app as a datasource. Right now we are trying to weigh the ...
6
votes
1answer
159 views

How do I access an MS Access database from Oracle?

Configured access from Oracle to MS Access. Oracle XE 11.2.0.2. Microsoft Access 2010 There are two INSERTS (insert into table that is residing in MS ACCESS db) operations. One of them is using ...
6
votes
4answers
130 views

Can someone tell me what this means WriteLine(“{0,-12}”)

{0,-12} is the part i'm curious about.. I'm looking at this example Console.WriteLine("{0,-12} {1}", sqlReader.GetName(0), sqlReader.GetName(1)); ...
5
votes
2answers
1k views

C++ Access to SQL Server from Linux

I need to write some data to SQL Server database from Linux in C++. I found this sqlapi.com But I think, at first ODBC driver has to be installed and has to work. I folowed this ...
4
votes
1answer
230 views

Strange Oracle error: Identifier too long ORA-00972

I have faced this problem when working with ORACLE 10g. I read the answers given to this question here (ora-00972 identifier is too long oracle 10g) on stack overflow but they have not worked for me. ...
4
votes
2answers
258 views

Postgres query over ODBC a order of magnitude slower?

We have an application which gets some data from a PostgreSQL 9.0.3 database through the psqlodbc 09.00.0200 driver in the following way: 1) SQLExecDirect with START TRANSACTION 2) SQLExecDirect with ...
4
votes
5answers
260 views

SQL Server 2008: should I be using Windows auth or SQL Server auth?

I have an MS-Access 2007 front end. I will have multiple users on it. They are all going to be on the network company domain. Should I be using Windows authentication or SQL Server authentication to ...
4
votes
2answers
207 views

ODBC vs MySQLClient

I'm currently using ODBC to connect to my MySQL database, using C#. I've been told that using the MySql Connector would be better, and faster, and not dependent on Windows. Can someone shed some ...
4
votes
3answers
742 views

Can I make Asynchronous ODBC Calls? Any reference materials?

Does ODBC support asynchronous calls? If it does, then can you tell me about any reference materials? My preferred language is C++.
3
votes
1answer
192 views

Cannot connect to SQL Azure using a Linked Server

I've been following this article here: http://blogs.msdn.com/b/sqlcat/archive/2011/03/08/linked-servers-to-sql-azure.aspx on how to setup a Linked Server from SQL Server 2008 R2 to an SQL Azure ...
3
votes
2answers
315 views

Connecting to Teradata via Perl

Has anyone had any success with this? There aren't a great deal of references online and I've exhausted every relevant result on Google. Here's my script: #!/usr/bin/perl use DBI; use DBD::ODBC; ...
3
votes
4answers
646 views

Connection is Busy with results for another hstmt ERROR

I am newbie. I have written most of my queries in PHP. I created a connection object and then hitting sql server. function navigation($sel_subject, $sel_page,$filter=false) { $subject_set = ...
3
votes
4answers
222 views

should I always prefer working with prepared SQL statements, for performance benefits?

My understanding is that a prepared statement is compiled on the server once, thus saving the overhead of repeating parsing, optimization etc. Apparently, I should always prefer using prepared ...
3
votes
1answer
160 views

Most efficent way to merge data into SQL Server database from ODBC source

I need to constantly merge (upsert/delete) data from an ODBC data source to a SQL Server 2008 database (number of rows vary from one row to 100000 of rows) What would you recommend as the most ...
3
votes
2answers
8k views

How do I connect to my 64-bit SQL Server with ODBC?

I recently installed SQL Server 2008 Express on my Windows 7 Ultimate x64 home machine. I also have IIS 7.5 with PHP 5.3, and I was trying to connect to SQL via ADODB, but kept getting this error: ...
3
votes
4answers
2k views

How to find all nodes in a subtree in a recursive SQL query?

I have a table which defines a child-parent relationship between nodes: CREATE TABLE node ( ' pseudo code alert id INTEGER PRIMARY KEY, parentID INTEGER, ' ...
2
votes
3answers
80 views

sql insert- 1 big query, or many single queries

I am using PHP with an odbc connection to MSSQL database. Currently, I having around 1900 insert statements, in the one string, separated by a semicolon, and running that in 1 odbc_execute statement. ...
2
votes
2answers
183 views

FileMaker - ODBC/JBDC Connection - What Dialect of SQL

I set up DB Visualizer as a JDBC client for FileMaker Pro 10 Server and it's working but I'm not sure what SQL syntax to use. For example select * from Holidays limit 10 yielded a parse error. ...
2
votes
1answer
72 views

New web server and old SQL Server with different results with same code?

I have a new server with the same Classic ASP code connecting to same SQL Server 2000 database with the same connection string yet it seems to be pulling data out of the database differently now. ...
2
votes
2answers
637 views

Using SQL stored function gives invalid SQL statement

I'm trying to use stored function from Oracle Express database in c# application. OdbcCommand com = new OdbcCommand("SILNIA",sqlConn); com.CommandType = CommandType.StoredProcedure; OdbcParameter ...
2
votes
1answer
88 views

java sql connectivity

I have created a user dsn named "harshi" To insert rows in a table getting data from Java code I want to insert in SQL table. The connection statement is: String url = "jdbc:odbc:Harshi"; Connection ...
2
votes
1answer
122 views

How to connect MS Access to hosted SQL database?

How to create ODBC or DSN file for connection so that Access Linked Tables are pointing to hosted SQL Tables?
2
votes
1answer
125 views

Problem with SQLBrowseConnect

I'm making a call to odbc32.dll (SQLBrowseConnect) to return a list of databases on a sql server. From running a trace I can see the query being executed is select name from master..sysdatabases ...
2
votes
1answer
189 views

How to check if a database exists with ODBC

Hello fellow programmers I have been searching the internet for a few days now and can't find a generic method to solve this with only ODBC and SQL. Is there a way to see if a database already ...
2
votes
3answers
390 views

Problem connecting to database after a RESTORE. SQL Server 2005 and Classic ASP

I have some Selenium test scripts which I'm using to test a Classic ASP web app, but I'm having problems after restoring the database (SQL Server 2005) with a backup file before every test is run. ...
2
votes
1answer
336 views

Final form of parametric SQL commands in ADO.NET

I am getting a syntax error when I send a parameterized query to Access from my C# program via ADO.NET. I, of course, know what SQL string I have included in my code, with the parameter names ...
2
votes
2answers
2k views

“Executing SQL directly; no cursor” error when using SCOPE_IDENTITY/IDENT_CURRENT

There wasn't much on google about this error, so I'm asking here. I'm switching a PHP web application from using MySQL to SQL Server 2008 (using ODBC, not php_mssql). Running queries or anything else ...
2
votes
3answers
416 views

can I see all SQL statements sent over an ODBC connection?

I'm working with a third-party application that uses ODBC to connect to, and alter, a database. During certain failure modes, the end-results are not what I expect. To understand it better, I'd like ...
2
votes
1answer
433 views

ODBC continually prompts for password

I have an application built in Access 2003 that uses a system DSN ODBC to connect to a SQL Server. The ODBC uses SQL authentication. When the application is started, the user is prompted to ...
2
votes
1answer
620 views

A column insert or update conflicts with a rule imposed by a previous CREATE RULE statement

I'm working on a online game. I got some problems with inserting new data to table. I'm getting 2010-4-8 2:14, 37000, 513, [Microsoft][ODBC SQL Server Driver][SQL Server]A column insert or ...
2
votes
3answers
206 views

How to Inspect ODBC communication, to see the SQL being passed through?

Is there a tool for windows that we can use to inspect any SQL commands that go through a particular ODBC data source?
2
votes
12answers
329 views

Select uniques, and one of the doubles

I have a table with columns A, B and C. Column A might have duplicates. I need a query that will get me a resultset with unique values in column A, and I don't care which possible duplicate it takes. ...
2
votes
4answers
721 views

ASP.NET Query with parameters

Please help me, I don't know what can be wrong with the following code: OdbcConnection conn = new OdbcConnection(connString); String query = "INSERT INTO customer (custId, custName, ...
2
votes
4answers
658 views

Trying to choose SQL API library

I am just beginning to learn how to write software that accesses an SQL server. It seems that each server implementation (Postgres, MySQL, etc.) offers API libraries for various languages (my code is ...
2
votes
2answers
694 views

ODBC SQL Server driver error

I have a VB6 app that access's a database thru a ODBC Connection. It will run fine for a few hours then I get the following Error. Any Ideas? [Microsoft][ODBC SQL Server ...
2
votes
2answers
2k views

secure ODBC connection — oxymoron?

There are times we need to create an ODBC connection over the "tubes" to one of our customer sites. We would like to provide as much security as possible to our customers, given we are using ODBC ...
2
votes
6answers
309 views

How do I Display one Row for the lowest number of a column?

This question is complicated so examples would work best...I have the following table on ODBC, not SQL server Management NAME SEQNUM JOHN 2 JOHN 4 JOHN 7 MARY 12 ...
1
vote
1answer
66 views

I need to update customer information in one SQL Server database from another

I am new to databases, and I am looking for some help. We have a custom app that was written that keeps its data in a SQL Server database. We also have a POS system which is based upon QuickBooks ...
1
vote
2answers
96 views

SQL Server Express 'sa' login failed

I've written a program in QT that connects to a SQL Server Express DB using the following code QSqlDatabase db = QSqlDatabase::addDatabase("QODBC"); bool driverAvailable = ...
1
vote
3answers
63 views

Combine 2 SQL queries

I'm stuck on a SQL issue, I'm almost sure it's all easy but I can't find a proper answer. Below here is the example. I want to combine those 2 queries : SELECT num_rata, SUM(val_imp*0.01) AS ...
1
vote
1answer
147 views

Calling odbc_fetch_array after executing a stored procedure in PHP gives error [Microsoft][ODBC SQL Server Driver]Invalid Descriptor Index

So, I'm trying to use ODBC to execute a stored procedure in an SQL database, but it returns the error odbc_fetch_array() [function.odbc-fetch-array]: SQL error: [Microsoft][ODBC SQL Server ...
1
vote
0answers
33 views

Connecting to MS SQL Server from OSX using ActualODBC

I'm developing a cross platform (windows + OSX) application that will be used commercially. The application will need to be able to access a database (MS SQL) and show the data. I have installed the ...
1
vote
0answers
22 views

detect prepared batch statements in ODBC

Is there a way in ODBC to detect if a statement that has been prepared is an explicit batch statement, without executing it or trying to parse it myself? More precisely, is this information available ...
1
vote
1answer
88 views

how to query a layout via ODBC in Filemaker Database

I have to access a FileMaker DB via ODBC in a C# application... When querying database table, everything goes fine. However when it comes to query a layout named XYZ for instance (as far as I ...
1
vote
2answers
66 views

How did database queries handle case sensitive queries prior to the Lower()/Upper() sql functions?

I have the privledge of working with a REALLY old database. This database was built sometime in the 80s. The APP that manages it is a DOS app that the company I work for still uses. I started a ...
1
vote
1answer
161 views

Replication between MSSQL and MYSQL

I am trying to set up replication between MS SQL 2008 and MYSQL. I have installed a MYSQL ODBC 5.1 driver on the MYSQL server. Initially I was trying to just set up a linked server between the two ...

1 2 3 4