How to know what reports are running by looking at SSReproting Services to see what reports are running and also any clue of which application is using the reporting services?

How to know what reports are running by looking at SSReproting Services to see what reports are running and also any clue of which application is using the reporting services?

To see what reports are running, take a look at the execution log views that are available in the database.  Which views that are available are dependent on your version of SSRS.
http://technet.microsoft.com/en-us/library/ms159110.aspx
To see which application is using SSRS is a little more difficult.  You can turn HTTP logging on, which will give you an idea of where connections are coming from, so you can see IP addresses.  You can also look at the execution log view to see
user accounts.  So, depending on your environment and use of service accounts, this could be easy, or difficult.
http://technet.microsoft.com/en-us/library/bb630443.aspx
If all else fails you can look for clues in the SSRS logs.  Good luck...

Similar Messages

  • I try to insert some images on a website but the images are not in the right color mode. I do not know what to do? and also I have 1200 images to insert so I can not change one after one. So I need to set up an action, but I donot know how to do it... Tha

    I try to insert some images on a website but the images are not in the right color mode. I do not know what to do? and also I have 1200 images to insert so I can not change one after one. So I need to set up an action, but I donot know how to do it... Thanks

    What is the problem specifiaclly?
    If the images are intended for web use I would recommend converting them to sRGB which could be done with Edit > Convert to Profile or with File > Save for Web, but as including a Save step in Actions and applying them as Batch can sometimes cause problems I would go with regular converting.
    You could also try Image Processor Pro.
    Scripts Page

  • How many kbs (what size) is Photoshop and also Creative Cloud to Download

    Hi Adobe,
    I have 5gig of internet allowance per month.
    I want to download Photoshop free trial and wondering how big the programe is to download and
    how many kbs it would use.
    Also I want to get Creative Cloud in the future, how big is that to download.?
    Cheers Lara Michalenko
    [email address removed]

    CS6
    Photoshop CS6 system requirements
    Windows
    Intel® Pentium® 4 or AMD Athlon® 64 processor
    Microsoft® Windows® XP with Service Pack 3 orMicrosoft Windows 7 with Service Pack 1. Adobe® Creative Suite® 5.5 and CS6 applications also support Windows 8 and Windows 8.1. See the CS6 FAQ for more information about Windows 8 support.*
    1 GB of RAM
    1 GB of available hard-disk space for installation; additional free space required during installation (cannot install on removable flash storage devices)
    1024 x 768 display (1280 x 800 recommended) with 16-bit color and 512 MB (1 GB recommended) of VRAM
    OpenGL 2.0–capable system
    DVD-ROM drive
    This software doesn't operate without activation. Broadband Internet connection and registration are required for software activation, validation of subscriptions, and access to online services.† Phone activation is not available.
    Mac OS
    Multicore Intel processor with 64-bit support
    Mac OS X v10.6.8 or v10.7. Adobe Creative Suite 3, 4, 5, CS5.5, and CS6 applications support Mac OS X v10.8 or v10.9 when installed on Intel-based systems.**
    1 GB of RAM
    2 GB of available hard-disk space for installation; additional free space required during installation (cannot install on a volume that uses a case-sensitive file system or on removable flash storage devices)
    1024 x 768 display (1280 x 800 recommended) with 16-bit color and 512 MB (1 GB recommended) of VRAM
    OpenGL 2.0–capable system
    DVD-ROM drive
    This software doesn't operate without activation. Broadband Internet connection and registration are required for software activation, validation of subscriptions, and access to online services.† Phone activation is not available.
    CC
    System requirements
    Windows
    Intel® Pentium® 4 or AMD Athlon® 64 processor (2GHz or faster)
    Windows 7 with Service Pack 1, Windows 8, or Windows 8.1*
    1GB of RAM
    2.5GB of available hard-disk space for installation; additional free space required during installation (cannot install on removable flash storage devices)
    1024x768 display (1280x800 recommended) with OpenGL® 2.0, 16-bit color, and 512MB of VRAM (1GB recommended)†
    Internet connection and registration are necessary for required software activation, membership validation, and access to online services.‡
    Mac OS
    Multicore Intel processor with 64-bit support
    Mac OS X v10.7, v10.8, or v10.9
    1GB of RAM
    3.2GB of available hard-disk space for installation; additional free space required during installation (cannot install on a volume that uses a case-sensitive file system or on removable flash storage devices) 
    1024x768 display (1280x800 recommended) with OpenGL 2.0, 16-bit color, and 512MB of VRAM (1GB recommended)†
    Internet connection and registration are necessary for required software activation, membership validation, and access to online services.‡

  • Create Run And Stop Buttons on Front Panel, rather than using the toolbar run/stop

    I would like to make my vi more user friendly by creating start and stop buttons on the front panel. I havent found much info on how to create them. I have created a boolean stop button to stop my FOR LOOP.
    -Chris

    Creating the buttons is easy - just select the style you want from the Boolean palette. What you need to do is change your diagram and the VI properties. To have a VI automatically start running when opened, open VI Properties by selecting that under the File menu or right clicking the VI's icon. Select Execution and check the Run when opened box. If you need the user to enter some data or change parameters before running the program, there's a couple of ways to go about it with a front panel Start button. You could have a separate while loop with just the start button in it and connect an output of that to a main while loop. This creates data flow and ensures that the start while loop executes before the main. You could create a simple state machine. T
    here's a couple of shipping examples. Just open the Example Finder and enter state for the keyword. You could also use the Event structure. Again, there are several shipping examples. Instead of doing a search, you could also browse the Example Finder and look at what's underneath the Building User Interfaces topic.
    p.s. I don't think you created a stop button for a for loop as there is no way to stop a for loop. What you can stop is a while loop.

  • Native format builder.To seperate body elements which are unbounded and also of different length ,which ends with special character LF if we open in Notepad++

    Hi ,
    My sample file is like this
    RAJNagercoil19910809
    JAMBangalore
    ABCNagercoil20120304
    ABBBangalore20120709
    TOM
    SAMBangalore20900909
    here first 3 characters of each line represents Name,next 9 characters represents city,next 8 characters DOB.
    Here everything is of fixedlength but all elements Name,city and DOB are optional they may or may not be in Sample file.
    here if we open the above sample file in notepad++ the end of line is represented by LF.
    My task is to separate the body elements given above into the following format
    <Body>
    <Name>Raj</Name>
    <City>Nagercoil</City>
    <DOB>19910809</DOB>
    </Body>
    <Body>
    <Name>JIN</Name>
    <City>Bangalore</City>
    <DOB/>
    </Body>
    <Body>
    <Name>ABC</Name>
    <City>Nagercoil</City>
    <DOB>20120304</DOB>
    </Body>
    <Body>
    <Name>ABB</Name>
    <City>Bangalore</City>
    <DOB>20120709</DOB>
    </Body>
    <Body>
    <Name>TOM</Name>
    <City/>
    <DOB/>
    </Body>
    <Body>
    <Name>SAM</Name>
    <City>Bangalore</City>
    <DOB>20900909</DOB>
    </Body>
    The schema i designed for my task is like below
    <?xml version="1.0" encoding="UTF-8" ?>
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
                xmlns:nxsd="http://xmlns.oracle.com/pcbpel/nxsd"
                xmlns:tns="http://TargetNamespace.com/test"
                targetNamespace="http://TargetNamespace.com/test"
                elementFormDefault="qualified"
                attributeFormDefault="unqualified"
                nxsd:version="NXSD"
                nxsd:stream="chars"
                nxsd:encoding="US-ASCII">
      <xsd:element name="Root-Element">
        <xsd:complexType>
          <xsd:sequence>
            <xsd:element name="Body" type="tns:sample" maxOccurs="unbounded" />
          </xsd:sequence>
        </xsd:complexType>
      </xsd:element>
      <xsd:complexType name="sample">
        <xsd:sequence>
          <xsd:element name="Name" type="xsd:string" nxsd:style="fixedLength" nxsd:length="3" nxsd:padStyle="tail" nxsd:paddedBy=" " minOccurs="0" />
          <xsd:element name="City" type="xsd:string" nxsd:style="fixedLength" nxsd:length="9" nxsd:padStyle="tail" nxsd:paddedBy=" "  minOccurs="0"/>
          <xsd:element name="DOB" type="xsd:string" nxsd:style="terminated" nxsd:terminatedBy="${eol}" minOccurs="0" />
        </xsd:sequence>
      </xsd:complexType>
    </xsd:schema>
    But it is not producing the result which i want .It is converting as follow.
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <Root-Element xmlns="http://TargetNamespace.com/test">
       <Body>
          <Name>Raj</Name>
          <City>Nagercoil</City>
          <DOB>19910809</DOB>
       </Body>
       <Body>
          <Name>JIN</Name>
          <City>Bangalore</City>
          <DOB/>
       </Body>
       <Body>
          <Name>ABC</Name>
          <City>Nagercoil</City>
          <DOB>20120304</DOB>
       </Body>
       <Body>
          <Name>ABB</Name>
          <City>Bangalore</City>
          <DOB>20120709</DOB>
       </Body>
       <Body>
          <Name>TOM</Name>
          <City>
    SAMBanga</City>
          <DOB>lore20900909</DOB>
       </Body>
    </Root-Element>
    The body element in  red color indicates the issue.I my case i am not supposed to use MFL. Please Help me to Solve this issue and give me correct XSD which satisfies the above Sample.Its Very Urgent
    Thanks in Advance...

    Alright.. I did some extensive home-work for you and this is what I have got.. You can improvise it further accordingly, but this solution will get you moving.
    Native XSD :
    =================================================================
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
                xmlns:nxsd="http://xmlns.oracle.com/pcbpel/nxsd"
                xmlns:tns="http://TargetNamespace.com/test"
                targetNamespace="http://TargetNamespace.com/test"
                elementFormDefault="qualified" attributeFormDefault="unqualified"
                nxsd:version="NXSD" nxsd:stream="chars" nxsd:encoding="US-ASCII">
      <xsd:element name="root">
        <xsd:complexType>
          <xsd:sequence>
            <xsd:element name="multiple" minOccurs="0" maxOccurs="unbounded">
              <xsd:complexType>
                <xsd:choice>
                  <xsd:element name="Body" type="tns:sample" nxsd:lookAhead="20"
                               nxsd:lookFor="${eol}"/>
                  <xsd:element name="Body1" type="tns:sample1" nxsd:lookAhead="12"
                               nxsd:lookFor="${eol}"/>
                  <xsd:element name="Body2" type="tns:sample2" nxsd:lookAhead="3"
                               nxsd:lookFor="${eol}"/>
                </xsd:choice>
              </xsd:complexType>
            </xsd:element>
          </xsd:sequence>
        </xsd:complexType>
      </xsd:element>
      <xsd:complexType name="sample">
        <xsd:sequence>
          <xsd:element name="Name" type="xsd:string" nxsd:style="fixedLength"
                       nxsd:length="3" minOccurs="0"/>
          <xsd:element name="City" type="xsd:string" nxsd:style="fixedLength"
                       nxsd:length="9" minOccurs="0"/>
          <xsd:element name="DOB" type="xsd:string" nxsd:style="terminated"
                       nxsd:terminatedBy="${eol}" minOccurs="0"/>
        </xsd:sequence>
      </xsd:complexType>
      <xsd:complexType name="sample2">
        <xsd:sequence>
          <xsd:element name="Name" type="xsd:string" nxsd:style="terminated"
                       nxsd:terminatedBy="${eol}" minOccurs="0"/>
        </xsd:sequence>
      </xsd:complexType>
      <xsd:complexType name="sample1">
        <xsd:sequence>
          <xsd:element name="Name" type="xsd:string" nxsd:style="fixedLength"
                       nxsd:length="3" minOccurs="0"/>
          <xsd:element name="City" type="xsd:string" nxsd:style="terminated"
                       nxsd:terminatedBy="${eol}" minOccurs="0"/>
        </xsd:sequence>
      </xsd:complexType>
    </xsd:schema>
    =================================================================
    When used upon your input file, it produces a output file like the following :
    <root xmlns="http://TargetNamespace.com/test">
       <multiple>
          <Body>
             <Name>RAJ</Name>
             <City>Nagercoil</City>
             <DOB>19910809</DOB>
          </Body>
          <Body1>
             <Name>JAM</Name>
             <City>Bangalore</City>
          </Body1>
       </multiple>
       <multiple>
          <Body>
             <Name>ABC</Name>
             <City>Nagercoil</City>
             <DOB>20120304</DOB>
          </Body>
       </multiple>
       <multiple>
          <Body>
             <Name>ABB</Name>
             <City>Bangalore</City>
             <DOB>20120709</DOB>
          </Body>
          <Body2>
             <Name>TOM</Name>
          </Body2>
       </multiple>
       <multiple>
          <Body>
             <Name>SAM</Name>
             <City>Bangalore</City>
             <DOB>20900909</DOB>
          </Body>
       </multiple>
    </root>
    As I said, you can try out some experiments around this xsd and get the output in the format, you want.
    Hope this helps !
    Best,
    Puneet.

  • How i know what my collection in adobe ?..

    Hello !
    week ago i buy my first mac
    and the people give me some collection of adobe about 16 software.
    he say it's all the softwares adobe has..
    but theres no after effects that i really need.
    i search in the adobe site the collection of mine..
    i think it's the premium beacuse all the software in the premium i have (just not premier and after effects).
    how i know what my collection ? and how to download after effects if it's the premium collection ?
    thank, tom.

    Hi Helen,
    At the Apple Icon at top left>About this Mac, then click on More Info, then click on Software>Applications.
    Unless you mean the OS version, then the Apple Icon at top left>About this Mac will tell you.

  • How to know what applications are currently running !!

    how to know what applications are currently running !!

    if it is in linux use "ps(Process Status)" command to know what is running currently.... for more see this link
    http://www.computerhope.com/unix/ups.htm

  • The screen resolution in 1920x1200 dropped on my MacBook Pro 17". Seems like I have not the same pixels. There are also vertical, thin lines on the screen. Makes the screen look milky. Anybody knows what's going on and how to fix it?

    The screen resolution in 1920x1200 dropped on my MacBook Pro 17". Seems like I have not the same pixels. There are also vertical, thin lines on the screen. Makes the screen look milky. Anybody knows what's going on and how to fix it?

    Take it to an Apple Store or other service provider for testing.

  • How to know what are all the Webservices available in P6V7

    Hi All,
    How to know what are the webservices available for integration in P6V7?
    Thanks,
    RR

    Information on Web Services for P6 are available in the Reference Manual that get installed along with P6 Web Service software. you will find the complete list there.
    Sachin

  • How to know what are the privs for one custom schema?

    how to know what are the privs for one custom schema?
    please suggest me......

    Hi,
    Check this user_sys_privs
    Cheers
    Pavan Kumar N

  • I couldn't update os in ipad1,how to know what apps are supported in os5

    HOw to know what apps supported by iPad 1

    Try this link to find apps whose current version is compatible with iOS 5.1.1 and below : https://sites.google.com/site/appleclubfhs/support/advice-and-articles/finding-a pps-for-older-devices#5.1.1
    Some developers allow you to download older compatible versions of their apps, so if it's an app is free you could try downloading the current version on your computer's iTunes and see if you can then download a previous compatible version via the Purchased tab in the App Store app on your iPad : Install the latest compatible version of an app on an earlier version of iOS or OS X - Apple Support . If the app is paid-for then contact the developer first and see if that will work, don't buy it and then find that it doesn't

  • How to know if system is running in 40W low performance mode ?

    I experienced the same problem than described in this topic: lower performance with charger than with battery!
    (But I had set everything on Maximum Performance both in BIOS and in Windows's Power settings, so I think everything was done on software-side).
    How to know if the system runs with lower performance (is it a 40W max mode? btw how did you know it is called "40W mode" ? I saw this figure nowhere else than in the mentioned-above topic) , except using a soft to do some benchmarking? Is there a place in BIOS (I didn't find!) ?

    Benoit34 wrote:
    Hi,
    I have a mac book pro & a friend has an Imac, how to know if we are both running Leopard under 32 or 64 bit.
    I see that Leopard support 64, but didn't find if it was actually running in 64.
    Regards,
    Benoit
    Welcome to Apple Discussions:
    if your computer is 64-bit, Leopard is running in the 64-bit mode. There are a few caveats about this but basically this is the case.

  • How  I know what stored in my iCloud

    How  I know what stored in my iCloud?

    Check Settings>iCloud>Storage & Backup>Manage Storage.  If you want to see the actual data, look in the apps on your device that correspond to the data you are syncing (mail, contacts, calendars, notes, reminders, etc.).

  • How to know if Leopard is running in 32 or 64 bit ?

    Hi,
    I have a mac book pro & a friend has an Imac, how to know if we are both running Leopard under 32 or 64 bit.
    I see that Leopard support 64, but didn't find if it was actually running in 64.
    Regards,
    Benoit

    Benoit34 wrote:
    Hi,
    I have a mac book pro & a friend has an Imac, how to know if we are both running Leopard under 32 or 64 bit.
    I see that Leopard support 64, but didn't find if it was actually running in 64.
    Regards,
    Benoit
    Welcome to Apple Discussions:
    if your computer is 64-bit, Leopard is running in the 64-bit mode. There are a few caveats about this but basically this is the case.

  • [SOLVED]How to know what uninstalled packge owns a file?

    When I want to know what package owns X file i do pacman -Qo X, but for this the file need to exist.
    When I face a libXYZ.so: No such file or directory, how can I know what package provides that file? I was search for something like pacman -So libXYZ.so, or something..
    []'s
    Last edited by geckos (2011-11-18 12:18:40)

    eldragon wrote:
    i dont think you can.
    if a package you installed is complaining on a missing library, this is a missing dependeny not listed in its PKGBUILD, file a bug where appropiate. (aka, package belongs to the repos: file a bug in flyspray, AUR? write a comment in the appropiate aur page).
    if you are trying to build your own software. you should read the instructions on how to compile this project and find out how said library is packaged in arch. (pacman -Ss name-of-library)
    I don't thinks is pacman fault, I have done stupid things with pacman
    Any way, this ugly shell chain have done the job
    pacman -Qk zsnes
    pacman -Qi zsnes | grep Depends | cut -f2 -d: | tr -s ' ' | tr -s ' ' '\n' | while read P; do pacman -Qi $P >> installed && pacman -Qk $P >> missing; done
    I THINK that missing packages and missing files will be printed out. Any way I can check installed and missing files for some weird thigs that happends when you to break your system . We can do this recursivelly, but I don't this is necessary in my case.

Maybe you are looking for

  • Deploy scom 2012 r2 on server 2012 r2

    Going to deploy scom 2012 r2 on server 2012 r2 with sql 2012 sp1. a few questions before starting: 1. roles placement: server1 - management server, operation console;                              server2: database server, reporting server;           

  • Drawing a vertical line in sapscript

    Hi all, How can I draw vertical lines in sapscript? Box can be used, but is there any other way? like vline or something else? Regards, Netrey.

  • Web Text

    When you change the size of the text within Internet Explorer, it doesnt change on my page instead it makes the layout slightly larger. What is it within the page that controls the page's ability to change the font when the user does it?

  • Anyone else had success with Kodak 5100 printing from Time Capsule?

    So I recently bought a Time Capsule and until now have been happily printing from USB port on PC and now on Mac. We were going to buy a wireless printer but found out that the Time Capsule supports that capability by connecting a printer to the USB o

  • Comparison insertion/search time between different Collection class

    Hi, Does someone know where I can find a clear an complete comparison between different JAVA class which implements interface Collection? I want to compare: - elements insertion time - elements search/removal time Thank you very much in advance Diego