Index issue with or and between when we set one partition index to unusable

Need to understand why optimizer unable to use index in case of "OR" whenn we set one partition index to unusable, the same query with between uses index.
“OR” condition fetch less data comparing to “BETWEEN” still oracle optimizer unable to use indexes in case of “OR”
1. Created local index on partitioned table
2. ndex partition t_dec_2009 set to unusable
-- Partitioned local Index behavior with “OR” and with “BETWEEN”
SQL> CREATE TABLE t (
  2    id NUMBER NOT NULL,
  3    d DATE NOT NULL,
  4    n NUMBER NOT NULL,
  5    pad VARCHAR2(4000) NOT NULL
  6  )
  7  PARTITION BY RANGE (d) (
  8    PARTITION t_jan_2009 VALUES LESS THAN (to_date('2009-02-01','yyyy-mm-dd')),
  9    PARTITION t_feb_2009 VALUES LESS THAN (to_date('2009-03-01','yyyy-mm-dd')),
10    PARTITION t_mar_2009 VALUES LESS THAN (to_date('2009-04-01','yyyy-mm-dd')),
11    PARTITION t_apr_2009 VALUES LESS THAN (to_date('2009-05-01','yyyy-mm-dd')),
12    PARTITION t_may_2009 VALUES LESS THAN (to_date('2009-06-01','yyyy-mm-dd')),
13    PARTITION t_jun_2009 VALUES LESS THAN (to_date('2009-07-01','yyyy-mm-dd')),
14    PARTITION t_jul_2009 VALUES LESS THAN (to_date('2009-08-01','yyyy-mm-dd')),
15    PARTITION t_aug_2009 VALUES LESS THAN (to_date('2009-09-01','yyyy-mm-dd')),
16    PARTITION t_sep_2009 VALUES LESS THAN (to_date('2009-10-01','yyyy-mm-dd')),
17    PARTITION t_oct_2009 VALUES LESS THAN (to_date('2009-11-01','yyyy-mm-dd')),
18    PARTITION t_nov_2009 VALUES LESS THAN (to_date('2009-12-01','yyyy-mm-dd')),
19    PARTITION t_dec_2009 VALUES LESS THAN (to_date('2010-01-01','yyyy-mm-dd'))
20  );
SQL> INSERT INTO t
  2  SELECT rownum, to_date('2009-01-01','yyyy-mm-dd')+rownum/274, mod(rownum,11), rpad('*',100,'*')
  3  FROM dual
  4  CONNECT BY level <= 100000;
SQL> CREATE INDEX i ON t (d) LOCAL;
SQL> execute dbms_stats.gather_table_stats(user,'T')
-- Mark partition t_dec_2009 to unusable:
SQL> ALTER INDEX i MODIFY PARTITION t_dec_2009 UNUSABLE;
--- Let’s check whether the usable index partition can be used to apply a restriction: BETWEEN
SQL> SELECT count(d)
    FROM t
    WHERE d BETWEEN to_date('2009-01-01 23:00:00','yyyy-mm-dd hh24:mi:ss')
                AND to_date('2009-02-02 01:00:00','yyyy-mm-dd hh24:mi:ss');
SQL> SELECT * FROM table(dbms_xplan.display_cursor(format=>'basic +partition'));
| Id  | Operation               | Name | Pstart| Pstop |
|   0 | SELECT STATEMENT        |      |       |       |
|   1 |  SORT AGGREGATE         |      |       |       |
|   2 |   PARTITION RANGE SINGLE|      |    12 |    12 |
|   3 |    INDEX RANGE SCAN     | I    |    12 |    12 |
--- Let’s check whether the usable index partition can be used to apply a restriction: OR
SQL> SELECT count(d)
    FROM t
    WHERE
    (d >= to_date('2009-01-01 23:00:00','yyyy-mm-dd hh24:mi:ss') and d <= to_date('2009-01-01 23:59:59','yyyy-mm-dd hh24:mi:ss'))
    or
    (d >= to_date('2009-02-02 01:00:00','yyyy-mm-dd hh24:mi:ss') and d <= to_date('2009-02-02 02:00:00','yyyy-mm-dd hh24:mi:ss'))
SQL> SELECT * FROM table(dbms_xplan.display_cursor(format=>'basic +partition'));
| Id  | Operation           | Name | Pstart| Pstop |
|   0 | SELECT STATEMENT    |      |       |       |
|   1 |  SORT AGGREGATE     |      |       |       |
|   2 |   PARTITION RANGE OR|      |KEY(OR)|KEY(OR)|
|   3 |    TABLE ACCESS FULL| T    |KEY(OR)|KEY(OR)|
----------------------------------------------------“OR” condition fetch less data comparing to “BETWEEN” still oracle optimizer unable to use indexes in case of “OR”
Regards,
Sachin B.

Hi,
What is your database version????
I ran the same test and optimizer was able to pick the index for both the queries.
SQL> select * from v$version;
BANNER
Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Prod
PL/SQL Release 10.2.0.4.0 - Production
CORE    10.2.0.4.0      Production
TNS for 32-bit Windows: Version 10.2.0.4.0 - Production
NLSRTL Version 10.2.0.4.0 - Production
SQL>
SQL> set autotrace traceonly exp
SQL>
SQL>
SQL>  SELECT count(d)
  2  FROM t
  3  WHERE d BETWEEN to_date('2009-01-01 23:00:00','yyyy-mm-dd hh24:mi:ss')
  4              AND to_date('2009-02-02 01:00:00','yyyy-mm-dd hh24:mi:ss');
Execution Plan
Plan hash value: 2381380216
| Id  | Operation                 | Name | Rows  | Bytes | Cost (%CPU)| Time     | Pstart| Pstop |
|   0 | SELECT STATEMENT          |      |     1 |     8 |    25   (0)| 00:00:01 |       |       |
|   1 |  SORT AGGREGATE           |      |     1 |     8 |            |          |       |       |
|   2 |   PARTITION RANGE ITERATOR|      |  8520 | 68160 |    25   (0)| 00:00:01 |     1 |     2 |
|*  3 |    INDEX RANGE SCAN       | I    |  8520 | 68160 |    25   (0)| 00:00:01 |     1 |     2 |
Predicate Information (identified by operation id):
   3 - access("D">=TO_DATE(' 2009-01-01 23:00:00', 'syyyy-mm-dd hh24:mi:ss') AND
              "D"<=TO_DATE(' 2009-02-02 01:00:00', 'syyyy-mm-dd hh24:mi:ss'))
SQL>  SELECT count(d)
  2  FROM t
  3  WHERE
  4  (
  5  (d >= to_date('2009-01-01 23:00:00','yyyy-mm-dd hh24:mi:ss') and d <= to_date('2009-01-01 23:59:59','yyyy-mm-dd hh24:mi:ss'
  6  or
  7  (d >= to_date('2009-02-02 01:00:00','yyyy-mm-dd hh24:mi:ss') and d <= to_date('2009-02-02 02:00:00','yyyy-mm-dd hh24:mi:ss'
  8  );
Execution Plan
Plan hash value: 3795917108
| Id  | Operation                | Name | Rows  | Bytes | Cost (%CPU)| Time     | Pstart| Pstop |
|   0 | SELECT STATEMENT         |      |     1 |     8 |     4   (0)| 00:00:01 |       |       |
|   1 |  SORT AGGREGATE          |      |     1 |     8 |            |          |       |       |
|   2 |   CONCATENATION          |      |       |       |            |          |       |       |
|   3 |    PARTITION RANGE SINGLE|      |    13 |   104 |     2   (0)| 00:00:01 |     2 |     2 |
|*  4 |     INDEX RANGE SCAN     | I    |    13 |   104 |     2   (0)| 00:00:01 |     2 |     2 |
|   5 |    PARTITION RANGE SINGLE|      |    13 |   104 |     2   (0)| 00:00:01 |     1 |     1 |
|*  6 |     INDEX RANGE SCAN     | I    |    13 |   104 |     2   (0)| 00:00:01 |     1 |     1 |
Predicate Information (identified by operation id):
   4 - access("D">=TO_DATE(' 2009-02-02 01:00:00', 'syyyy-mm-dd hh24:mi:ss') AND
              "D"<=TO_DATE(' 2009-02-02 02:00:00', 'syyyy-mm-dd hh24:mi:ss'))
   6 - access("D">=TO_DATE(' 2009-01-01 23:00:00', 'syyyy-mm-dd hh24:mi:ss') AND
              "D"<=TO_DATE(' 2009-01-01 23:59:59', 'syyyy-mm-dd hh24:mi:ss'))
       filter(LNNVL("D"<=TO_DATE(' 2009-02-02 02:00:00', 'syyyy-mm-dd hh24:mi:ss')) OR
              LNNVL("D">=TO_DATE(' 2009-02-02 01:00:00', 'syyyy-mm-dd hh24:mi:ss')))
SQL> set autotrace off
SQL>Asif Momen
http://momendba.blogspot.com

Similar Messages

  • I'm having a lot of issues with firefox and cannot figure out how to get help. It began when I updated to 13. I get all kinds of ad popups, I cannot play one

    I'm having a lot of issues with firefox and cannot figure out how to get help. It began when I updated to 13. I get all kinds of ad popups, I cannot play one game on FaceBook called Farm Town at all, and I keep getting an AVG popup about cookies that I cannot get rid of. These issues are causing me to use Chrome very often even though I like Fox better. I've searched and searched how to get help and cannot find anything. How does one get personal technical help?? These issues do not happen in Chrome at all. Thanks.

    Do a malware check with some malware scanning programs on the Windows computer.<br />
    You need to scan with all programs because each program detects different malware.<br />
    Make sure that you update each program to get the latest version of their databases before doing a scan.<br /><br />
    *http://www.malwarebytes.org/mbam.php - Malwarebytes' Anti-Malware
    *http://www.superantispyware.com/ - SuperAntispyware
    *http://www.microsoft.com/security/scanner/en-us/default.aspx - Microsoft Safety Scanner
    *http://www.microsoft.com/windows/products/winfamily/defender/default.mspx - Windows Defender: Home Page
    *http://www.safer-networking.org/en/index.html - Spybot Search & Destroy
    You can also do a check for a rootkit infection with TDSSKiller.
    *http://support.kaspersky.com/viruses/solutions?qid=208280684
    See also:
    *"Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked

  • Issue with E51 and Blackberry software

    Hi all,
    I'm having an issue with the connectivity between the phone and the PC.
    I have installed version 8.7.1 on the mobile phone and 2.1.1.22 on the pc and when I try to connect both it shows a message "Communication with the devide was not successful. Please verify the following and try again: 1. Ensure the handset is connected to the computer. 2. Ensure the BlackBerry software is running on the handset."
    I've tryed everything ang "googled" for help but until now I was unable to go further on the instalation.
    Can someone please help me on this?
    I've already uninstalled the sw from the PC but each time I install it again he has all the configurations already done so I'm not able to do a completely brand new installation.
    It's a BES with Lotus Notes. 
    Hope someone can help.
    Regards. 
    Message Edited by schummy on 11-Feb-2009 12:35 AM

    I fixed it by using a PC and not a Mac

  • Indexing Issue : Idc Analyzer and other tools

    Hi All,
    I am facing some indexing issue with my ucm instance. Some of the files get stuck in wwGen Revision Status, some show “up to date” in index, but really are not until a re-index
    happens, etc.
    I used IDCAnalyzer to check the indexing issues but during analysis i got only an error pop-up saying "Error checking index" with no details in log.
    Are there any additional arguments/settings which can be used to get the details. Otherwise, this tool doesn't seem to be of much help in this case.
    Which are the other tools that can be used to check and correct the health of index?
    How can we purge unneeded revisions, history, and other in UCM to “clean up” and remove bloat (like archiver etc.)
    Note: I am using ucm 11g with SSXA.
    Edited by: PoojaC on Aug 1, 2012 10:26 PM

    Hi ,
    Analyzer tool should be used when there is a mismatch in the weblayout / vault files which causes indexer , archiver etc to fail .
    Read more about this from the following links:
    http://docs.oracle.com/cd/E23943_01/doc.1111/e10792/e01_interface.htm#CACFDIID
    http://docs.oracle.com/cd/E23943_01/doc.1111/e10792/c03_processes.htm#sthref268
    Hope this helps .
    Thanks
    Srinath

  • Issue with Intra and InterCompany STOu2019s

    I have a issue with Intra and InterCompany STOu2019s
    I have a Intercompany STO, which Delivery and PGI is not done.
    When I tried to post the GR against STO then GR is posted without any problem.
    Now If I tried to do the same with IntraCompany STO i.e. tried to post the GR which delivery and PGI is not done.
    Then it gives error messamge as u201CDocument does not contain any selectable itemsu201D
    Can anybody suggest me about the above discrepancy between Intercompany and InteraCompany cases.

    Thanks a lot Jürgen,
    So  As I understand, This is SAP Standard as.
    1. In the IntraCompany case: GR can not be posted without posted Delivery and PGI.
    2.In the InterCompany Case: GR can be posted wrt. PO, while Delivery is not posted.
    Pls. confirm the above and if you have any idea for controlling the above intercompany case,
    pls. let me know?
                                                                                    Thanks in advance...........

  • Major CalDav and Syncing Issues with Ical and Address Book

    As a CEO and business owner - I loved the move over to Mac after the intel chip as installed.  Yet, the issue of working on a Mac for business comes down to the operating system.  Up to Snow Leopard I was very pleased.... since Lion it has gone downhill.   I upgraded to Mountain Lion and many of the issues with speed and problems with mail were addressed.  Yet, it appears Apple has made a bad decision with regard to synciing to other programs.
    I was told it has cut out syncing capablities for Address book and Ical (I assume other programs).  This has caused great issues for The Omni Group, File Maker and Market Cirlce (creators of Daylite) and a lot of angst for me as a business owner!
    To top this off - it appears CalDav is not bi-directional and has issues.  In other words, it does not work as it should. 
    I am not sure what Apple was thining when it stopped allowing internal sync between programs. Yet, CalDav and CardDav are not always the answers!
    I hope the CalDav issues are being cleaned up and if anyone from Apple wishes to comment on this I would appreciate it.  I have tried to talk to support but the powers to be are the ones calling the shots on software design.  Support can't fix what is broken the program.
    Again, I hope Apple revisits syncing.  Maybe the concern is security but it is MY DATA not yours.  I just want the programs to work so I can make sales and support my customers efficiently.   You have made it hard to do this with changes.
    David

    As an IT consultant,  i'm in agreement with Mr Utts.    The promise of "it just works" died with Steve Jobs.   Mac OS has been in freefall since 10.5 .    I need a fully functional OS,  not an iPad on my desk.  ( this means YOU Forstall !! )
    Why break Samba ( a standard ),  why break WebDAV ( a standard ), why break CalDAV ( a standard )??    Apple has done ALL of these things and they seem to be doing it on purpose.
    The Apple "ecosystem" is just fine,  but removing functionality as fast as you can, and removing interoperablity as fast as you can...  if Apple products ONLY work within the ecosystem... people can and will leave Apple.    You've already run off the business users by refusing to make a real Server or real Server software.   You ran off the video user with Final Cut Pro X.   Dumbing down (and breaking) the OS is running off the IT User.
    Mac OS used to easily walk the line of "hard core enough for a Unix Guru,  easy enough for your Mom".  Now they just want the Moms.
    And i disagree,  we are ALL "qualified to say what Apple might do about this...",  they will do nothing.   They don't beleive they have made a mistake.  They beleive WE are the problem by stubbornly insisting that things that used to work should continue to work.

  • Issue with 2wire dsl router when connecting power pc g4 via ethernet

    Issue with 2wire dsl router when connecting power pc g4 via ethernet. The 2wire will keep resetting. When I connect my macbook pro via ethernet to the 2wire all is ok, but as soon as i connect the power pc. . . .reset. I have emailed 2wire support. They recommended using a different patch cable. Tried that.. .. anyone else having this issue???? Any help would be appreciated. . .

    Search the discussions for issues with 2wire dsl routers. This has come up before in a discussion I've been involved with, but probably not to do with the MDD. I do remember it being a design issue with the router, something that was done to it before dispatch.
    Let us know if you can't find it and we'll have a look.
    If you afford it, bin the 2wire and go buy something decent like a Netgear.

  • [solved] Issue with conky and Kde 4

    I have a small issue with conky and KDE 4.2. I start conky with a script which I stored under ~/.kde/Autostart. The script is simple and looks like this..
    conky -c ~/.conkyrc_kde4
    This works fine. But when I restart the first KDE and check with ps, I have 2 instances of conky running. The instances keep on growing with the number of restarts.
    I think kde tries to restart all the apps which were running when the session was terminated. Is there a way to change this behavior in general or all the programs or for only a specific program like conky ?
    Last edited by rangalo (2009-07-28 19:02:17)

    I did
    Systemsettings > Advanced > Session Manager > Start with an empty session
    and put everything you want in Autostart

  • ADF Faces - issue with Portal and af table

    I wonder if anybody could help me with a problem we are experiencing with running our ADF Faces app inside a portal (NOT Oracle Portal). We are using the af table tag with the rows attribute set as follows:
    <af:table emptyText="No items found"
    rows="10" banding="row"
    bandingInterval="1"
    binding="#{backing_ModuleSearchReg.table1}"
    id="table1"
    var="row">
    What this does is if we have more than 10 rows to display it will display
    a table header that has a label 'Previous 1-10 of nnn' Next 10. However, when you click on 'Next 10' it produces a Javascript error.
    When we run the app outside of the portal we do not get this problem.
    I believe this is related to known issues with JSF and Javascript inside a 'framed' web page. But if anybody help me with this or point me to a resource that can help it would be very much appreciated.
    Many Thanks in advance.
    Chris

    Hi,
    I remember a similar issue with inner frames that should be fixed in JDeveloper 10.1.3.3. The problem was that the ADF Faces JavaScript did not get the correct document root.
    Frank

  • Issue with wallpapers and screens

    Hi,
    I believe I have found an issue with the wallpapers configuration when switching from a 2 monitor configuration to a 1 external monitor configuration.
    The following procedure reproduces this issue:
    - If you don't already have create a second virtual screen.
    - Connect your MBP to an external monitor with a different resolution (in my case a 1080p Samsung monitor). Configure the desktop as extended.
    - On virtual screen 1 change the desktop wallpapers for the external monitor and the built-in monitor. They should be different.
    - Now close the build-in monitor so that the external monitor becomes the primary and the only one active.
    - Now swipe left with the 3 fingers to change to virtual screen 2.
    - The result is the wallpaper for the built-in monitor will appear on top of the wallpaper for the external monitor with the top left corner on the top left corner of the monitor screen but it will be displayed with the resolution of the built-in monitor, so one will be on top of the other like on the attached image.
    Below you can see virtual screen 1 and virtual screen 2 screenshots:
    This looks like a bug. Are any of you able to reproduce this?
    I have an early 2011 MBP:
    2,3 Ghz Intel Core i5
    4 GB 1333 MHz DDR3
    Intel HD Graphics 3000 384 MB
    Mac OS X Lion 10.7.2 (11C74)
    Best Regards,
    Sergio

    hi
    what i believe is the problem with your date profile
    to make the time as user time zone ,you need to make following settings
    Customer Relationship Management--->Basic Functions--->Date Management---->Define Date Profile
    Here for a Date Profile, u need to create the reference object adn then assign this object to your date type
    the date profile works in following way ,first we have to create our date type and assign the date rule to it and then assign this date type to the date profile
    so in similar way u need to first do changes in the refernce object ,which will be user user time zone in time
    and then assign it to the date profile
    Also after this just check inside the T code ZTAC
    hope it will end ur probs
    best regards
    ashish

  • I downloaded the 09 version without deleting the 0, and now I am having some problems : when I open a document, it opens with 09, and then when I try to re-open it with 08 it is not possible !

    I downloaded the 09 version without deleting the 08 (didn't know), and now I am having some problems : when I open a document, it opens with 09, and then when I try to re-open it with 08 it is not possible ! I have a message saying tha "the fichier index xml is absent" (my computer is in French. I want to work with pages 08 until I get familiar with the 09 version. What shall I do ? What does this happen?

    Once you open the files in the new version you can't open them in the old version. Pick one version to use (have to be 9 now as you already have converted files)

  • Uk date format issue with ASP and Access Database

    I have an Asp form which updates records in an Access
    database. Problem is
    that the date format in the database record is dd/mm/yyyy
    (UK), when
    the record is displayed on the form it is mm/dd/yyyy(US)
    which after I
    update the record in the database the date has changed to the
    new format.
    I have tried everything I can to change the format but to no
    avail...anyone any ideas how I can resolve this issue?
    Thanks
    Steve

    stevo.s wrote:
    > Hi
    >
    > I have tried changing the format on the date field on
    the server behaviours
    > panelto ddmmyyy. Also have tried to set the form field
    format to ddmmyy. I have
    > also tried to use a function I got from a posting
    somehwere on the net to no
    > avail. <%function ddmmyyyy(varDate)
    > ddmmyyyy = Day(DateValue(varDate)) & "/" &
    Month(DateValue(varDate))
    > & "/" & Year(DateValue(varDate))
    > end function
    >
    > I believe that this is a recognised issue with
    Dreamweaver and Access but
    > can't seem to grasp the work around! Problem being I am
    teaching myself through
    > books and internet articles and can be weeks at a time
    without being able to
    > look at the issue..each time I come back to it it is
    like starting all over
    > again! I was hoping that somewhere out there there is a
    simple solution the
    > issue perhaps a date picker with the built in
    functionality to address the
    > issue...I am keen to understand how to deal with the
    issue rather than just
    > change my database date field to fudge the problem as I
    am in the UK and when I
    > eventually start to use the application I would like
    there to be some
    > consistency with dates and that users are familiar with
    the format.
    >
    > Any help gratefully received!
    Its not Dreamweaver, or Access, its your servers locale, its
    set to US
    format, not the UK.
    On your page at the top use:
    <% Session.LCID = 2057 %>
    This will force the page into using UK formatted dates. Use
    it on any
    page that needs to format the page correctly.
    Dooza
    Posting Guidelines
    http://www.adobe.com/support/forums/guidelines.html
    How To Ask Smart Questions
    http://www.catb.org/esr/faqs/smart-questions.html

  • Issue with java_g and -debug

    Is there an issue with the -debug option when running Weblogic 4.51 with
    the java_g command.
    Each time we include the -debug option we experience
    weblogic.common.LicenseCorruptException (s)
    The same error is experienced using java 1.1.7 on NT, Solaris(x86)2.7
    and Solaris (Sparc)2.7
    We are very keen to find out if there is a way of resolving this to
    allow us to do remote debugging.
    regards
    Duncan Alexander

    For some reason, using the custom classloaders in WLS causes unpredictable VM
    behavior in those VMs. For instance, you point out the LicenseCorruptError which
    occurs due to a io read error which doesn't occur when the same environment is
    run in non remote mode.
    There are some things you can do.
    First of all, use 1.2.2 instead of 1.1.7. That VM appears more stable.
    If you have to use 1.1.7 then:
    On NT, make sure you've updated to the 1.1.7_005.
    On Solaris 2.7, run the server in static mode. (You may also try 1.1.7_008, I
    haven't had a chance to check that version yet.)
    I don't know about Solaris x86.
    The VM problem occurs when using custom classloaders so run the server in static
    mode. You won't be able to hot deploy ejbs, but you will be able to remotely
    debug.
    Debuggers don't work well with custom classloaders anyway, especially on 1.1.7.
    Gets a little better on 1.2.2 but there's still holes in the JDI in this area.
    To run in static mode don't use weblogic.class.path, everything goes on the
    classpath. Make sure that /weblogic/classes/boot appears before
    /weblogic/classes.
    Also add -Dweblogic.system.disableWeblogicClassPath=true=true if you're using
    5.1.0.
    Dana Jeffries
    BEA Systems
    Duncan Alexander wrote:
    >
    Is there an issue with the -debug option when running Weblogic 4.51 with
    the java_g command.
    Each time we include the -debug option we experience
    weblogic.common.LicenseCorruptException (s)
    The same error is experienced using java 1.1.7 on NT, Solaris(x86)2.7
    and Solaris (Sparc)2.7
    We are very keen to find out if there is a way of resolving this to
    allow us to do remote debugging.
    regards
    Duncan Alexander

  • Issue with java_g and -debug (Response would be appreciated this time).

    Is there an issue with the -debug option when running Weblogic 4.51 with
    the java_g command.
    Each time we include the -debug option we experience
    weblogic.common.LicenseCorruptException (s)
    The same error is experienced using java 1.1.7 on NT, Solaris(x86)2.7
    and Solaris (Sparc)2.7
    We are very keen to find out if there is a way of resolving this to
    allow us to do remote debugging.
    regards
    Duncan Alexander

    For some reason, using the custom classloaders in WLS causes unpredictable VM
    behavior in those VMs. For instance, you point out the LicenseCorruptError which
    occurs due to a io read error which doesn't occur when the same environment is
    run in non remote mode.
    There are some things you can do.
    First of all, use 1.2.2 instead of 1.1.7. That VM appears more stable.
    If you have to use 1.1.7 then:
    On NT, make sure you've updated to the 1.1.7_005.
    On Solaris 2.7, run the server in static mode. (You may also try 1.1.7_008, I
    haven't had a chance to check that version yet.)
    I don't know about Solaris x86.
    The VM problem occurs when using custom classloaders so run the server in static
    mode. You won't be able to hot deploy ejbs, but you will be able to remotely
    debug.
    Debuggers don't work well with custom classloaders anyway, especially on 1.1.7.
    Gets a little better on 1.2.2 but there's still holes in the JDI in this area.
    To run in static mode don't use weblogic.class.path, everything goes on the
    classpath. Make sure that /weblogic/classes/boot appears before
    /weblogic/classes.
    Also add -Dweblogic.system.disableWeblogicClassPath=true=true if you're using
    5.1.0.
    Dana Jeffries
    BEA Systems
    Duncan Alexander wrote:
    >
    Is there an issue with the -debug option when running Weblogic 4.51 with
    the java_g command.
    Each time we include the -debug option we experience
    weblogic.common.LicenseCorruptException (s)
    The same error is experienced using java 1.1.7 on NT, Solaris(x86)2.7
    and Solaris (Sparc)2.7
    We are very keen to find out if there is a way of resolving this to
    allow us to do remote debugging.
    regards
    Duncan Alexander

  • Known compatibility issues with 2008 and 2008 R2

    For some reason i am not able to make remote connections from VS 2013 to my current installation of SQL server 2008 so i thought to uninstall it and install another edition i got from MSDN but i the uninstall process keeps failing saying theres a known
    compatibility issues with 2008 and 2008 R2. it also gave me the option to seek solution online but when i click on it it is unable to get a solution online and i am never able to uninstall it. please help me here. i need to get SQL server up and running. thanks

    Hi FLORENCEOKOSUN,
    According to your description, you encounter a compatibility issue when uninstalling SQL Server 2008. For further analysis, please help to post the full error message and
     SQL Server summary log. By default, the log can be found in: C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log.
    There is also a KB article about known issues of installing SQL Server 2008 on Windows Server 2008 R2 for your reference.
    https://support.microsoft.com/en-us/kb/955725 
    Thanks,
    Lydia Zhang
    Lydia Zhang
    TechNet Community Support

Maybe you are looking for

  • Airport express loses signal but software says it's OK, and light is green?!

    My AirPort express wireless 7.6.4 has just stopped working although the light is green and the Airport Utility software in the computer (10.9.5) says the connection is "excellent". I have it connected to a BOSE speaker which works (I tested it with a

  • I cannot play my video in the ipod

    my ipod supports videos, brand new, i downloaded a video from internet and a software to convert video to be compatible with tha i pod but it says, it does it , but when i try to put in my ipod, it would not take it because it says this cannot be pla

  • Need some assistance to my new N97

    Hello, I just got my new Nokia N97. Yesterday i used the battery blank, and it has been in the charger for 12 hours, but when the phone started i noticed something weird. I just wanna know if it is normal, or my phone displays an error. At the bottom

  • Airport Express and ISP?

    Hello all, I posted this over on the Safari forum, maybe this is a better place. I am having all sorts of problems with Safari and have a question about the internet. Currently, I have Earthlink which is driving me crazy with dropped connections with

  • Media offline, importer reports generic error

    I've been working on a project for a while with CS5.5. The project file and all media files are on an external harddisk. Nothing has been renamed, changed or removed. Tried opening the project today, after appr. 3 weeks without working on it. The dia