Viewing 15 posts - 211 through 225 (of 253 total)
That is brilliant Hari. I never thought of jumping to the same report.
It works perfectly in preview mode but when I deploy it, it tells me that the SupporterID...
October 7, 2010 at 10:31 am
Thanks, that is the conclusion that I reached too.
There is some way to do it though because Enterprise Policy Management Framework manages to capture cms output to a database. I...
October 7, 2010 at 8:26 am
This is very valuable for planning outages. If I put in the time range for last night, can it show me which jobs did not run because the server was...
September 28, 2010 at 4:02 pm
Very nice. Thanks Derrick! I'll give it a run now.
Howard
September 28, 2010 at 3:26 pm
Thanks Derrick. I poked around in msdb.dbo.sysjobhistory , msdb.dbo.sysjobs, and msdb.dbo.sysjobsteps but did not find a way to produce the result.
September 28, 2010 at 10:42 am
I came up with this which seems to work:
IF OBJECT_ID('tempdb..#temp') IS NOT NULL
BEGIN
DROP TABLE #temp
END
SELECT SD.Name, CONVERT(varchar(12), MAX(Backup_Finish_Date), 101) AS Last_Backup
,Type, convert (varchar(5),DATEDIFF(d, MAX(Backup_Finish_Date), GETDATE())) AS Days_Since_Last
INTO #temp FROM MSDB.dbo.BackupSet...
September 8, 2010 at 10:32 am
Thanks for responding Gail. I'll do it the preferred way. Just looking to gain knowledge.
August 15, 2010 at 5:03 pm
Thanks Luke. I see where you are going with this. The report is in SSRS 2008 but I'll give it a try.
Yes, I have a header that lists...
August 5, 2010 at 12:33 pm
Thanks RB, it is very interesting. I'll give it a try. Event handlers and logging are things I've been wanting to learn about.
July 2, 2010 at 1:52 pm
We don't have any users who have access to the flat file. I guess we could easily bring the value into a table and eliminate an external point of...
June 29, 2010 at 10:55 pm
I'm taking a DTS package and converting it to SSIS. The original package used a flat file source. I think that they want to allow users who don't have...
June 29, 2010 at 3:20 pm
Thanks so much or the help. This task is working perfectly now!
June 29, 2010 at 8:09 am
Thanks da-zero. I see, == is used because both sides are equal to each other.
I'll build a msgbox to find out for sure.
June 29, 2010 at 2:37 am
I think that I'm getting close.
I made a system variable in SSIS that evaluates as an expression which is User::ActiveSchema
Than added this VB script task code:
Dim file As String
...
June 29, 2010 at 12:19 am
Viewing 15 posts - 211 through 225 (of 253 total)