February 13, 2008 at 1:19 pm
Hi Steve,
I had the same problem as Andrew. I renamed the GUID with the report that was being generated. Later, I found out that there were two jobs running: one which i renamed and another one with the GUID. I got rid of the job that I renamed and the subcritpion worked just fine.
Prakash B
February 13, 2008 at 1:23 pm
Hello,
I have a Network Load Balanced Web Farm ( 2 Nodes configured as Active - Active) with SQL Reporting services installed. Report Server database is on the SQL server. When I subscribe a report on the cluster, it appears on bothe nodes. My question is: Will the report be kicked off on both the nodes of the web farm?
Any help would be appreciated.
Thanks
Prakash BhojeGowda
Prakash B
February 13, 2008 at 1:33 pm
Hello Jason,
Your article holds good for subscription via email but not subsscriptions to a share. Hope there is a way to do it
Thanks
Prakash BhojeGowda
Prakash B
February 13, 2008 at 1:39 pm
There is a way, and someone emailed me a link to that article. I'll search for it tonight and post it once I find it.
______________________________________________________________________
Personal Motto: Why push the envelope when you can just open it?
If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.
Jason L. SelburgFebruary 13, 2008 at 1:42 pm
Thanks Jason,
Would you mind taking a look at another question that I have?
I have a Network Load Balanced Web Farm ( 2 Nodes configured as Active - Active) with SQL Reporting services installed. Report Server database is on the SQL server. When I subscribe a report on the cluster, it appears on bothe nodes. My question is: Will the report be kicked off on both the nodes of the web farm?
Any help would be appreciated.
Thanks
Prakash BhojeGowda
Prakash B
May 22, 2008 at 4:36 pm
Prakash.Bhojegowda (2/13/2008)
Thanks Jason,Would you mind taking a look at another question that I have?
I have a Network Load Balanced Web Farm ( 2 Nodes configured as Active - Active) with SQL Reporting services installed. Report Server database is on the SQL server. When I subscribe a report on the cluster, it appears on bothe nodes. My question is: Will the report be kicked off on both the nodes of the web farm?
Any help would be appreciated.
Thanks
Prakash BhojeGowda
No, it will not, the report is a SQL Job, not a web server job. The subscriptions are independent of the number of front end servers you have in the RS Farm.
July 3, 2008 at 4:52 pm
Nice work Steve,
Cheers.
"Ask me your questions, bridgekeeper. I'm not afraid"
October 23, 2008 at 8:44 am
Aren't there other processes for RS that generate a job named with a GUID? Is there anyway to catch all these jobs in a view rather than just the subscription based ones?
September 25, 2009 at 12:20 am
Thank you very much.. It's so helpful for me.
July 20, 2010 at 6:29 am
Thanks Steve, It worked for me too..... I hope next releases, SSRS gives us the option to rename it or use the GUID.
February 9, 2011 at 9:48 pm
This is still an issue in SSRS 2008 and 2008 R2. We hit this today and, in the interests of not breaking Reporting Services whilst still preserving the sanity of our sa users, decided to just hide them from view altogether. I achieved this by altering the where clause on msdb.dbo.sysjobs_view:
WHERE ((owner_sid = SUSER_SID())
OR (ISNULL(IS_SRVROLEMEMBER(N'sysadmin'), 0) = 1)
OR (ISNULL(IS_MEMBER(N'SQLAgentReaderRole'), 0) = 1)
OR ( (ISNULL(IS_MEMBER(N'TargetServersRole'), 0) = 1) AND
(EXISTS(SELECT * FROM msdb.dbo.sysjobservers js
WHERE js.server_id <> 0 AND js.job_id = jobs.job_id))) -- filter out local jobs
) AND (
ORIGINAL_LOGIN() != 'sa' OR
jobs.name not like '________-____-____-____-____________'
)
(That's 8, 4, 4, 4, 12 underscores in the match by the way.)
Reporting Services can still see and manage the jobs, but our sa user can't see them and/or break them.
June 11, 2012 at 3:58 pm
Hi,
Currently, I am working on scheduling subscriptions from my ASP.Net application. I want to know what aal tables are affected when we update the date and time for any subscription. I want to perform this task from my application. Right now, I have only startdate from schedule table to update but this is not firing the scheduling part for the job.
Any help will be appreciated.
February 15, 2013 at 1:35 am
Thanks! I used this view and it helps 🙂
February 22, 2013 at 7:23 am
Hi, Steve - This post was tremendously helpful to me, so I wanted to share my thanks for the great script. I poked around, looking for the subscription emails enough to know that it was going to take quite a while to follow that trail. Saved me a lot of time trying to track the subscription emails down. And time is in short supply, as always!
Thanks again --
Donna
July 10, 2013 at 10:55 pm
Hey Donna, glad to know it still works and is helping folks out!
Steve
Steve.
Viewing 15 posts - 16 through 29 (of 29 total)
You must be logged in to reply to this topic. Login to reply