Viewing 13 posts - 1 through 13 (of 13 total)
what drives me crazy about this error is that I don't think it's related to converting varchar to numeric as the error suggests.
I say this because I've been able to...
July 15, 2009 at 10:17 am
I haven't created a derived table. I'm not a pro at this so help me understand what A derived table would accomplish.
Are you saying I would insert all of the...
July 13, 2009 at 10:35 am
As I mentioned in my initial post, my company migrated from a SQL Server 2000 database to a SQL Server 2005 database.
Since this migration, I've had to fix all the...
July 13, 2009 at 9:22 am
Thanks Lynn. I appreciate your time and responses just as do the others that posted.
Amedeo
July 1, 2009 at 10:58 am
Sorry for the delayed reply. Report writing isn't my primary responsiblity so I'm limited on how much time I can spend on this.
I'm still leaning towards the fact that...
July 1, 2009 at 10:44 am
I think this error is mainly being caused by the convert() function within the first WHERE statement. As I originally stated, the query was working prior to the migration to...
June 30, 2009 at 2:24 pm
The result_value and problem_code are both varchar datatypes.
I have not tried creating a derived table to filter the problem_code. I will try that and see what happens.
I tried using...
June 30, 2009 at 2:19 pm
Lynn Pettis
Have you tried changing this: WHERE QResult2.problem_code = 11
to this: WHERE QResult2.problem_code = '11'
I actually had it listed as you suggested and removed the quotes around...
June 30, 2009 at 11:28 am
I didn't do exactly what you posted but your suggestion led me to figuring it out. I used the MAX() function in the SELECT statement and used a GROUP BY...
July 6, 2007 at 3:00 pm
Donavon -
Thanks for your help!!!! I followed the suggestion of the link you posted and modified my query to include "ALL". I then set the default parameter for Doctors...
August 10, 2006 at 9:50 am
I will look at the article you suggested but what I find odd is that the default value for parameter 1 (billing status) works just fine. Parameter 2 (doctor) doesn't....
August 10, 2006 at 9:31 am
Thanks for the advice but that won't work for me. The reason being that my two parameters are billing status and doctor name. I set up two queries that return...
August 10, 2006 at 8:56 am
Thanks Thuan! Your solution solved my problem!
July 18, 2006 at 12:38 pm
Viewing 13 posts - 1 through 13 (of 13 total)