Finding the SQL fired by Oracle Sales Analyzer

Hi,
Is there a way to find out the SQL fired against the database by Sales Analyzer?.
TIA,
Vijay.

It is a very long time since I used OSA, but there is a way to get at the SQL. Try one of the following:
1) try describing the program SQ.WRITESQL as I think this may contain the required code
OR:
2) on OSA client (Windows) enable tracing by going to Help-Express Monitor and type:
ifcopy=y
badline=y
echoprompt=y
prgtrace=y
dbgoutfile '/path/trace.txt' nocache
OR
3) Use the RECAP command in the Express Monitor window, this will show you the last series of commands issued and you should find the SQL code buried somewhere.
Sorry I cannot be more specific, alas I don't have OSA installed anymore but it is great to hear from someone still using it.
Keith Laker
Data Warehouse Solution Architect
Oracle EMEA Consulting
BI Blog : http://oraclebi.blogspot.com
DM Blog : http://oracledmt.blogspot.com

Similar Messages

  • ORacle sales analyzer doesn't display sql's using show sq.sql.stmts

    Hi,
    I cannot view the sql statements generated by Oracle Sales analyzer cube using show sq.sql.stmts.
    Moreover when I check on db I don't see any sql's being issued by web OSA session.
    What could be the possible reason for this?

    Lang wrote:
    Hi
    Can anyone help please, I am using SQL developer 3.0, and I have come across a lot of cases that after compiling a package , the compiler doesn't show me any errors, and It shows me the package is compiled , but it 's not valid after I close down the sql developer and log back in again.
    I am using 11g instantclient with it.Really?
    & here I thought SQL Developer used JDBC Thin to connect to the DB.

  • Oracle Sales Analyzer and Financial Analyzer

    Hi All,
    Where can I download Oracle Sales Analyzer and Oracle Financial Analyzer? Are they part of any module / package?
    Thanks for your help,
    Shailesh

    Above given information is really helpful especially for newbies who wants to retrieve the multidimensional data from sql 2005.
    I would also recommend a book on OLAP and believe me its pretty informative.
    The [book is available on Amazon|http://www.amazon.com/Multidimensional-Data-Modeling-Toolkit-Intelligence/dp/0981775306] & you can buy an e-book directly from the publisher by writing [email protected]

  • How to look at the SQL trace in Oracle

    Hi,
    How do we look for the SQL trace in Oracle?
    With SQL trace I mean all the SQL statements being executed in Oracle database ( including select ).
    Thanks........

    Thanks for a quick reply nbellam. I wonder if there is a way to find out the date and time when the sql was executed?

  • Oracle sales analyzer 11i

    I would like to know if Oracle sales Analyzer 11i is available as SAAS (cloud)?
    is Oracle sales analyzer part of the Sales and marketing on the cloud service?

    It is regarding Express Database that was used by a client at their Head Office. They have provied us some DB files(e.g. "mdw.db","dmdw.db","mdmdw.db","pdmdw.db" and similar more like these). They have been using these databases in their sales analyzer through express relational access administrator. Now we want to user their database in our OLAP environment with our sales analyzer. But after attaching these databases in express server, we can't connect sales analyzer/application manager tools of OSA to these through relational access administrator. Can you explain why or How can we use those db files in our environment?

  • Oracle Sales Analyzer

    Hi,
    I'm new to Oracle Sales Analyzer and was wondering if anyone could assist me.
    If you have any idea about any sites which could give me a more detailed explaination I'd be more than grateful.
    I have created my dimension tables and now I was wondering whether I needed to create cubes before starting OSA. Another question that I had was how exactly will I use OSA ( ie how will I move my data from the database and access it over OSA).
    Awaiting an early reply.
    Thanks
    Maria

    Vinod
    The name of the attributes in the RAA project must be spelled DATE and TIMESPAN exactly. The names of the columns in the relationship tables can be anything.
    If you are using DATE and TIMESPAN for the names then look at the express structure PRIOR.x, where x is the dimension abbrevation, and make sure that PRIOR.x is being populated correctly.
    Hope this helps.
    Let me know if I can help further.
    Paul Dean
    Braun Consulting
    312-984-7160
    [email protected]

  • Where to find the document category in oracle purchasing for existing attachments?

    Where to find the document category in oracle purchasing for existing attachments and also how to create a new category?

    Hi Sanjay,
    We are looking to add the below 3 marked document categories to Purchasing.
    But here the application is for order management, how can we use them for purchasing?

  • I can't find the Demo Sample for Oracle AIA FP 2.5

    Hi,
    Can someone please help me find the Demo Sample for Oracle AIA FP 2.5? What I found is the Demo Sample for Oracle FP 11g, are there any ways to deploy it given that the version I'm using is AIA 2.5?
    Thanks,
    Eric
    Edited by: 865059 on Jun 10, 2011 3:30 AM

    I've checked out the logs, I found out that I was not able to build the DeployDemo.xml successfully though it says "BUILD SUCCESSFUL".
    The deployment failed when the script is trying to deploy the CustomerService.ear
    /FS/oracle/product/aia/samples/AIADemo/scripts/DeployDemo.xml:70: The following error occurred while executing this line:
    /FS/oracle/product/aia/samples/AIADemo/scripts/AIADemoCoreDeploy.xml:82: The following error occurred while executing this line:
    /FS/oracle/product/aia/samples/AIADemo/scripts/DeployWebServices.xml:18: Deploy error: Operation failed with error:
    jdbc/soademoDS not found

  • Where can I find the syntax guide for Oracle 11g?

    Sooooo frustrating...I've perused the Oracle site, have done Google searches, and cannot seem to find the syntax guide for Oracle 11g. Can someone provide me the URL or clue me in as to where it might be buried? Am I just being stupid???
    Thanks in advance for your review and am hopeful for a reply.
    PSULionRP

    the syntax guide for Oracle 11gWhat does that mean exactly ? Maybe the Reference guide ?

  • How do you easily find the movies that are on sale?

    How do you easily find the movies that are on sale?  I can't seem to easily find any of the $9.99 HD movies or the $5- $6 non-HD movies.

    Go to Settings>iTunes & App Store and turn Videos off under Show All.

  • How could I find the SQL statement who get this message ?

    ORA-01555 caused by SQL statement below (Query Duration=11191 sec, SCN: 0x0854.723b9c32)
    ... How could I find the SQL statement who got this message ?
    Thanks, Paul

    ORA-01555 means that the UNDO/ROLLBACK space is not large enough.
    This occurs because the SELECT statement is attempting to read the UNDO, but the UNDO has been released (transactions have committed or rolled back) and reused.
    The following are SOME of the reasons I have seen this to occur:
    1) Updates in a loop, with commits happening in the same loop
    - this will mark the UNDO available quickly and quickly reuse it. Then when the SELECT wants to rebuild a block, the UNDO used to rebuild the block has been reused (solution, make the UNDO bigger)
    2) A SELECT cursor used to control a loop in which updates are performed, and a 'done' flag is marked against the current cursor record, and commits are performed at the end of each loop, prior to fetching the next record
    - same problem as above, but it hits the current process. Same solution
    3) A 'month end' activity spike occurs, and all sorts of transactions create updates. There is a report that reports the activity - amusingly it needs to start at the beginning of all the work and updates periodically by doing a huge SELECT up front. This is then used to drive a loop which attempts to get information from the various transactions that have been updated and committed. After a while, the SELECT gets an ORA-01555
    - same problem as above and same solution. Get a bigger UNDO segment.
    You say this only happens once a month. That should give a hint.
    I wouldn't bother with which SELECT statement, as much as which APPLICATIONs are being run when it happens.
    One way around this - use 10g and set the guaranteed retention period. All sorts of other things will break, by no more 1555. <g>

  • How to find the SQL Server Instances running across the given activer directory domain?

    How to find the SQL Server Instances running across the given activer directory domain?
    I have though of OSQL -L , Microsoft Assessment and Planning ( MAP ) tool and SQLPing3 (SQLSecurity) might help me.
    I would appreciate if there any other way of finding the SQL Servers / Instances running across the given active directory domain.
    Sivaprasad S
    http://sivasql.blogspot.com
    Please click the Mark as Answer button if a post solves your problem!

    Dear ,
    Very simple u find all instances through the customized sp which is get all details about inventory. Like i put the sp bellow. This is without any tool. 
    USE [master]
    GO
    /****** Object:  StoredProcedure [dbo].[DBStatus]    Script Date: 08-01-2015 19:46:11 By Damodar Patle Sr. DBA Mumbai India ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    ALTER PROCEDURE [dbo].[DBStatus] 
    AS
    SELECT 
    SERVERPROPERTY('servername') AS ServerName,
    ConnectionProperty('local_net_address') AS 'local_net_address',
    ConnectionProperty('local_tcp_port') AS 'local_tcp_port',
    CONVERT(VARCHAR(25), @@VERSION) as  VERSIONSQL,
    SERVERPROPERTY('ErrorLogFileName') AS ErrorLogFilePath,
    database_id,
    CONVERT(VARCHAR(25), DB.name) AS DBName,
    CONVERT(VARCHAR(10), DATABASEPROPERTYEX(name, 'status')) AS [Status],
    CONVERT(VARCHAR(10), DATABASEPROPERTYEX(name, 'Recovery')) AS [Recovery_Model],
    create_date as DBCreate_Date, --physical_device_name,
     (SELECT COUNT(1) FROM sys.master_files WHERE DB_NAME(database_id) = DB.name AND type_desc = 'rows') AS DataFiles,
     (SELECT SUM((size*8)/1024) FROM sys.master_files WHERE DB_NAME(database_id) = DB.name AND type_desc = 'rows') AS [Data MB],
     (SELECT COUNT(1) FROM sys.master_files WHERE DB_NAME(database_id) = DB.name AND type_desc = 'log') AS LogFiles,
     (SELECT SUM((size*8)/1024) FROM sys.master_files WHERE DB_NAME(database_id) = DB.name AND type_desc = 'log') AS [Log MB],
     (SELECT physical_name FROM sys.master_files WHERE DB_NAME(database_id) = DB.name AND type_desc = 'rows') AS MDF_File_Location,
     (SELECT physical_name FROM sys.master_files WHERE DB_NAME(database_id) = DB.name AND type_desc = 'log') AS  LDF_File_Location,
       user_access_desc
       FROM sys.databases DB
       ORDER BY dbName, [Log MB] DESC, NAME

  • How do I find the SID of an Oracle 8.0 install ?

    I have a Win NT that acts as the Domain in our LAN
    + 3 Win 98 boxes , that need to get to the Oracle
    database situated on the Win NT machine.
    I tried creating the service using Net8 Assistant
    on the Win98 machine from which I type this,
    then I noticed they asked me for the SID and Hostname
    of the Server.
    I knew the Hostname of the Server , but not the SID.
    So I went upto the server and checked for the init*.ora
    file . If my SID was LOOKBOSS , then I guess the init*.ora
    file would be named initLOOKBOSS.ora , but :
    I found 2 files : -
    o initorcl.ora
    o initseed.ora
    Both files being exact replicas of the other and each claiming
    to be the init.ora !
    I tried out some other utility (I do not re-collect the name) ,
    that said that I have only 1 hos t configured ...
    so where did this init-orcl thing come from ?
    Now I tried passing seed as the SID at my Win98 box and was
    scolded by Net8 Assistant which said that it could not connect.
    I also tried orcl as the SID .
    Now please can somebody please tell me how I can find out the SID
    from the Serer ?
    Regards,
    Shyam

    Hi Shyam,
    Go to the sqlplus session in the server itself, and cdonnect as system/manager. At the SQL prompt, select name from V$database. This is the name of the ORACLE S
    ID running on your machine. Ideally if you have opted for the default database installation while installing the product/database, the file name should be initorcl.ora and the SID would be orcl.
    Hope this sorts out your problem.
    Cheers.

  • How to find the file versions in Oracle applications?

    I am requested by the Oracle applications team to check the versions of the following files.
    POXWPA6B.pls-115.68.11510.6
    POXWPA7B.pls-115.38.11510.7
    I have zero experience in managing oracle applications. I would appreciate if some one could let me know how to find the versions in my server. My DB and the applications are in Linux servers.
    Also would appreciate if some one could provide pointers to handling Application DBA scenario like this.
    Thanks,
    -- Bala

    Here is an example:
    1) /u01/oracle/testappl/po/11.5.0/patch/115/sql>strings -a POXWPA7B.pls | grep -i Header
    /* $Header: POXWPA7B.pls 115.3 1999/11/10 16:10:34 pkm ship       $ */
    /* $Header: POXWPA7B.pls 115.3 1999/11/10 16:10:34 pkm ship       $ */
    2) /u01/oracle/testappl/po/11.5.0/patch/115/sql>adident Header POXWPA7B.pls
    POXWPA7B.pls:
    $Header POXWPA7B.pls 115.3 1999/11/10 16:10:34 pkm ship       $
    $Header POXWPA7B.pls 115.3 1999/11/10 16:10:34 pkm ship       $

  • Problem with getting started with the SQL Developer in oracle 11g

    I downloaded the oracle 11g from the oracle site and installed it on my machine.Now i want to write the sql queries and practise them......so i tried this:start\oracle11gHome\ApplicationDevelopment\Sqldeveloper . But I get a messagebox with a browse button asking me to "Enter the full pathname for java.exe"
    what is this all about?Do i need to install jave in my host machine?
    how to solve this problem?

    hi
    If you are asked to enter the full pathname for java.exe, click Browse and find java.exe. For example, the path might have a name similar to C:\Program Files\Java\jdk1.5.0_06\bin\java.exe.
    http://download.oracle.com/docs/cd/E10405_01/doc/install.120/e10407/install.htm
    hope this helps
    zekeriya

Maybe you are looking for

  • Error occured while genrating header and footer for the PDF

    Hi All , I am getting a following error whenever i try to excecute the code to print header and footer while genrating a PDF what could be the reason.Any help would be greately appreciated. following is the error stack trace: i am excecuting it in th

  • What's going on with PB 15?

    Does anybody have any feedback about PB 15?  I believe the Beta version has been out for quite some time.  It seems like I should be hearing something by now.

  • Change small caps to all caps (was: Scripting help)

    Hi All I am working with an ID script in CS3 and I am trying to write some script (to add to an exsiting scipt that I am using) that will change small caps to all caps for some ID documents I am converting. Sorry it's probably very easy to do but I'm

  • The April 22 Earth Day in 2000 combined the big-picture feis

    The April 22 Earth Day in 2000 combined the big-picture feistiness of the first Earth Day with the international grassroots activism of Earth Day 1990..... [url=http://cyberload.net/mc/index.php?topic=140263.0]Watch Captain America 2 Online[/url] [ur

  • How to get VPN access on my MAC

    My new job requires me to have a VPN connection to get to my OWA email and work internet site from my personal computer. The instructions are very simple, but they do not work on a MAC. Please help!!!!