Subscriptions not completing. Processing: 0 process of 2 total; 0 errors

We have subscriptions that have run for many months, all of a sudden radomly, some of the subscriptions say 'Processign: 0 processed of 2 total; 0 errors.  When looking at the ExecutionLog3, it shows that the reports are in Render as the ActionItem
and the status is 'RsAccessDenied'.  Now this doesn't make sense since other subscriptions are using the shared datasource and they are running just fine.   If anyone has any suggestions as to why this is happening or what we can do to stop
it from happening that would be appreciated.  We have found that deleting and re-creating the subscription then works.   Remember this is random with the subscriptions, so it is hard to narrow down why it's happening.

Hi Renee_C,
When a scheduled operation is defined, the report server creates a corresponding job in SQL Server Agent and runs the job on the date and time specified in the schedule.
According to the status "0 processed of 2 total; 0 errors", the problem can be caused by the event processing threads are all tied and not processing the events as fast as they arrive, so you will miss some of them.
Please check to see if you can find record in these two tables: ReportServer.dbo.Notifications; ReportServer.dbo.Event.
Please check information one by one to find the root cause:
Check two tables below in the reportServer DB: ReportServer.dbo.Notifications; ReportServer.dbo.Event.
If these table have information, take reference as below:
This main issue is the event processing threads are all tied and not processing the events as fast as they arrive. If you have a lot of subscriptions, if several instances of the event were running at the same time occupying all of the threads or when a lot
of subscriptions are set to fire at the same time, and they may take a long time to complete, so the subscription processing cannot keep up and falls behind. In this case, you may encouraged to run them at different times if possible.
You can check the detailed error log (default location: %programfiles%\Microsoft SQL Server\<SQL Server Instance>\Reporting Services\LogFiles),
Please check the log and if you find more details error message, please provide us to move more quickly toward a solution.
Below blogs are for your reference about Troubleshooting Subscriptions:
http://blogs.msdn.com/b/deanka/archive/2009/01/13/diagnosing-and-troubleshooting-subscriptions.aspx
http://blogs.msdn.com/b/deanka/archive/2010/02/16/troubleshooting-subscriptions-part-ii-using-the-report-services-trace-log-file.aspx
Similar Thread which have resolved for your reference:
Data-driven Subscription doesnt send out an email but job history shows its successfull
If you still have any question, please feel free to ask.
Regards
Vicky Liu
Vicky Liu
TechNet Community Support

Similar Messages

  • SSRS Data Driven Subscription Done: 9 processed of 9 total; 9 errors.

    Getting this error when running a data driven subscription on SQL Server 2008R2, Server is Windows Server 2008R2. Looked at the following.
    Report takes no parameters and I can view it/export it just fine from the report server website.
    I can run the query used in the data driven query to list emails/etc.
    I verified no errors in the SSRS Execution Log Table (all rsSuccess)
    Log File from SSRS shows what looks to be proper execution
    From the SSRS box I can telnet port 25 to the smtp mail server we are using for sending emails. (below)
    Report has been running daily for ~3 monthes.
    Nothing obvious in the Event Log.
    Anyone have any other thoughts on a place to check?
    library!WindowsService_6!978!06/09/2014-14:22:30:: i INFO: Schedule 84906a6d-12c4-4910-b032-276b736c309a executed at 06/09/2014 14:22:30.
    schedule!WindowsService_6!978!06/09/2014-14:22:30:: Creating Time based subscription notification for subscription: 2b9abd3c-35ef-49b4-8706-3412620e650b
    library!WindowsService_6!978!06/09/2014-14:22:30:: i INFO: Schedule 84906a6d-12c4-4910-b032-276b736c309a execution completed at 06/09/2014 14:22:30.
    library!WindowsService_6!c74!06/09/2014-14:22:31:: i INFO: RenderForNewSession('/Transactions/facl_trans_rpt_inventory_npr')
    library!WindowsService_6!9e0!06/09/2014-14:22:31:: i INFO: RenderForNewSession('/Transactions/facl_trans_rpt_inventory_npr')
    library!WindowsService_6!c0c!06/09/2014-14:22:31:: i INFO: RenderForNewSession('/Transactions/facl_trans_rpt_inventory_npr')
    library!WindowsService_6!518!06/09/2014-14:22:31:: i INFO: RenderForNewSession('/Transactions/facl_trans_rpt_inventory_npr')
    library!WindowsService_6!cec!06/09/2014-14:22:31:: i INFO: RenderForNewSession('/Transactions/facl_trans_rpt_inventory_npr')
    library!WindowsService_6!db8!06/09/2014-14:22:31:: i INFO: RenderForNewSession('/Transactions/facl_trans_rpt_inventory_npr')
    library!WindowsService_6!a34!06/09/2014-14:22:31:: i INFO: RenderForNewSession('/Transactions/facl_trans_rpt_inventory_npr')
    library!WindowsService_6!dbc!06/09/2014-14:22:31:: i INFO: RenderForNewSession('/Transactions/facl_trans_rpt_inventory_npr')
    library!WindowsService_6!a34!06/09/2014-14:22:32:: i INFO: Initializing EnableExecutionLogging to 'True'  as specified in Server system properties.
    library!WindowsService_6!db8!06/09/2014-14:22:32:: i INFO: Initializing EnableExecutionLogging to 'True'  as specified in Server system properties.
    library!WindowsService_6!cec!06/09/2014-14:22:32:: i INFO: Initializing EnableExecutionLogging to 'True'  as specified in Server system properties.
    library!WindowsService_6!c0c!06/09/2014-14:22:32:: i INFO: Initializing EnableExecutionLogging to 'True'  as specified in Server system properties.
    library!WindowsService_6!dbc!06/09/2014-14:22:32:: i INFO: Initializing EnableExecutionLogging to 'True'  as specified in Server system properties.
    library!WindowsService_6!c74!06/09/2014-14:22:32:: i INFO: Initializing EnableExecutionLogging to 'True'  as specified in Server system properties.
    library!WindowsService_6!518!06/09/2014-14:22:32:: i INFO: Initializing EnableExecutionLogging to 'True'  as specified in Server system properties.
    library!WindowsService_6!9e0!06/09/2014-14:22:32:: i INFO: Initializing EnableExecutionLogging to 'True'  as specified in Server system properties.

    Hi,
    You can check the below blogs for troubleshooting subscriptions. Find the Schedule ID of the most recent subscription by querying the ReportServer database and search for the Schedule ID in your Trace Log to find the relative error message.
    Monitoring and Troubleshooting Subscriptions
    http://blogs.msdn.com/b/deanka/archive/2009/01/13/diagnosing-and-troubleshooting-subscriptions.aspx
    Troubleshooting Subscriptions: Part II, Using the Reporting ...
    http://blogs.msdn.com/b/deanka/archive/2010/02/16/troubleshooting-subscriptions-part-ii-using-the-report-services-trace-log-file.aspx
    Thanks.
    Tracy Cai
    TechNet Community Support

  • When i burn a disk in Disk Utility, the burn completes but the verification process does not complete and my disk pops out. The error message i get is something like this "burn failed because disk cannot be verified," PLEASE HELP

    when i burn a disk in Disk Utility, the burn completes but the verification process does not complete and my disk pops out. The error message i get is something like this "burn failed because disk cannot be verified," PLEASE HELP.
    Also when i take the disk out it seems fine nd everything seems to be burned onto the disk. I am buring mac os x lion onto a disk.
    The disk i am using is nextech and i am burning at the slowest speed (4x).
    Also this is my 3rd time trying to do this and the verifying process keeps failing.... what do i do?

    see there
    http://www.techmixer.com/best-free-mac-burning-software-for-mac-osx/
    what you like most
    try different brand of CD/DVD

  • Does not complete processing of "Home" of the Creative Cloud desktop application

    Someone know the way to fix the following issue?
    After installed some Creative Cloud Software, I had uninstalled Adobe application manager manually and installed Creative Cloud desktop application manually.  because automatic upgrade of creative cloud desktop application from adobe application manager does not work.
    The creative cloud desktop application setup had been completed successfully.  but,  seems that  it does not complete processing of displaying the history if I chose "Home".   The progress Icon will stay in continuity.  And any contents does not show on it.
    Regards,

    I'm posting this in a few threads to try to catch everyone having the problem.
    The good news is that I found a way to fix this.
    The bad news is that it involves uninstalling everything.  (Note that reinstalling over the old installs won't cover it, I'd tried that one once too. You'll have to fully uninstall each program before redownloading/reinstalling.)
    I spent many hours with tech support yesterday running through options unsuccessfully, and can very thoroughly assure you that uninstalling the desktop app, renaming any number of folders, and new user accounts all will not help you.  From doing a lot of research on various similar problems, it appears that it's possible for this to spontaneously resolve within a couple of hours.  If it doesn't, though, you're stuck with fixing it yourself.
    The best theory I found was that it's caused by updating or installing a program without doing it through CC.  If you've downloaded an installer and run that or clicked "Check for updates" in the help menu inside one of the other apps, this is you.  Other people have noted that if you know which app you did this with, you can uninstall that one to fix it.  If you have no idea, the simplest path is to just uninstall everything.  You can try doing things one at a time, but you'll need to reboot every time the uninstaller tell you to do so and then see if it's fixed.  (Personally, I got sick of that by the second time through.)  I do remember clicking "Check for updates" right around the time this started for me, but I don't know which program it was in, just that I knew it would trigger the updates I knew existed but CC wasn't acknowledging.
    I will also note that once I had everything uninstalled, I ran the Cleaner Tool and did a "Clean All". If you're going to or need to do that, make sure you've backed up all of your preferences, customizations, plugins, and so forth as needed.

  • What does 'Appliance Error (configuration error) Your request could not be processed because of a configuration error: account is disabled' mean?

    All of a sudden Safari on my MacBook Air won't let me do anything. I have a Mac OS X Version 10.7.5.
    As soon as I open Safari, a message comes up straight away saying 'Appliance Error (configuration error) Your request could not be processed because of a configuration error: account is disabled'.
    I also can't check for system updates because of a 'network error' and can't connect to the App Store.
    My internet is working fine and safari is working fine on both my iPhone and iPad.
    I've never seen this message before and I'm not having much luck in searching for an answer.
    This may be a silly question, I don't know, but does anyone have a solution?

    Back up all data.
    From the menu bar, select
     ▹ System Preferences... ▹ Network
    If the preference pane is locked, click the lock icon in the lower left corner and enter your password to unlock it. Then click the Advanced button and select the Proxies tab. If any proxy options are selected, make a note of them and then deselect them. You don’t need to change the bypass or FTP settings. Click OK and then Apply. Test. The result may be that you can't connect to any web server. Restore the previous settings if that happens.

  • I continue to receive message that "We could not complete your iTunes Store request. An unknown error occurred (4002). Please try again later." This has been happening every time iTunes Match runs in background. Any suggestions for a cure?

    I continue to receive message that "We could not complete your iTunes Store request. An unknown error occurred (4002). Please try again later." This has been happening every time iTunes Match runs in background. Any suggestions for a cure?

    Found a potential solution here:
    https://discussions.apple.com/thread/4332757
    Gsleeroy
    Re: error 4002 in itunes match do you have a solution? 
    Sep 23, 2012 10:08 AM (in response to matracaelcan)
    Hi All,
    I had this problem today myself, and was frustrated repeatedly by the '4002' error.
    I have literally just fixed the issue by doing the following steps:
    1: Go to the 'Store' tab and select 'Turn Off iTunes Match'
    2: Return to the 'Store' tab and select 'Update Genius'
    3: Wait for this to complete succesfully, the return to the 'Store' tab once more and select 'Turn On iTunes Match'.
    4: iTunes Match will now go through the motions and should succeed!
    I hope this helps

  • Could not complete the Crop command because of a program error - Win 7

    So I use PS CC everyday for cropping out images from design mockups for websites.
    Yesterday (1 April 2014) I got a new comp from the designer with some updated images. So I opend the comp, and began to setup the cropped area with my guides. I then grabbed the marquee tool and made my selection, clicked Image->Crop, and then I get an error message.
    "Could not complete the Crop command because of a program error."
    Well that is helpful.
    So now its "Help me Google, you're my only hope.", after about an hour or so of searching this error I find that it mostly happens to Mac users. I am using Windows 7. I also find that people are trying to get information form a PSErrorLog.txt file that is suppsoed to be located in the "Preferences Folder"... again I am on Windows 7.
    So more searching to find the Windows eqivelant of this file's location: C:\Users\{USERNAME}\AppData\Roaming\Adobe\Adobe Photoshop CC\Adobe Photoshop CC Settings
    Only to find there is no PSErrorLog.txt file. I do have a sniffer-out.txt file and a bunch of .psp files, a SynchFiles folder and 2 Workspaces folders (one Modified).
    So I say to myself, "Well, I have cloud and a fast connection, won't take long to reinstall." So I delete PS ( I am also runnig DW, FL, Br, and AI ), and PS only. I do not run the cleaner tool as it only wants to delete a PS driver, or EVERYTHING!, which I do not want to do, I just want to delete PS. So I delete PS and check for anything left behind (why is there always stuff left behind? Apparently DELETE really means "Only delete some parts of the app that are required to make it work, and leave the rest behind.", or something.). Anyway, I then reinstall, go to crop again, and get the same error.
    So here I am, "Help me Adobe Forums, you're my only hope."

    Mylenium,
    You are correct. But none of that information, or those parameters, have ever had any effect on cropping anything in PS before. I crop vector smart objects brought in from AI all the time. In this case, yes the layers I am trying to crop are vector smart objects, which I rasterized and merged, then resaved the document and still get the same issue.
    But, going off of your suggestion, I did flatten the image completely and I am now able to crop it without error. I suspect that there is something else in the layers that maybe causing this issue, as you have mentioned.
    Thank you for your input, while you may not have known it, you gave me at least somewhere to start to try and figure out what is happening.

  • Could not complete the export command because of an application error

    Every once in awhile I get the error, "Could not complete the export command because of an application error" when using the Save for Web option. It's really confusing because the error is not consistent. I don't get it all the time. In fact, 99% of the time I can save with no problems. When I quit Photoshop and reopen my files they seem to save just fine. Does anyone know why this happens, and how to prevent it from happening in the future?
    Here are my specs:
    Macintosh: iMac
    OS: 10.6.8
    Photoshop: CS3 (v10.0.1)
    Any help is greatly appreciated!

    No idea about the specific issue, but I like to pass on some general advice I have received myself here over time:
    Boilerplate-text:
    Are Photoshop and OS fully updated?
    As with all unexplainable Photoshop-problems you might try trashing the prefs (after making sure all customized presets like Actions, Patterns, Brushes etc. have been saved and making a note of the Preferences you’ve changed) by pressing command-alt-shift on starting the program or starting from a new user-account.
    System Maintenance (repairing permissions, purging PRAM, running cron-scripts, cleaning caches, etc.) might also be beneficial, Onyx has been recommended for such tasks.
    http://www.apple.com/downloads/macosx/system_disk_utilities/onyx.html
    Weeding out bad fonts never seems to be a bad idea, either. (Validate your fonts in Font Book and remove the bad ones.)
    If 3rd party plug-ins are installed try disabling them to verify if one of those may be responsible for the problem.

  • ITunes Store error msg: We could not complete your iTunes Store request. An unknown error occurred (-50).

    So I began having trouble connecting to the iTunes store with my computer about a month ago. It was working fine, I purchased and downloaded some music, and then the next day I got this message when I clicked on the iTunes Store: "We could not complete your iTunes Store request. An unknown error occurred (-50). There was an error in the iTunes Store. Please try again later."
    Some basic facts about my computer:
    Mac OS X 10.7.3, purchased in May '12.
    iTunes is updated to the latest 10.6.3 version.
    I have Sophos Anti-Virus (newly installed in the last two weeks).
    No firewalls are set up.
    Parental controls are not blocking anything (don't have them set up).
    Internet connection is fine, no matter how I connect.
    I did have an older version of iTunes (the previous version, so it wasn't that old) when the problem began, so I updated to the newest version hoping it would fix it; but it hasn't. I have checked the firewalls per apple community posts. I have checked the network connection. I only just put on an Anti-Virus (and the problem was pre-AV, so it shouldn't be that). I FINALLY figured out how to uninstall iTunes, and then I reinstalled it. The store still won't open, giving me the same message. 
    A little more research seems to show that the (-50) error is when it times out? But the message appears barely half a second after I click on the iTunes Store icon. It doesn't seem to even try; there isn't enough time to warrant a 'timing out'.
    I am at a loss. At this point I am considering taking my computer in and telling them 'fix it, no matter what', but if I can avoid the hassle of being without my one and only computer for at LEAST a week, that would be great.
    Does anyone have any ideas?! 
    Thank you and God bless!
    Mary 

    Hi Laura-Wedders,
    Thanks for visiting Apple Support Communities.
    On August 7th, some users may have been unable to make purchases from the App Store, iTunes Store, Mac App Store, or iBookstore. Apple worked quickly to resolve these issues, however you may have experienced them.
    To check the current status of these systems please see:
    Apple - Support - System Status
    http://www.apple.com/support/systemstatus/
    If you are still experiencing issues, you may want to troubleshoot with the following articles:
    Can't connect to the iTunes Store
    http://support.apple.com/kb/TS1368
    iTunes: Advanced iTunes Store troubleshooting
    http://support.apple.com/kb/TS3297
    All the best,
    Jeremy

  • Itunes store: We could not complete your iTunes Store Request. An unkown error occured (0x800B0109). There was an error in the itunes store. Please try again later. This always comes up when i try to either purchase items or get updates, please help

    When i go into the iTunes store and try to update apps or buy apps/songs a window pops up stating:
    "We could not complete your iTunes Store request. An unkown error has occured (0x800B0109)"
    "There was an error in the iTunes Store. Please try again later."
    I try later but then it keeps coming up. Please help!!!

    Perhaps try the "Error 3001," "-42110," or "5103" section in the Specific Conditions and Alert Messages: (Mac OS X / Windows) section of the following document:
    iTunes: Advanced iTunes Store troubleshooting

  • When trying to sign in to the iTunes store I get the following message, "We could not complete your iTunes Store request. An unknown error occurred (5002). There was an error in the iTunes store. Please try again later."  How do you resolve this?

    When trying to sign in to the iTunes store I get the following message, "We could not complete your iTunes Store request. An unknown error occurred (5002). There was an error in the iTunes store. Please try again later."  How do you resolve this?  Has been going on for days now.

    I started getting this message a couple of days ago.
    Started a thread of my own before I saw your post. https://discussions.apple.com/thread/4660828

  • Since updating to the new iTunes, I have been getting this error message while trying to sign in to iTunes. "We could not complete your iTunes store request. An unknown error occurred (-50)."  HELP PLEASE

    Is anyone else receiving this error message, "We could not complete your iTunes store request. An unknown error occurred (-50)."?  Please Help

    Try Here  >  http://support.apple.com/kb/TS1583
    And See this Discussion...
    https://discussions.apple.com/thread/4204776?start=0&tstart=0

  • TS1717 Hi, my iTunes application is not connecting to the iTunes store. It is coming up with the following error message "we could not complete your itune store request. An unknown error occured (11222)" Can you please assist?

    Hi, my iTunes application is not connecting to the iTunes store. It is coming up with the following error message "we could not complete your itune store request. An unknown error occured (11222)" Can you please assist?

    Hi Laura-Wedders,
    Thanks for visiting Apple Support Communities.
    On August 7th, some users may have been unable to make purchases from the App Store, iTunes Store, Mac App Store, or iBookstore. Apple worked quickly to resolve these issues, however you may have experienced them.
    To check the current status of these systems please see:
    Apple - Support - System Status
    http://www.apple.com/support/systemstatus/
    If you are still experiencing issues, you may want to troubleshoot with the following articles:
    Can't connect to the iTunes Store
    http://support.apple.com/kb/TS1368
    iTunes: Advanced iTunes Store troubleshooting
    http://support.apple.com/kb/TS3297
    All the best,
    Jeremy

  • With this computer I am unable to purchase anything at the iTunes store. The message is: We could not complete your iTunes store request. An unknown error occurred (-1202).  There was an error in the iTunes store. please try again later.

    I am unable to purchase anything at the iTunes store with this computer. The message is:
    "We could not complete your iTunes store request. An unknown error occurred (-1202).
    There was an error in the iTunes store. please try again later."
    I always need to go back to my older laptop to purchase anything.
    Can anyone help?

    I get the error
    we could not complete your itunes store request unknown error occurred 50
    I use Win 7 ultimate with a fresh install of itunes. My Win 7 has never had a installation of itunes before.
    I have tried disabling my firewall, but nothing changes.

  • HT204406 iTunes Match ISSUE: we could not complete your itunes store request.  an unknown error occured (-50)

    I cannot turn on my iTunes Match.  When I try to add my computer it just says:
    "we could not complete your itunes store request.  an unknown error occured (-50)"
    and then I press ok and it says:
    "We could not complete your iTunes Store request.  The network connection could not be established"

    Apple appears to be having trouble with the iTunes Store servers right now. Wait for them to fix it.
    (81069)

Maybe you are looking for

  • How do I unlock the passcode on iPhone 5s?

    It's an iPhone 5s but I forgot the passcode , how do I get in ?

  • Help to read a table with data source and convert time stamp

    Hi Gurus,   I have a req and need to write a ABAP prog. As soon as i excute ABAP program it should ask me enter a data source name, then my ABAP prog has excute teh code, in ABAP code i have to read a table with this data source as key, sort time sta

  • Inheriting Backups?

    I recently got a new Early 2013 15 Inch MacBook Pro with Retina Display as I sold my Mid-2012 MacBook Pro, and my questions are: How do I inherit backups on and from my Time Capsule - Time Machine backups after I accidentally instead picked create a

  • Powershell to list all computers and the complete OU path

    I am trying to get a list of All Computers within the domain Prefixed UK and have it export the list to a CSV with the full OU Path. So far I can get the computers but not the OU Get-ADComputer -Filter 'SamAccountName -like "UK*"' | Select -Exp Name 

  • Regarding xi calls rfc

    i am gonna call rfc by using xi's rfc adapter. how to debug the function module. such as: i wanna check whether the value xi transfers by using rfc adapter to call rfc is correct or not. how to debug in the function module?