Viewing 15 posts - 1 through 15 (of 26 total)
henrik staun poulsen (2/17/2006)
Ihad to enable DatabaseMail on the SQL Server Agent -> properties -> Alert System (check the checkbox), and then restart SQL Server...
May 6, 2014 at 3:06 pm
Glen (9/25/2008)
In this case this is "granted by design". You need to recreate synonym if the table on...
February 25, 2013 at 11:04 am
ARGH!
Well that helped, thanks. 🙂 On to the next step -- DOING something with the result!
November 18, 2009 at 3:22 pm
Steve Jones - Editor (3/4/2009)
I sense some frustration, and I can definitely understand that. SSIS can be a bit annoying as you get used to it.
Does this help?
November 18, 2009 at 3:02 pm
Just wanted to close this post with the answer in case anyone is searching for it.
Change the parameter type from Boolean to Integer. Change the value that goes with...
October 21, 2009 at 5:12 pm
TKD-BB: Thanks, I had the same question and your two-textboxes method solved it nicely!
Edit: Then I noticed page two of this thread, saw the problem with Excel export and changed...
September 16, 2009 at 4:58 pm
That's an interesting way to do it... I don't fully understand it! I'm going to have to read it a few more times and look up PARTITION. 🙂
However,...
September 16, 2009 at 3:39 pm
Success! This works with my four rows of sample data....
create view viewDutyDay as
select
resourceId
, activityId
, DATEADD(dd,CAST(DATEDIFF(DAY,'17530101',startDay) AS INT),'17530101') as startDayNoTime
, sum(hours) as TotalDutyHours
from dutyday
group by resourceId, activityId, DATEADD(dd,CAST(DATEDIFF(DAY,'17530101',startDay) AS...
September 16, 2009 at 12:43 pm
I have the beginnings of a thought forming. Tell me if this makes sense....
Create a view for both DutyDay and FlightDay that ignores the time portion of the startTime...
September 16, 2009 at 12:26 pm
What I would like to see is something like this:
ActivityId, Hours, StartTime, EndTime
1, 1.9, Sep 5 08:59, Sep 5 10:54
1, 2.6, Sep 4 12:52, Sep 4 15:26
1, 2.9, Sep 4...
September 16, 2009 at 12:05 pm
Okay, I'm back.
So what I need to do is create a report that shows the individual start and stop times from the FlightDay table, and give a total number of...
September 16, 2009 at 11:48 am
Thanks, I changed my regional settings. It's not ideal but it'll do the trick. I'm using SSRS 2005 so the other option you mentioned doesn't exist.
Any...
September 16, 2009 at 11:05 am
Thanks, Andrew. My library doesn't have the title you suggested but they do have "Data warehouse toolkit : the complete guide to dimensional modeling" by Ralph Kimball. I'll...
September 1, 2009 at 9:58 am
I'm great at writing queries 🙂 I started out as a programmer, and I've learned SQL as I went along, with a couple of courses here & there. ...
August 31, 2009 at 11:02 pm
SQL. The username and password are stored within the application, so it logs on with that.
But in order for the user to get to the application in...
August 31, 2009 at 4:29 pm
Viewing 15 posts - 1 through 15 (of 26 total)