Adding Notes to a query result

Is there a way for end users to add notes to a query result, then have those notes show up when another user runs the query?
If so, how long would those notes be avalible? In other words, are there any BI events that would clear ot the note(s)?
Where would I go to get the documentation on this (if it exists)? Thanks!!!
Mark

Hi,
You can add notes in query result, write click on the particular cell, there you will have option to add notes.

Similar Messages

  • Show blank texts instead of key or 'not assigned' in query-result

    Hi,
    is there a way / workaround to
    1. suppress # / 'not assigned' in query results?
    or
    2. show blank texts (if maintained) instead of the key
        (when showing texts for a characteristic in a query all characteristics with blank texts - none or ' ' -
         will show the key instead of the blan text) ?
    Thanks,
    Christoph

    Hi Christoph,
    there have been several posts concerning this topic. As Saad told there is no direct way within SAP standard to reach this aim.
    Depending on the Front-End Tools you are using these posts may help:
    Not assigned and # in BEX 7.0 WAD
    how to set field to blank if the data is # or unassigned
    Brgds,
    Marcel

  • Still some 'Not Assigned' in query result

    Hi,
    In fact, I've built a query on a multiprovider ( 1 Cube + 1 ODS )
    The ODS and the Cube are joined by the material (0material).
    The Cube and the ODS are well filled. Queries on each Infoprovider correctly display the results.
    When I launch my query on the Multiprovider, it seems the "joined" between the 2 infoproviders doesn't work as
    I've still some '#' / 'Not Assigned' value in the query result, and it should give me a result.
    In fact the data from the ODS aren't retrieved, they are replaced by '#'. And I don't why ?
    Please help.
    Thx a lot,
    Erwan

    Yes you are right.
    I made a mistake in my explanation.
    But the problem is that the characteristics from the ODS aren't displayed though the characteristic from the cube are correctly displayed.
    eg.
    In the ODS I've :
    ( Material, ZCHAR )
    'ART01'  '315'
    'ART02'  '412'
    'ART03'  '999'
    In my Cube I've :
    'ART01'  '12,36€'  '59,00€' '30 ST' 
    'ART02'  '12,96€'  '89,00€' '40 ST' 
    In the query(on the multiprovider) result I've :
    ( Material, ZCHAR, other values...)
    'ART01' '#' 'Not assigned' '12,36€'  '59,00€' '30 ST' 

  • Autotrace does not show SQL Query Results

    In the previous versions of SQL Developer, the query results will be shown in the Results tab when running the SQL using Autotrace. However, in SQL Developer v2, I cannot find the query results when I run the SQL using Autotrace. Are there any options or settings to turn on the query results in autotrace?

    Please do not duplicate threads (original Autotrace does not show Query Results only makes you and all of us lose time.
    If nobody answered, that would probably indicate a NO.
    You can request this at the SQL Developer Exchange again, so other users can vote and add weight for possible future implementation.
    Sorry,
    K.

  • Kodo resultset does not match sqlplus query result

    We are attempting to use Kodo's vertical mapping jdo capability to allow
    our application's drop down pick lists tsupport multiple languages.
    With most of the pick lists/ code tables it appears to work properly.
    But with 2 pick lists/ code tables the result sets do retrieved thro
    kodo jdo do not match what happens thru sqlplus.
    Even though the query asks for only English records, Kodo retrieve 1
    record in arabic.
    This does not happen in sqlplus
    We are using Oracle 10.2.1 and Kodo jdo 3.3
    Below is a the kodo trace and sqlplus result
    Thanks!
    ---------------Getting picklist for class: class
    gov.state.pisces.jdo.EntryStatusL language en
    25375 TRACE [javawsApplicationMain] kodo.Query - executing query: select
    from gov.state.pisces.jdo.EntryStatusL where visible == 1 &&
    language.languageCode=='en' order by name ascending
    25390 TRACE [javawsApplicationMain] kodo.jdbc.SQL - <t 12742366, conn
    16761835> [15 ms] executing prepstmnt 12406210 SELECT t1.ENTRY_STATUS_ID,
    t0.ID, t1.ENTRY_STATUS_CODE, t1.MODIFICATION_DATE,
    t1.MODIFICATION_USER_ID, t1.OWNER, t1.VISIBLE, t0.LANGUAGE_ID,
    t0.MODIFICATION_DATE, t0.MODIFICATION_USER_ID, t0.NAME, t0.OWNER FROM
    COMMON.LANGUAGE t2, TRAVELER.ENTRY_STATUS t1, TRAVELER.ENTRY_STATUS_L t0
    WHERE (t1.VISIBLE = ? AND t2.LANGUAGE_CODE = ?) AND t0.ID =
    t1.ENTRY_STATUS_ID AND t0.LANGUAGE_ID = t2.LANGUAGE_ID ORDER BY t0.NAME
    ASC [params=(int) 1, (String) en] [reused=0]
    Entry Status Lang Id 29
    25390 TRACE [javawsApplicationMain] kodo.jdbc.SQL - <t 12742366, conn
    16761835> [0 ms] executing prepstmnt 6628690 SELECT t0.LANGUAGE_CODE,
    t0.LANGUAGE_NAME, t0.LOCAL, t0.MODIFICATION_DATE, t0.MODIFICATION_USER_ID,
    t0.OWNER FROM COMMON.LANGUAGE t0 WHERE t0.LANGUAGE_ID = ? [params=(long)
    29] [reused=0]
    Entry Status Lang Code en
    Entry Status Lang Id 29
    Entry Status Lang Code en
    Entry Status Lang Id 6
    25390 TRACE [javawsApplicationMain] kodo.jdbc.SQL - <t 12742366, conn
    16761835> [0 ms] executing prepstmnt 6628690 SELECT t0.LANGUAGE_CODE,
    t0.LANGUAGE_NAME, t0.LOCAL, t0.MODIFICATION_DATE, t0.MODIFICATION_USER_ID,
    t0.OWNER FROM COMMON.LANGUAGE t0 WHERE t0.LANGUAGE_ID = ? [params=(long)
    6] [reused=1]
    Entry Status Lang Code ar
    WO class gov.state.pisces.jdo.EntryStatusL
    WU 6
    WO ????
    Below is sqlplus results
    oracle@ni2 ~]$ sqlplus p_pw1
    SQL*Plus: Release 10.2.0.1.0 - Production on Fri Mar 3 20:09:52 2006
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Enter password:
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    P_PW1@pisces > @/tmp/l2
    6
    P_PW1@pisces > r
    1 SELECT
    2 t0.LANGUAGE_ID,
    3 t0.NAME
    4 FROM COMMON.LANGUAGE t2, TRAVELER.ENTRY_STATUS t1,
    TRAVELER.ENTRY_STATUS_L
    t0
    5* WHERE (t1.VISIBLE = 1 AND t2.LANGUAGE_CODE = 'en' ) AND t0.ID =
    t1.ENTRY_ST
    ATUS_ID AND t0.LANGUAGE_ID = t2.LANGUAGE_ID
    LANGUAGE_ID
    NAME
    29
    Arriving
    29
    Departing
    29
    Transit
    P_PW1@pisces >

    Abe White wrote:
    Without understanding your model it's pretty difficult to follow the
    SQL. Do you use application identity? It could be a problem with your
    application identity class. Also, does your base class have a class
    indicator (jdbc-class-ind)? Do you do anything strange like attempt to
    use the same primary key value for multiple records?We are using identity-type of "application". We are not using
    jdbc-class-ind.
    I will stick here wuth the entry_status codess.
    Entry_status is the base and entry_status_l has language specific info
    Entry status has one primary key - Entry_status_id
    Entry_status_l has 2 keys id and language_id
    ( language_id is the primary key to the language table )
    Below are the jdos and the oracle table descriptions
    EntryStatus.jdo
    <?xml version="1.0" encoding="UTF-8"?>
    <jdo>
    <package name="gov.state.pisces.jdo">
    <class name="EntryStatus" identity-type="application">
    <extension vendor-name="kodo" key="jdbc-class-ind"
    value="subclass-join"/>
    <extension vendor-name="kodo" key="jdbc-class-map"
    value="base">
    <extension vendor-name="kodo" key="table"
    value="TRAVELER.ENTRY_STATUS"/>
    </extension>
    <extension vendor-name="kodo" key="jdbc-version-ind"
    value="state-image"/>
    <field name="entryStatusCode">
    <extension vendor-name="kodo" key="jdbc-field-map"
    value="value">
    <extension vendor-name="kodo" key="column"
    value="ENTRY_STATUS_CODE"/>
    </extension>
    </field>
    <field name="entryStatusId" primary-key="true">
    <extension vendor-name="kodo" key="jdbc-field-map"
    value="value">
    <extension vendor-name="kodo" key="column"
    value="ENTRY_STATUS_ID"/>
    </extension>
    </field>
    <field name="entryStatusLs">
    <collection element-type="EntryStatusL"/>
    <extension vendor-name="kodo" key="inverse-owner"
    value="entryStatus"/>
    <extension vendor-name="kodo" key="jdbc-field-map"
    value="one-many">
    <extension vendor-name="kodo"
    key="ref-column.ENTRY_STATUS_ID" value="ID"/>
    <extension vendor-name="kodo" key="table"
    value="TRAVELER.ENTRY_STATUS_L"/>
    </extension>
    </field>
    <field name="entryStatusName" persistence-modifier="none">
    </field>
    <field name="modificationDate">
    <extension vendor-name="kodo" key="jdbc-field-map"
    value="value">
    <extension vendor-name="kodo" key="column"
    value="MODIFICATION_DATE"/>
    </extension>
    </field>
    <field name="modificationUserId">
    <extension vendor-name="kodo" key="jdbc-field-map"
    value="value">
    <extension vendor-name="kodo" key="column"
    value="MODIFICATION_USER_ID"/>
    </extension>
    </field>
    <field name="owner">
    <extension vendor-name="kodo" key="jdbc-field-map"
    value="value">
    <extension vendor-name="kodo" key="column"
    value="OWNER"/>
    </extension>
    </field>
    <field name="visible">
    <extension vendor-name="kodo" key="jdbc-field-map"
    value="value">
    <extension vendor-name="kodo" key="column"
    value="VISIBLE"/>
    </extension>
    </field>
    </class>
    </package>
    </jdo>
    EntryStatusl.jdo
    <?xml version="1.0" encoding="UTF-8"?>
    <jdo>
    <package name="gov.state.pisces.jdo">
    <class name="EntryStatusL" identity-type="application"
    persistence-capable-superclass="EntryStatus">
    <extension vendor-name="kodo" key="jdbc-class-map" value="vertical">
    <extension vendor-name="kodo"
    key="ref-column.ENTRY_STATUS_ID" value="ID"/>
    <extension vendor-name="kodo" key="table"
    value="TRAVELER.ENTRY_STATUS_L"/>
    </extension>
    <extension vendor-name="kodo" key="jdbc-version-ind"
    value="state-image"/>
    <field name="entryStatus">
    <extension vendor-name="kodo" key="jdbc-field-map"
    value="one-one">
    <extension vendor-name="kodo"
    key="column.ENTRY_STATUS_ID" value="ID"/>
    </extension>
    </field>
    <field name="id" primary-key="true">
    <extension vendor-name="kodo" key="jdbc-field-map"
    value="value">
    <extension vendor-name="kodo" key="column" value="ID"/>
    </extension>
    </field>
    <field name="language">
    <extension vendor-name="kodo" key="jdbc-field-map"
    value="one-one">
    <extension vendor-name="kodo" key="column.LANGUAGE_ID"
    value="LANGUAGE_ID"/>
    </extension>
    </field>
    <field name="languageId" primary-key="true">
    <extension vendor-name="kodo" key="jdbc-field-map"
    value="value">
    <extension vendor-name="kodo" key="column"
    value="LANGUAGE_ID"/>
    </extension>
    </field>
    <field name="modificationDate">
    <extension vendor-name="kodo" key="jdbc-field-map"
    value="value">
    <extension vendor-name="kodo" key="column"
    value="MODIFICATION_DATE"/>
    </extension>
    </field>
    <field name="modificationUserId">
    <extension vendor-name="kodo" key="jdbc-field-map"
    value="value">
    <extension vendor-name="kodo" key="column"
    value="MODIFICATION_USER_ID"/>
    </extension>
    </field>
    <field name="name">
    <extension vendor-name="kodo" key="jdbc-field-map"
    value="value">
    <extension vendor-name="kodo" key="column"
    value="NAME"/>
    </extension>
    </field>
    <field name="owner">
    <extension vendor-name="kodo" key="jdbc-field-map"
    value="value">
    <extension vendor-name="kodo" key="column"
    value="OWNER"/>
    </extension>
    </field>
    </class>
    </package>
    </jdo>
    descriptions of tables
    PMAN@pisces > desc traveler.entry_status
    Name Null? Type
    ENTRY_STATUS_ID NOT NULL NUMBER(35)
    ENTRY_STATUS_CODE NOT NULL VARCHAR2(3 CHAR)
    LEGACY_NAME VARCHAR2(50 CHAR)
    VISIBLE NOT NULL NUMBER(1)
    MODIFICATION_DATE NOT NULL DATE
    MODIFICATION_USER_ID NOT NULL VARCHAR2(20 CHAR)
    OWNER NOT NULL NUMBER(35)
    PMAN@pisces > desc traveler.entry_status_l
    Name Null? Type
    ID NOT NULL NUMBER(35)
    LANGUAGE_ID NOT NULL NUMBER(35)
    NAME NOT NULL VARCHAR2(255 CHAR)
    MODIFICATION_DATE NOT NULL DATE
    MODIFICATION_USER_ID NOT NULL VARCHAR2(20 CHAR)
    OWNER NOT NULL NUMBER(35)

  • Function used in SQL query not showing the desired results

    I have created a function that gives me the client id but when i am using the function in the query its not giving me any result i.e. 0 rows but if I execute the function sepreatly and put the result of that function in the qurey it is giving me the desired result please have a look on the following and please reply with you expert opinion:
    FUNCTION CODE:
    create or replace function j2
    (usid in varchar2)
    return varchar2
    is
    cidn_in varchar2(4000) := '';
    ls_sep varchar2(1) := ',';
    cursor predicate_cidn
    is
    select
    logical_schema_id
    from
    CLIENT_REGISTRY cr,
    MEMBER_ROLE_CLIENT_ASSIGNMENT mrca,
    MEMBER m
    where
    mrca.base_client_id = cr.base_client_id and
    mrca.member_id = m.member_id and
    cr.schema_in_use_in = '1' and
    m.active_status_id = 'A' and
    upper(mrca.member_id) = upper(usid);
    BEGIN
    for GET_CIDN in predicate_cidn
    loop
    cidn_in := cidn_in || ls_sep || '''' || GET_CIDN.logical_schema_id || '''';
    end loop;
    cidn_in := substr(cidn_in, 2);
    cidn_in := '('||cidn_in||')';
    --dbms_output.put_line(cidn_in);
    return cidn_in;
    END ;
    SQL> select j2('qaa@adp') from dual;
    J2('QAA@ADP')
    ('BASE18','SDK1TEST','SEETHA1CONFIG','BASE09','KAREN2','SIVACONFIG','BASE19','SD
    K1CTEST','VASU1','KAREN5','EVENTS1CTEST','SDK1','ADA1CONFIG','BASE10','VRB1CONFI
    G','CRU2CONFIG','BASE20','SIVATEST','PCOMCONFIG','KP1CONFIG','KAREN4CONFIG','EVE
    NTS1TEST','SUZ3CONFIG','DONG2CONFIG','ED2CONFIG','SIVACTEST','APDCONFIG','EVENTS
    1CONFIG','ESSCONFIG','SIVA','SDK2CONFIG','ED3CONFIG','RAJ4CONFIG','CBRCONFIG','N
    AMRATA2CONFIG','EMIL1','NAMRATA1CONFIG','SDK2CTEST','BVT2CONFIG','MURUGAN1CONFIG
    ','COB1CONFIG','GABY1TEST','CHR1CONFIG','ED4CONFIG','USE1CONFIG','SDK2TEST','DEM
    O1CONFIG','BERNIE1CONFIG','XA1','CAR2TEST','SDK2','ED5CONFIG','PAY1TEST','PAYXCO
    NFIG','KP1TEST','SEAN1CONFIG','CAR2CTEST','VASU1CONFIG','SEAN2CONFIG','KP1CTEST'
    ,'MAU1CONFIG','CONWCONFIG','PAN1CONFIG','MERAJ2','PRA3CONFIG','SEAN5CONFIG','KP1
    ','PRA4CONFIG','CAR2CONFIG','PRA2CONFIG','SEAN6CONFIG','PRA3TEST','RPT','GABY1CT
    EST','SDK3CONFIG','PRA2TEST','SEAN9CONFIG','CAR2','LV1CONFIG','PRA3CTEST','DONG1
    CONFIG','TE1CONFIG','MERAJ2CONFIG','VIV1CONFIG','GABY1','SEAN2','PRA2CTEST','PRA
    3','RPTCONFIG','PRA4CTEST','SEAN3','MITA1CONFIG','PRA2','RPTCTEST','PCOM1CONFIG'
    ,'SS2CONFIG','PAY1CONFIG','SEAN7','ANNCONFIG','BASE11','BASE02','LV2CONFIG','RPT
    TEST','IMPECONFIG','SUR1CONFIG','SREEK2CONFIG','BASE03','SRINU3CONFIG','BDCONFIG
    ','JAY1CONFIG','AMMAN1','PRA1TEST','WPGCONFIG','BASE12','MP5CONFIG','MERAJ1','SR
    INU2CONFIG','XA1CONFIG','RAJ1CONFIG','WPGCTEST','BASE04','CHRIS','RAJSCONFIG','P
    ANKAJ','BASE13','WPGTEST','RAJ3CONFIG','WPG','BASE14','VASU2CONFIG','SRINU1CONFI
    G','BASE05','PRA4TEST','VASU1TEST','PRA5CONFIG','NISH1CONFIG','CHRISCONFIG','SDK
    3TEST','RAJ3TEST','KP2CONFIG','BASE06','DEFPCONFIG','NISH2CONFIG','CHRISCTEST','
    WPSCONFIG','VASU2TEST','BASE15','GABY1CONFIG','PRA5TEST','MITA2CONFIG','BASE07',
    'VASU1CTEST','KP2TEST','VASU2CTEST','LAURA3CONFIG','BASE16','CHRISTEST','WPSTEST
    ','VASU2','KP2CTEST','EVENTS1','BASE17','RAJ2CONFIG','WPSCTEST','BASE08','SREEK1
    CONFIG','ADVE','PRA4','SDK1CONFIG','KP2','KAREN1','CRU1CONFIG','WPS')
    Now if i put the results (cut and paste )in the query it gives me the results
    SQL> select count(*) from baseclient.address_detail where cidn in ('BASE18','SDK1TEST','SEETHA1CONFIG','BASE09','KAREN2','SIVACONFIG','BASE19','SD
    2 K1CTEST','VASU1','KAREN5','EVENTS1CTEST','SDK1','ADA1CONFIG','BASE10','VRB1CONFI
    3 G','CRU2CONFIG','BASE20','SIVATEST','PCOMCONFIG','KP1CONFIG','KAREN4CONFIG','EVE
    4 NTS1TEST','SUZ3CONFIG','DONG2CONFIG','ED2CONFIG','SIVACTEST','APDCONFIG','EVENTS
    5 1CONFIG','ESSCONFIG','SIVA','SDK2CONFIG','ED3CONFIG','RAJ4CONFIG','CBRCONFIG','N
    6 AMRATA2CONFIG','EMIL1','NAMRATA1CONFIG','SDK2CTEST','BVT2CONFIG','MURUGAN1CONFIG
    7 ','COB1CONFIG','GABY1TEST','CHR1CONFIG','ED4CONFIG','USE1CONFIG','SDK2TEST','DEM
    O1CONFIG','BERNIE1CONFIG','XA1','CAR2TEST','SDK2','ED5CONFIG','PAY1TEST','PAYXCO
    8 9 NFIG','KP1TEST','SEAN1CONFIG','CAR2CTEST','VASU1CONFIG','SEAN2CONFIG','KP1CTEST'
    10 ,'MAU1CONFIG','CONWCONFIG','PAN1CONFIG','MERAJ2','PRA3CONFIG','SEAN5CONFIG','KP1
    11 ','PRA4CONFIG','CAR2CONFIG','PRA2CONFIG','SEAN6CONFIG','PRA3TEST','RPT','GABY1CT
    12 EST','SDK3CONFIG','PRA2TEST','SEAN9CONFIG','CAR2','LV1CONFIG','PRA3CTEST','DONG1
    13 CONFIG','TE1CONFIG','MERAJ2CONFIG','VIV1CONFIG','GABY1','SEAN2','PRA2CTEST','PRA
    14 3','RPTCONFIG','PRA4CTEST','SEAN3','MITA1CONFIG','PRA2','RPTCTEST','PCOM1CONFIG'
    15 ,'SS2CONFIG','PAY1CONFIG','SEAN7','ANNCONFIG','BASE11','BASE02','LV2CONFIG','RPT
    16 TEST','IMPECONFIG','SUR1CONFIG','SREEK2CONFIG','BASE03','SRINU3CONFIG','BDCONFIG
    17 ','JAY1CONFIG','AMMAN1','PRA1TEST','WPGCONFIG','BASE12','MP5CONFIG','MERAJ1','SR
    18 INU2CONFIG','XA1CONFIG','RAJ1CONFIG','WPGCTEST','BASE04','CHRIS','RAJSCONFIG','P
    19 ANKAJ','BASE13','WPGTEST','RAJ3CONFIG','WPG','BASE14','VASU2CONFIG','SRINU1CONFI
    20 G','BASE05','PRA4TEST','VASU1TEST','PRA5CONFIG','NISH1CONFIG','CHRISCONFIG','SDK
    21 3TEST','RAJ3TEST','KP2CONFIG','BASE06','DEFPCONFIG','NISH2CONFIG','CHRISCTEST','
    22 WPSCONFIG','VASU2TEST','BASE15','GABY1CONFIG','PRA5TEST','MITA2CONFIG','BASE07',
    23 'VASU1CTEST','KP2TEST','VASU2CTEST','LAURA3CONFIG','BASE16','CHRISTEST','WPSTEST
    24 ','VASU2','KP2CTEST','EVENTS1','BASE17','RAJ2CONFIG','WPSCTEST','BASE08','SREEK1
    25 CONFIG','ADVE','PRA4','SDK1CONFIG','KP2','KAREN1','CRU1CONFIG','WPS');
    COUNT(*)
    228
    BUT if I user the function it gives me no results
    0 rows selected and its taking a loon time to reurn

    This appears to be a duplicate of the question in this thread
    Re: VPD issue Need Assistance ASAP
    where I wrote
    "Your function returns a single string that happens to have a bunch of commas and quotes in it. An IN list generally requires a list of strings, which your function doesn't return.
    You could rewrite the function to be a pipelined table function and then do
    select count(*)
    from baseclient.address_detail
    where cidn in (SELECT cidn
    FROM TABLE(<<your pipelined table function>>))
    However, I would expect it to be easier not to wrap all this into a function and just have your IN clause be the logic in your predicate_cidn cursor.
    Justin
    "

  • 2.1.0.62: Exporting query results does not work if SQL has a join

    I get an error message, when I try to export the following test case to any data format.
    create table test1 (id number(2), text varchar2(5));
    create table test2 (id number(2), text varchar2(5));
    insert into test1 values (1,'test');
    insert into test2 values (1,'test');
    select t1.*
    from
    test1 t1,
    test2 t2
    where
    t1.id=t2.id;
    I try to translate my german error message to english:
    "There are no valid columns for export available. Clob- or Blob-Columns are currently not supported"
    I get this message, when I right click into the query result grid and select export and then any data format.
    Hope that is not a double post but searching for export did not find results for 2.1.
    The following SQL also produces the error:
    select t1.* from test1 t1;
    These SQLs can be exported though:
    select * from test1 t1;
    select t1.id from test1 t1;
    I should have mentioned that I work with Windows XP and Oracle 10.2.0.4.
    Regards,
    dhalek
    Edited by: dhalek on Oct 13, 2009 5:04 PM

    Hi,
    Dhalek.
    I've got the same problem here.
    In my SQL Dev, I disabled the Autopopup code completion insight in SQL Worksheet. (Tools - Preferences - Code Editor - Code Completion - untick the checkbox). Restart SQL Dev. Tried to export a query.
    The same error message appears.
    My workaround is to re-enable the autopopup and restart SQL Dev.
    The disabled autopopup code completion insight caused me these
    2.1 EA1: Bugs - cannot Export Data from Grid
    2.1 EA2: Bugs on code completion for displaying column name
    Hope this helps,
    Buntoro

  • Query Results not coming for SELECT * in sql developer 3.1.07

    VERY FRUSTRATING to use sql developer.
    In SQL DEVELOPER 3.1.07:
    WHAT WORKS: select sequence# from v$archived_log
    WHAT DOESN'T WORK : select * from v$archived_log
    You've got to be kidding me.
    I wish I can show a screenshot, but can't in this forum. Here's my description:
    When I run the query, in the bottom frame for Query Results, it just says: Executing: select * from v$archived_log in 0 seconds.
    Then there's no result grid.
    WOw

    >
    This was when connected to a standby db that's in mount state
    >
    Is this a 'manual' standby db? Are you using Data Guard?
    Post the results for what Gary ask of running the queries in sql*plus. If those queries give the same result then this is NOT a sql developer issue.
    Review the following thread and post back with what information in it applies to your use case.
    Re: V$ARCHIVED_LOG returns no rows on manual standby
    If you are using Data Guard you may want to cross-post in that forum.

  • Using CTRL + F not working to find any text within the query result

    Hi friends,
    I am trying to use find option to find any text within the result section of a query but when I do CTRL+F  the find window appears and I can input the text that I wanted. But when I press Enter it is not giving me any result though the entered text
    is in the query result. I am using Sql Server 2012 Management studio. Any Body please help me. There is a job that I have to search certain things after running a script and now I am doing copy paste to excel and doing searching from there. 

    Prashant,
    Looks like you are trying to do in SSMS, and it is because the result set is in Grid view , if you want to use CTL + F then your result should be in Text format, try to do using CTL + T ( To get result in Text) and then use CTL + F to find any
    text.
    Thanks
    Manish
    Please click Mark as Answer if my post solved your problem and click
    Vote as Helpful if this post was useful.

  • Heirarchy is not appearing in my Query result

    Sub: Heirarchy is not appearing in my Query result
    Hi SAP Gurus!
    I am a BW learner..
    My environment is : Training client: SAP BW 3.1 along with SEM 3.2 and BI content 3.1
    What I did :
    1. I have created Info objects     :Mat_No,Mat_name, SRep_Id, SRep_name, Sales_Region, Sales_off, Cust_id, cust_name,
    2. I have created heirarchy for    : SRep_id with Sales_Region,Sales_office
    3. Maintained the master data for  : Sales Region and Sales Office
    4. Up loaded master data for       : Mat_master,Customer_master
    5. While designing the query       : SRep_Id has been dragged into 'Rows'and in the propertice of SRep_id select the name of heirarchy
    What is the problem              : Heirarchy is not appearing in my query result
    What I want is                     : Let ma know where went wrong and what to do for display
                                         of heirarchy in the query result.
    Can you help me in this regard?
    Thnaks in advance
    Vam C

    Thank You venkat and kamal..
    But I did the same and mentioned at point no 5. earlier..
    however I am not getting..
    Can you help me?
    Vam C

  • Entity Attribute Existence Check - Query Result Parameter not possible ?

    I already read the section of the ADF BC Developer Guide (9.6.2 Implementing an Efficient Existence Check).
    That works and maybe is the best solution, however I am working with a group of Forms Developers which are much more comfortable with writing SQL statements.
    Natural thing for them in this case was to define a declarative compare validator with the following Query Result:
    select PROD_ID from Products where PROD_ID=:ProdId
    where :ProdId is ServiceRequest.ProdId
    Is this possible with ADF BC ?
    Other possibility is to define a List Validator with the following Query Result:
    select PROD_ID from Products
    but this is not performant.
    I know the programmatic approach is always possible, but to make migration easier for Forms developers into the ADF BC world, the declarative SQL option should be available.
    Thanks,
    Claudio.

    This isn't possible out of the box in 10.1.3 since we don't support a mechanism to set the values of the bind variables. In 10.1.3, you would need to build a custom validation rule class (explained in section 26.9 "Implementing Custom Validation Rules") to make this declarative for others on your team.
    I wouldn't recommend the list validator in 10.1.3 for anything but the most trivial uses. This is because it's current implementation retrieves all rows from the query, then does the attribute comparison in memory.
    Among many, many other enhancements, we are greatly enhancing declarative business logic features of ADF Business Components for our 11g/Fusion release (the next major release), where this will be super-easy.

  • Query results returns document when getDocuments does not

    When we run an xquery, we get results that we can't be found in the getDocuments results.
    We run an xquery to get a key to an xml document.
    Then we attempt to retrieve that document and get a DOCUMENT_NOT_FOUND error.
    I can run the same xquery in dbxml and variations of that xquery and see the xml I expect to.
    getDocuments <keyvalue> does not work.
    Additionally, I run "getDocuments docs.txt"
    and search docs.txt for the xml I saw in the query results, and no luck.
    The document I'm looking for does not show up in the getDocumentNames names.txt
    either.
    I'm still using BDB XML 2.2.13 no patches on Solaris and W2k3.
    We can easily get the database into a state like this by running lengthy queries, putting, getting, removing documents on a multi-thread, concurrent basis.
    What's going on here, is there a work around?
    Thanks in Advanced,
    Douglas Moore

    Douglas,
    Hopefully you can upgrade to 2.3.10 and get past this. If you are not using any 2.2.13 patches, that could be the problem -- this may be a patched issue in 2.2.13. It could also be a subtle bug in your application.
    Either way, once you get into this state, you should be able to get out of it by reindexing the container (XmlManager::reindexContainer() or using the dbxml shell). If you choose to reindex, be very sure that not other threads or processes are in the environment and that you are backed up. Reindexing will remove all index databases and walk the container, re-creating them.
    Regards,
    George

  • Filter in query result table not populated by criteria previously selected.

    Hi Experts,
    I'm currently working on the the Upgrade of our BW production line from
    release 3.0b to 7.0:
    Configuration of target system
    BW system : Release 7.0
    BEx Analyser : Release 2004s, Support Package9, Patch 1, Revision 321
    Sap Gui 6.4
    We're especially trying to check the non-regression of the non-converted queries in the new system (release 7.0).
    And we get the following issue: After having selected the selection criteria in the selection window, the reminder of selected criteria is not done in the filter part of the target query result. Is it a normal behavior or not ?
    Indeed, in the previous system configuration (BW 3.0b), the user is accustomed to seeing just above his result table the selection criteria that he had previously filled in in the selection window.
    Please find herewith an example describing the problem.
    Thanks in advance for your help.

    In order to be more clear, hereunder an example:
    - I have a field untitled "Business Division"in the selection window.*
    - I fill in this field with the value "OND"
    - I execute the query with this value for this field.
    - The query result correclty appears.
    - I click on the "Filter" button to display the Filter table with the columns "Navigation pane" and "Filter criteria".
    - In the "Navigation pane", there is the field "Business Division".
    - For me, the corresponding "Filter criteria" should be the value "OND", but nothing is displayed...
    Thanks in advance foryour help.
    Regards,
    Steph

  • 3.1EA1: Query results do not display

    The results of any query I run in 3.1EA1 do not show in the Query Result tab. When I run sqldeveloper.exe from the command prompt, there are no errors. Sqldeveloper 3.0 is fine.
    Oracle Database: 10.2.0.4.0
    Java version: 1.6.0_26
    Operation System: Windows XP Prod sp3

    Hi Raghu,
    Yes, you are correct. It seems to be related to SQLHistory. This is what I did.
    -- Deleted everything in the SQLHistory folder as suggested.
    -- Started SQLDeveloper and ran query from worksheet
    -- Got results fine, but then immediately got a dialog box saying Migrating SQL history.
    -- This produced an error
    source: o.d.worksheet.sqlhistory
    message: sun.nio.cs.StreamDecoder.forInputStreamReader (StreamDecoder.java:52)
    -- After it finished, sql history was filled again with all the files.
    -- Restarted SQLDeveloper and the problem was back.
    -- Discovered in the SQLDeveloper directory (at same level as the SQLHistory folder) another file called SQLHistory.xml (presumably from a previous version which was the one being migrated)
    -- Renamed the previous sqlhistory.xml file and the issue seems to have gone away since only my new SQL in the history folder now.
    However, I assume that over time, the problem will come back when history gets to a certain size ? I did have about 1200 entries in my folder before deleting.
    Will there be a fix for this, as I use sql history quite often ?
    Hope this helps track down the problem.
    Thanks,
    Mark

  • BEx Query results not getting updated

    Hi,
    I am using a BEx Query based on a multiprovider which is fetching data from a multiple remote cubes and multiple regular cubes.
    Now when data in the source system is getting changed the corresponding remote cubes are getting update but query result are not getting re-fresh for at least 2 hours.
    We have already tried doing logging out and and logging into the bex system.
    Is there some cache setting which is required?
    Default cache mode in query is  'Main memory cache without swapping'.
    Kindly advice.
    Regards
    Vivek

    Hi,
    Just generate your query once with program RSR_GEN_DIRECT_ALL_QUERIES.
    By selecting your multiprovider .
    Thanks,
    Ranjan

Maybe you are looking for

  • I got a new iPhone 5s and I am unable to connect to my home wifi (through Comcast/Xfinity).  I was able to with my 4s but not with my new 5s.

    I got a new iPhone 5s and I am unable to connect to my home wifi (through Comcast/Xfinity) network.  I was able to with my 4s with no problems but with my new 5s, I just get that a message that says "Unable to connect to network [network name]"  Thou

  • Asynchronous ABAP proxy

    hello everybody! i'm working with PI 7.1 i create a interface ABAP proxy -> PI -> file so is a async interface. every step was created succesfully. When i try to call proxy from my abap program or from test tool in SPROXY transaction i don't see any

  • Connection to the Ovi Maps server times out

    Hi,  I've been having a lot of problems downloading individual country maps using the Ovi Suite. Occasionally it works, but 95% of the time, the download seems to start ("Preparing") but after a few minutes, I get the following error message:  "Conne

  • Problem Related To Service PR?

    Hi, I want to know that once PR creted For Services and G/L Account has been entered than can G/L account Can Be Changed? in my case after PR , Po Has Also Been Created and Invoice Too Has Been Created but not Billed Yet.If Yes, Than HOW?

  • Open zip file in PC

    i created a zip file in my Mac. Put it on a CD to open in my PC. I am not able to do so. I tried Winzip, and BitZip, but nothing. Is there a different way to do this that I'm not aware of?