Tagged Questions
15
votes
6answers
16k 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
332 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 ...
9
votes
9answers
30k 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 ...
8
votes
3answers
220 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).
...
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
169 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
131 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
344 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
267 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
274 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
219 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
747 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
226 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
350 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
702 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
245 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
168 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
1answer
30 views
Unexpectedly changed permissions
While trying to debug my site, I suddenly started getting this error:
ERROR [HY000] [MySQL][ODBC 3.51 Driver]Access denied for user 'admin'@'XXXXXXXX' (using password: YES)
and it pointed to these ...
2
votes
3answers
91 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
1answer
189 views
How to get lotus db column names for a view using ODBC
I currently have an ODBC connection setup to a Lotus Notes db using the NotesSQL Driver which is used to create reports in Cognos BI 8.4.
I need to query for the programmatic column names (field ...
2
votes
2answers
195 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
612 views
odbc sql server driver communication link failure
I have an Access 2003 front-end with SQL 2005 back-end.
Occasionally, users get the error below and the front-end crashes.
Any pointers as to how I can resolve this?
[ODBC SQL Server Driver] ...
2
votes
2answers
657 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
92 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
133 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
130 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
205 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
405 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
354 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
434 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
473 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
666 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
209 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
332 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
757 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
3answers
694 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
739 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
310 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
4answers
47 views
How to protect an ODBC query from SQL injection
What would be the best way to protect this query from sql injection?
This example is just an example, I've read a few articles on internet but can't get my head around parametrised queries. Any links ...
1
vote
1answer
67 views
Filemaker ODBC metadata missing in SSIS / SQL
I am having trouble gaining access to FileMaker Pro 11 data through the ODBC connection and starting to believe that it is not possible.
I have installed the odbc drivers supplied with the ...
1
vote
1answer
52 views
Where Clause on Indexed Date Field returns wrong records in MS Access
I've got an AcuXDBC server that provides ODBC access to some COBOL databases. I do not control the Databases, nor the configuration of the tables.
One particular table, if I use SQL Server to ...
1
vote
1answer
77 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
126 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
66 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 ...