How do you troubleshoot a scheduled snapshot

Hello, I have a ton of reports that have a snapshot taken on the 2nd day of the month. Has worked fine until this past weekend when the snapshots did not happen. There is nothing I see in SSRS that explains it. The schedule is still there. Is there a way
to find the root cause of why the snapshots didn't fire? The server and database were functioning at the time.

Hi cmunkres,
As JJordheim posted earlier, please check if the schedule is work well in the report server. In SSRS, we can open the Schedule table in the ReportServer database to check the schedule. And the SnapshotData table is record the data about the snapshot.
Reference: Report Server Database
Alternatively, we can check the log file to fine the root case. In SSRS 2012, the log file default location is:
C:\Program Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\LogFiles
Could you please post the error log? It is benefit for us to do further analysis.
Hope this helps.
Regards,
Alisa Tang
Alisa Tang
TechNet Community Support

Similar Messages

  • How can you get the schedule of a single reoccurring job with Restart ability in Redwood to pause when it has failed...?

    We need the Request Restart ability when scheduling a single reoccurring job in Redwood. Most of our jobs are scheduled in CHAINs which offers the Final Status Handler on Step level, and the schedule is "paused" when a job in the CHAIN has failed ( the next instance does not populate until the OP MSG has been Replied to) , and once the OPERATOR message is replied to, the CHAIN can resume running again ( desired ) . But we need this same ability when scheduling a single job not in a CHAIN. In our testing, we set up a job with Request Restart chosen on the Error , Killed and Unknown selections on the Restart Behavior Tab. But we found when a job is scheduled say once a day at 8AM, and when it fails, an OPERATOR msg appears allowing a Restart choice ( desired), but the next day's schedule also populates ( undesired) and we do NOT want the schedule to continue on yet because we need a chance to fix the error before the next insance runs for business reasons. So how can you get the schedule of a single reoccurring job with Restart ability in Redwood to pause when it has failed...?

    Hello Fran,
    You can wrap the job chain in a master job chain in the first step and set the final status handler there.
    You can also set the Restart Behavior to 'Stop Submit Frame', in that case you will have to resubmit the job once you are finished troubleshooting.
    Regards Gerben

  • How do you troubleshoot a crashed IPod nano 7?

    My 7th gen IPod Nano has crashed!  It won't turn on and isn't recognized at all by Mac.  Doesn't acknowledge charging either...  Help!

    Hey alohainthai!
    Here is a link that will help you troubleshoot this issue with your iPod nano:
    Apple - Support - iPod nano - iTunes Troubleshooting Assistant
    https://www.apple.com/support/ipodnano/assistant/itunes/
    Thanks for coming to the Apple Support Communities!
    Regards,
    Braden

  • How would you troubleshoot this? Sharepoint 2013 - masterpage loses all styles on preview and publish

    Here is what happened.
    I had a fully functioning masterpage
    I copy the 'html' masterpage by using 'copy and paste'
    When I preview this masterpage, this is what I see:
    It looks as though somehow all of the styling has been stripped out. The content for the most part is still there.
    I tried:
    relinking the stylesheets and still having a problem
    Can anyone suggest how to troubleshoot this? Could it possibly be an ASP.NET conflict? I know that on any given masterpage a webpart ID cannot be duplicated and generally other IDs should also not be duplicated.

    Hi,
    According to your post, my understanding is that you had an issue about the Master page.
    What did you mean “copy the ‘html’ master page by using ‘copy and paste’”?
    Did you mean you copy and paste the html master page in SharePoint Designer?
    If so, you can preview the default html master to check whether it works.
    Then you can copy a new html master page, then write your own function step by step to check whether it works.
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • How do you troubleshoot launch agents?

    I work for an educational instution and have been tasked with writing a process that will map all of a users networkshares/homeshares when they login to their Mac's. One big sticking point we've had in the past is that all our shares are DFS based. What this meant for 10.6 is that instead of mapping things using the DFS path, we had to use the actual servername of where those shares were hosted. Because 10.7.4 now supports DFS there is a big push to start having an automated process handle this.
    I've learned a lot from the process, but one of my problems is the launch agent.
    So here is what I have currently:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
                <key>Label</key>
                <string>com.domain.mapdrive.windowsshares</string>
                <key>ProgramArguments</key>
                <array>
                            <string>/bin/sh</string>
                            <string>-c</string>
                            <string>/bin/mkdir /Volumes/netlogon; /sbin/mount -o nobrowse -t smbfs //domain.edu/netlogon /Volumes/netlogon</string>
                </array>
                <key>RunAtLoad</key>
                <true/>
    </dict>
    </plist>
    Currently in terminal when I type the above commands it works fine:
    /bin/mkdir /Volumes/netlogon
    /sbin/mount -o nobrowse -t smbfs //domain.edu/netlogon /Volumes/netlogon
    However, when I try to run the same command via the launch agent I get the following in Console at login:
    com.domain.mapdrive.windowsshares: mount_smbfs: server rejected the connection: Authentication error
    com.apple.launchd.peruser.2126486968: (com.domain.mapdrive.windowsshares[2876]) Exited with code: 77
    I looked at the perms a bit and they were oginally:
    computer:LaunchAgents user$ ls -l /Users/user/Library/LaunchAgents/com.domain.mapdrive.windowsshares.plist
    -rw-------  1 user  Domain\Domain Users  252 Jul 16 11:02 /Users/user/Library/LaunchAgents/com.domain.mapdrive.windowsshares.plist
    It looks fine in the sense that the user owners the file. I tried modifying the perms a bit to be more like a script
    computer:LaunchAgents user$ /bin/chmod 755
    But still got the same error in terminal. My best guess is that the launch agent isnt running in the user's context, but I'm trying to figure out how to find what context it is running under to confirm or deny that. Any help?

    Why so testy? Luckily for you, I'm a forgiving fellow. I will give it one last try and then leave you alone.
    You have a fundamental problem here. In order to access these shared resources, your users must authenticate. Windows authentication is designed to work with Active Directory. If your network isn't doing that, then you need to take it up with your IT department.
    If your Active Directory isn't working properly, you can roll your own solution in any number of ways, but the users are always going to have to authenticate. You would have to use something like NFS to avoid that.
    I suggest looking at your environment in both your normal login session and comparing that to the launchd environment. They are always different.
    Here are a couple of support articles that may give you some pointers:
    http://support.apple.com/kb/ht4794
    http://developer.apple.com/library/mac/#technotes/tn2083/_index.html

  • How do you troubleshoot Caching Errors in Java Runtime Environment?

    I have run into Caching Errors while using JRE (versions 1.4.2 and 1.5.0, various updates) using Windows XP and IE6. The error screen has the title Error - Cache and appears when trying to download JAR files through a secure HTTP connection. The error reads: "Caching Error. Unable to store or update files in the cache." In the details box, the first line can differ:
    java.net.SocketException: Connection reset
    java.net.UnknownHostException: [followed by a URL]
    java.net.ConnectException: Connection timed out: connect
    I looked in the Java Control Panel to make sure that the "Enable caching" box is checked, and removed the proxy settings in IE. The user has sufficient rights on the computer to download files.
    How does one go about troubleshooting these caching errors? Is there a reference document available? I could not find anything on the Sun site or anywhere else.
    Any help would be very much appreciated.

    I deleted c:\Documents and Settings\<user>\Application Data\Sun (the same as in Java Control Panel->Temporary Internet Files->Settings, but at higher level). After that and some machine reboots it worked.

  • HT1363 How do you troubleshoot a white screen on ipod 4th gen?

    My ipod 4th gen has a white screen. None of the troubleshooting steps will correct it. Anyone have any recommendations what to do next?

    A restore of the device in iTunes usually rules out any possibility of a software glitch as it reloads the iPod with a fresh version of the iPod's software.  One last thing you can try doing is letting the iPod's battery fully drain. Then charge it back up and restore in iTunes once more.
    Otherwise, it's likely a hardware issue with the iPod's LCD display or its connection to the iPod's logic board.  You'll need to pay to have your iPod serviced/replaced either by Apple or a third party repair service.
    Here is Apple's pricing: http://www.apple.com/support/ipod/service/prices/
    B-rock

  • How do you troubleshoot Flash animations that wont load?

    I've recently switched to Safari 3.1 from Firefox and am finding occasional pages with flash animations that wont play
    (currently trying to get to "Product tour" on this page: http://www.logitech.com/index.cfm/remotes/universal_remotes/devices/3898&cl=us,e n )
    I just get a blank frame. I've confirmed I have the latest Adobe Flash plugin installed (9,0,115,0)
    Just curious if there is anything to do, or if this is just a funky, Safari-unfriendly page.
    Thanks.

    Same result here.
    if this is just a funky, Safari-unfriendly page
    Probably! But two things:
    It seems to be their Javascript that doesn't work.
    Secondly (may be worth trying):
    Some Leopard users have mentioned that the latest Flash Player (v.9.0.115.0) conflicts with Leopard, and that they have needed to revert to v. 9.0.47. This can be downloaded from here:
    http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_14266&sliceId=1

  • How do you troubleshoot Firefox on iMac?

    '''Email does not display right'''

    I tried that (command-Shift F) to go from full screen and it really messed things up.

  • ISCSI Target Scheduled Snapshots

    I know there are cmdlets to snapshot a target but is there a built in way to schedule snapshots?
    Alternatively, is there a cmdlet to list snapshots for a target so I can create a script to run on a schedule to remove old snapshots and create new ones.

    I know there are cmdlets to snapshot a target but is there a built in way to schedule snapshots?
    Alternatively, is there a cmdlet to list snapshots for a target so I can create a script to run on a schedule to remove old snapshots and create new ones.
    Yes, you can use Schedule Snapshot Wizard to have automatic snapshots. See:
    Creating and Managing Snapshots
    and Schedules
    http://technet.microsoft.com/en-us/library/gg232620(v=ws.10).aspx
    Creating
    and Scheduling Snapshots of Virtual Disks
    http://technet.microsoft.com/en-us/library/gg232610(v=ws.10).aspx
    Alternatively you can use cmdlets to deal with these tasks (PowerShell would give you more control over
    creation / deletion of a snapshots. See:
    iSCSI Target Cmdlets in Windows PowerShell
    http://technet.microsoft.com/en-us/library/jj612803.aspx
    The ones should be of your interest are Checkpoint-IscsiVirtualDisk and Remove-IscsiVirtualDiskSnapshot cmdlets.
    Also you may use SMI-S and WMI if you want to use say C# or C++ and not PowerShell. 
    Some more of the cmdlets use links (including samples). See:
    PowerShell
    cmdlets for the Microsoft iSCSI Target 3.3 (included in Windows Storage Server 2008 R2)
    http://blogs.technet.com/b/josebda/archive/2010/09/29/powershell-cmdlets-for-the-microsoft-iscsi-target-3-3-included-in-windows-storage-server-2008-r2.aspx
    (that's for Windows Server 2008 R2 and up)
    Managing
    iSCSI Target Server through Storage Cmdlets
    http://blogs.technet.com/b/filecab/archive/2013/09/28/managing-iscsi-target-server-through-storage-cmdlets.aspx
    (the most recent one about Windows Server 2012 R2)
    Hope this helped a bit. Good luck :)
    StarWind VSAN [Virtual SAN] clusters Hyper-V without SAS, Fibre Channel, SMB 3.0 or iSCSI, uses Ethernet to mirror internally mounted SATA disks between hosts.

  • Just uploaded iso7 , . . .hate it!  Can you change background colours?  How do you add a new item/activity to the schedule? In notes the font has changed, can I change it back and the link colour is now yellow instead of blue, can I change it?  Thanks

    Just uploaded iso7 , . . .hate it!  Can you change background colours?  How do you add a new item/activity to the schedule? In notes the font has changed, can I change it back and the link colour is now yellow instead of blue, can I change it?  Yellow on white is harder to read. Thanks

    Another question. How do you bookmark something.  It was so easy before, why did they change it?  Can I uninstall it?

  • Can you set up automatic e:mail deletion schedules for various folders (i.e, trash, sent, etc.) on I Pad air? If so, how do you do it?

    can you set up automatic e:mail deletion schedules to remove old e:mails from various folders (i.e., inbox, sent, trash) on I Pad Air? If so, how do you do this?

    No.

  • How do you schedule an genius bar appointment?

    They changed the system! How do you schedule a genius bar appointment? must do it before warrantee is gone!

    Start at http://getsupport.apple.com.
    If you need a walkthrough, see https://sites.google.com/site/appleclubfhs/news/11-09-14-apple-changes-the-proce dure-to-schedule-a-genius-bar-appointment.
    (Note that I am affiliated with that site, and some pages contain ads).

  • How do you schedule 3 week  recurring events in the calendar ?

    How do you schedule an event in the calendar every 3 weeks ? I work a schedule that reoccurs every 3 weeks.

    Unfortunatley there are certain repetitions that the iPad can't create. However if you make them elsewhere and import it onto the iPad, it'll respect it. So if you sync with a computer, make your appointment there and then import that onto the iPad and it'll be on your calendar.

  • How do you schedule weekdays only for iCal app on iPhone?

    how do you schedule weekdays only for iCal app on iPhone?

    aprishwrs,
    The scheduling options on the iPhone are limited to non-existant. You will have to use your Desktop iCal to make any desired repeat options.

Maybe you are looking for