How to speed up the query time after adding order by

Hi,
In Form 6.0 front-end and 8i server, I put an "order by date
column desc" in Block Property and when I hit query button the
screen will bring up the most current date data instead of
oldest date data. The problem is slowing down the query time,
because the "order by" does the resorting work in the user temp
table space. The base table to be queried also contains two
varchar2(1500) columns and that also slow down the query time.
I am wondering if there is any other way to bring the current
records first without slow down the query speed ?
Any thought will be helpful and appreciated.
Thnaks!
Tony
null

anthony hsu (guest) wrote:
: Hi,
: In Form 6.0 front-end and 8i server, I put an "order by date
: column desc" in Block Property and when I hit query button the
: screen will bring up the most current date data instead of
: oldest date data. The problem is slowing down the query time,
: because the "order by" does the resorting work in the user
temp
: table space. The base table to be queried also contains two
: varchar2(1500) columns and that also slow down the query time.
: I am wondering if there is any other way to bring the current
: records first without slow down the query speed ?
: Any thought will be helpful and appreciated.
: Thnaks!
: Tony
What I have done is use hints to force the use of an index in
descending order. The part of the following example that
pertains to your question is the index_desc hint. Syntax and
suggestions for using hints are in the Oracle documentation.
The column you want to order desc by would have to be in an
index. The following example creates a view which you might not
need to do.
create or replace view v_sample_result as
select
/*+
first_rows
index ( sa )
index_desc ( t c_test_altk )
index ( r c_result_pk )
index ( lt )
null

Similar Messages

  • How to speed up the query result time

    While executing the following query the result comes after 22 secs.
    How could i minimize this time ? Please suggest.
    SELECT DISTINCT
           PERIOD_NO,
           ITEM_CODE,
           ITEM_NAME,
           SUM(CASE WHEN LEVEL_TYPE IN 'SUB ZONE' THEN WD_FORECAST_QTY_BU / CNV / ML ELSE 0 END)TOT_FRCST
    FROM   SHEET_HEAD, SHEET_DETAIL, ITEM_DETAIL
    WHERE  WH_SYS_ID = WD_WH_SYS_ID
    AND    ITEM_CODE = WD_ITEM_CODE(+)
    AND    PERIOD_NO BETWEEN :PERIOD1 AND :PERIOD2
    AND    WH_REVISION_NO = 0
    AND    WH_LEVEL_CODE NOT IN (SELECT WH_LEVEL_CODE FROM SHEET_HEAD WHERE WH_REVISION_NO = 1)
    GROUP BY   ITEM_CODE, ITEM_NAME, WH_PERIOD_NOSanjay

    Hi,
    with speed the suggest would always be expirement with indexing on the parameters, after first analysing what is currently happening in terms of full table scans etc that are 'most expensive'.
    In terms of the specifics on your code the following sticks out as costly; -
    AND    WH_LEVEL_CODE NOT IN (SELECT WH_LEVEL_CODE FROM SHEET_HEAD WHERE WH_REVISION_NO = 1)Here I would see if you can rewrite it, perhaps with a left join / self join to achieve the same ends, compare the timings you may be surprised.
    regards,
    Robert.

  • Urgent:How to Speed Up the Response time for PDF Report of  500 pages

    hi all
    i am running the 9ias on Solaris and Generating some reports
    Which fetches around 50,000 records and Display them in pdf format.
    When i am ruuning the Query at Database level Response time is Very fast.
    But when i Run the Report in Web Browser same report takes 7-8 minutes.
    So it seems that the Conversion to pdf and Displaying it takes most of time.
    Does any one has idea What parameter's needs to be changed/Caching ??? /
    or any other ways or methods which can be used to Reduce the Response time.
    (its once a monthly Report and User need to Download all the 500 pages as
    a Single Document).
    Any help / suggestion please
    thanks
    jai

    You aren't by any chance calling a function in your repeating frame that in turn goes back and queries the database, are you? If so ... don't. We regularly do 500+ page PDF-file reports, and one thing we discovered early on was that repeatedly going back to the database while generating the report output (in our case, in calculations that were being done on each line of a report) slowed the output down by an order of magnitude. Instead, we now retrieve all the data needed for each report up front (via functions or views called in the initial SQL for the report), and just use Reports to format the output. MUUUUUUUCH faster -- 200 page reports that used to take 15 minutes to complete now complete in just seconds.
    One way you can visually see if this is part of your problem is to watch the report execute in the Report Queue Manager application. If it spends all its time on the "Opening" stage then breezes through each page, this is not your problem. If instead it seems to take a long time generating each page, I'd suspect that this may be at least part of your delay.
    - Bill

  • How can I set the query time out for SQVI?

    Hi,
      I want to setup query timeout for a particular user so that if his query (created in SQVI) takes more then say 10 minutes, it automatically times out and system resources are freed up.
    How can I do this for a specific user? Also in case I cant do it for a specific user how can I do it for all users?
    Thanks for reading

    Hello Srikrishna,
    The SQVI is a dialog transaction and henc its governed by your system's rdisp/max_wprun_time parameter.
    A dialog work process has a run-time limit that prevents users from interactively running especially long reports. By default, the system terminates any dialog work process in a transaction that exceeds 300 seconds. Although the value of the limit can be changed (in the system profile parameter rdisp/max_wprun_time), that limit is always in effect for dialog work processes. No such limit applies to background work processes.
    Regards,
    Siddhesh

  • How can I get the elapse time for execution of a Query for a session

    Hi ,
    How can I get the elapse time for execution of a Query for a session?
    Example - I have a report based on the procedure ,when the user execute that it takes say 3 min. to return rows.
    Is there any possible way to capture this session info. for this particular execution of query along with it's execution elapse time?
    Thanks in advance.

    Hi
    You can use the dbms_utility.get_time tool (gives binary_integer type value).
    1/ Initialize you time and date of beginning :
    v_beginTime := dbms_utility.get_time ;
    2/ Run you procedure...
    3/ Get end-time with :
    v_endTime := dbms_utility.get_time ;
    4/ Thus, calculate elapsed time by difference :
    v_elapsTime := v_endTime - v_beginTime ;
    This will give you time elapsed in of 100th of seconds...
    Then you can format you result to give correct print time.
    Hope it will help you.
    AL

  • In ST03 , how can i see the Query name, user id,how many times executed the

    HI Experts,
    In ST03 , how can i see the Query name, user id,how many times executed the query.
    these details how do i get from the above transaction.
    EX:-if there is one report name X,I want to know how many users had executed X report today,weekly,monthly.
    ex:-query userid total number of execution
    sales order 0000555 5 times
    custmer 05855 2 times
    fast reply will be appreciated,

    Hi,
    Look here:
    http://help.sap.com/saphelp_nw04/helpdata/en/3b/54df4204892a78e10000000a155106/frameset.htm
    Also check these:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/2d/b8be3befaefc75e10000000a114084/content.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/25/ece73a39e74d27e10000000a114084/frameset.htm
    Hope this helps..
    Bye
    Dinesh

  • In ST03 , how can i see the Query name, user id,how many times .

    HI Experts,
    In ST03 , how can i see the Query name, user id,how many times executed the query.
    these details how do i get from the above transaction.
    Points will be awarded.
    BR
    sivs

    Hi Siva,
    Reporting statistics data is only written to the database table if BW statistics have been manually activated for the corresponding InfoProvider first. If this has not been done, it is therefore not possible to display any reporting statistics in transaction ST03.
    Therefore activate the reporting statistics for all relevant InfoProviders. To do this, set the OLAP flag in the BW Administrator Workbench (transaction RSA1) in the area Tools ® BW Statistics for InfoProvider.
                    Check here...........
    http://help.sap.com/saphelp_nw04/helpdata/en/ca/86df4254d81e1fe10000000a155106/content.htm
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/c8c4d794-0501-0010-a693-918a17e663cc
    Hope this will help you shiva.........
    Regrads,
    Vijay

  • How can I speed up the load time?

    My website is completed and I am happy with everything.
    Everything except the time it takes to load. All the images have
    been optimized. What can I do to speed up the load time?
    http://www.liquidfirefishing.com

    On Tue, 6 Jan 2009 01:29:41 +0000 (UTC), "Team Liquid Fire"
    <[email protected]> wrote:
    >My website is completed and I am happy with everything.
    Everything except the
    >time it takes to load. All the images have been
    optimized. What can I do to
    >speed up the load time?
    >
    http://www.liquidfirefishing.com
    Typically, your budget is around 50k for the first page,
    total including
    all external files. When you add up all the external files
    you have used,
    like images, Flash, external JavaScript, etc., you have 98
    separate HTTP
    requests in that page. Just looking at the headers, you have
    about 80k in
    requests and responses, not even counting the actual files.
    Browsers are limited to just a few simultaneous streams, so
    most of your
    files wind up having to wait until the prior files download.
    Included among your 98 requests, you have these six files
    that each
    individually exceed that total budget:
    headerLinked.swf 2,621,578 bytes
    2007_fishing_video_web.flv 95,989,898 bytes
    2008_aoy_graphic.png 65,582 bytes
    jensen_beach.png 59,105 bytes
    liquid_fire_logo_new.png 142,277 bytes
    DanSchaad.png 379,111 bytes
    Your entire total is 99,816,652 bytes. I've put a complete
    breakdown here:
    http://testing.apptools.com/newsgroup/liquidfire.php
    Files are requested from the server in the order they are
    encountered in
    the source code. They are displayed in the linked page in the
    order in
    which they are requested. You can see that some of the huge
    files are
    requested fairly early in the sequence. That means that those
    files and
    their extended download times are occupying streams and
    preventing other
    files from being downloaded more quickly.
    My suggestion would be to really trim down the content on the
    page. Break
    it up into several pages. Dump the huge Flash movie at the
    top of the
    page. Optimize the four .png's above.
    Gary

  • How to speed up the loading of live data into flash file.

    How to speed up the loading of live data into flash file if the swf file size is 1.5 MB. Flash file is using 20 web service connections to load the live data.

    Hello,
    I am also facing a similar problem wherein the SWF file takes time to load the refreshed data in Infoview i.e. after exporting the xlf file to Business Objects platform. Currently I am using Xcelcius Engage/Enterprise 2008 SP3 Windows (file name: 51038212.ZIP) version 5.3.0.0 build number 12,3,0,670. Also the SWF file is approximately 2MB in size  and it uses 42 live office connections.
    Please suggest solution as to how to decrease the time it takes to refresh the live office connections.

  • How to speed up the BEA weblogic workshop perforkmance?

    Hi,
    Does anybody knows how to speed up the BEA weblogic workshop,as it consumes heavy memory.
    I've configured the settings in workshop.cfg file and set the maximum memory size as 1024m midium size 516m and minimum size as 256m
    and deleted all the files from .workshop directory before open up the workshop file.
    But it hanging up the system when i opened the worshop file after some time. what could be the problem . i am using 2GB ram size

    Hi Vishnu,
    I agree this can also be one of the reason for the performance. There is Trend Micro Office Scan client installed on my system, but i couldn't not do any settings ,as it is disabled by sys admin .
    however, i removed all the scanning processes from task manager and set the high priority for the java process! still, no improvement. There are only few jpd files not even 500kb size, but when i open them, weblogic cried and utilized lots lots of memory! :-(
    I am afraid to open the weblogic which had jpd files,as it hanged my whole system, unable to perform any other tasks!

  • How to speed up this query?

    I have created a demo table:
    create table demo1(d date);
    and insert some data to table:
    begin
    -- add 6000000 rows
    for i in 1..1000000 loop
    insert into demo1 values(trunc(sysdate-i));
    insert into demo1 values(trunc(sysdate-i));
    insert into demo1 values(trunc(sysdate-i));
    insert into demo1 values(trunc(sysdate-i));
    insert into demo1 values(trunc(sysdate-i));
    insert into demo1 values(trunc(sysdate-i));
    end loop;
    commit;
    end;
    The query
    select * from demo1
    where d=to_date('25.10.2004','DD.MM.YYYY')
    executed three times faster than
    select from demo1 where d=trunc(sysdate-1);
    Why? How to speed up this query if I do not want to use index?
    I have created index:
    create index demo1_indx on demo1(d);
    Execution time of queries became identical (for this volume of data).

    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - Production
    With the Partitioning, OLAP and Data Mining options
    SQL> create table demo1(d date);
    Table created.
    SQL> begin
    2 for i in 1..1000000 loop
    3 insert into demo1 values(trunc(sysdate-i));
    4 insert into demo1 values(trunc(sysdate-i));
    5 insert into demo1 values(trunc(sysdate-i));
    6 insert into demo1 values(trunc(sysdate-i));
    7 insert into demo1 values(trunc(sysdate-i));
    8 insert into demo1 values(trunc(sysdate-i));
    9 insert into demo1 values(trunc(sysdate-i));
    10 insert into demo1 values(trunc(sysdate-i));
    11 end loop;
    12 commit;
    13 end;
    14 /
    PL/SQL procedure successfully completed.
    SQL> alter session set timed_statistics=true;
    Session altered.
    SQL> alter session set sql_trace=true;
    Session altered.
    SQL> set timing on;
    SQL> set autotrace on;
    SQL> select * from demo1 where d='25.10.2004';
    D
    25.10.04
    25.10.04
    25.10.04
    25.10.04
    25.10.04
    25.10.04
    25.10.04
    25.10.04
    8 rows selected.
    Elapsed: 00:00:10.70
    Execution Plan
    0 SELECT STATEMENT Optimizer=ALL_ROWS (Cost=3285 Card=159 Byte
    s=1431)
    1 0 TABLE ACCESS (FULL) OF 'DEMO1' (TABLE) (Cost=3285 Card=159
    Bytes=1431)
    Statistics
    29 recursive calls
    1 db block gets
    28988 consistent gets
    13030 physical reads
    1035300 redo size
    453 bytes sent via SQL*Net to client
    508 bytes received via SQL*Net from client
    2 SQL*Net roundtrips to/from client
    0 sorts (memory)
    0 sorts (disk)
    8 rows processed
    SQL> select * from demo1 where d='25.10.2004';
    D
    25.10.04
    25.10.04
    25.10.04
    25.10.04
    25.10.04
    25.10.04
    25.10.04
    25.10.04
    8 rows selected.
    Elapsed: 00:00:03.35
    Execution Plan
    0 SELECT STATEMENT Optimizer=ALL_ROWS (Cost=3285 Card=159 Byte
    s=1431)
    1 0 TABLE ACCESS (FULL) OF 'DEMO1' (TABLE) (Cost=3285 Card=159
    Bytes=1431)
    Statistics
    0 recursive calls
    0 db block gets
    14441 consistent gets
    12837 physical reads
    0 redo size
    453 bytes sent via SQL*Net to client
    508 bytes received via SQL*Net from client
    2 SQL*Net roundtrips to/from client
    0 sorts (memory)
    0 sorts (disk)
    8 rows processed
    SQL> select * from demo1 where d='25.10.2004';
    D
    25.10.04
    25.10.04
    25.10.04
    25.10.04
    25.10.04
    25.10.04
    25.10.04
    25.10.04
    8 rows selected.
    Elapsed: 00:00:04.95
    Execution Plan
    0 SELECT STATEMENT Optimizer=ALL_ROWS (Cost=3285 Card=159 Byte
    s=1431)
    1 0 TABLE ACCESS (FULL) OF 'DEMO1' (TABLE) (Cost=3285 Card=159
    Bytes=1431)
    Statistics
    0 recursive calls
    0 db block gets
    14441 consistent gets
    12757 physical reads
    0 redo size
    453 bytes sent via SQL*Net to client
    508 bytes received via SQL*Net from client
    2 SQL*Net roundtrips to/from client
    0 sorts (memory)
    0 sorts (disk)
    8 rows processed
    SQL> select * from demo1 where d='25.10.2004';
    D
    25.10.04
    25.10.04
    25.10.04
    25.10.04
    25.10.04
    25.10.04
    25.10.04
    25.10.04
    8 rows selected.
    Elapsed: 00:00:03.82
    Execution Plan
    0 SELECT STATEMENT Optimizer=ALL_ROWS (Cost=3285 Card=159 Byte
    s=1431)
    1 0 TABLE ACCESS (FULL) OF 'DEMO1' (TABLE) (Cost=3285 Card=159
    Bytes=1431)
    Statistics
    0 recursive calls
    0 db block gets
    14441 consistent gets
    12752 physical reads
    0 redo size
    453 bytes sent via SQL*Net to client
    508 bytes received via SQL*Net from client
    2 SQL*Net roundtrips to/from client
    0 sorts (memory)
    0 sorts (disk)
    8 rows processed
    SQL> select * from demo1 where d=trunc(sysdate-3);
    D
    25.10.04
    25.10.04
    25.10.04
    25.10.04
    25.10.04
    25.10.04
    25.10.04
    25.10.04
    8 rows selected.
    Elapsed: 00:00:17.53
    Execution Plan
    0 SELECT STATEMENT Optimizer=ALL_ROWS (Cost=3696 Card=159 Byte
    s=1431)
    1 0 TABLE ACCESS (FULL) OF 'DEMO1' (TABLE) (Cost=3696 Card=159
    Bytes=1431)
    Statistics
    6 recursive calls
    0 db block gets
    14503 consistent gets
    12758 physical reads
    0 redo size
    453 bytes sent via SQL*Net to client
    508 bytes received via SQL*Net from client
    2 SQL*Net roundtrips to/from client
    0 sorts (memory)
    0 sorts (disk)
    8 rows processed
    SQL> select * from demo1 where d=trunc(sysdate-3);
    D
    25.10.04
    25.10.04
    25.10.04
    25.10.04
    25.10.04
    25.10.04
    25.10.04
    25.10.04
    8 rows selected.
    Elapsed: 00:00:15.82
    Execution Plan
    0 SELECT STATEMENT Optimizer=ALL_ROWS (Cost=3696 Card=159 Byte
    s=1431)
    1 0 TABLE ACCESS (FULL) OF 'DEMO1' (TABLE) (Cost=3696 Card=159
    Bytes=1431)
    Statistics
    0 recursive calls
    0 db block gets
    14441 consistent gets
    12753 physical reads
    0 redo size
    453 bytes sent via SQL*Net to client
    508 bytes received via SQL*Net from client
    2 SQL*Net roundtrips to/from client
    0 sorts (memory)
    0 sorts (disk)
    8 rows processed
    SQL> select * from demo1 where d=trunc(sysdate-3);
    D
    25.10.04
    25.10.04
    25.10.04
    25.10.04
    25.10.04
    25.10.04
    25.10.04
    25.10.04
    8 rows selected.
    Elapsed: 00:00:14.56
    Execution Plan
    0 SELECT STATEMENT Optimizer=ALL_ROWS (Cost=3696 Card=159 Byte
    s=1431)
    1 0 TABLE ACCESS (FULL) OF 'DEMO1' (TABLE) (Cost=3696 Card=159
    Bytes=1431)
    Statistics
    0 recursive calls
    0 db block gets
    14441 consistent gets
    12758 physical reads
    0 redo size
    453 bytes sent via SQL*Net to client
    508 bytes received via SQL*Net from client
    2 SQL*Net roundtrips to/from client
    0 sorts (memory)
    0 sorts (disk)
    8 rows processed
    SQL> select * from demo1 where d=trunc(sysdate-3);
    D
    25.10.04
    25.10.04
    25.10.04
    25.10.04
    25.10.04
    25.10.04
    25.10.04
    25.10.04
    8 rows selected.
    Elapsed: 00:00:11.84
    Execution Plan
    0 SELECT STATEMENT Optimizer=ALL_ROWS (Cost=3696 Card=159 Byte
    s=1431)
    1 0 TABLE ACCESS (FULL) OF 'DEMO1' (TABLE) (Cost=3696 Card=159
    Bytes=1431)
    Statistics
    0 recursive calls
    0 db block gets
    14441 consistent gets
    12757 physical reads
    0 redo size
    453 bytes sent via SQL*Net to client
    508 bytes received via SQL*Net from client
    2 SQL*Net roundtrips to/from client
    0 sorts (memory)
    0 sorts (disk)
    8 rows processed
    SQL> alter session set sql_trace=false;
    Session altered.
    Elapsed: 00:00:00.00
    SQL> alter session set timed_statistics=false;
    Session altered.
    Elapsed: 00:00:00.01
    SQL>

  • How do I correct the Event time stamp in iPhoto?

    When I updated my iMac to Lion, the Events in iPhoto are no longer sequenced by time correclty. The incorrectly sequenced Events have the wrong time / data stamp. How do I edit the Event time/date stamp to correct the problem?

    Hi LarryHN,
    The version of iPhoto is 8.1.2. I found your workaround on other strings, and tried it, to no avail. This issue has happened to three of my Event folders -- all from the same three-week trip. I had each day separated into different events and named consecutively. At some point, I uploaded all those photos to photobucket, and I believe the three troublesome Events perhaps were corrupted in some way after that upload? Regardless, I can't seem to fix it. All of the photos have the correct date (for example, in one Event, all photos are dated 12/25/11). However the date range on the Event is 12/31/09-1/7/12. So, those three Events keep getting sorted out of sequence.
    I opened one of the Events, highlighted one photo and selected Create Event. That new photo became a new Event. I re-named it, and dragged all the photos from the old Event into the new Event. ...Unfortunately, the new Event still has the weird Date Range on it?
    Any ideas?

  • TS2518 My RAW (nikon .NEF) files changing to a dull, darker version of themselves after selecting them for the first time after import.

    My RAW (nikon .NEF) files are literally changing to a dull, darker version of themselves after selecting them for the first time after import. I.e. The correct photo (light/color/etc) seems to be there and then a second later the photo changes. It's almost like it's showing a quick enhanced version then back to basic raw image. Started within last two updates.
    Is there a fix or is this the straw that forces a switch to Lightroom?

    Just recall that Aperture (or any other 3rd party raw converter) has NO information about the JPEG preview and how it was made.  That information is camera-vendor proprietary.
    Also note that there are like 6 "picture styles" in camera and this change you're seeing is entirely dependent on how you have them set.  If you have your camera set to "vivid" or something you'll see more of a change than if your on-camera is set to "faithful."
    That said, people here ALSO complain that Aperture's initial renders are TOO vivid, the exact opposite of your complaint, so you can't please everybody (in some cases, it seems you can't please ANYBODY ;-)
    Aperture provides a starting point.  Again, if you don't like it, you can tell Aperture to go with a "punchier" interpretation at its first render.  In the import dialog, try setting Aperture to use the "auto enhance" preset which is built in.  Aperture will add a little vibrancy adjustment, and it will add a curve, which will greatly add punch to the image.  If you want adjustments in a different direction, you can create a preset and set it at import.
    The only thing Aperture CANNOT do is what you're asking, which is "take the JPEG that my camera vendor generates through some voodoo and try and render the raw file just like that."  It's, unfortunately, impossible to do.

  • When i hold down command and r at the same time after restarting it comes up with a

    When i hold down command and r at the same time after restarting it comes up with a black screen and a lock symbol and a field bellow where you would input a password, i have tried ALL of my possible passwords including my password i use for the mac and it stil will not work! all that happens is the text i put in bellow erases itself after hiting enter or clicking the arrow.

    I've tried my apple ID password and that doesn't work either . I don't recall seting a password for an encrypted disk either :/ if it was for an encrypted disk, would it be in keychain anywhere? if so how can i find it?
    Thanks!

  • How to speed up the deletion of 11million records from the table

    Hi,
    How to speed up the deletion of 11million records from the table.
    I need expiditious reply. Please do the needfull in advising
    Regards

    Please try to understand the question.Well it would help if you would answer some of the questions you have been asked as your question is not complete and clear and no matter how hard we try, we really need you to try and ask the question properly.
    So as previously asked
    Which simply supports the idea that we need:
    1) better definition of the business purpose (why)
    2) oracle version
    3) operating system
    4) hardware configuration
    to give a moderately accurate answer.
    I would like to add
    5) How many rows in total in the table to begin with.
    6) What is your delete statement
    7) Is this a one time operation or will it happen regularly
    8) Can you use partitioning.

Maybe you are looking for

  • Linksys works on windows but not mac

    I am running boot camp on my early 2009 MBP. I have not been able to connect to my wireless for about 9 months using os 10.6.4. If I switch to windows 7 on the same computer I can connect to it with no problem. Why is this? I have tried everything to

  • Can I link a debit card to 2 apple accounts?

    IS it possible to do the above?

  • Expanding Web DynPro ALV Hierarchy

    Good day experts, Is it possible to default the hierarchy display on a web dynpro ALV to EXPANDED? Regards, Johan Kriek.

  • Installed languages

    Hi people, I´ve the next problem with the languages. I´ve installed the additional language and after I completed the setup with the supplement language with the english. I have indicated the parameters of the system: zcsa/installed_languages        

  • Question about Oracle10g Net Services'IPv6 Support

    I'm working in a network group which is studying the IPv6.Recently I installed oracle10g in the RedHat Linux-9(kernel-2.4.22,which supported the IPv4/IPv6 dual mode),but I can't configure the oracle10g in IPv6. I tried every method to find the soluti