Home All Groups Group Topic Archive Search About

how to better manage jobs created by reporting services?

Author
17 Aug 2006 10:23 PM
=== Steve L ===
the job names and step names are so encripted, they often look like
4DC18F43-DF2F-4F12-BAFB-58DD054EF0BA
or
exec ReportServer.dbo.AddEvent @EventType='TimedSubscription',
@EventData='4ade808a-0199-4

is there an easy way to find out a report name the job is referring
from sql side?
thank you.

Author
17 Aug 2006 10:26 PM
Immy
It IS is complete PAIN - but i'm not aware of any ways yet to resolve it.
I'll watch your post with interest incase someone knows of a solution, but
i'm not holding my breath!

Show quote
"=== Steve L ===" <steve.***@powells.com> wrote in message
news:1155853380.452637.6510@h48g2000cwc.googlegroups.com...
>
> the job names and step names are so encripted, they often look like
> 4DC18F43-DF2F-4F12-BAFB-58DD054EF0BA
> or
> exec ReportServer.dbo.AddEvent @EventType='TimedSubscription',
> @EventData='4ade808a-0199-4
>
> is there an easy way to find out a report name the job is referring
> from sql side?
> thank you.
>
Author
17 Aug 2006 11:20 PM
Q
Run the following in the ReportServer:

select rs.ScheduleID, c.Path, c.Name
from ReportSchedule rs
    inner join Catalog c on c.ItemID = rs.ReportID


Show quote
"=== Steve L ===" wrote:

>
> the job names and step names are so encripted, they often look like
> 4DC18F43-DF2F-4F12-BAFB-58DD054EF0BA
> or
> exec ReportServer.dbo.AddEvent @EventType='TimedSubscription',
> @EventData='4ade808a-0199-4
>
> is there an easy way to find out a report name the job is referring
> from sql side?
> thank you.
>
>
Author
18 Aug 2006 4:55 PM
=== Steve L ===
thanks for the reply.
i know there is a sp you can run to return report name by submitting
job id.
but i'm looking for an 'easy' way to manage them. if there were
hundreds of reports, are we going to query each time just try to find
out which reports have problem?! i tried to add comment in the job but
they got wiped out everytime when the report on the reporting services
being modified and saved.

although MS recommended managing reports thru Reporting Service
Manager, but for testing, it's easier and more flexible to do in the EM
job management. There should be a friendly name in the job properties!

AddThis Social Bookmark Button