How to see what Tables are being used in all reports

Post Author: tmashley
CA Forum: Crystal Reports
Hello,
How can I see what database tables are used in all my online reports? I have around 1000 reports posted to Enterprise over 6 different datasources. If possible I would like to see the fields within those tables that are being used to.
I am using Crystal Reports XI Release 2
Any help is appreciated
Thanks,
Tom

I don't think you can see the databases of the reports unless you download the report onto your pc as a Crystal Report format and then open it under Crystal Reports.
This way it will open the report within Crystal Reports and will show you the datasource it is coming from.
I doubt if you can see them online.
Kind Regards
Jehanzeb

Similar Messages

  • How to find which tables are being used by a workbook.

    I was asked by the client to generate a report which will show the Workbook name and it's corresponding tables/views.
    Any idea on how to use the EUL tables for this purpose. I know the SQL query to find the tables in case the workbook was run at least once. But I want to show the Workbook and it's table details even the report was never run.
    Advanced thanks,
    Lokesh.

    Hi Jay
    While we're on the subject of scripts, here's a couple more you might like:
    Script 1:
    =========
    This one shows you how many times an item has been used. It is useful for determining how often users make use of items in a folder. It could be used as research for a materialized view, for dropping items which are not used, or for understanding usage.
    SELECT
    OBJ.OBJ_NAME FOLDER,
    EXP.EXP_NAME ITEM,
    COUNT(QPP.QS_ID) USAGE
    FROM
    EUL5_OBJS OBJ,
    EUL5_QPP_STATS QPP,
    EUL5_EXPRESSIONS EXP
    WHERE
    OBJ.OBJ_NAME = <Folder Name>
    AND OBJ.OBJ_ID = EXP.IT_OBJ_ID
    AND INSTR(QPP.QS_OBJECT_USE_KEY,OBJ.OBJ_ID) > 0
    AND INSTR(EUL5_GET_ITEM_NAME(QPP.QS_ID),EXP.EXP_ID) > 0
    GROUP BY
    OBJ.OBJ_NAME,
    EXP.EXP_NAME;
    Script 2:
    =========
    This one examines the whole EUL and displays a count of the number of times a worksheet has been run by folder. It also shows the date and time of the last run. This one is useful to determine the most and / or least popular worksheets. Adjusting the ORDER BY clause can throw up some interesting results.
    SELECT
    OBJ.OBJ_NAME FOLDER,
    MAX(QPP.QS_CREATED_DATE) LAST_DATE,
    QPP.QS_DOC_OWNER OWNER,
    QPP.QS_DOC_NAME WORKBOOK_NAME,
    QPP.QS_DOC_DETAILS SHEET_NAME,
    COUNT(QPP.QS_ID) USAGE
    FROM
    DRAKE.EUL5_OBJS OBJ,
    DRAKE.EUL5_QPP_STATS QPP
    WHERE
    INSTR(QPP.QS_OBJECT_USE_KEY,OBJ.OBJ_ID) > 0
    GROUP BY
    OBJ.OBJ_NAME,
    QPP.QS_DOC_OWNER,
    QPP.QS_DOC_DETAILS,
    QPP.QS_DOC_NAME
    ORDER BY
    OBJ.OBJ_NAME,
    COUNT(QPP.QS_ID) DESC;
    I'm considering a blog entry of useful EUL scripts. Anyone interested? Yes - either reply here or drop me a line.
    Best wishes
    Michael

  • What command can I run to see what ports are being used?

    I am trying to connect to citrix and I am receiving a message saying port 999 already in use.
    How can I fix this?
    Thanks,
    JS

    I don't know about commands but in your application/utilities folder there is an application called Network Utility that can scan your ports. I don't have any real experience with it but if it seems confusing try accessing the help files for the utility in the help menu and maybe that will ease the confusion.

  • How do i find what ports are being used.

    I need to know how to tell what ports are being used and by what. I recently bought Apple Remote Desktop and have been pretty impressed but I have one computer here that won't let me Observe or Control. I think it is because the G4 in question has a program using port 5900. I need to confirm this is there any way that I can see if this port is being used?
    Thanks
    Moderith

    Hi Moderith--
    Welcome to the Apple Discussions.
    Look in your Utilities folder for the Network Utility program. Open it, and choose "Port Scan" from the row of tabs in its window. If you're not running Network Utility on the problematic G4, use the G4's IP address. But if you're actually on the G4, use "localhost".
    Note that if you check the open ports on the G4 from another computer, you won't see as many as if you check it from the G4 itself. That's because some ports are only local. For example, I have enabled the mail server on my Macs, but only to deliver mail, not relay it. So if I do a port scan using "localhost", I see port 25 open, but it's not open from another computer.
    charlie

  • HT4211 how can you find out what kb are being used by what apps

    how can you find out what kb are being used by what apps there is always alot of kb being used even when I don't use my phone

    Go into settings , general, usage and it tells you what the apps use. If your refering to the memory storage of the apps.

  • Please tell me SQL to see, what tables are locked by which user

    could you please tell me the query
    so that I can see, what tables are locked by which user in a databse
    Thanks

    The only way you can ensure that only one transaction touches the data at any one time is to use a select .. for update nowait statement to select the rows to be updated.
    Try this::
    Where I select the data i want to update in a cursor Incase the row is locked due to any reason it will throw me an error as shown below;
    SQL>DECLARE
      2   cursor c
      3   is
      4   select * from emp
      5   where empno = 10
      6   for update nowait;
      7  BEGIN
      8 
      9   for rec in c
    10    Loop
    11     update emp set ename ='J' where empno = 10;
    12    End Loop;
    13   
    14  DBMS_OUTPUT.PUT_LINE('Record Updated');
    15 
    16  EXCEPTION
    17 
    18  WHEN OTHERS THEN
    19 
    20  DBMS_OUTPUT.PUT_LINE(sqlcode || sqlerrm);
    21 
    22  END ;
    23  /
    -54ORA-00054: resource busy and acquire with NOWAIT specified
    PL/SQL procedure successfully completed.Edited by: J99 on Jul 28, 2009 4:57 PM

  • What tools are being used with WLS 5.1?

    I have been experimenting with WLS 5.1 and it is clear that there are many
    steps in developing, testing, and deploying EJBs. What tools are being
    used? How do IBM's Visual Age, JBuilder 4, and Visual Cafe EE stack up?
    Are there any tools for developing and debugging JSPs?
    Thanks,
    Mike

    Hi folks,
    about the "IBM VisualAge 3.02 (Integration Kit)" that Nirav mentions below...
    Does this integration kit work with Visual Age 3.5? If not, do you have any tool recommendations for VA3.5 users who are developing apps for WebLogic5.1?
    Thanks,
    Janet
    Nirav Chanchani <[email protected]> wrote:
    Mike,
    The level of integration between WLS and the tools is as follows (with
    VisualCafe being the most integrated) --
    1. VisualCafe Enterprise (or the WebGain Studio suite)
    http://www.webgain.com/Products/index.htm
    2. JBuilder 4 http://www.inprise.com/jbuilder/
    3. IBM VisualAge 3.02 (Integration Kit beta up on BEA website)
    http://commerce.beasys.com/downloads/weblogic_server.jsp#wlstools
    All the integration's support development, local debugging, and local
    deployment, but VisualCafe has wizards and like which generate code for the
    J2EE specs that WLS supports.
    I have read that JBuilder 4 supports JSP debugging but have not tried it yet.
    Nirav.
    Mike DiChiappari wrote:
    I have been experimenting with WLS 5.1 and it is clear that there are many
    steps in developing, testing, and deploying EJBs. What tools are being
    used? How do IBM's Visual Age, JBuilder 4, and Visual Cafe EE stack up?
    Are there any tools for developing and debugging JSPs?
    Thanks,
    Mike--
    Nirav Chanchani
    BEA Systems, Inc.

  • Does anyone know how to see what apps are still open on lion? On snow leopard you just had to slide three fingers side ways I believe thanks

    Anyone know how to see what apps are still open on lion?

    If you do not have the light in dock active, activate it, or slide three finger up to open Mission Control or in Force qQuit all  open programs are listed (even the hidden ones).
    Hope that helps..

  • How do I find what jars are being used...?

    Hi all,
    I'm wondering if any of you could help me. I am looking for a method or tool that helps to find what library jars are being used within an application to try and help me erradicate unneccesary files since I find myself in a scenario similar to below. . .
    Obviously over time an application grows and you may being in a lot of libraries to provide functionality as you go. You may then find a better way of doing something or that part of code may be redundant, so the referencing class is removed, BUT the jar isn't removed from the application at the same time.
    Several years down the line your lib directory looks like it contains nearly every jar created sits in there, and you application is now being shipped out on DVD to cope with all the libraries!
    So, is there a tool or way (except removing them to see it anything breaks!) to check what jars are actually being referenced within an application?
    Any help would be appreciated,
    Cheers,

    Start java with the -verbose option and grep the output for lines starting with "[Opened". This will give you a list of all opened jar files.
    Bear in mind, that classes are loaded lazy, that is: only when they are referenced for the first time.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • HT1420 How to see what computers are authorized in iTunes

    How do you see what computers are authorized on your itunes account.  It says I have 5 and cannot add 1.

    There is no list available from your end. If you can't individually deauthorize any of them, use the Deauthorize All function.
    (72256)

  • SharePoint Databases - How to determine which ones are being used and which ones aren't

    I am not sure where to exactly post this question.  On the SQL Server side or on a SharePoint side.
    I am a SQL Server Database Administrator who is monitoring some SharePoint databases.  On a daily basis it seems that they are creating new databases but don't delete the databases that they are no longer using.  For example, they might be testing
    on a development server and if things aren't working properly instead of asking that the databases be deleted they just go ahead and create new databases to do what ever they need to do.  Is there a way on the SQL Server side to determine which SharePoint
    databases are being used and which ones aren't being used?  Or does one determine this information through the SharePoint Central Administration console?
    lcerni

    Hello,
    The following query gives you the databases now in use.
    SELECT
    DISTINCT d.name
    FROM
    sys.dm_tran_locks
    tl INNER
    JOIN sys.databases
    d
    ON
    tl.resource_database_id
    = d.database_id
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • How to get which tables are being updated by running any transaction code

    Hi experts,
    please tell me how to find which system table are being updated after running any transaction code .
    please tell me the procedure to find that.
    Thanks & Regards,
    Yogesh

    Hi yogesh patil,
    for the dbtable..
    goto technical settings and activate the log...
    it will tells u..
    transaction...Table history (SCU3)
    Log data changes
    The logging flag defines whether changes to the data records of a table
    should be logged. If logging is activated, every change (with UPDATE,
    DELETE) to an existing data record by a user or an application program
    is recorded in a log table in the database.
    Note: Activating logging slows down accesses that change the table.
    First of all, a record must be written in the log table for each change.
    Secondly, many users access this log table in parallel. This could cause
    lock situations even though the users are working with different
    application tables.
    Dependencies
    Logging only takes place if parameter rec/client in the system profile
    is set correctly. Setting the flag on its own does not cause the table
    changes to be logged.
    The existing logs can be displayed with Transaction Table history (SCU3)
    Reward points if helpful

  • How to see what processes are using my memory?

    I recently added more RAM to my system and I always keep Activity Monitor running with the memory usage icon on the Dock to see how much Lion and my programs use.
    I noticed that even several CS5 programs running at the same time won't use that much, the program I've seen uses the most is Aperture, using anywhere from 500MB on start to 2.5GB while viewing--not editing--photos.
    My questions is, when my system is running normally it uses from a quarter to half the total memory available but just now it's using more than three quarters and it's running not even half programs I use everyday. I quickly added up the memory being used and it's just missing out A LOT. I'm adding a screenshot of Activity Monitor for you to see.
    I now that restarting the system (or by using the purge command in Terminal) will free up memory but this really puzzles me and I'd really like to know what's happening--BTW, even though several GB are missing, the computer is nowhere nears slow, at least.
    Where are all the other processes using the rest of the memory?
    I'm using OS X 10.7.3 Server with 16GB of RAM on an iMac.
    Thanks for all your help,
    Gustavo.

    You will never be able to get those numbers to add up.  This topic has come up before.  Examples:
    Memory used by unknown processes
    Where is my memory?
    And others.  You cannot use the numbers in that display to add up.  Even doing top in terminal produces conflicting numbers.  Many process are dynamic and may be missed in these displays.
    FWIW, here's an apple article on the Activity Monitor memory display:
    Using Activity Monitor to read System Memory and determine how much RAM is being used
    Editorial: In my opinion I do not recommend always running Activity Monitor (or top).  The constant poling and display does have some affect on performance and cpu utilization.  That's why it always usually appears near the top of the process list when sorted by percent cpu unless really outweighed by something much bigger.

  • Check If Tables are being used in Stored Procedures & How many times !!

    Dear All,
    I want to make a script which can give me an answer, that If there is any table , then Whether It's using in any stored procedure or not ? If yes, then what the occurrence in procedures - means if table is "ABC" & Its being used in stored procedure
    "XYZ" then i want to know that its using 1 time, 2 time or more in particular procedure ..
    Pls Help

    just in-case if you want to get the Cross DB dependency
    i have extent Visakh16 code
    please use sql_modules to get the full definition of the DB Objects
    you can replace stg_table with your decided table, also use dbname.schemaname.tablename if you want to get  Cross DB dependency
    just came up with this from
    link
    create table #temp (
    dbname sysname,
    name sysname,
    Occurance int
    exec sp_MSforeachdb '
    use ?
    DECLARE @TableName varchar(100)
    SET @TableName = ''stg_table''
    insert into #temp
    SELECT db_name() ,name,(LEN(definition) - LEN(REPLACE(definition,'' '' + @TableName + '' '','''')))/LEN('' '' + @TableName + '' '') AS Occurance
    FROM sys.sql_modules m
    INNER JOIN sys.objects o
    ON o.object_id = m.object_id
    AND o.type = ''p''
    WHERE m.definition LIKE ''% '' + @TableName + '' %'''
    select *
    from #temp
    where dbname not in ('master','model','msdb','tempdb')
    order by 1,2
    Thanks
    Saravana Kumar C

  • What Jars are being used

    I have a big problem with the number of jars currently being used within my application.
    Is there a way of working out what jars are needed and which are not??
    Regards
    Jai

    I am interested in this as well. I have "jpa.jar" which I removed from my Eclipse build path and no errors. But it may have interfaces/classes that are referenced from other JARs in my WAR. How do I determine if any types in jpa.jar are being currently used so I can determine if it needs to be included in the WAR build or not?
    I tried [http://depfind.sourceforge.net/|http://depfind.sourceforge.net/] but it finds which JAR the type is in. I need to find references to a class from another class and tell me which JAR that's referenced. thx.

Maybe you are looking for

  • Metal bus garage signal problem

    I need to set up wireless in a bus garage.  The environment seems to have a lot of RF deflectors that interfere with the signal.  The ceiling is corrugated metal, with Ibeams and metal piping running across it.  The garage doors are some kind of meta

  • Dynamic parameter with unlinked table

    Post Author: martinh CA Forum: Data Connectivity and SQL Hello, I have 2 tables in my database. One table (table A) is for selecting the data (all kind of fields) The other table (table B) is only to be used to have a parameter selection (table with

  • Vulnerabilities reported in sharepoint 2010 from IBM App Scan - Blind SQL Injection

    Hi - We have been reportecd the following vulnetabilities in sharepoint 2010 by IBM App scan tool. We have verified that all latest security patches are installed in the server. The sharepoint implementation is only out-of-the-box. We ahve installed

  • Attempting retail install CS6, but failed installation occurs every attempt on Win7x64

    First off, appologies for this post, I'm a bit flustered. New Win7x64 computer and an attempt to install retail CS6 have failed. I now get the following error message upon each install attempt:  "Installer failed to initialize.  File not found.  Plea

  • Issues with iMovie in viewing

    I am getting weird playback issues with movies I've added to a project. My movie is like 40 minutes long. When I try to watch the finished product or put finishing touches on it, after hitting space bar the video skimmer moves, but the video preview