Query not fetching results and shows executing

All,
When I run a query from SQL Plus I am getting query results immediately table with more than 50,000 rows), but when I run from TOAD or PL/SQL Developer am not getting any result and all I see is query executing no error message also.
Surprising part is I am able to see results if the table is less than 100 rows in SQL Plus, TOAD and PL/SQL Developer.
Please tell me is there anything I have to do in the database configuration, I am facing this issue due to database move to a new server.
Thanks in advance

Anand,
I don't see this as an issue with TOAD or PL/SQL Developer, the reason is using my TOAD or PL/SQL Developer I am able to connect to the copy of this database (DEV) and able to fetch results. Only in the database I migrated to the new server I am not able to fetch results from connecting through any application, the only place I am able to run and get results is SQL PLUS.
So I believe this is something which I am missing in my database configuration or in my new server.
Please help me
Thanks in Advance

Similar Messages

  • HR iViews are not getting displayed and showing "Page can not be found".

    Hello,
    I am facing an issue in the EP 7 wherein all the standard HR iViews are not getting displayed and showing "Page can not be found".
    We have added S_SERVICE autorisation object to user used for the relative JCO as well by looking at other similar forums but that did not help.
    I have attached last part of log from file application.log under "F:\usr\sap\EP1\JC01\j2ee\cluster\server0\log"
    #0002A537D2A6006A0000027300001C4C00046E3590936E5F#1247076244733#/Applications/WebApplications#sap.com/irj#com.sap.engine.services.servlets_jsp.server.runtime.context.ServletContextImpl#Administrator#12374##n/a##b7291b106be911de8d8a0002a537d2a6#SAPEngine_Application_Thread[impl:3]_27##0#0#Info#1#com.sap.engine.services.servlets_jsp.server.runtime.context.ServletContextImpl#Plain###application [irj] prt: init#
    #1.5 #0002A537D2A6007A0000001200001C4C00046E35AAA74D33#1247076682222#/Applications/WebApplications##com.sap.engine.services.servlets_jsp.server.runtime.context.ServletContextImpl#Guest#0##n/a##cf997d306af811dec69d0002a537d2a6#Thread[Finalizer,8,system]##0#0#Info#1#com.sap.engine.services.servlets_jsp.server.runtime.context.ServletContextImpl#Plain###application [irj] prt: destroy#
    #1.5 #0002A537D2A6005F0000026C00001C4C00046E35C2814813#1247077082383#/Applications/WebApplications#sap.com/irj#com.sap.engine.services.servlets_jsp.server.runtime.context.ServletContextImpl#SKhatkale#12460##n/a##a7cb51e06beb11de8bd70002a537d2a6#SAPEngine_Application_Thread[impl:3]_6##0#0#Info#1#com.sap.engine.services.servlets_jsp.server.runtime.context.ServletContextImpl#Plain###application [irj] prt: init#
    #1.5 #0002A537D2A60075000002BD00001C4C00046E35C3AD4359#1247077102039#/Applications/Xss#sap.com/tcwddispwda#com.sap.tc.webdynpro.progmodel.generation.DelegatingComponent#SKhatkale#12464##rrisep1p01_EP1_14481150#SKhatkale#b6d348006beb11deb9780002a537d2a6#SAPEngine_Application_Thread[impl:3]_31##0#0#Fatal#1#com.sap.tc.webdynpro.progmodel.generation.DelegatingComponent#Plain###You do not have the authorization to start service sap.com/pcui_gp~xssutils/XssMenu.#
    #1.5 #0002A537D2A6007A0000001300001C4C00046E35DDE07029#1247077541575#/Applications/WebApplications##com.sap.engine.services.servlets_jsp.server.runtime.context.ServletContextImpl#Guest#0##n/a##cf997d306af811dec69d0002a537d2a6#Thread[Finalizer,8,system]##0#0#Info#1#com.sap.engine.services.servlets_jsp.server.runtime.context.ServletContextImpl#Plain###application [irj] prt: destroy#
    #1.5 #0002A537D2A600650000024600001C4C00046E36B6DBE4D0#1247081181950#/Applications/WebApplications#sap.com/irj#com.sap.engine.services.servlets_jsp.server.runtime.context.ServletContextImpl#Administrator#12873##n/a##37e186606bf511de8bf20002a537d2a6#SAPEngine_Application_Thread[impl:3]_0##0#0#Info#1#com.sap.engine.services.servlets_jsp.server.runtime.context.ServletContextImpl#Plain###application [irj] prt: init#
    Please let me know if anybody has come across such scenario before.
    Thanks
    Suhas
    Edited by: Suhas Khatkale on Jul 8, 2009 10:09 PM

    Hi,
    This issue is now resolved. We followed up with SAP and they suggested to update the component EP-PSERV to latest patch which was earlier to patch 1. Later on we upgraded it to patch 4 and this resolved the issue.
    Thanks
    Suhas

  • Two iPhone is locked on my account and I can not open it and show me the following message

    Please help me
    Two iPhone is locked on my account and I can not open it and show me the following message

    iPhone4,1
    imei :013176008193701
    serial No :C8PJ5T72DTC0

  • Execute query  not give result

    Hi master
    Sir lets suppose I have emp form and I put under blow code in when button press event
    When_Button_press
    go_block('emp');
    enter_query;
    :emp.deptno := 10;
    execute_query;
    but
    when I press button then no result no data in any field and curser present in first column or form.
    It is my idea the execute query are not run or these command are not run
    :emp.deptno := 10;
    execute_query;
    system not replace data and no run execute_query
    please give me idea
    Thanking you
    Muhammad Fahim Aamir

    Hi master
    Sir when I use this code with numeric data work fine
    DECLARE
         DD VARCHAR2(15);
    BEGIN
         DD:=10;
    set_block_property('emp', default_where, 'where
    DEPTNO='||DD);
    go_block('emp');
    execute_query;
    set_block_property('emp', default_where, '');
    END;
    But When use with string data then not give result I
    press f8 and show all record
    With character not give any result
    DECLARE
         DD VARCHAR2(15);
    BEGIN
         DD:='SALESMAN';
    set_block_property('emp', default_where, 'where
    RTRIM(EMPNO)='||DD);
    go_block('emp');
    execute_query;
    set_block_property('emp', default_where, '');
    END;
    Please give me any ideaYour problem is in your where clause you do not put the word where in the where clause as it is assumed
    I usually declare a variable v_where VARCHAR2(200);
    and then assign it my new where clause
    v_where := ' RTRIM(EMPNO)='||DD;
    GO_BLOCK ('emp');
    SET_BLOCK_PROPERTY('emp',default_where, v_where);
    EXECUTE_QUERY;
    v_where := null; ---clean up
    This allows you to easily put your where clause into a message
    message(v_where);
    so you can see what is really being queried. This is very useful when you are using multiple values to make sure you have all the apostrophes that you need
    eg: v_where := v_where := 'item_type <> ''CAT'''||' and user_id = '''||:login.user_id||'''';

  • RSBBS jump query not fetching the document no in R3

    Dear Gurus
    With RSBBS transcation jump is given to R3 tansaction FB03. When query is executed and with right click go to option and with display document (FB03) its fetching the document no in DEVELOPMENT server . But when the query is transported to Production its not fetching the document no.
    Kindly do the needful at the earliest
    Regards,
    R.Satish

    Hi
    You said it is not fetching the doc no. Is it failing and showing some error?
    Have all the pre-requisite settings been done via Tcode SICF.
    Regards
    Nageswara

  • BEX Query not dispaying results

    Hi All,
    I think this week am hit with number of issues....as mentioned in my earlier posts am new to SAP BW and having issues.
    Issue:
    We have a BEx query and it is not displaying results(in Web report). Error is "could not find any records for the given selection......... "
    I have checked the Infocube for the given selection in Query and I can display the records where as it is not displaying at all in BEx query results.
    I have reactivated the cube to see whether the data flows through but it didn't work.
    I tried executing query using RSRT and it is not displaying any results.
    I have deleted data in the infocube and loaded it again and it didn't work
    Any help would be much appreciated.
    Cheers
    Sandeep

    Hi Akshay,
    No errors while executing query under RSRT.
    Yes we are using time variants and we have included fical variant under characteristic restrictions.
    Cheers
    sandeep

  • Query not fetched the record

    Hello,
    Could someone help me please ?
    I have a listing of my sales orders and I want to make changes in my order by opening the form and fetched with that record. When I click on that particular orderno in my listing of order and call the form to display the details, it calls the form but says "Query could not fetch the record". I do not know why ? Please help me with the solution.
    Thanx

    Hello,
    I think you are passing orderno to called form as a parameter. If you are using parameter list check..
    1. If parameter data is getting in form correctly ?
    2. Next, have you changed where clause of other block,so that is will display record with passed orderno ?
    I am expecting more details from you.
    Thanx
    Adi

  • Macbook pro will not wake up and shows black screen

    Purchased a MBP three weeks ago.  After putting the MBP to sleep it will not wake up.  Shows black screen and makes fan sound but will not start unless power off and then on again and at times this does not work. 

    Hi a,
    Try an SMC Reset: http://support.apple.com/kb/HT3964
    If no luck, you have 90 days of free AppleCare phone support and a one year warranty. Contact AppleCare or make an appointment at an Apple Store "genius" bar.

  • Content Query not producing results when using [Me] filter

    Hi
    I'm using a Content Query web part and I'm trying to show the most recent document modified by each site user by applying it across the site collection and using the Filter, Modified By [_Hidden] equals [Me]. However, this doesn't seem to work for any user
    - the web part is always blank. I have tried different combinations such changing equals to contains, and using the Modified By field etc - nothing gives me the correct results. If I instead take the [Me] out and instead use the "people chooser"
    and set to a specific person then I seem to get the results I would expect - however I cannot hard code a given user.
    Does anyone know how to use [Me] correctly?
    Thanks

    Hi  sjb500,
    According to your description, please take steps as below to meet your demand:
    With the page layout open in Design view, double-click the Content Query Web Part.
    In the Content Query Web Part dialog box, click the plus sign (+) next to Query to expand it.
    In the Source section, click Show items from all sites in this site collection.
    In List Type section, in the Show items from this list type, click Document Library.
    In the Content Type section, in the Show items of this content type group list, click Document
    Content Types.
    In the Content Type section, in the Show items of this content type list, click Document.
    In the Additional Filters section, under Show Items When, click Modified By [_Hidden] in
    the first box, click Is Equal To in the second box, and then click [Me].
    In the Content Query Web Part dialog box, click the plus sign (+) next to Presentation to expand it.
    In the Grouping and Sorting section, in the Sort items by list, click Modified
    and Select Show items in descending order.
    Click OK.
    Reference:http://office.microsoft.com/en-us/sharepoint-designer-help/display-data-from-multiple-lists-with-the-content-query-web-part-HA010174134.aspx
    [Me] is a variable that stands for the user who is currently viewing the page that contains the Content Query Web Part in the browser.
    Here is some scenarios using [Me] in Content Query Web Part:
    http://social.technet.microsoft.com/Forums/en-US/346ffbe6-d7ba-467e-b7f5-6d6e289677a1/user-tasks-web-part
    Please inform me freely if you have any questions.
    Thanks

  • ABAP HR - PYXX_READ_PAYROLL_RESULT not fetching results

    My first 2 FM's are fetching the correct values . Now I am passing the SEQNR(00005 in my case) returned by 2nd FM to the 3rd FM ( PYXX_READ_PAYROLL_RESULT  ) , the table payroll remains empty.I checked in debug mode also that payroll-INTER-RT is empty whereas in debugger mode i can see that SEQNR has been set correctly by the 2nd FM. Below is my code
    TABLES : PERNR.
    TYPES: BEGIN OF RGDIR.
            INCLUDE STRUCTURE PC261.
    TYPES: END OF RGDIR.
    DATA: RGDIR TYPE TABLE OF RGDIR WITH HEADER LINE,
              SEQNR LIKE PC261-SEQNR,
              payroll TYPE pay99_result,
              rt_line TYPE LINE OF hrpay99_rt.
    GET PERNR.
    CALL FUNCTION 'CU_READ_RGDIR'
      EXPORTING
        PERSNR                   = PERNR-PERNR
      TABLES
        IN_RGDIR                 = RGDIR
    CALL FUNCTION 'CD_READ_LAST'
      EXPORTING
        BEGIN_DATE            = PN-BEGDA
        END_DATE              = PN-ENDDA
    IMPORTING
       OUT_SEQNR             = SEQNR
      TABLES
        RGDIR                 = RGDIR.
    CALL FUNCTION 'PYXX_READ_PAYROLL_RESULT'
      EXPORTING
        CLUSTERID                          = 'RX'
        EMPLOYEENUMBER                     = PERNR-PERNR
        SEQUENCENUMBER                     = SEQNR
      CHANGING
        PAYROLL_RESULT                     = payroll
    LOOP AT payroll-INTER-RT INTO rt_line.
    write:/ rt_line-LGART.
    ENDLOOP.

    amber22 wrote:
    I made the following changes as u suggested.The GET_RELID function is fetching value of rel_id as 'IN' which i think should be correct since I am executing Indian Payroll. But the last FM gives runtime error "illegal type'. I tried passing the value of clusterid as constant "IN" but still it gives the same error. Only when i give its value as 'RX' , it doesnt give error but then it doenst fetches any result also.
    >
    >
    >
    rel_id LIKE PCL2-RELID..
    >
    > CALL FUNCTION 'PYXX_GET_RELID_FROM_PERNR'
    >   EXPORTING
    >     EMPLOYEE                          = PERNR-PERNR
    >  IMPORTING
    >     RELID                             = rel_id.
    >
    > CALL FUNCTION 'PYXX_READ_PAYROLL_RESULT'
    >   EXPORTING
    >     CLUSTERID                          = rel_id
    >     EMPLOYEENUMBER                     = PERNR-PERNR
    >     SEQUENCENUMBER                     = SEQNR
    >   CHANGING
    >     PAYROLL_RESULT                     = payroll.
    >
    > LOOP AT payroll-INTER-RT INTO rt_line.
    >  write:/ rt_line-LGART.
    > ENDLOOP.
    Since you are reading the payroll results of India, you have to change the declaration of 'payroll' as below
    DATA:
      payroll TYPE payin_result,
    the current declaration
    DATA:
      payroll TYPE pay99_result,
    would only give you the international part of the payroll and you have to inform the FM that you only want to read the international part through the importing parameter 'READ_ONLY_INTERNATIONAL'.
    and 'CLUSTERID' is a optional parameter of the FM, if you don't feed any value to that it itself determines its value.
    -Rajesh.

  • Infoset Query not fetching new Versions

    hi,
    I have an infoset Query on Cost center. Earlier that Query was haviing only 1 planning version , ie 0. but now we modified it and added 1 more planning version, ie version 2...
    But wen we are executing the Infoset for the version 2, it is telling " No data selected"
    But the underlying table have data for version 2...
    can anyone help me with this...

    Hi I am executing the  Query, C3, in SQ02. And In SQ01 i checked the infoset, BC02. There i found out that it is made up of a table join of COST and CSSL table. I went to that table and checked. There are two versions. Both Version 0 and version 2. But wen im executing the Query only version 0 is displaying. Not version 2.
    i need to display both.

  • ABOUT query not affecting results or not using knowledge base

    Hello again,
    Another question here,
    I've searched through the forum and have found other
    posts on the same problem but no solutions, though
    the problem isn't always the primary topic of the
    forum. I've put this post up to hopefully put this
    to rest as I'm pretty sure this is just a
    configuration issue.
    I am using an ABOUT operator in a CONTAINS query and
    the query seems to return the same results as the
    same query without the about operator, eg:
    SELECT SCORE(0) AS scr,
    file_repository.file_id,
    file_repository.file_title
    FROM file_repository
    WHERE CONTAINS(index_url, 'ABOUT(australia)', 0) > 0
    versus
    SELECT SCORE(0) AS scr,
    file_repository.file_id,
    file_repository.file_title
    FROM file_repository
    WHERE CONTAINS(index_url, 'australia', 0) > 0
    I have included documents based on the default
    knowledge base should be found. For example I have
    three documents, one containing the term 'Tasmania'
    another containing 'Australia' and a third with
    'Pacific Area'. The first query above should return
    all three of these documents, but it only returns
    the one containing 'Australia'.
    I have used other examples from the default knowledge
    base and have had no success. I have not attempted to
    extend the knowledge base with a thesaurus as, from
    what I can tell, I shouldn't need to do this for it
    to work.
    Any help would be much appreciated.

    Hello.
    Did you load the supplied english thesaurus as your DEFAULT thesaurus using the command line utility ctxload (or some other method)?
    I had the same experience until I loaded the sample thesaurus in $ORACLE_HOME/ctx/sample/thes/. Now my ABOUT and SYN queries work as expected though I still have a concern about the incomplete nature of the sample thesauri (I'll open a new thread on that topic).
    Hope this helps.

  • Af:query not fetching records when VC Modified for advance search

    Gurus,
    I have a view criteria and using it i have a af:query component in my page. When i run the page i see the fields in the search box correctly. However i see another LOV in the search which has options like "Equals","Between", "Does not contain" etc. Though this option is good for 1 search criteria, it is not of any use for another. How can i remove it from the search criteria that i dont want
    thnks
    Jdev 11.1.1.5.

    you would need to add the following to the view criteria item in the view criteria definition for the VO - in order NOT to show any of the operators.
    <CompOper
                Name="DepartmentName"
                ToDo="-2"
                Oper="">You would need to do - by open the VO.xml and add this xml snippet - which would ensure that the operators are NOT shown in the query panel.
    Sample:
    For Departments VO, say there is a view criteria that defined on department id and department name and you do NOT want to show the operators.
    After defining the VC, open the VO file - add the above.
    <ViewCriteria
    Name="DepartmentsVOByDeptIdorDeptName"
    ViewObjectName="com.samples.model.DepartmentsVO"
    Conjunction="AND">
    <Properties>
    <CustomProperties>
    <Property
    Name="displayOperators"
    Value="Always"/>
    <Property
    Name="autoExecute"
    Value="false"/>
    <Property
    Name="allowConjunctionOverride"
    Value="true"/>
    <Property
    Name="showInList"
    Value="true"/>
    <Property
    Name="mode"
    Value="Basic"/>
    </CustomProperties>
    </Properties>
    <ViewCriteriaRow
    Name="vcrow0"
    UpperColumns="1">
    <ViewCriteriaItem
    Name="DepartmentsVOCriteria_vcrow0_DepartmentId"
    ViewAttribute="DepartmentId"
    Operator="="
    Conjunction="AND"
    Required="Optional"/>
    <ViewCriteriaItem
    Name="DepartmentsVOCriteria_vcrow0_DepartmentName"
    ViewAttribute="DepartmentName"
    Operator="STARTSWITH"
    Conjunction="AND"
    Required="Optional">
    *<CompOper*
    Name="DepartmentName"
    ToDo="-2"
    Oper="">
    *</CompOper>*
    </ViewCriteriaItem>
    </ViewCriteriaRow>
    </ViewCriteria>
    Thanks,
    Navaneeth

  • Resource Search in cProjects 4.0 not fetching results

    Hi All,
    Working on cProjects 4.0, I have specified the qualifications catalog and selected a few items from the catalog for a role. These are the items I have set for the resource (Business Partner). However, when I do a 'Resource Search' at the front end, the system does not throw the list of resource I expect the system to do.
    Where could I be going wrong?
    Thanks all...

    Hi Zhenbo,
    Thanks for your response. This, however, does not help.
    As mentioned, I have defined the qualification catalog and selected the qualifications for the role. The resouce (BP) does have the required qualifications. However, the 'Resource Search' fetches no results.
    Do I have to have the resources defined in WFM to be able to fetch? I guess no...
    Do suggest.
    Thanks and Regards...

  • Query to fetch users and User Authorizations

    Hi
    I have a task to retrieve the all users and the authorizations. I am trying to run a query to get the results.
    Inorder to get the users, I use
    select * from OUSR
    But I am stuck with authorizations.
    Can anyone help.
    Thanks in advance.
    MSJ.

    Hi Manoj,
    It is not possible in SAPB1.
    Try to Export to Excel File.
    check the thread,
    Re: Authorisations List
    Regards,
    Madhan.

Maybe you are looking for

  • Movies media playing error from Pen drive to tv

    hi all, i am facing some weir problem here, during my pen drive playing movies on tv, its show a lot of cracked icons as attached photos. and the cracked icon will stop my movies continued to play smoothly...actually i save 18 movies clips only but e

  • Php form mailer/Flash help

    I have a php form that I am using with my Flash file. It works great so far, but I would like to get confirmation from the php in the Flash file, that the info has really been sent. I think it is already sent up in the php, but I don't know how to ha

  • Show HTML-Page

    Hi! How can I show a HTML-Page in Internet Explorer by clicking a Menu Item or a button? Thx!

  • Scrolling bars in indesign (windows 8) are locked

    Help, I just donwloaded inDesign for windows 8 and the side and bottom scrolling bars don't work! I can only move through the page with the hand tool and it is horrible!

  • I forgot my password! HELP NEEDED ASAP

    forgot my password and also for some reason i cant download itunes it tells me to contact tech support. I really need my password and can not retrive it because of this reason. Does anyone have any idea in how to get into my ipod with out the itunes