Viewing 15 posts - 1 through 15 (of 55 total)
Thanks, Gail. I think I was just overthinking it.
Bex
November 17, 2015 at 8:37 am
Should all the records have an ID of 1? As you are then using that ID to join, as far as I can see, you will have 3 rows...
June 10, 2015 at 9:46 am
Eirikur Eiriksson (5/23/2015)
Bex (5/22/2015)
<Persons>
<Person>
<STAFFID>12345678910</STAFFID>
<SURANME>Bloggs</SURNAME>
<FIRSTNAME>Joe</FIRSTNAME>
...
May 23, 2015 at 3:18 am
spaghettidba (3/24/2015)
Part of what I'm about to post has already been Said in a Twitter conversation between Brandie, Sioban and myself yesterday. I'm sorry if my frankness is going to...
March 25, 2015 at 2:28 am
It looks like your inner join is the issue. If you want all dates, then if you start with that, then left outer join to your other tables, it...
March 9, 2015 at 7:00 am
We no longer use Backup Exec but did for a few years, and I know our sys admin was able to stop Backup Exec backing up SQL databases. If...
December 11, 2014 at 9:36 am
Thanks Daniel.
I think I was just having one of those "can't see the wood for the trees days."
Appreciate your time and input.
Bex
October 29, 2014 at 10:15 am
paul.knibbs (6/20/2014)
rodjkidd (6/20/2014)
Just no idea why you would want to call me Dave. That one has always alluded me.
Trigger, in "Only Fools and Horses", never got Rodney's name right--he always...
June 20, 2014 at 1:12 pm
rodjkidd (6/20/2014)
It came to prominence in the UK thanks to this show;
http://www.bbc.co.uk/comedy/onlyfools/uncovered/rodney.shtml
Cheers,
Rodders...
You are, of course, in danger of being called Dave 😉
Bex
June 20, 2014 at 3:05 am
Did you make sure that the account that is used to run the report (ie the one defined in your connection) has rights to run the sp? I know...
May 6, 2014 at 4:34 am
Thank you. Our network guy has been out, but back tomorrow, so I'll ask him to check.
Appreciated!
Bex
June 4, 2013 at 12:57 pm
if you have a comment mark before the last line
eg --) l9 rather than just ) l9
If I comment out the last line, I...
May 23, 2013 at 5:41 am
I have an 8.5 if that is any use?
Edit : Just checked, it is the supplied help file
Bex
April 30, 2013 at 5:54 am
I'm short on time right now, but if you adapt this to your tables, it should get you what you need
select Table_1.ID, Table_1.name, (sum(Table_1.hours) + sum(Table_2.hours)) as hours
from...
April 26, 2013 at 3:14 am
Viewing 15 posts - 1 through 15 (of 55 total)