Viewing 15 posts - 14,836 through 14,850 (of 15,381 total)
You mentioned using c# in an earlier post, are you doing this from a c# app. If so this should be pretty simple with some dynamic sql in your c#...
April 1, 2011 at 7:14 am
Yeah i don't understand what you mean about loop through the tables. Are you saying that the table name is indicated in the file name? Most likely you will have...
March 31, 2011 at 10:04 am
I don't understand. Your data is saved in files and you want to look at each file?
March 31, 2011 at 7:53 am
This whole trigger is going to cause you problems at some point even if you work out the current issue. The problem is that you are making the (incorrect) assumption...
March 25, 2011 at 3:11 pm
Take a look at average and grouping.
bobsp (3/24/2011)
I also need to a query that looks for missing data for a given date between the hours of 08:00 and 08:30.
This is...
March 25, 2011 at 2:09 pm
I think your logic for not exists is not quite what you are looking for.
select *
into ##Icd9sOnlyInVal
from ##ValitdationData where not exists
(SELECT * FROM ##temp3...
March 24, 2011 at 11:00 am
LOL or a right join would do it too. 😛
March 24, 2011 at 10:35 am
kevin.l.williams (3/24/2011)
rmechaber (3/24/2011)
Sean Lange (3/24/2011)
rmechaber (3/24/2011)
March 24, 2011 at 10:34 am
Your join logic above still won't get what you want. I can toss some pseudocode at it but without actual dll and some sample data i can't test it. check...
March 24, 2011 at 9:28 am
rmechaber (3/24/2011)
March 24, 2011 at 9:08 am
Probably just a date column that would have all 4 dates from the where clause in your cte. Then instead of putting your condition in the where you would do...
March 24, 2011 at 8:30 am
So digging through this it looks like you want to return a record for 1/25 in the result but there is no record for that date in the source data?...
March 24, 2011 at 8:15 am
Sean Lange (3/22/2011)
March 22, 2011 at 3:33 pm
Man I have to say that you come up with the most bizarre requirements ever. You really should consider using proper datatypes to hold your data. You are using nchar(10)...
March 22, 2011 at 3:30 pm
Viewing 15 posts - 14,836 through 14,850 (of 15,381 total)