OBIEE Usage Tracking Table Is Not Populated

Hello everybody,
OBIEE Usage tracking table (s_nq_acct) is not populated correctly for last a few weeks. I have no experience on configuring / managing usage tracking jobs, so I do not know where to start to solve this problem. First of all, which log file should I go to find the problem? And also which parameters should I look? Can you help me please.
Regards,
Dilek

Check that the absolutely correct and precise connection pool information contained in your RPD matches what your entries in the MBeans which then get written to the NQSConfig.ini.
Check that your UT physical model in the RPD physical layer isn't and old (11.1.1.5) setup running on a 11.1.1.7 env where the column definitions don't match.
Several log files. NQServer.log and NQQuery.log to begin with.

Similar Messages

  • OBIEE 11G - Usage Tracking - Table S_NQ_DB_ACCT

    Hi
    I successfully set up usage tracking in Obiee 11 and the table S_NQ_ACCT gets a lot of new records. Basically it's working.
    In the nqserver.log I get some errors concerning a new table S_NQ_DB_ACCT:
    [nQSError: 17001] Oracle Error code: 942, message: ORA-00942: table or view does not exist
    at OCI call OCIStmtExecute: INSERT INTO S_NQ_DB_ACCT (ID,LOGICAL_QUERY_ID,QUERY_TEXT,QUERY_BLOB,TIME_SEC,ROW_COUNT,START_TS,START_DT,START_HOUR_MIN,END_TS,END_DT,END_HOUR_MIN) VALUES (:1,:2,:3,:4,:5,:6,:7,:8,:9,:10,:11,:12).
    This is an additional Usage Tracking Table which didn't exist in OBIEE 10G.
    I configured the table as S_NQ_ACCT in the same place in the repositry/connection pool. Writing to this table should be possible.
    Does anybody has an idea what could be wrong? Does another user fill data to this table than the user which fills data to S_NQ_ACCT?
    Thank you

    Hi
    Thank you.
    I use the table within the default RCU created schema. What I don't understand ist why the table S_NQ_ACCT gets a lot of records (because I set the loglevel) but S_NQ_DB_ACCT keeps empty with the error in the nqserver.log. I mean if one table works then the other should be working too? I checked also the permissions which are the same for both tables.
    [2012-06-04T15:14:39.000+00:00] [OracleBIServerComponent] [ERROR:1] [] [] [ecid: 7d4f9e9d968c0bfe:-39c197c9:13773b9d89f:-8000-000000000005c768] [tid: 18e0] [nQSError: 17011] SQL statement execution failed. [[
    [nQSError: 17001] Oracle Error code: 942, message: ORA-00942: table or view does not exist
    at OCI call OCIStmtExecute: INSERT INTO S_NQ_DB_ACCT (ID,LOGICAL_QUERY_ID,QUERY_TEXT,QUERY_BLOB,TIME_SEC,ROW_COUNT,START_TS,START_DT,START_HOUR_MIN,END_TS,END_DT,END_HOUR_MIN) VALUES (:1,:2,:3,:4,:5,:6,:7,:8,:9,:10,:11,:12).
    ]]

  • OBIEE Usage Tracking is not working

    I implemented OBIEE usage tracking on my repository and restarted the services.But when I run a query it not recorded in the S_NQ_ACCT table in the database.Please let me know as to why this happens....

    Provide NQServer.log.

  • [59053] Usage Tracking stopped because the specified Usage Tracking table

    Immideatly after server startup, I am gettting this log in the NQServer.log.
    [59053] Usage Tracking stopped because the specified Usage Tracking table contained the wrong number of columns or a column with an inappropriate data type.
    Any idea how I can find out which table needs update?
    Thanks
    -SJ
    Here are the details of hte tables I have in the Usage tracking schema :
    CREATE TABLE "RMI"."S_NQ_ACCT"
    (     "USER_NAME" VARCHAR2(128 BYTE),
         "REPOSITORY_NAME" VARCHAR2(128 BYTE),
         "SUBJECT_AREA_NAME" VARCHAR2(128 BYTE),
         "NODE_ID" VARCHAR2(15 BYTE),
         "START_TS" TIMESTAMP (6),
         "START_DT" TIMESTAMP (6),
         "START_HOUR_MIN" CHAR(5 BYTE),
         "END_TS" TIMESTAMP (6),
         "END_DT" TIMESTAMP (6),
         "END_HOUR_MIN" CHAR(5 BYTE),
         "QUERY_TEXT" VARCHAR2(1024 BYTE),
         "SUCCESS_FLG" NUMBER(10,0),
         "ROW_COUNT" NUMBER(10,0),
         "TOTAL_TIME_SEC" NUMBER(10,0),
         "COMPILE_TIME_SEC" NUMBER(10,0),
         "NUM_DB_QUERY" NUMBER(10,0),
         "CUM_DB_TIME_SEC" NUMBER(10,0),
         "CUM_NUM_DB_ROW" NUMBER(10,0),
         "CACHE_IND_FLG" CHAR(1 BYTE) DEFAULT 'N' NOT NULL ENABLE,
         "QUERY_SRC_CD" VARCHAR2(30 BYTE) DEFAULT '',
         "SAW_SRC_PATH" VARCHAR2(250 BYTE) DEFAULT '',
         "SAW_DASHBOARD" VARCHAR2(150 BYTE) DEFAULT '',
         "SAW_DASHBOARD_PG" VARCHAR2(150 BYTE) DEFAULT '',
         "PRESENTATION_NAME" VARCHAR2(128 BYTE) DEFAULT '',
         "ERROR_TEXT" VARCHAR2(250 BYTE) DEFAULT '',
         "RUNAS_USER_NAME" VARCHAR2(128 BYTE) DEFAULT '',
         "NUM_CACHE_INSERTED" NUMBER(10,0) DEFAULT NULL,
         "NUM_CACHE_HITS" NUMBER(10,0) DEFAULT NULL
    ) PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING
    STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
    PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
    TABLESPACE "RMI_DATA" ;
    CREATE INDEX "RMI"."S_NQ_ACCT_M1" ON "RMI"."S_NQ_ACCT" ("START_DT", "START_HOUR_MIN", "USER_NAME")
    PCTFREE 10 INITRANS 2 MAXTRANS 255
    STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
    PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
    TABLESPACE "RMI_DATA" ;
    CREATE INDEX "RMI"."S_NQ_ACCT_M2" ON "RMI"."S_NQ_ACCT" ("START_HOUR_MIN", "USER_NAME")
    PCTFREE 10 INITRANS 2 MAXTRANS 255
    STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
    PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
    TABLESPACE "RMI_DATA" ;
    CREATE INDEX "RMI"."S_NQ_ACCT_M3" ON "RMI"."S_NQ_ACCT" ("USER_NAME")
    PCTFREE 10 INITRANS 2 MAXTRANS 255
    STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
    PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
    TABLESPACE "RMI_DATA" ;
    CREATE OR REPLACE FORCE VIEW "RMI"."NQ_LOGIN_GROUP" ("LOGIN", "RESP") AS
    Select DISTINCT USER_NAME as "LOGIN", RUNAS_USER_NAME as RESP From S_NQ_ACCT
    Edited by: SachinJ on Aug 3, 2009 7:54 AM

    Compare the S_NQ_ACCT table you created with the table structure defined in the rpd under the physical layer database object "Oracle Analytics Usage".

  • Finance Tables are not populating as expected

    Hi Gurus,
    Finance tables are not populating as expected when we ran vanila etl for obia 7.9.6.3 at the first instance.
    For Example: Data is populated to w_ar_xact_f , w_ap_xact_f , w_gl_balance_fs , w_gl_account_d
    but not other tables like w_ar_balance_f, w_ap_balance_f,w_gl_balance_f.
    As per my finance team theThe natural account range in ebs is 0AA to Z00. I have given the values in file_group_acct_codes_ora file as fallows.
    101,0AA,Z00,GEN PAYROLL
    101,0AA,Z00,AP
    101,0AA,Z00,AR
    Please, Can anaybody help me if there is anything wrong in my configuration file 'file_group_acct_codes_ora'
    Thanks in Advance,
    gns

    Hi Ahsan,
    Thanks for the reply.
    I have re configured the file_group_acct_codes_ora.csv file based on the input from EBS financial team. When i ran the full load for FINANCE,PROCUREMENT,PROJECTS and HR the fact tables are not populating as expected.
    For ex: SIL_ARTransactionFact_Diffmanload,SIL_APARTransactionFact_Diffmanload,SIL_GL_Revenufact_Diffmanload tasks are completed successfully.
    But the SIL_ARTransactionFact_Full is failed with error ORA-08103 object no longer exists.SIL_APTransactionFact_Full ,SIL_GL_RevenueFact_Full tasks are failed with the error an index define on target table. Like this some of the sessions are failed with index define on target table. Before starting the full load i have reset the data sources to truncate the table as well. Would be great if i get some light on this issue.
    for ex:I could see some data in the fallowing tables
    w_gl_account_d
    w_gl_group_account_d
    w_ar_xact_f
    w_ar_xact_fs
    w_ap_xact_f
    w_ap_xact_fs
    w_ap_balance_f
    w_ap_balance_f_tmp
    w_gl_balance_fs
    For ex: I can't see any data in the fallowing tables
    w_ar_balance_f
    w_ar_balance_f_tmp
    w_gl_balance_f
    w_payroll_f
    w_payroll_fs
    w_gl_cogs_fs
    w_gl_cogs_f
    Thanks in Advacne,
    GNS.

  • 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?

  • Error with OBIEE Usage Tracking

    Hi,
    I have set up Usage Tracking in Oracle BI Enterprise Edition with the Direct Insert Option. I have created the S_NQ_ACCT table in an Oracle schema that is referenced as a connection pool in the Oracle BI Repository physical layer. When I run my requests from Oracle BI Answers and check my server logs (NQServer.log), I get the following message:
    [59048] Usage Tracking encountered an insert statement execution error. This error has occurred 9 times and resulted in the loss of 9 insert statements since this message was last logged.
    [nQSError: 16001] ODBC error state: S1000 code: 1456 message: [Oracle][ODBC][Ora]ORA-01456: may not perform insert/delete/update operation inside a READ ONLY transaction.
    [nQSError: 16015] SQL statement execution failed.
    2008-04-25 04:34:18
    [59048] Usage Tracking encountered an insert statement execution error. This error has occurred 9 times and resulted in the loss of 9 insert statements since this message was last logged.
    [nQSError: 16001] ODBC error state: S1000 code: 1456 message: [Oracle][ODBC][Ora]ORA-01456: may not perform insert/delete/update operation inside a READ ONLY transaction.
    [nQSError: 16015] SQL statement execution failed.
    Does anyone know how to fix this problem?
    Regards,
    Peter

    Thanks for the response.
    You're right. The response seems to imply that the account does not have the authorization. However, the account I am using to access the database from OBIEE Repository owns the schema where the S_NQ_ACCT table is stored. So I am puzzled as to why this response is generated.

  • OBIEE usage tracking questions

    Hi,
    I am using OBIEE 11g and we enabled usage tracking.
    Recently, i have observed that some inserts to S_NQ_ACCT table is failing due to "String literal too long" error.
    We have configured VARCHAR(4000)  for QUERY_TEXT column in physical layer which is causing issues since the executing query has more than 4k characters, I would like to configure in such a way that the insert should not fail and  it should exceed with first 4k chars inserted.
    The one way i can think of is, in physical layer importing as a view(with subtr() applied on query_text)  in lieu of physical table.
    Is there any other way i can achieve this?
    Thanks,
    Pandeeswaran

    HI,
    May I know obiee version?
    Can you refer below thread, it sees similar error.
    https://forums.oracle.com/message/9866218
    https://forums.oracle.com/message/10091143
    Thanks,
    Satya

  • 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

  • SKB1 table is not populated  - Bulgaria country version

    Hi,
    Our team is working on installation country version for Bulgaria.
    We have ECC 6.0 and SAPK-11023INCCEE ECC Core Country versions for EEM Country (Romania country localization).
    We followed the instructions of SAP note 856949 "Enhancements for mySAP R/3 46C and
    higher for Bulgaria" and we face the following problem:
    Table SKB1 for BG01 company code is not populated, but we have data in SKA1, SKAT tables (charts of accounts CABG).
    Although we imported CT_BG_160108.zip , CT_SKB1_table_content.zip , still SKB1 table does not contain data for BG01 - company code.
    Please help us to solve this problem.
    Moderator: I'd suggest to open OSS message on this problem, if you are sure that you maintain the data for company code

    Hello,
    Here are a few hints:
    - In the operator, check the steps of your interface. Are rows inserted in I$ tables ?
    - If you use Flow Control, does your E$ tables contains something ?
    - Check the SQL code generated in the integration step, extract the Select from it and execute it using sqlplus, SQLDeveloper or whatever you want. Does it return something ? Maybe there is a wrong filter...
    If you don't find the error, tell us which IKM you use and give us the generated code of the step which returns no data.
    Hope it helps

  • User Usage Tracking History  Link  not  visible in Reports

    Hi All,
    I want to create reports based on user usage login details by using the user usage tracking history link in report section.But presently i do not find the link there.May i know what can be the problem behind this issue?
    Thanks in advance,
    Manish.

    This is only available in historical subject area. If you cannot see this please ask your admin to turn this on within your role.

  • Message table is not populating in CALL Transaction Method.....

    Hi,
    Im developing a BDC program for Tcode CV01N...Document link...Problem is when document link is created Successfully.then Message table is not getting populated with message....but this working fine when there is a error then it is population.
    what could be the problem...let me know..
    Thanks,
    kiran.

    Hi,
    Usually BDC replicates the standard transaction and captures all the messages that occur in the standard transaction.
    I would request you to check the standard transaction, execute it and see if there is any message captured in success mode. If no message is capture, then your BDC functions correct.
    If you still need do some processing based on the message table, you can do one thing:
    IF gt_message (your message table)  is initial.
    > Do some processing/append your custom messagesince this is successful
    Else.
    --> Do error processing - since this is error record.
    ENDIF.
    Hope this helps
    Regards
    Shiva

  • Table DBERCHZ2 not populated

    Hello everybody,
    When we create a billing document, it is not populated table DBERCHZ2. Only table DBERCHZ1 is populated correctly but table DBERCHZ2 is always empty when we create a billing document. Due to this, we canu2019t find the meter reading document linked to this billing document.
    There isnu2019t any OSS note that explains this problem.
    Ideas? Similar issue?
    Thanks in advance.
    Fernando.

    Hello,
    Just a suggestion that may help....
    The problem may be with the selection screen you are using.
    If you are using transaction SE16 and the field ATIM is active and the
    from- and to- value is 00:00:00 ....delete the values here, that is, deselect the time fields.
    Try this to see if the entries can be viewed..
    Hope it helps.
    Regards
    Olivia

  • Xla_transaction_entities table is not populating

    Hello everyone,
    There secondary ledger table xla_transaction_entities is not populating.
    The table is used to feed another table for datawarehouse.
    Could anyone explain why this is happening and give a solution please?
    Thank you.
    Edited by: Yuvraj Keenoo on Apr 13, 2012 11:47 AM

    Please find the solution in the other open question(with same query)

  • REQ table is not populated

    Hello experts, in my IDM envt, when I submit request, REQ table never gets populated. All the requests can be seen in REQUEST table.
    Is it an issue or that's how it is designed in 11.1.1 ?
    can you please clarify ?
    thanks

    thanks a lot.
    Can you please tell me when the object tables get populated ? What I learnt is when we submit requests for resources (for example external LDAP), the object tables get populated.
    appreciate your help.
    thanks

Maybe you are looking for

  • Is there any documentation for UCES?

    Hi, I'm searching and searching for documentation for the "Utility Customer E-Services"-component, but I cannot find anything on the SDN or Marketplace. Can anybody help me with a link for documentation, so that I can configure and also work with thi

  • [SOLVED] error while loading shared libraries

    Im open mplayer and cmplaye its not start getting this error cmplayer: error while loading shared libraries: libhogweed.so.2: cannot open shared object file: No such file or directory mplayer: error while loading shared libraries: libhogweed.so.2: ca

  • In system preferences shouldn't the lock icon be unlocked before a password can be changed?

    In system preferences should the lock icon be unlocked before a password can be changed?

  • What app do I need to download an .xdp file?

    What app do I need to download an .xdp file. I am trying to download an absentee ballot from our local county government website.  It is in an xdp file and I get a message back saying apple could not download.

  • When I launch ITunes nothing is happening

    Hello! In the last days this thing has started happening: When I launch Itunes, nothing is happening. I click several times, nothing is happening, but somehow, suddenly, after 10, maybe 15 minutes, it opens up. I have no clue why this is happening. I