Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've hit a bit of an impasse. I have a query that is generated by some C# code. The query works fine in Microsoft SQL Server Management Studio when run against the same database.

However when my code tries to run the same query I get the same error about an invalid column and an exception is thrown. All queries that reference this column are failing.

The column in question was recently added to the database. It is a date column called Incident_Begin_Time_ts .

An example that fails is:

select * from PerfDiag 
where Incident_Begin_Time_ts > '2010-01-01 00:00:00';

Other queries like Select MAX(Incident_Being_Time_ts); also fail when run in code because it thinks the column is missing.

Any ideas?

share|improve this question
Is it a problem with case maybe? Perhaps Management Studio doesn't care about case, while other ways of accessing the database are more strict. – Oliver Aug 31 '11 at 16:48
1  
Are you sure you are dealing with the same database in your code as the one in Management Studio? – rlb.usa Aug 31 '11 at 16:48
1  
Are you sure that the column name you created in C# and the column name you try to query are exactly the same? In your question, you're writing twice 'Incident _ Begin _ Time_ts' and once 'Incident _ Being _ Time_ts'. – Christian Specht Aug 31 '11 at 17:06
1  
@Oliver: case-sensitivity is not per-connection. It's as a database/sql server option. – Nicholas Carey Aug 31 '11 at 17:40

2 Answers

up vote 7 down vote accepted

I suspect that you have two tables with the same name. One is owned by the schema 'dbo' (dbo.PerfDiag), and the other is owned by the default schema of the account used to connect to SQL Server (something like userid.PerfDiag).

When you have an unqualified reference to a schema object (such as a table) — one not qualified by schema name — the object reference must be resolved. Name resolution occurs by by searching in the following sequence for an object of the appropriate type (table) with the specified name. The name resolves to the first match:

  • Under the default schema of the user.
  • Under the schema 'dbo'.

The unqualified reference is bound to the first match in the above sequence.

As a general recommended practice, one should always qualify references to schema objects, for performance reasons:

  • An unqualified reference may invalidate a cached execution plan for the stored procedure or query, since the schema to which the reference was bound may change depending on the credentials executing the stored procedure or query. This results in recompiles of the query/stored procedure, a peformance hit. Recompiles cause compile locks to be taken out, blocking others from accessing the needed resource(s).

  • Name resolution slows down query execution as two probes must be made to resolve to the likely version of the object (that owned by 'dbo'). This is the usual case. The only time a single probe will resolve the name is if the current user owns an object of the specified name and type.

[Edited to further note]

The other possibilities are (in no particular order):

  • You aren't connected to the database you think you are.
  • You aren't connected to the SQL Server instance you think you are.

Double check your connect strings and ensure that they explicitly specify the SQL Server instance name and the database name.

share|improve this answer
+1 I use sql profiler to track these types of issues down. Any time you deal with dynamic sql from other applications, capture the query with a trace, copy & paste it into a new query window, click execute to find out what's wrong. This will also validate that you are connecting to the correct instance and db as suggested above. – brian Aug 31 '11 at 20:48

If you are running this inside a transaction and a SQL statement before this drops/alters the table you can also get this message.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.