Viewing 15 posts - 20,446 through 20,460 (of 26,484 total)
Unless things have changed with Access, when you attempt to open it and run a macro, Access wants to interact with the desktop, something it can't do when you try...
June 12, 2009 at 8:17 pm
Curious. The code Iprovided found all the mdf/ldf files in my data directory that had been detached from SQL Server on my desktop system with no problems. Makes...
June 12, 2009 at 1:13 pm
Gus,
You are correct, the EXCEPT would have been easier, but I was trying to keep it close to SQL Server 2000. Only changes needed would be to the appropriate...
June 12, 2009 at 9:18 am
I already added it to my signature block!
June 12, 2009 at 8:55 am
Although this is posted in SQL Server 7/2000 forum, I don't have a SQL Server 2000 system available, so the following solution is for SQL Server 2005. With a...
June 12, 2009 at 8:42 am
This is a running totals problem and is easily solved. Unfortunately Jeff's article is currently off-line, but there are numerous forum threads here on SSC that discuss it. ...
June 11, 2009 at 11:38 pm
Yes, Jeff's article is great info, and I'm sure he'll thank you for the feedback. I'm glad we could help you understand what a powerful tool the tally or...
June 11, 2009 at 11:30 pm
darryl (6/11/2009)
June 11, 2009 at 3:58 pm
darryl (6/11/2009)
select
A.empnum,
A.ename,
...
June 11, 2009 at 3:07 pm
Pretty vague specs from which to write an application. What else can you tell us? Specifics would be really appreciated.
June 11, 2009 at 1:26 pm
Try this:
select
A.EmployeeID,
A.Name,
sum(B.reg_hrs + B.ot_hrs + B.sick_hrs + B.vac_hrs + B.hol_hrs) TotalHrs
from
employee A
...
June 11, 2009 at 1:20 pm
I'm pretty sure your requirements are more specific than what you have provided in your original post. If you could be more specific, provide DDL for your table(s), sample...
June 11, 2009 at 11:44 am
Sergiy,
Double check for me, but I think the code in the original post is missing a group by. I didn't catch that as I reformatted the code. That...
June 10, 2009 at 8:50 pm
WayneS (6/10/2009)
Lynn Pettis (6/10/2009)
WayneS (6/10/2009)
A reader of my article today asked a very good question that I'm not sure what the answer would be. I'm hoping that someone along...
June 10, 2009 at 7:04 pm
Viewing 15 posts - 20,446 through 20,460 (of 26,484 total)