Query Issue and it taken Longer time

Hi,
Currently one of the Query takes > 1 min to display 200 records.We are running on oracle 10g(10.2.0.4 with latest PSU(april).
Query
select * from tibex_quotesbyqsidview where participantid='NITE';
CREATE OR REPLACE VIEW TIBEX_QUOTESBYQSIDVIEW
(QUOTEID, USERORDERID, QUOTESTATUS, INDICATIVE, BOARDID,
INSTRUMENTID, SELLPRICE, SELLQTY, BUYPRICE, BUYQTY,
PARTICIPANTID, ACCOUNTNO, LASTINSTRESULT, LASTINSTMESSAGESEQUENCE, BUYQUOTEMINSIZE,
LASTEXECUTIONID, SELLQUOTEMINSIZE, TICKMOVECOUNT, TIMESTAMP, SELLQTYFILLED,
BUYQTYFILLED, MEID, LASTINSTREJECTCODE, LASTEXECPRICE, LASTEXECQTY,
LASTEXECSIDE, LASTINSTTYPE, LASTEXECUTIONCOUNTERPARTY, BIDTIMESTAMP, OFFERTIMESTAMP,
LASTEXECCLEARINGAGENCY, LASTEXECACCOUNTNO, LASTEXECCPCLEARINGAGENCY, LASTEXECBOARDID, MESSAGESEQUENCE,
LASTINSTUSERALIAS, PARTNEREXID, LASTSETTLEMENTCYCLE, LASTEXECPOSTTRADEVENUETYPE, PRICELEVELPOSITION,
MATCHTYPE, LASTEXECUTIONROLE, REFERENCEID, BUYMDENTRYID, SELLMDENTRYID,
HALTREASON, LASTINSTFIXSEQUENCE, BUYPLP, SELLPLP, QSID)
AS
SELECT  a."QUOTEID",a."USERORDERID",a."QUOTESTATUS",a."INDICATIVE",a."BOARDID",a."INSTRUMENTID",a."SELLPRICE",a."SELLQTY",a."BUYPRICE",a."BUYQTY",a."PARTICIPANTID",a."ACCOUNTNO",a."LASTINSTRESULT",a."LASTINSTMESSAGESEQUENCE",a."BUYQUOTEMINSIZE",a."LASTEXECUTIONID",a."SELLQUOTEMINSIZE",a."TICKMOVECOUNT",a."TIMESTAMP",a."SELLQTYFILLED",a."BUYQTYFILLED",a."MEID",a."LASTINSTREJECTCODE",a."LASTEXECPRICE",a."LASTEXECQTY",a."LASTEXECSIDE",a."LASTINSTTYPE",a."LASTEXECUTIONCOUNTERPARTY",a."BIDTIMESTAMP",a."OFFERTIMESTAMP",a."LASTEXECCLEARINGAGENCY",a."LASTEXECACCOUNTNO",a."LASTEXECCPCLEARINGAGENCY",a."LASTEXECBOARDID",a."MESSAGESEQUENCE",a."LASTINSTUSERALIAS",a."PARTNEREXID",a."LASTSETTLEMENTCYCLE",a."LASTEXECPOSTTRADEVENUETYPE",a."PRICELEVELPOSITION",a."MATCHTYPE",a."LASTEXECUTIONROLE",a."REFERENCEID",a."BUYMDENTRYID",a."SELLMDENTRYID",a."HALTREASON",a."LASTINSTFIXSEQUENCE",a."BUYPLP",a."SELLPLP", b.QSID
    FROM  tibex_quote A,
          tibex_Participant b
    WHERE a.participantID = b.participantID
      AND (A.MessageSequence, A.QuoteID) IN (
            SELECT  max(C.MessageSequence), C.quoteID
              FROM  tibex_quote C
              WHERE LastInstRejectCode = 'OK'
              GROUP By C.QuoteID
      AND a.QuoteStatus IN (
            SELECT QuoteStatus
              FROM tibex_quoteStatusEnum
              WHERE ShortDesc IN (
                      'QUO_ONMKT', 'QUO_OFFMKT', 'QUO_PREOPN'
trd_trd_owner@TRADE1> @diag_prd.sql
181 rows selected.
Elapsed: 00:01:45.82
Execution Plan
Plan hash value: 1224753779
| Id  | Operation                       | Name                  | Rows  | Bytes | Cost (%CPU)| Time     |
|   0 | SELECT STATEMENT                |                       |  1243 |   389K| 17557   (1)| 00:03:31 |
|*  1 |  HASH JOIN                      |                       |  1243 |   389K| 17557   (1)| 00:03:31 |
|*  2 |   TABLE ACCESS FULL             | TIBEX_QUOTESTATUSENUM |     3 |    42 |     3   (0)| 00:00:01 |
|*  3 |   TABLE ACCESS BY INDEX ROWID   | TIBEX_QUOTE           |     1 |   256 |     3   (0)| 00:00:01 |
|   4 |    NESTED LOOPS                 |                       |  1243 |   372K| 17553   (1)| 00:03:31 |
|   5 |     NESTED LOOPS                |                       |  1860 | 94860 | 11971   (1)| 00:02:24 |
|   6 |      TABLE ACCESS BY INDEX ROWID| TIBEX_PARTICIPANT     |     1 |    16 |     1   (0)| 00:00:01 |
|*  7 |       INDEX UNIQUE SCAN         | XPKTIBEX_PARTICIPANT  |     1 |       |     0   (0)| 00:00:01 |
|   8 |      VIEW                       | VW_NSO_1              |  1860 | 65100 | 11970   (1)| 00:02:24 |
|   9 |       SORT GROUP BY             |                       |  1860 | 70680 | 11970   (1)| 00:02:24 |
|* 10 |        TABLE ACCESS FULL        | TIBEX_QUOTE           |   857K|    31M| 11925   (1)| 00:02:24 |
|* 11 |     INDEX RANGE SCAN            | IX_QUOTEBOOK          |     1 |       |     2   (0)| 00:00:01 |
Predicate Information (identified by operation id):
   1 - access("A"."QUOTESTATUS"="QUOTESTATUS")
   2 - filter("SHORTDESC"='QUO_OFFMKT' OR "SHORTDESC"='QUO_ONMKT' OR "SHORTDESC"='QUO_PREOPN')
   3 - filter("A"."PARTICIPANTID"='NITE')
   7 - access("B"."PARTICIPANTID"='NITE')
  10 - filter("LASTINSTREJECTCODE"='OK')
  11 - access("A"."QUOTEID"="$nso_col_2" AND "A"."MESSAGESEQUENCE"="$nso_col_1")
Statistics
          0  recursive calls
          0  db block gets
     325798  consistent gets
     213395  physical reads
          0  redo size
      41489  bytes sent via SQL*Net to client
        624  bytes received via SQL*Net from client
         14  SQL*Net roundtrips to/from client
          1  sorts (memory)
          0  sorts (disk)
        181  rows processed
Session altered.
Elapsed: 00:00:00.00
13 rows selected.
Elapsed: 00:00:00.00
Execution Plan
Plan hash value: 1150482833
| Id  | Operation         | Name       | Rows  | Bytes | Cost (%CPU)| Time     |
|   0 | SELECT STATEMENT  |            |     1 |   176 |     2   (0)| 00:00:01 |
|   1 |  TABLE ACCESS FULL| AUX_STATS$ |     1 |   176 |     2   (0)| 00:00:01 |
Statistics
          0  recursive calls
          0  db block gets
          4  consistent gets
          0  physical reads
          0  redo size
        988  bytes sent via SQL*Net to client
        492  bytes received via SQL*Net from client
          2  SQL*Net roundtrips to/from client
          0  sorts (memory)
          0  sorts (disk)
         13  rows processed
Explained.
Elapsed: 00:00:00.01
28 rows selected.
Elapsed: 00:00:00.01
Execution Plan
Plan hash value: 2137789089
| Id  | Operation                         | Name    | Rows  | Bytes | Cost (%CPU)| Time     |
|   0 | SELECT STATEMENT                  |         |  8168 | 16336 |    29   (0)| 00:00:01 |
|   1 |  COLLECTION ITERATOR PICKLER FETCH| DISPLAY |       |       |            |          |
Statistics
         23  recursive calls
         12  db block gets
         37  consistent gets
          0  physical reads
          0  redo size
       3023  bytes sent via SQL*Net to client
        503  bytes received via SQL*Net from client
          3  SQL*Net roundtrips to/from client
          1  sorts (memory)
          0  sorts (disk)
         28  rows processed
Rollback complete.
Elapsed: 00:00:00.00
Session altered.
Elapsed: 00:00:00.00
181 rows selected.
Elapsed: 00:01:54.72
Execution Plan
Plan hash value: 1224753779
| Id  | Operation                       | Name                  | Rows  | Bytes | Cost (%CPU)| Time     |
|   0 | SELECT STATEMENT                |                       |  1243 |   389K| 17557   (1)| 00:03:31 |
|*  1 |  HASH JOIN                      |                       |  1243 |   389K| 17557   (1)| 00:03:31 |
|*  2 |   TABLE ACCESS FULL             | TIBEX_QUOTESTATUSENUM |     3 |    42 |     3   (0)| 00:00:01 |
|*  3 |   TABLE ACCESS BY INDEX ROWID   | TIBEX_QUOTE           |     1 |   256 |     3   (0)| 00:00:01 |
|   4 |    NESTED LOOPS                 |                       |  1243 |   372K| 17553   (1)| 00:03:31 |
|   5 |     NESTED LOOPS                |                       |  1860 | 94860 | 11971   (1)| 00:02:24 |
|   6 |      TABLE ACCESS BY INDEX ROWID| TIBEX_PARTICIPANT     |     1 |    16 |     1   (0)| 00:00:01 |
|*  7 |       INDEX UNIQUE SCAN         | XPKTIBEX_PARTICIPANT  |     1 |       |     0   (0)| 00:00:01 |
|   8 |      VIEW                       | VW_NSO_1              |  1860 | 65100 | 11970   (1)| 00:02:24 |
|   9 |       SORT GROUP BY             |                       |  1860 | 70680 | 11970   (1)| 00:02:24 |
|* 10 |        TABLE ACCESS FULL        | TIBEX_QUOTE           |   857K|    31M| 11925   (1)| 00:02:24 |
|* 11 |     INDEX RANGE SCAN            | IX_QUOTEBOOK          |     1 |       |     2   (0)| 00:00:01 |
Predicate Information (identified by operation id):
   1 - access("A"."QUOTESTATUS"="QUOTESTATUS")
   2 - filter("SHORTDESC"='QUO_OFFMKT' OR "SHORTDESC"='QUO_ONMKT' OR "SHORTDESC"='QUO_PREOPN')
   3 - filter("A"."PARTICIPANTID"='NITE')
   7 - access("B"."PARTICIPANTID"='NITE')
  10 - filter("LASTINSTREJECTCODE"='OK')
  11 - access("A"."QUOTEID"="$nso_col_2" AND "A"."MESSAGESEQUENCE"="$nso_col_1")
Statistics
          0  recursive calls
          0  db block gets
     325776  consistent gets
     214342  physical reads
          0  redo size
      39523  bytes sent via SQL*Net to client
        503  bytes received via SQL*Net from client
          3  SQL*Net roundtrips to/from client
          1  sorts (memory)
          0  sorts (disk)Kidnly help is it possible to Tune this view.
Regards
Narasimha

Hi Rob,
I created temp which you have suggested.The Query output never comes out.
trd_trd_owner@TRADE1> set autotrace traceonly explain statistics
trd_trd_owner@TRADE1> select * from tibex_quotesbyqsidview_temp where participantid='NITE';
^CERROR:
ORA-01013: user requested cancel of current operation
180 rows selected.
Execution Plan
Statistics
          0  recursive calls
          0  db block gets
     602154  consistent gets
     421076  physical reads
          0  redo size
      42030  bytes sent via SQL*Net to client
        624  bytes received via SQL*Net from client
         14  SQL*Net roundtrips to/from client
          0  sorts (memory)
          0  sorts (disk)
        180  rows processed
Explain Plan
- <ExplainPlan>
- <PlanElement object_ID="0" id="0" operation="SELECT STATEMENT" optimizer="ALL_ROWS" cost="33,452" cardinality="544,591" bytes="173,179,938" cpu_cost="3,121,794,960" io_cost="33,275" time="402">
- <PlanElements>
- <PlanElement object_ID="0" id="1" operation="HASH JOIN" cost="33,452" cardinality="544,591" bytes="173,179,938" cpu_cost="3,121,794,960" io_cost="33,275" access_predicates=""A"."QUOTESTATUS"="QUOTESTATUS"" time="402">
- <PlanElements>
  <PlanElement object_ID="1" id="2" operation="TABLE ACCESS" option="FULL" optimizer="ANALYZED" object_owner="TRD_TRD_OWNER" object_name="TIBEX_QUOTESTATUSENUM" object_type="TABLE" object_instance="5" cost="3" cardinality="3" bytes="42" cpu_cost="37,704" io_cost="3" filter_predicates=""SHORTDESC"='QUO_OFFMKT' OR "SHORTDESC"='QUO_ONMKT' OR "SHORTDESC"='QUO_PREOPN'" time="1" />
- <PlanElement object_ID="0" id="3" operation="HASH JOIN" option="RIGHT ANTI" cost="33,446" cardinality="544,591" bytes="165,555,664" cpu_cost="3,058,502,079" io_cost="33,272" temp_space="42,877,000" access_predicates=""C"."QUOTEID"="A"."QUOTEID"" filter_predicates=""C"."MESSAGESEQUENCE">"A"."MESSAGESEQUENCE"" time="402">
- <PlanElements>
  <PlanElement object_ID="2" id="4" operation="TABLE ACCESS" option="FULL" optimizer="ANALYZED" object_owner="TRD_TRD_OWNER" object_name="TIBEX_QUOTE" object_type="TABLE" object_instance="4" cost="11,928" cardinality="857,489" bytes="32,584,582" cpu_cost="1,254,411,915" io_cost="11,857" filter_predicates=""C"."LASTINSTREJECTCODE"='OK'" time="144" />
- <PlanElement object_ID="0" id="5" operation="NESTED LOOPS" cost="11,940" cardinality="573,254" bytes="152,485,564" cpu_cost="1,450,739,063" io_cost="11,858" time="144">
- <PlanElements>
- <PlanElement object_ID="3" id="6" operation="TABLE ACCESS" option="BY INDEX ROWID" optimizer="ANALYZED" object_owner="TRD_TRD_OWNER" object_name="TIBEX_PARTICIPANT" object_type="TABLE" object_instance="3" cost="1" cardinality="1" bytes="10" cpu_cost="8,941" io_cost="1" time="1">
- <PlanElements>
  <PlanElement object_ID="4" id="7" operation="INDEX" option="UNIQUE SCAN" optimizer="ANALYZED" object_owner="TRD_TRD_OWNER" object_name="XPKTIBEX_PARTICIPANT" object_type="INDEX (UNIQUE)" search_columns="1" cost="0" cardinality="1" cpu_cost="1,050" io_cost="0" access_predicates=""B"."PARTICIPANTID"='NITE'" time="1" />
  </PlanElements>
  </PlanElement>
  <PlanElement object_ID="2" id="8" operation="TABLE ACCESS" option="FULL" optimizer="ANALYZED" object_owner="TRD_TRD_OWNER" object_name="TIBEX_QUOTE" object_type="TABLE" object_instance="2" cost="11,939" cardinality="573,254" bytes="146,753,024" cpu_cost="1,450,730,121" io_cost="11,857" filter_predicates=""A"."PARTICIPANTID"='NITE' AND "A"."LASTINSTREJECTCODE"='OK'" time="144" />
  </PlanElements>
  </PlanElement>
  </PlanElements>
  </PlanElement>
  </PlanElements>
  </PlanElement>
  </PlanElements>
  </PlanElement>
  </ExplainPlan>

Similar Messages

  • HT4759 Hello .. I've been subscribed for ic;oud for 20$ per year and I found it useless for many reasons: that I can not disconnect my mobile while the uploading process and it takes long time for uploading my data .. Its not a reliable system that's why

    Hello .. I've been subscribed for ic;oud for 20$ per year and I found it useless for many reasons: that I can not disconnect my mobile while the uploading process and it takes long time for uploading my data .. Its not a reliable system that's why I need to deactivate the space service and take my money back .. Thanks

    The "issues" you've raised are nothing to do with the iCloud service.
    No service that uploads data allows you to disconnect the device you are uploading from while uploading data. Doing so would prevent the upload from completing. It is a basic requirement for any uploading service that you remain connected to it for uploading to be possible.
    The time it takes to upload data to iCloud is entirely dependent on how fast your Internet connection is, and how much data you are uploading. Both of these things are completely out of Apple's control. Whichever upload service you use will be affected by the speed of your Internet connection.

  • When Time Machine is backing up, my computer is so slow that it is essentially useless.  Backups occur irregularly, and take a long time.

    When Time Machine is backing up, my computer is so slow that it is essentially useless.  Backups occur irregularly, and take a long time.  How do I get Time Machine to work properly?

    Hello,
    Have you verified both drives in Disk Utility?
    See if the Disk is issuing any S.M.A.R.T errors in Disk Utility...
    http://support.apple.com/kb/PH7029
    Open Activity Monitor in Applications>Utilities, select All Processes & sort on CPU%, any indications there?
    How much RAM & free space do you have also, click on the Memory & Disk Usage Tabs.
    Open Console in Utilities & see if there are any clues or repeating messages when this happens.
    In the Memory tab of Activity Monitor, are there a lot of Pageouts?

  • HT201250 my time capsule is taking too much time indexing backup and then taking longer time to back up ( 207 days ) or longer !!! what shall i do ?

    my time capsule is taking too much time indexing backup and then taking longer time to back up ( 207 days ) or longer !!! what shall i do ?

    Try 10.7.5 supplemental update.
    This update seems to have solved this problem for many.
    Best.

  • I deleted the photos via Finder and empty trash long time ago. The thing is, that I want to recover one event or album.  The event appears in the iphoto but when open, it shows "!". Is it possible to recover the photos?

    I deleted the photos via Finder and empty trash long time ago. The thing is, that I want to recover one event or album.  The event appears in the iphoto but when open, it shows "!". Is it possible to recover the photos?

    No.  When you removed the photos via the finder you damage the library.  Photos should always be removed from the library using iPhoto, never with the Finder.
    If you have a Time Machine backup of the library from before you deleted the photos you can restore the library to the Desktop and export that album from it to import into your current library.
    It's been too long to be able to try one of the file recovery applications.  You sure to have overwritten those files with new files since them.
    OT

  • HT1222 I would like to be able to delete more then just one email at a time. I get a lot of mail that needs deleted and takes a long time to do. Would like to do 10 email deletes at a time on my iPad. Can you help me.

    I would like to be able to delete more then just one email at a time. I get a lot of mail that needs deleted and takes a long time to do. Would like to do 10 email deletes at a time on my iPad. Can you help me.

    open inbox
    tap Edit on top right of list.
    tap each email to check it off.  Then tap trash.   then 'trash selected mesages"
    done

  • I tried downloading the latest OS X Mountain Lion and [after a long time... I have a slow connection] I got an error message ... The product distribution file could not be verified. It may be damaged or was not signed.

    Hi folks,
    I tried downloading the latest OS X Mountain Lion and [after a long time... I have a slow connection] I got an error message ... We could not complete your purchase The product distribution file could not be verified. It may be damaged or was not signed.
    Everytime I retry or continue the download I just keep getting the same error message!!!
    What can I do to get my product?
    PM

    The only thing that worked for me was to boot in safe mode.
    Power down.  Then press power button and hold 'shift' key until grey screen with progress bar appears... Once booted and logged in just open safari and browse to applestore. 
    No trouble at all once I did this.
    Reminder: create full backup before you upgrade OS
    Hope it helps.

  • My iphone is switched off suddenly n then it wont b started it continously shows the apple logo then again switched off automatically and when i charge it so it was switched on and after a long time then it shows battery low and then its also show 4% batt

    my iphone is switched off suddenly n then it wont b started it continously shows the apple logo then again switched off automatically and when i charge it so it was switched on and after a long time then it shows battery low and then its also show 4% battery what would i do im very tensed please help ...

    Hello s0ha1b
    If all you get is the Apple logo and it powering off, then the next step is to put your iPhone into recovery mode and then use iTunes to restore it. If you have a back up, then you can put that on there to once the restore is complete.
    If you can't update or restore your iOS device
    http://support.apple.com/kb/HT1808
    Regards,
    -Norm G.

  • I lost my labview CD and changed computer long time ago

    I lost my labview CD and changed computer long time ago. I bought labview student edition 8.6 years ago and I lost both the CD and the computer. Now I want to use the software again but I cant find were to download it or how to activate it. I have in my e-mail the activation codes but they dont seem to work. what can I do? thanks for your time

    Hello Darent,
    The activation codes are specific to each computer, so if you changed your PC, you need to generate new activation codes or activate your software using the serial number.
    You can register your serial number on the next page, so you can download versions of LabVIEW activated with that serial number.
    My Products:
    http://www.ni.com/myni/products/en/
    Let me know if you have further doubts, best regards.
    David P.
    National Instruments
    Applications Engineer
    www.ni.com/soporte

  • I feel that Verizon has conducted and treated a long time customer just to make a few dollars. I added a hotspot feature on my Iphone and its called a plan change. I wanted 1 gig and ended up with 4 gigs. If 1 gig was not available I was not informed. Plu

    I feel that Verizon has conducted and treated a long time customer in a predatory manner just to make a few dollars. I added a hotspot feature on my Iphone and its called a plan change. I wanted 1 gig and ended up with 4 gigs. If 1 gig was not available I was not informed. Plus the charge for the convertion to a new plan. I called today and I cancelled the plan so I 'm being charged another fee for the plan change. I have really enjoyed working with Verizon but I will have to start looking for another provider.

    veldigar wrote:
    ... I was clear that I was not interested in the Edge plan if I could not get the upgrade pricing.  Several times I made this clear.
    Then the employees, and you, don't understand EDGE.  It's not a service plan, it's a PAYMENT option to pay the full price of the phone in installments, and have no "contract" or obligation  to stay with Verizon once the phone is paid for, which you can do at any time.  So if you were trying to get discounted pricing, and the reps were talking EDGE, you were talking at cross purposes....
    In order to get the upgrade pricing, you need to sign a contract for 2 years of service, and agree to an ETF if you leave Verizon before the two years.

  • I cannot update adobe cc application, message is always and since a long time "erreur de téléchargement" - réessayez ou contactez le service client

    I cannot update adobe cc application, message is always and since a long time "erreur de téléchargement" - réessayez ou contactez le service client
    and I didn't see application in the apps windows
    what is the way to work simply and to update application ?
    applications are on my computer and run well
    thanks for your hepl
    olivier

    sign out and then back in to your cc app.
    if that fails, you can update directly, All the Adobe CC Updates: The Direct Download Links for Mac OS | ProDesignTools

  • AP Trial Balance - File is massive and takes a long time to open up

    Hello,
    We are upgrading from 11.5.10 to 12.1.3 and are running into some serioud problems with the Accounts Payables Trial Balance report in Detail Mode.
    1. The Report takes upwards of 10 minutes to open up - and in many cases does not.
    2. On further research we see that the report output file is > 500MB whereas comparable 11i Trial Balance files are only 19MB.
    3. We tried running in various formats Text, PDF, HTML with no luck.
    4. In fact HTML and Text formats gave “Authentication failed” errors when we tried to open the report.
    My questions are:
    1. Why is there a such a large increase in file size? Is this expected going to R12?
    2. Is there a way to speed up the opening of the large files or create smaller files? - (summary mode, and smaller date ranges are not options as per business needs). Even a 2 month date range give the same problems.
    3. We noticed that the XLA_TRIAL_BALANCES table has 36,521,125 records...LARGE.
    4. We compared the ap_liability_balance records between 11i and R12. We have 29,171,382 in 11i and 37,769,034 in R12. But this is expected as we purge regularly in 11i production and I don't think this difference (about 30%) in the size of the tables should cause such a large difference in the size of the report files (nearly 2000%!!!).
    5. Why are we getting Authentication failed errors? Just for these reports?
    Of course we opened an SR, but you know how SRs go :-) and this is a time critical project with our deadlines nearing.
    Any help or pointers from the experts here is greatly appreciated.
    Thanks
    Edited by: user11992646 on Jan 27, 2012 2:12 AM

    Hi Hussein,
    Thanks for your prompt reply and my apologies for the substantial delay in mine.
    We did some trouble shooting since then.
    We repolved the problem by choosing a pdf format instead of the seeded RTF format. This opened up the output in a couple of minutes because the pdf formatted output was about 50mb vs the RTF output which was 300MB+.
    But the ORIGINAL problem still remains. The xml tagged .out file is still huge with a size of nearly 1gb!
    My earlier questions here now boil down to the following questions.
    Q1. Is the huge XML Publisher's .out file expected in R12?  It really is massive!  The text file from 11i was just 19MB
    Q2. Oracle does not seem to offer the option to format the output in plain text ...We see PDF, RTF but no plain ugly text.  I would expect plain text file to be much smaller.  How can we get the output in plain text?
    1.Yes our stats are upto date. Let me emphasize that we do not have a performance problem with the report itself. The issue we are having is opening up the output.
    2. The authentication error is resolved. It was because of formatting the reports incorrectly.
    3. We did not use the usual tuning procedures such as tkprof because we do not have a performance problem.
    4. We checked the OPP file and there are none. I reiterate, The report does complete without issues. It is just that the output takes a long time to open up in the RTF
    I will appreciate if others  can share any experiences if you have faced this situation and how you have handled it.
    Thanks in advance for your time!

  • WAN MINIPORT ERROR AND TAKES A LONG TIME TO SHUT DOWN

    Few days before,my device manager was showing yellow exclamation mark in wan miniport(ikev2),SSTP and another area, which i can't remember.So i searched on forums and use  another software to fix this.The link to website is  - https://www.vpnhosting.cz/index.php/clanky/wan-miniport-repair-tool-solve-vpn-and-dial-up-error-code-720-and-similar-ppperrors.html
    i followed the process but now when i boot my laptop it does not show wan miniport driver initially on device manager .After long hours it shows wan miniport drivers but again with yellow excamation mark.I think it tries to install the driver at the beginning.Now
    the problem is, when i shut down it takes a  very long time with a huge fan operation noise.Many times it goes in to hibernation state to avoid overheating.Sometimes i have to forcibly shut down using the power button.Now  when i start it , it again
    does not show wan miniport drivers in device manager.This way the cycle continues and many times my laptop does not get a proper shut down.What do i do? please help me..

    Hi,
    May I know thw error code displayed in the problematic wan miniport drivers? Code 720 as in the link you post above or other error code?
    This link can be helpful for further troubleshooting (please create a restore point before making changs to the system in case any incorrect operations can cause unexpected issue)
    Fix Broken Wan miniports
    http://community.spiceworks.com/how_to/show/55611-fix-broken-wan-miniports
    NOTE
    This
    response contains a reference to a third party World Wide Web site. Microsoft is providing this information as a convenience to you.
    Microsoft
    does not control these sites and has not tested any software or information found on these sites.
    Yolanda Zhu
    TechNet Community Support

  • Query running for a very long time

    Hi I have a sales Query which is running for a very long time,
    It is built on a multiprovider. The multiprovider gets feed from cube and DSO.
    It is taking very long time to run.
    I need to do some performance tuning can you please suggest.

    Hi Ravi,
    First maitain BW statistics for that query and after that go to se11 and give table RSDDSTAT. just check how many records selected in data base and how many records transferred.
    according to this statistics create aggregates by giving propose aggregates by using statistics tables. after running a query check in RSRT whether the data is coming from aggregates or not.
    do not exclude any selections try to include in query restrictions.
    try to create secondary indexes.
    let us know the result.

  • Query in other schema take long time????

    Hi All,
    I am working on two different schemas in the same database say A and B.
    In schema A, I have a table tbl which is having approximately 70,000 rows.
    The table tbl is having an index. When I query on this table tbl in schema A the query out put is given in 10 minutes.
    But when I query on the same table tbl in schema B the out put takes an hour.
    Please explain me the reason why the query takes such a long time in schema B.
    Thanks in advance
    Kaustubh

    Please post the execution plans of the query from both databases.
    Do you have proper statistics gathered on these tables?

Maybe you are looking for