Accuracy of Usage Tracking Data

Have anybody used and compared the Usage Tracking data with actual user experience?
I'm noticing that the Usage tracking is not being logged consistently for all the users. Some of the entries are missing. What can the reason be for these missing entries.
When I compare the Elapsed Time from Session logs with the TOTAL_TIME_SEC from Usage tracking that does not alwasy match up. Is ther any difference between those 2?
What is the best measure to track the performance of the application that will give acurate measure the actual user experience?
Any help with shading some light on overall Usage Tracking accuracy will be a great help.
Thanks!
Edited by: VNC on Sep 18, 2009 12:24 PM

Check out DOC ID 973090.1 in metalink.

Similar Messages

  • Definitions of time-related fields of usage tracking data

    Hi all,
    After reading the related documentations on usage tracking, I'm still confused about the true meaning of the following fields:
    COMPILE_TIME_SEC The time in seconds required to compile the query.
    C UM_DB_TIME_SEC The total amount of time in seconds that the Oracle BI Server waited for back-end physical databases on behalf of a logical query.
    TOTAL_TIME_SEC The time in seconds that the Oracle BI Server spent working on the query while the client waited for responses to its query requests.
    START_TS The date and time the logical query was submitted.
    END_TS The date and time the logical query finished. The start and end timestamps also reflect any time the query spent waiting for resources to become available.
    My questions are:
    1. Is TOTAL_TIME_SEC = C U M_DB_TIME_SEC + COMPILE_TIME_SEC? Why are there cases where C U M_DB_TIME_SEC > TOTAL_TIME_SEC ?
    2. I've logged cases where (END_TS - START_TS) > TOTAL_TIME_SEC. Why would this happen?
    Could someone clarify the meaning of these fields for me please? Thanks very much!!
    =================
    I have logged the following data with usage tracking, posting here as examples:
    1.
    compile_time_sec = 0
    c um_db_time_sec = 23
    total_time_sec = 12
    start_ts = 18-AUG-09 (14:15:47)
    end_ts = 18-AUG-09 (14:16:00)
    end_ts - start_ts (in sec) = 13
    cache_ind_flg = N
    num_cache_hits = 0
    num_cache_inserted = 1
    2.
    compile_time_sec = 0
    c um_db_time_sec = 125
    total_time_sec = 110
    start_ts = 21-AUG-09 (15:45:37)
    end_ts = 21-AUG-09 (16:47:35)
    end_ts - start_ts (in sec) = 3718
    cache_ind_flg = N
    num_cache_hits = 0
    num_cache_inserted = 0
    3.
    compile_time_sec = 0
    c um_db_time_sec = 1252
    total_time_sec = 932
    start_ts = 24-AUG-09 (17:23:40)
    end_ts = 24-AUG-09 (17:49:27)
    end_ts - start_ts (in sec) = 1547
    cache_ind_flg = N
    num_cache_hits = 0
    num_cache_inserted = 0

    Check out DOC ID 973090.1 in metalink.

  • Really weird problem with Usage Tracking!

    Hi guys
    We are running OBIEE 11.1.1.6.5 on Exalytics and allmost all is fine and dandy. We have though one weird problem. When we first enabled usage tracking, we sudddenly got some errors on some of our dashboards, saying that we didn't have the privilegies to create temporary tables. Allright we got our user (which is a shared user) the privilegies to create temporary tables, and the reports with the problems started working again! Awesome! But low and behold - then Usage Tracking stopped working, not a single mentioning in the logfiles about it. Maybe an error or, the acknowledgement that Usage Tracking has started, which is the normal.
    So basically we are running without Usage Tracking because the reports that gives us the problems are deemed more important... which they might be, but thats different story...
    Any ideas to what is going on here? We have collected Usage Tracking data, while the reports were broke, so im quite confident that the setup is correct. But why would it stop, when giving "create table" privilege to our shared user?
    Best regards, Jacob

    What is the setting for UsageTrackingDirectInsert?
    Have you tried chaging the output to file instead of database?
    Please see:
    http://docs.oracle.com/cd/E23943_01/bi.1111/e10541/usage_track.htm#i1017237
    Section 9.3, "Setting Up a Log File to Collect Information for Usage Tracking"
    Michael
    PS:
    Hi Christian! :)

  • Usage Tracking for BI Server Hosting Multiple Repositories

    Hi all,
    I've got my BI Server hosting two repositories:
    [ REPOSITORY ]
    DemoApp1 = DemoApp1.rpd, DEFAULT;
    DemoApp2 = DemoApp2.rpd;
    And started two Presentation Services connecting to these two repositories respectively, and two web front-ends at /analytics and /analytics2 to display the two different catalogs.
    Next, I enabled usage tracking with direct insert to the following physical table:
    PHYSICAL_TABLE_NAME = "OBIEEREP".""."OBIEEREP"."S_NQ_ACCT" ;
    CONNECTION_POOL = "OBIEEREP"."Connection Pool" ;
    Both repositories has the above physical table and connection pool defined. In DemoApp1.rpd, "OBIEEREP"."Connection Pool" points to a database OBIEEDB1, and in DemoApp2.rpd, it points to a database OBIEEDB2.
    But then the problem occurs. All usage tracking data are inserted to OBIEEDB1 only, no matter which web front-end they are from. I tried removing the "DEFAULT" from NQSConfig.ini, but this doesn't help.
    Is there any way to configure BI Server to insert usage tracking data from /analytics to OBIEEDB1, and those from /analytics2 to OBIEEDB2?
    Thanks very much!!!
    Edited by: Kaphenda on Jan 18, 2010 2:34 PM

    HI Kaphenda,
    That's probably just a side-effect of having two repositories. Keep in mind that having multiple repositories and multiple presentation servers is not support by Oracle, so they were not on the hook to modify the Usage Tracking algorithm to write to two different databases. It seems to me like they either didn't anticipate this scenario, or they didn't want to program for this scenario.
    I don't think you have too many options in terms of making OBIEE insert the traffic logs into the appropriate database. However, once the data has been inserted, you can do just about anything you want to it in terms of ETL, triggers, materialized views, etc.
    Here's what I would recommend:
    1) Have the OBIEE usage tracking information logged into a neutral schema.
    2) Write a materialized view in database 1: CREATE MATERIALIZED VIEW S_NQ_ACCT AS SELECT * from S_NQ_ACCT@NEUTRAL_SERVER WHERE REPOSITORY_NAME = 'DemoApp1'
    3) Write a materialized view in database 2: CREATE MATERIALIZED VIEW S_NQ_ACCT AS SELECT * from S_NQ_ACCT@NEUTRAL_SERVER WHERE REPOSITORY_NAME = 'DemoApp2'
    You can specify the refresh frequency of these materialized views to be as frequent as you want. The great thing about this strategy is that you get the best of all worlds. Each database has the traffic information broken down by their personal RPD. But the neutral schema can provide Global reporting across both repositories which can be very valuable itself.
    Good luck and if you found this post useful, please award points!
    Best regards,
    -Joe
    Edited by: Joe Bertram on Jan 18, 2010 9:59 AM

  • Usage Tracking table column definition

    Hi Gurus,
    I am not able to visualize the difference / significance of these two columns in S_NQ_ACCT table for usage tracking:
    NUM_CACHE_HITS - {Indicates the number of times existing cache was returned.}
    NUM_CACHE_INSERTED - {Indicates the number of times query generated cache was returned.}
    i got NUM_CACHE_HITS which gives the number of times cache match has occured, but what is role / meaning of NUM_CACHE_INSERTED, the documentation says "Indicates the number of times query generated cache was returned" what is query generated cache?
    Thanks,
    Sri

    hi jups,
    By deafult that parameter wil be null ,but any query got cached then it updates its value this way num_cache_inserted = 1
    Will this help you Definitions of time-related fields of usage tracking data
    hope helps you.
    Cheers,
    KK

  • Clear up Usage tracking in Version 8

    <p>Is there a way to clear up the usage tracking records inV8_USAGE_ATTRIBUTES table to clear up the table.  The has 2.6million rows and slowing up the the migration to sytem 9.  Anythoughts on this?</p>

    Hi Mathias
    Yes I did. It appears, that with the new version, we are also getting some new Usage Tracking data. These were created when you updated your schemas. So you need to reimport the usage tracking metadata for your usage tracking. OBIEE gives the errors because it can't write the new data fields. Once I did that, most of my reporting started to work again. The reason for the added data, is for Exalytics usage. You might not need them, but you can't come around them - so reimport the metadata, and you should be fine.
    It's just not very clear, that you need to do this, from the documentation Oracle provides, atleast it wasn't for you and me any ways. Hope this helps! :-)
    Regards, Jacob

  • Oracle Usage Tracking dialog

    hi
    After installing JDeveloper 11.1.1.5.0 (and other 11g versions before that) and starting JDeveloper for the first time, an "Oracle Usage Tracking" dialog is shown with the message
    "In order to continuously improve our products, Oracle is interested in learning about product usage. To that end, automated reports can occasionally be sent to Oracle describing the product features in use. No personally identifiable information will be sent and the report will not affect performance. You can review Oracle's privacy policy on our website. "
    and a checkbox "Allow automated usage reporting to Oracle".
    see the screenshot at http://www.consideringred.com/files/oracle/img/2011/OracleUsageTracking111150.png
    - (q1) Where can details be found about this feature, like which information it sends exactly, or when?
    - (q2) Has Oracle published anything related to the results of this "Usage Tracking" feature?
    many thanks
    Jan Vervecken

    Hi Jan,
    I'm not aware of a public wiki page or anything like that which explains the data being gathered on this feature.
    What it does, is create an xml file after each close of the IDE. It records some of the API usage during a session (defined as start to close of the IDE).
    The file is saved to this location by default on a windows machine with an install with the "single user" option selected.
    C:\Documents and Settings\<username>\Application Data\JDeveloper\system11.1.1.5.37.60.13\o.ide.usages-tracking
    You can see what this file gathers if you like, by setting some bogus proxy info in the Tools --> Preference in JDev to stop JDev from being able to connect to the tracking server. Then just doing some normal work and stopping JDeveloper. The file will stay there until it can connect again.
    Of course this will only happen if you have opt-in to the usage-reporting in the first place.
    The data that is gathered is used internally by the product management team to see which features are used more often in relation to each other, etc. It is not made available publicly.
    Here is a report that I just did on my own machine. This is the result of opening an extension.xml file and then opening a .java file.
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <usages xmlns="http://xmlns.oracle.com/jdeveloper/110000/usages-tracking-data">
    <hash n="system-info">
    <value n="build-label" v="JDEVADF_11.1.1.5.0_GENERIC_110409.0025.6013"/>
    <value n="dev-build" v="false"/>
    <value n="guid" v="07dd49ee-012e-1000-8001-0a9a27d99b84"/>
    <value n="jdk-version" v="1.6.0_24"/>
    <value n="operating-system" v="Windows XP"/>
    <value n="product-edition" v="oracle.studio, oracle.j2ee, oracle.jdeveloper"/>
    <value n="product-name" v="Oracle JDeveloper 11g Release 1"/>
    <value n="product-version" v="11.1.1.5.37.60.13"/>
    <value n="session-end-time" v="1305043200531"/>
    <value n="session-id" v="1305043105550"/>
    <value n="session-start-time" v="1305043105550"/>
    <value n="user-role" v="<none>"/>
    </hash>
    <hash n="usage-data">
    <list n="activities">
    <hash>
    <value n="extension-product-id" v="oracle.jdevimpl.extensiondt.editor.ExtensionManifestEditor"/>
    <value n="property-id" v="oracle.jdeveloper.extensiondt.model.ExtensionManifestNode"/>
    <value n="time-stamp" v="1305043182769"/>
    <value n="usage-type" v="OPEN_EDITOR"/>
    </hash>
    <hash>
    <value n="extension-product-id" v="oracle.jdevimpl.extensiondt.editor.ExtensionManifestEditor"/>
    <value n="property-id" v="oracle.jdeveloper.extensiondt.model.ExtensionManifestNode"/>
    <value n="time-stamp" v="1305043182832"/>
    <value n="usage-type" v="ACTIVATE_EDITOR"/>
    </hash>
    <hash>
    <value n="extension-product-id" v="oracle.ide.ceditor.CodeEditor"/>
    <value n="property-id" v="oracle.jdeveloper.model.JavaSourceNode"/>
    <value n="time-stamp" v="1305043190096"/>
    <value n="usage-type" v="OPEN_EDITOR"/>
    </hash>
    <hash>
    <value n="extension-product-id" v="oracle.ide.ceditor.CodeEditor"/>
    <value n="property-id" v="oracle.jdeveloper.model.JavaSourceNode"/>
    <value n="time-stamp" v="1305043190767"/>
    <value n="usage-type" v="ACTIVATE_EDITOR"/>
    </hash>
    </list>
    </hash>
    </usages>
    Hope that helps explain things a bit. Let me know if you have any other Q's.
    --jb                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • OBIEE Usage Tracking not collecting all data!

    Hi guys
    Strange problem here. We have set up usage tracking (OBIEE 11.1.1.6) and it is running smoothly, except that we dont get all the data. I have adjusted the field "Query_Text" to contain 4000 bytes, and this also gave us an improvement - it collects more usage tracking. But we aren't getting all the usage stats...
    Does anybody have a an idea as to what could be wrong here?
    Best regards, Jacob

    Jacob J wrote:
    Hi guys
    Strange problem here. We have set up usage tracking (OBIEE 11.1.1.6) and it is running smoothly, except that we dont get all the data. I have adjusted the field "Query_Text" to contain 4000 bytes, and this also gave us an improvement - it collects more usage tracking. But we aren't getting all the usage stats...
    Does anybody have a an idea as to what could be wrong here?
    Best regards, JacobWhat usage stats are missing? Is there any pattern/behavior where the stats are not being inserted into the tables?

  • Usage Tracking not displaying in Data in 11g

    Hi Gurus,
    One of my collegues complained that the Usage Tracking(UT) which is OOTB functionality in 11g does not show any data expect the Time table.
    Is this a bug, as UT is pre-configured in 11g, do we need to do any customization for this to make it work.
    Can please anyone help with the steps to troubleshoot.
    Regards,
    Amit

    Hi A,
    The steps are all done they can see the data in the View Data Section in the Physical Layer, but no data is appearing when they create the Reports in Answers, thats kind of weird was my first expression. I asked them to check the Business Model Diagram but they are of the opinion that as it is OOTB functionaly they did not meddle with the BMM.
    Really critical and need to bring the data in the Answer in 11g, any quick help will be appreciated.
    Rgds,
    Amit

  • Usage Tracking not showing correct data.

    We have configured usage tracking in our project.while creating a report with(Subject Area,Query,Request ) it shows the dashboard filter query of all subject area in a particular subject area.
    Eg : If Subjuct area SA1 has a dashboard prompt query "@@@@' ,and Subjuct area SA2 has dashboard prompt query "$$$$$' ,both the querys are shown in Subjuct area SA3 in the usage tracking reports.

    Hello,
    We implemented usage tracking too
    Make sure you are not running into the following BUG pre-10.1.3.4.1:
    BUG 7233756 - USAGE TRACKING DOESN'T CAPTURE AD-HOC REPORTS CORRECTLY
    We found this issue and verified it was resolved in 10.1.3.4.1.this problem is still there, and we are getting value of random subject are populated for drill down queries. is there any bug for this too?

  • Verizon please release a Home Fusion Data Usage Tracking Tool for customers

    Just switched to Home Fusion. It works quickly but data usage has gone up dramatically. Why?
    In the past, with my MiFi hotspot, I could use Verizon website tools to view usage per session to see when data was being used.
    Verizon has no tools for customers to view usage during data sessions on their Home Fusion.
    The only tool available is a worthless display of the "packets" used during the current session and the number of hours connected.
    We cannot view past data sessions or a measure of mb or gb used for even the current session, let alone past sessions.
    Verizon, please release an application that gives customers the ability to see when data is being used by their Home Fusion wireless connections!!!!
    You will continue to receive complaints from customers on your forum and by phone if you don't give us the tools we need to see when data is being used at the very least.
    My data usage has jumped up dramatically. The only help you'll give is for me to call Tier 2 support and have them list off my past data sessions and the amount of data used. Perhaps I'll call more regularly so they'll get annoyed and get an app for customers to see their data for themselves.
    Your refusal to put detailed data usage in the hands of your customers makes me think forum complaints of your Home Fusion using data when all computers are off might be valid and suspect you may be trying to hide a problem with your data usage billing.
    How can I dispute my data usage if you won't allow access to more than the total usage YOU claim I've used?
    Make this customer tool a TOP PRIORITY. If I'd known data usage would jump and there'd be nothing to document the reason, I'd have cancelled within the 14 days. Wish I was quicker to investigate.

    EXACTLYYYYYYYYYYYYYYYYYY! Starting March of this year, My bill has ESCALATED to the $1,000 mark and I'm FED up with their STEALING MY DATA. I have had the box TURNED OFF THIS BILLING CYCLE JUST TO SEE. June 16 was the first day. We had to go out of state so I made sure that Home Fusion box was OFF.. We returned the following night around 1130 pm and NINE GB of data was used on the 16th and we were NOT home AND THE BOX WAS TURNED OFF. THEY CANNOT EXPLAIN, WILL NOT REFUND, ETC.................. BeckyInEastLeroy

  • BI publisher report : why "Database Usage Tracking Summary"  repport is empty ?

    Hi everyone,
    I'me using BI publisher intergated to Grid Control12c (R3), trying to get "Database Usage Tracking Summary" report folowing Oracle documentation (http://docs.oracle.com/cd/E24628_01/doc.121/e24473/usage_reports.htm#EMADM13568)
    And I have 2 problems :
    1) FTPburst delivery is not working, sftp is configured but still have the folowing error
    Echec de la distribution.
    [INSTANCE_ID=gs00slli052.occ.lan.1424277393149] [OUTPUT_ID=1973]
    Echec de distribution du document
    [INSTANCE_ID=gs00slli052.occ.lan.1424277393149] [DELIVERY_ID=1974]Error deliver document to FTP::Exception happened when calling deliver API::Error deliver document to FTP::FILE=[::Exception happened when calling deliver API::oracle.xdo.delivery.ssh2.SshException: Error in writing data Broken pipeoracle.xdo.service.delivery.DeliveryException: oracle.xdo.delivery.ssh2.SshException: Error in writing data Broken pipe
    at oracle.xdo.service.delivery.impl.DeliveryServiceI
    2) Since FTPburst delivery is not working, i decide to try mail delivery. The delivery itself is working but the report is empty (see Sortie1.xls in attachements)
    So i don't know why is it empty.
    Can someone   guide me  ?

    Hi,
    Thank You for your quick reply. The table permission was alright.
    Its very strange that, we configure usage tracking in obiee 11.1.1.6.0 using enterprise manager and that how all document says. And then it should automatically update the "NQSCONFIG.INI". But it was not updated there. So we need to change all configuration settings in both "Enterprise Manager" and also in the "NQSCONFIG.INI". Then it works fine!!
    Thanks,
    BK.

  • Usage Tracking - Access problem when Authentication Mode = Windows

    Hi Everyone,
    I´m working on UPK Usage Tracking configuration, in order to provide the finished training material.
    1) In Server01 (on Window Server 2003) the UPK Usage Tracking is installed
    2) In Server02 (also on Windows Server 2003) the Usage Tracking database is installed
    3) By accessing the configuration file (http://Server01/ODSTrack/configuration/setup.aspx) on Server01,I setup the Authentication Mode = Forms
    Note: The rest of the configurations were done.
    4) Once the configuration from step 3 is done, I execute the traning material (on Server01) from another node of the windows network
    and as a result I´m able to perform it.
    5) I access the Statistc data on Server01 by accessing the file (http://Server01/ODSTrack/admin/default.aspx)and I´m also able to see the results.
    6) When I execute the step 3 but with Authentication Mode = Windows, and including the GROUP name (windows group specially created for this goal where my user is included),
    - I still have access to the training material (step 4)
    - I have NO aceess to the statistics data any more (step 5) and the following message is display
    "You do not have permission to access this page. Please contact your Usage Tracking Server Administrator to update your permissions. "
    I don´t know what else I can do, and I wonder if some other configurations need to be done at windows network and/or explorer lever or any other.
    Any help would be appreciated.
    Best Regards//
    Rubén Zamudio

    Hi All,
    This problem was solved by reconfiguring Usage Tracking in the authentication method (was anonymous and the solution was Windows integrated).
    It is important to count on people from your organization working on Networks with some knowledge in IIS.
    Best Regards
    Ruben

  • ORA-09100 specified length too long for its datatype with Usage Tracking.

    Hello Everyone,
    I'm getting an (ORA-09100 specified length too long for its datatype) (a sample error is provided below) when viewing the "Long-Running Queries" from the default Usage Tracking Dashboard. I've isolated the problem to the logical column "Logical SQL" corresponding to the physical column "QUERY_TEXT" in the table S_NQ_ACCT. Everything else is working correctly. The logical column "Logical SQL" is configured as a VARCHAR of length 1024 and the physical column "QUERY_TEXT" is configured as a VARCHAR2 of length 1024 bytes in an Oracle 11g database. Both are the default configurations and were not changed.
    In the the table S_NQ_ACCT we do have record entries in the field "QUERY_TEXT" that are of length 1024 characters. I've tried various configuration such as increasing the the number of bytes or removing any special character but without any sucess. Currently, my only possible workaround is reducing the "Query_Text" data entries to roughly 700 characters. This makes the error go away. Additional point my character set to WE8ISO8859P15.
    - Any suggestions?
    - Has anyone else ever had this problem?
    - Is this potentially an issue with the ODBC drive? If so, why would ODBC not truncate the field length?
    - What is the maximum length supported by BI, ODBC?
    Thanks in advance for everyones help.
    Regards,
    FBELL
    *******************************Error Message**************************************************
    View Display Error
    Odbc driver returned an error (SQLExecDirectW).
    Error Details
    Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 17001] Oracle Error code: 910, message: ORA-00910: specified length too long for its datatype at OCI call OCIStmtExecute: select distinct T38187.QUERY_TEXT as c1 from S_NQ_ACCT T38187 order by c1. [nQSError: 17011] SQL statement execution failed. (HY000)
    SQL Issued: SELECT Topic."Logical SQL" saw_0 FROM "Usage Tracking" ORDER BY saw_0
    *******************************************************************************************

    I beleieve I have found the issue for at least one report.
    We have views in our production environment that call materialized views on another database via db link. They are generated nightly to reduce load for day-old reporting purposes on the Production server.
    I have found that the report in question uses a view with PRODUCT_DESCRIPTION. In the remote database, this is a VARCHAR2(1995 Bytes) column. However, when we create a view in our Production environment that simply calls this materialized view, it moves the length to VARCHAR2(4000).
    The oddest thing is that the longest string stored in the MV for that column is 71 characters long.
    I may be missing something here.... But the view that Discoverer created on the APPS side also has a column length for the PRODUCT_DESCRIPTION column of VARCHAR2(4000) and running the report manually returns results less than that - is this a possible bug?

  • While doing usage tracking

    Hi everyone,
    when i am doing usage tracking i am getting below error
    [2012-12-11T15:39:11.000+00:00] [OracleBIServerComponent] [ERROR:1] [] [] [ecid: 919a4c7b38fb3847:-5476f916:13b8a33ecad:-8000-0000000000000b78] [tid: e9c] [nQSError: 17011] SQL statement execution failed. [[
    [nQSError: 17001] Oracle Error code: 984, message: ORA-00984: column not allowed here
    at OCI call OCIStmtExecute: INSERT INTO "S_NQ_ACCT" (USER_NAME, REPOSITORY_NAME, SUBJECT_AREA_NAME, NODE_ID, START_TS, START_DT, START_HOUR_MIN, END_TS, END_DT, END_HOUR_MIN, QUERY_TEXT, QUERY_BLOB, QUERY_KEY, SUCCESS_FLG, ROW_COUNT, TOTAL_TIME_SEC, COMPILE_TIME_SEC, NUM_DB_QUERY, CUM_DB_TIME_SEC, CUM_NUM_DB_ROW, CACHE_IND_FLG, QUERY_SRC_CD, SAW_SRC_PATH, SAW_DASHBOARD, SAW_DASHBOARD_PG, PRESENTATION_NAME, IMPERSONATOR_USER_NAME, NUM_CACHE_INSERTED, NUM_CACHE_HITS) VALUES('weblogic','Star','AGG','instance1:corea',convert(datetime, '2012-12-11 21:09:11', 120),convert(datetime, '2012-12-11 00:00:00', 120),'21:09',convert(datetime, '2012-12-11 21:09:11', 120),convert(datetime, '2012-12-11 00:00:00', 120),'21:09','SET VARIABLE PREFERRED_CURRENCY=''AUD'';SELECT 0 s_0, "AGG"."AGG_ST_DATES_OBIEE"."DAT" s_1, "AGG"."AGG_ST_DATES_OBIEE"."DAY" s_2, "AGG"."AGG_ST_DATES_OBIEE"."MONTH" s_3 FROM "AGG" ORDER BY 1, 4 ASC NULLS LAST, 3 ASC NULLS LAST, 2 ASC NULLS LAST','SET VARIABLE PREFERRED_CURRENCY=''AUD'';SELECT 0 s_0, "AGG"."AGG_ST_DATES_OBIEE"."DAT" s_1, "AGG"."AGG_ST_DATES_OBIEE"."DAY" s_2, "AGG"."AGG_ST_DATES_OBIEE"."MONTH" s_3 FROM "AGG" ORDER BY 1, 4 ASC NULLS LAST, 3 ASC NULLS LAST, 2 ASC NULLS LAST','92FBACEDD4F4F5F3C26F1B31C93C97CD',0,2,0,0,1,0,2,'Y','Report','/shared/CCD/WRITE BACK','','','AGG','',0,1).
    And i think it is happening due to these values
    ,convert(datetime, '2012-12-11 21:09:11', 120),convert(datetime, '2012-12-11 00:00:00', 120),'21:09',convert(datetime, '2012-12-11 21:09:11', 120),convert(datetime, '2012-12-11 00:00:00', 120)
    so plz suggest how to resolve this.
    thanks in advance
    Ashish Kumar

    Ok, when you say you merged the Usage Tracking rpd, where did you get it from? Also, which tables did you create in the database for Usage Tracking? Please try to use the rpd here since the one that comes with the installation had issues: http://total-bi.com/2011/09/obiee-11g-usage-tracking-rpd/

Maybe you are looking for

  • Does oracle have a solution for what i need?

    Can anyone help because i am confused about Oracles offerings! In my organisation where use Staffware v9 (now TIBCO, and not the iprocess engine) as the workflow backbone. Relatively simple process maps with background steps calling SQL code to perfo

  • Not able to deploy to register my mapping with OEM

    I am new to data ware housing.Iam using oracle9i warehouse builder.I created a source,target and mapping between these two using mapping editor.Then I have generated scripts bot not able to make OEM register.When I click the button "OEM register", it

  • Non-ASCII charaters in a unix file

    Hi, Could you pls tell me how do i know the non-ascii/ascii characters in a unix file. Thanks

  • Problem in Creating Delivery Note using DI API

    i am using DI Api with Delphi Language to Create a Sales Delivery Note based on the sales Order. But Each time when i add, a new Record gets Created rather than the new Line.       Document:= IDocuments(FCompany.GetBusinessObject(oDeliveryNotes));   

  • Synchronization failure on XMLType column

    Hi!, We're using Oracle Database 10g Enterprise Edition Release 10.1.0.5.0 - 64bit Production on Solaris After creating a table with one schema-based XMLType column, we created a context index on it with the ctxsys.path_section_group as its sole para