Viewing 6 posts - 316 through 321 (of 321 total)
Nice Problem!!
To get you started, i've worked out the SQL for the first shift, you can do the rest yourself 😛
It looks like its been butchered, however I can't think...
January 9, 2008 at 3:30 am
To do what you need you will have to self join on the #avetime table:
select stime.phoneuser, stime.origdate as call_start, etime.origdate as call_end
from #avetime stime
inner join avetime etime
...
January 9, 2008 at 2:53 am
Unfortunately i'm inbetween jobs at the moment . No database at home except for northwind and pubs and i wanted something bigger to play...
February 23, 2006 at 3:34 am
Very strange
Try running this:
select name from master..sysdatabases
and see how long it takes
June 16, 2005 at 11:40 am
Great article! And a situation which I think most DBA's have had experience with, even if it just involves messing up a test database and inconviencing a handfull of people for...
June 16, 2005 at 3:10 am
Viewing 6 posts - 316 through 321 (of 321 total)