OBIEE 11g Usage Tracking - Physical SQL

Hi All,
The Query Text column gives me only the logical SQL. The Log Level is set at 2. How can I get the physical SQL via Usage tracking?
Thanks for your time and help.

Hi,
Good for you.
Maybe you can post the solution and how you solved your issue to help other users having the same problem and then close the thread (currently it's still This question is Not Answered.)

Similar Messages

  • OBIEE 11g - Usage Tracking Not Working

    Dear All,
    I have enabled the usage Tracking in OBIEE 11g by using Setting up Usage Tracking in Oracle BI 11g guide.
    Still i am getting the following error
    Usage Tracking not started due to non-existent Usage Tracking table "12-Usage Tracking"."Usage Tracking Schema"."S_NQ_ACCT".
    In my RPD,
    Database Name : "12-Usage Tracking"
    Physical Schema Name : "Usage Tracking Schema"
    Physical Table Name : "S_NQ_ACCT"
    This table reside under BIPLATFORM Schema in Oracle.
    I have followed the steps mentioned in the Document, still unable to find why getting such error. Please point out if any mistake exists.
    Please advice.

    Hi,
    Good for you.
    Maybe you can post the solution and how you solved your issue to help other users having the same problem and then close the thread (currently it's still This question is Not Answered.)

  • 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 11g - Usage Tracking - All details are not captured

    Hi
    We have implemented USAGE TRACKING in our RPD on OBIEE 11.1.1.5. It is working fine, only in few cases it is failing... failing to update with appropriate information...
    For the field SUCCESS_FLG the value is populated as 3 - which means "The query failed due to some other reason" as per documentation. When checked the logs, there is no much information in that to conclude what went wrong. Log level is set to 3.
    My question is, What are the possible reasons to have this success flag as 3? To capture all the details in the table S_NQ_ACCT, what need to be done? Any settings change?
    Please share your thoughts...
    Thanks,

    Hi,
    Good for you.
    Maybe you can post the solution and how you solved your issue to help other users having the same problem and then close the thread (currently it's still This question is Not Answered.)

  • OBIEE 11g Usage Tracking -

    Hello,
    I'm looking for a better way than Administration/ Manage Sessions to keep an eye on long-running queries.
    Is there a way to get OBI to place information about currently running (started but not ended) queries into usage tracking so that I can see long-running reports though an analysis in the Usage Tracking subject area?
    As far as I can see, I can only query completed reports/dashboards from the usage Tracking Subject area. The "status" column in the Manage Session display is not availalble in the Usage Tracking subject area and a filter on End Time = null yields no results. Any ideas/strategies welcome! Thanks.

    You could use the nqquery.log to look for queries that have started but not finished. You'd need to parse it for relevant start/finish and match up the IDs.
    There is an nqquery.log parser on MOS somewhere, that might be a good starting point.

  • 11g usage tracking

    I have installed 11g r5 and I need to configure Usage Tracking
    but I cannot find ddl-file to create S_NQ_ACCT table.
    ...bifoundation\OracleBIServerComponent\coreapplication_obis1\schema\SAACCT.Oracle.sql
    where I can find this ddl-file?

    You can use this,
    CREATE TABLE S_NQ_ACCT
    USER_NAME VARCHAR2(128 CHAR),
    REPOSITORY_NAME VARCHAR2(128 CHAR),
    SUBJECT_AREA_NAME VARCHAR2(128 CHAR),
    NODE_ID VARCHAR2(15 CHAR),
    START_TS DATE,
    START_DT DATE,
    START_HOUR_MIN CHAR(5 CHAR),
    END_TS DATE,
    END_DT DATE,
    END_HOUR_MIN CHAR(5 CHAR),
    QUERY_TEXT VARCHAR2(1024 CHAR),
    QUERY_BLOB CLOB,
    QUERY_KEY VARCHAR2(128 CHAR),
    SUCCESS_FLG NUMBER(10),
    ROW_COUNT NUMBER(10),
    TOTAL_TIME_SEC NUMBER(10),
    COMPILE_TIME_SEC NUMBER(10),
    NUM_DB_QUERY NUMBER(10),
    ***DBTIME_SEC NUMBER(10),
    ***NUMDB_ROW NUMBER(10),
    CACHE_IND_FLG CHAR(1 CHAR) DEFAULT 'N' NOT NULL,
    QUERY_SRC_CD VARCHAR2(30 CHAR) DEFAULT '',
    SAW_SRC_PATH VARCHAR2(250 CHAR) DEFAULT '',
    SAW_DASHBOARD VARCHAR2(150 CHAR) DEFAULT '',
    SAW_DASHBOARD_PG VARCHAR2(150 CHAR) DEFAULT '',
    PRESENTATION_NAME VARCHAR2(128 CHAR) DEFAULT '',
    IMPERSONATOR_USER_NAME VARCHAR2(128 CHAR) DEFAULT '',
    NUM_CACHE_INSERTED NUMBER(10) DEFAULT null,
    NUM_CACHE_HITS NUMBER(10) DEFAULT null
    )

  • OBIEE 10g Usage Tracking

    HI Experts,
    I have implemented Usage Tracking in our project.
    I have few questions on this implementation.
    1. Users coming from Ldap server-- One new user loged into answers after that he has not doing any thing, The home page is blank. wether this user captured into usage tracking table or not?
    2. After login this user he has not select any report /Dashboard .
    Please let me know how we captured this user in usage tracking.
    Please help me it is very urgent.
    Thanks

    Check these
    http://obiee101.blogspot.com/2008/06/obiee-directing-user-to-default.html
    http://santoshbidw.wordpress.com/2010/11/12/portalpath-variable-obiee-10g/
    Pull one more date column click on fx->click on variable->Session-> enter USER
    Pls mark correct or helpful

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

  • Web services in OBIEE 11g

    Hello,
    I have few Questions on webservices usage in OBIEE 11g(11.1.1.7.0).
    Can we use/invoke the web service in OBIEE 11g?If yes,please provide me details.
    If we install OBIEE 11g ,can we get the BI publisher as free product or do i need to configure anything?
    Can i use the Webservices with BI publisher?If yes,then what is the difference between OBIEE 11g usage and BI publisher usage?
    thanks,
    prassu

    Hello Prassu,
    Below my comments in bold
    Can we use/invoke the web service in OBIEE 11g?If yes,please provide me details.
    Yes we can Invoke
    Invoking Web Services from OBIEE | srikalyan's blog
    If we install OBIEE 11g ,can we get the BI publisher as free product or do i need to configure anything?
    Yes we will get
    Can i use the Webservices with BI publisher?If yes,then what is the difference between OBIEE 11g usage and BI publisher usage?
    No we cannot use webservices with BI Publisher.We can only use webservices in OBIEE/Analytics
    Btw what is your requirement?
    Thanks,
    Sasi Nagireddy..

  • OBIEE 11g web services

    Dears
    I'm using OBIEE 11.1.1.5 and i am write java code to call web services as the following:
    import com.siebel.analytics.web.soap.SAWSessionServiceLocator;
    //import oracle.bi.web.soap.internal.SAWSessionServiceSoap;
    import com.siebel.analytics.web.soap.SAWSessionServiceSoap;
    import oracle.svcmsg.ServiceException;
    public class TestSAW {
    public TestSAW() {
    String username = "weblogic";
    String password = "welcome99";
    public void testSimpleOBIEEService() {
    try {
    SAWSessionServiceSoap service = getService();
    String sessionID = service.logon(username, password);
    System.out.println("sessionID" + sessionID);
    } catch (Exception ex) {
    ex.printStackTrace();
    private SAWSessionServiceSoap getService() {
    SAWSessionServiceSoap result = null;
    SAWSessionServiceLocator locator = new SAWSessionServiceLocator();
    locator.setSAWSessionServiceSoapEndpointAddress("http://anas:9704/analytics/saw.dll?wsdl");
    result = locator.getSAWSessionServiceSoap();
    return result;
    public static void main(String[] args) {
    TestSAW tt = new TestSAW();
    tt.testSimpleOBIEEService();
    when i copmile the code it give me that SAWSessionServiceLocator is not found becuase i attached sawsoapjaxwsstubs.jar and it doesn't have this class, so i found this class at sawsoapstubs.jar from OBIEE 10g after i attached it then give me the following error : Error(33,9): Service not found in class com.siebel.analytics.web.soap.SAWSessionServiceLocator .
    can anyone please help me or give me the right code or jar file i should used to call the web services.
    Thanks

    Hello Prassu,
    Below my comments in bold
    Can we use/invoke the web service in OBIEE 11g?If yes,please provide me details.
    Yes we can Invoke
    Invoking Web Services from OBIEE | srikalyan's blog
    If we install OBIEE 11g ,can we get the BI publisher as free product or do i need to configure anything?
    Yes we will get
    Can i use the Webservices with BI publisher?If yes,then what is the difference between OBIEE 11g usage and BI publisher usage?
    No we cannot use webservices with BI Publisher.We can only use webservices in OBIEE/Analytics
    Btw what is your requirement?
    Thanks,
    Sasi Nagireddy..

  • Usage Tracking in OBIEE 11g - S_NQ_DB_ACCT and S_NQ_ACCT

    Hi Experts,
    How to fetch the physical query using usage tracking in OBIEE 11g, i hope in OBIEE 11g there is a feature to capture the physical query using S_NQ_DB_ACCT.
    I have imported the table S_NQ_ACCT and S_NQ_DB_ACCT in to RPD.
    Please let me know how to join these two tables(Using which Key).
    Thanks.

    Hi,
    Which version are you using it?
    If you in obiee11.1.1.6.0 and above version refer,
    CREATE TABLE [dbo].[S_NQ_ACCT](
         [USER_NAME] [varchar](128) NULL,
         [REPOSITORY_NAME] [varchar](128) NULL,
         [SUBJECT_AREA_NAME] [varchar](128) NULL,
         [NODE_ID] [varchar](15) NULL,
         [START_TS] [datetime] NULL,
         [START_DT] [datetime] NULL,
         [START_HOUR_MIN] [char](5) NULL,
         [END_TS] [datetime] NULL,
         [END_DT] [datetime] NULL,
         [END_HOUR_MIN] [char](5) NULL,
         [QUERY_TEXT] [varchar](4000) NULL,
         [QUERY_BLOB] [ntext] NULL,
         [QUERY_KEY] [varchar](128) NULL,
         [SUCCESS_FLG] [numeric](10, 0) NULL,
         [ROW_COUNT] [numeric](10, 0) NULL,
         [TOTAL_TIME_SEC] [numeric](10, 0) NULL,
         [COMPILE_TIME_SEC] [numeric](10, 0) NULL,
         [NUM_DB_QUERY] [numeric](10, 0) NULL,
         [CUM_DB_TIME_SEC] [numeric](10, 0) NULL,
         [CUM_NUM_DB_ROW] [numeric](10, 0) NULL,
         [CACHE_IND_FLG] [char](1) NOT NULL,
         [QUERY_SRC_CD] [varchar](30) NOT NULL,
         [SAW_SRC_PATH] [varchar](250) NOT NULL,
         [SAW_DASHBOARD] [varchar](150) NOT NULL,
         [SAW_DASHBOARD_PG] [varchar](150) NOT NULL,
         [PRESENTATION_NAME] [varchar](128) NOT NULL,
         [ERROR_TEXT] [varchar](250) NOT NULL,
         [IMPERSONATOR_USER_NAME] [varchar](128) NOT NULL,
         [NUM_CACHE_INSERTED] [numeric](10, 0) NULL,
         [NUM_CACHE_HITS] [numeric](10, 0) NULL
    ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
    this one is working fine and no issue.
    Thanks
    Deva

  • Selecting data source in physical view in OBIEE 11G when using sql server

    Hi,
    I doing my physical view against a 2008 R2 SQL Server. Looks like the list goes upto 2005. Should I select 2005 in that case? As per image: http://i.imgur.com/3H7MO.png
    Cheers.
    I am using OBIEE 11G 32bit Windows.

    Hi,
    Yes can. either you can select as SQL 2005 or ODBC basic also can
    I hope your version less than obiee11.1.1.5.0, version 11.1.1.1.6.0 and above has update SQL 2008 in the data source selection list.
    refer,
    http://imgur.com/JSYoL
    Thanks
    Deva

  • OBIEE 11g (11.1.1.6) usage tracking migration

    Hi Team,
    I am facing issue in setting up the usage tracking in 11g (11.1.1.6).
    All the tables and views are available in DEV_BIPLATFORM schema. Migration of the the RPD and the Catalog (available under 'sample' folder) is failing.
    Error: Wrong Password.
    I have used the default password of Usage Tracking rpd (Admin123 as well as Administrator) during migration. Even though the migration fails.
    Is there any bug associated with this as i have also tried to open the RPD with 10g (10.1.3.4) and also with 11g (11.1.1.6). In both case, they failed to open.
    Error in 10g:
    [nQSError: 36010] Server version 184 cannot read the newer version 266 of the repository.
    Error in 11g:
    [nQSError: 36015] Please run the upgrade utility obieerpdmigrateutil to upgrade the repository.

    This is a bug.
    Raised SR with Oracle to resolve it. Oracle has provided a new RPD.

  • [NQQuery log]: Physical SQL generated agaisnt 2 Database in OBIEE 11g

    Hi Experts,
    I have a problem regarding the physical SQL generated by Query log.
    So this is the setup.
    SCENARIO 1:
    Oracle Data Warehouse DB
    - col1
    - col2
    - col3
    OLAP_OBIEE
    - col4
    When I run these columns together in Analysis. It seems like the physical SQL generated in the Query log is partitioned with each other and I cant get the exact SQL so I can make comparison with the total record count in Analysis UI and the SQL developer.
    select col1, col2, col3 from Oracle Data Warehouse tables
    select col4 from OLAP_OBIEE tables
    ================================================================
    SCENARIO 2:
    Oracle Data Warehouse DB
    - col1
    - col2
    - col3
    - col4
    Running these columns together in Analysis. I am wondering why the physical SQL is somewhat also partitioned just like in SCENARIO 1.
    select col1, col2, col3 from Oracle Data Warehouse tables
    select col4 from Oracle Data Warehouse tables
    Hope that you get what am I trying to say. :(
    Thanks,
    Edited by: OBIEE/BIP Forumer on Oct 29, 2012 1:27 AM
    Edited by: OBIEE/BIP Forumer on Oct 29, 2012 1:27 AM

    Hi Maqsoon,
    Sorry for the confusion, in my Analysis report, I have a report where it generates 2 physical SQL in one Database, also I have a report where it uses 2 Database which also generates 2 physical SQL.
    Below is the SQl generated in my Analysis report using 1 Database
    select count(distinct case when T68197.OPTY_WID > 0 then concat(T67058.INTEGRATION_ID, cast(T67058.DATASOURCE_NUM_ID as CHARACTER ( 30 ) )) end ) as c1,
    T67058.OPTY_O_REVN as c2,
    T67365.CUST_VALUE_NAME as c3,
    T157680.NAME as c4,
    T157680.INTEGRATION_ID as c5
    from
    W_OPTY_D T67058 /* Dim_W_OPTY_D */ ,
    W_REVN_F T68197 /* Fact_W_REVN_F */ ,
    W_PARTY_D T157680,
    W_PARTY_ORG_D T67365
    where ( T67058.ROW_WID = T68197.OPTY_WID and T67365.ROW_WID = T157680.PARTY_ORG_WID and T68197.PR_CUSTOMER_WID = T157680.ROW_WID )
    group by T67058.OPTY_O_REVN, T67365.CUST_VALUE_NAME, T157680.NAME, T157680.INTEGRATION_ID
    order by c5, c2
    [2012-10-30T11:44:39.000+00:00] [OracleBIServerComponent] [TRACE:2] [USER-18] [] [ecid: 352c537d7893ee94:-5718ddd6:13aaccb7670:-8000-0000000000005c50] [tid: f650d700] [requestid: 45ca0005] [sessionid: 45ca0000] [username: joshua.l.manego.iii] -------------------- Sending query to database named Oracle Data Warehouse (id: <<1201371>>), connection pool named Oracle Data Warehouse Connection Pool, logical request hash edb0c7c0, physical request hash 87553d2a: [[
    select sum(D1.c1) over (partition by D1.c4, D1.c2) as c1,
    D1.c2 as c2,
    D1.c3 as c3,
    D1.c4 as c4,
    sum(D1.c5) over (partition by D1.c6, D1.c4, D1.c2) as c5,
    D1.c6 as c6
    from
    (select count(T84444.ORDER_WID) as c1,
    T67365.CUST_VALUE_NAME as c2,
    T157680.NAME as c3,
    T157680.INTEGRATION_ID as c4,
    sum(T84444.ORDER_NRC) as c5,
    T67058.OPTY_O_REVN as c6
    from
    W_OPTY_D T67058 /* Dim_W_OPTY_D */ ,
    W_PARTY_ORG_D T67365,
    W_ORDER_F T84444 /* Fact_W_ORDER_F */ ,
    W_PARTY_D T157680
    where ( T67058.ROW_WID = T84444.OPTY_WID and T67365.ROW_WID = T157680.PARTY_ORG_WID and T84444.CUSTOMER_WID = T157680.ROW_WID )
    group by T67058.OPTY_O_REVN, T67365.CUST_VALUE_NAME, T157680.NAME, T157680.INTEGRATION_ID
    ) D1
    order by c4, c6
    Below is the physical SQL that uses 2 Database
    select T68071.QUOTE_NUM as c1,
    T116081.CURRENT_BASE_POSTN as c2,
    T66755.PER_NAME_MONTH as c3,
    T68071.STATUS_I as c4,
    T68071.QUOTE_TYPE_I as c5,
    T68071.SUB_TYPE_I as c6,
    T84523.ROW_WID as c7
    from
    W_POSITION_D T74722 /* Dim_W_POSITION_D */ ,
    W_QUOTE_D T68071 /* Dim_W_QUOTE_D */ ,
    W_QUOTE_F T84523 /* Fact_W_QUOTE_F */ ,
    W_DAY_D T66755 /* Dim_W_DAY_D_Common */ ,
    W_POSITION_DH T116081 /* Dim_W_POSITION_DH_Position_Hierarchy */
    where ( T66755.ROW_WID = T84523.OPEN_DT_WID and T68071.ROW_WID = T84523.QUOTE_WID and T74722.ROW_WID = T84523.PR_EMP_POS_WID and T74722.ROW_WID = T116081.POSITION_WID and T84523.PR_EMP_POSTN_DH_WID = T116081.ROW_WID )
    order by c7
    [2012-10-30T11:51:42.000+00:00] [OracleBIServerComponent] [TRACE:2] [USER-18] [] [ecid: 352c537d7893ee94:-5718ddd6:13aaccb7670:-8000-0000000000005cb8] [tid: f61fc700] [requestid: 45ca0007] [sessionid: 45ca0000] [username: joshua.l.manego.iii] -------------------- Sending query to database named OLAP_OBIEE (id: <<1204144>>), connection pool named Connection Pool, logical request hash c180fd3b, physical request hash a2e8b0d6: [[
    select T315910.NIVEL_APPROVACAO as c1,
    T315910.ALCADA_DESCONTO as c2,
    T315910.ROW_WID as c3
    from
    W_QUOTEITEM_F T315910
    order by c3
    Based on what you said, so it is impossible to merge the physical SQL if we use 2 Database right?
    Your effort in answering to my question is much appreciated, Thank you.

  • Error in implementing Usage Tracking in OBIEE

    Hi All,
    I wants to implement Usage Tracking in my project. I have done all the steps as per link http://obiee101.blogspot.com/2008/08/obiee-setting-up-usage-tracking.html
    But i am getting following error in NQServer.log file----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    [59048] Usage Tracking encountered an insert statement execution error. This error has occurred 1 times and resulted in the loss of 1 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.
    I have also check by changing the Call_Interface in Connection Pool of Admin Tool from ODBC 3.5 to OCI 10g. By this chage i get ollowing error:
    [59048] Usage Tracking encountered an insert statement execution error. This error has occurred 1 times and resulted in the loss of 1 insert statements since this message was last logged.
    [nQSError: 17001] Oracle Error code: 3114, message: ORA-03114: not connected to ORACLE
    at OCI call OCIStmtExecute.
    [nQSError: 17011] SQL statement execution failed.
    Please help....
    Thanks in Advance...
    Regards,
    Avi

    problem is solved....
    Actually in NQServer.ini file i was using actual Database name instead of Admin Tool Physical Layer name at PHSICAL TABLE NAME: <database>.<schema>.<tablename>
    and at CONNECTION POOL: <database name>.<connection pool>
    thanks...

Maybe you are looking for

  • TWO ERRO ORA-01427: single-row subquery returns more than one row

    Hi, I have a procedure which contains a cursor. If i run the select statement in the cursor separetly, it returns only value and works fine. But the same select statement in the cursor of a procedure throws me the error as below: TWO ERRO ORA-01427:

  • FaceTime login

    can't get face time to work. I am in a continuous loop to sign in with my Apple ID.  I know my ID is correct.

  • Duplicate photos already in photo library

    Is there a way to scan your i-photo library and automatically select/delete all duplicate photos? After just recovering lost/accidentally deleted photos, I now have thousands of duplicates in my library, even tho I had selected to not import duplicat

  • OLE Excel Questions

    Guys, I am working on OLE excel to download data from SAP.I have few basic questions for OLE excel 1. I want to merge Cells in EXCEL , how can i do it? 2. I want to make alignment right in some Cell,how can i do it? 3. I have been reading post in SDN

  • Verizon Prepaid plan

    Just wanted to express my frustration and anger about Verizon prepaid scam.  I have a prepaid plan for $70 a month.  I was told that all I would pay is $70.  Just went online to pay my monthly payment and they added $7 in taxes and fees.  Why did thi