Is there any case sensitive difference into oracle 10.2.0.3 and 1.0.2.0.4

Hi,
I am getting the below out for same query on differenent version
server 10.2.0.3
select * from emp where ename like '%m%';
ouput : (Including all 'm' character small & capital letters)
1. Smith
2. Mak
server 10.2.0.4
select * from emp where ename like '%m%';
ouput : (Include Only small character)
1. Smith
Is there any case sensitive difference, Please help.
Thanks...

I've got different results:
9.2
Connected to:
Oracle9i Enterprise Edition Release 9.2.0.8.0 - Production
With the Partitioning, Oracle Label Security, OLAP and Oracle Data Mining options
JServer Release 9.2.0.8.0 - Production
SQL> create table t (name varchar2(10);
create table t (name varchar2(10)
ERROR at line 1:
ORA-00907: missing right parenthesis
SQL> create table t (name varchar2(10));
Table created.
SQL> insert into t values('Mark');
1 row created.
SQL> insert into t values('MaRk');
1 row created.
SQL> select * from t where name like 'Mar%';
NAME
Mark
SQL> 10.2.2
SQL*Plus: Release 10.2.0.2.0 - Production on Mon Mar 7 12:42:37 2011
Copyright (c) 1982, 2005, Oracle.  All Rights Reserved.
Connected to:
Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - 64bit Production
With the Partitioning, OLAP and Data Mining options
SQL> create table t (name varchar2(10));
Table created.
SQL> insert into t values('Mark');
1 row created.
SQL> insert into t values('MaRk');
1 row created.
SQL> select * from t where name like 'Mar%';
NAME
Mark
SQL> 10.2.3
SQL*Plus: Release 10.2.0.3.0 - Production on Mon Mar 7 12:45:11 2011
Copyright (c) 1982, 2006, Oracle.  All Rights Reserved.
Connected to:
Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - 64bit Production
With the Partitioning, Real Application Clusters, OLAP and Data Mining options
SQL> create table t (name varchar2(10)); 
Table created.
SQL> insert into t values('Mark');
1 row created.
SQL> insert into t values('MaRk');
1 row created.
SQL> select * from t where name like 'Mar%';
NAME
Mark
SQL> 10.2.4
SQL*Plus: Release 10.2.0.4.0 - Production on Mon Mar 7 12:41:10 2011
Copyright (c) 1982, 2007, Oracle.  All Rights Reserved.
Connected to:
Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit Production
With the Partitioning, Oracle Label Security, OLAP, Data Mining
and Real Application Testing options
SQL> create table t (name varchar2(10));
Table created.
SQL> insert into t values('Mark');
1 row created.
SQL> insert into t values('MaRk');
1 row created.
SQL> select * from t where name like 'Mar%';
NAME
Mark
SQL>

Similar Messages

  • Help|| Is there any tool available to register Oracle datasource objects into JNDI

    Is there any tool available to register Oracle datasource objects into JNDI.If so please tell me where can I download.
    Thanks
    shiva

    I'd like to know the answer to this also.
    I just started reading about JNDI 2 days ago and have never used it. I'd like to use DataSource in my application with JNDI. If I can use the database as my JNDI "server", then I'd prefer to do that instead of having a seperate external server.

  • Is there any .obr files  related to Oracle SOA Suite 10.1.3.1.0 ? if yes then i want to open that .obr files  in Oracle SOA Suite 11g environment

    is there any .obr files  related to Oracle SOA Suite 10.1.3.1.0 ? if yes then i want to open that .obr files  in Oracle SOA Suite 11g environment . is it related to Oracle Business Rules ?

    Did you find a solution to this issue? We are having a similar issue trying to deploy a Paypal IPN on OAS 10.1.2.3. The IPN messages coming from Paypal appear to be attempting an SSLv2 handshake. In our case SSLv2 is disabled due to our security requirements so the connection is killed by our App Server. We have found that manually sending the IPN messages works correctly.

  • Is there any way to hook into the SQL report pagination process?

    I have a SQL report (based on EMP) with a radiogroup row selector.
    The scenario 1 and 2 are in place
    1) When the employee row radio group is clicked the P900007_JOB the text item is populated with the JOB for the employee.
    2) When the page is initially displayed or submitted via the button the first row’s radio group is programmatically clicked and therefore populates the additional job information in P900007_JOB
    Info (radio Group) Employee No Name
    (+) 7369 SMITH
    () 7499 ALLEN
    () 7521 WARD
    P900007_JOB CLERK
    1-3 Next>
    Once the report has been displayed and the next or previous pagination is used then none of the radio groups will be selected and the data in the P900007_JOB text item will still display the job of the last selected employee row.
    What I require is on pagination some sort of mechanism to either
    a) Call the page_init() that should then set the first row as selected and populate the text item via the programmatic click. (preferred option)
    b) OR blank out the additional text item P900007_JOB.
    Is there any way to hook into the pagination process?
    I have a work around – Set the ‘Enable Partial Page Refresh’ to ‘No’ but this means a full refresh every time the pagination is used.
    Details of my page
    Report Region (Based on EMP table) – radio group as a row selector
    select     APEX_ITEM.RADIOGROUP(1,EMPNO,'X21',null) CHECKRG, EMPNO,
         ENAME,
         JOB
    from     EMP
    Report Attributes -
    Report template :- P900007_ROWTEMPLATE (custom template see later)
    Report Attributes Substitution :- id="emp_report" (used in page_init see later)
    Enable Partial Page Refresh :- Yes
    Columns – All columns are selected as show but job is left out of the template below.
    P900007_JOB - Text item in report region (disabled does not save state). Populated with the employees job when the radio group is clicked.
    Control region :- HTML region that just holds a button <GO> just to submit the page and redirect back to the same page.
    P900007_ROWTEMPLATE (named column row template)
    Row template 1
    <tr style="cursor: hand; cursor: pointer;" onmouseover="row_mouse_over(this, 1)" onmouseout="row_mouse_out(this, 1)" #HIGHLIGHT_ROW# ">
    <td class="t15data" onclick="selectRow('#JOB#');">#CHECKRG# </td>
    <td class="t15data">#EMPNO# </td>
    <td class="t15data">#ENAME# </td>
    </tr>
    Before rows
    <table class="t15standard" summary="" #REPORT_ATTRIBUTES# id="report_#REGION_STATIC_ID#" >
    <th class="t15header" #ALIGNMENT# >Info</th>
    <th class="t15header" #ALIGNMENT# >Employee Number</th>
    <th class="t15header" #ALIGNMENT# >Name</th>
    After Rows
    <tr>
    <td colspan="99" class="t15afterrows">
    <span class="left">#EXTERNAL_LINK##CSV_LINK#</span>
    <table style="float:right;text-align:right;" summary="pagination">
    #PAGINATION#</table>
    </td>
    </tr>
    </table>
    *Javascript in page Header*
    <script src="#WORKSPACE_IMAGES#apex_show_hide_region.js" type="text/javascript"></script>
    <script language="JavaScript" type="text/javascript">
    <!--
    function selectRow(pJob)
    /* console.log('pete got here!'+pJob)*/
    $x('P900007_JOB').value =pJob;
    /* Start Page init*/
    function *page_init*()
    /* Used to set radio groups on reports */
    /*console.log('START pete got here!');*/
    var is_checked = false;
    var l_check = $x_FormItems($x('emp_report'), 'radio');
    /*Loop and set flag if checked*/
    for(var i=0,len=l_check.length;i<len;i++)
    if(l_check.checked){
    is_checked = true;
    /*end loop*/
    /*If none checked force a click*/
    if(!is_checked){
    /*no longer need as doing click below*/
    l_check[0].checked=true;
    /*Force a click on the first radio group - extra details should then be
    populated*/
    var l_click = l_check[0].click();
    /* console.log('END pete got here!');*/
    /*END page_init*/
    // -->
    </script>
    *Application shared component.* – This fires a DB packaged procedure when the page is loaded.
    P330_PART_NO_HIST
    Process Point On load after Body region
    Process Text show_hide_memory.part_no_history_details();
    *Packaged Procedure* – This kicks off the page_init javascript in the header (earlier) to click on the radio group in the first row.
    PROCEDURE part_no_history_details AS
    BEGIN
    htp.prn('<script type="text/javascript">' || CHR(10));
    htp.prn('<!--' || CHR(10));
    htp.prn('page_init();'|| CHR(10));
    htp.prn('//-->' || CHR(10));
    htp.prn('</script>' || CHR(10));
    END part_no_history_details;
    Thanks Pete
    Edited by: Pete @ LSC on 26-Jan-2010 06:56

    Anybody any ideas? Should I be looking down the route of using my own pagination buttons and adding my code to this?
    There seems to be a routine $a_report that I can use for the pagination but I am finding it difficult to get the current first and last record values that I would need to pass. I've seen references to below in the form but when I'm using partial refresh they do not seem to change.
    wwv_flow.g_flow_current_min_row
    wwv_flow.g_flow_current_max_rows
    wwv_flow.g_flow_current_rows_fetched
    wwv_flow.g_request
    Thanks Pete

  • In Consignment is there any case of  Purchase order or purchase requisition

    Hi All,
    Can u tell me In Consignment is there any case of  Purchase order or purchase requisition ? Also in fill up is there any PGI ???  How to keep special stock in Fill up ?
    My id : [email protected]
    Appreciate your information and will definitely reward points.
    Regards
    Rajarshi

    Hi
    Here's a General thumb rule,
    Consignment <b>fill up</b>
    -Sales order>delivery[ PGI]->no billing
    Item Cat = KBN, Schd ln = E1
    *In this step, you are not invoicing the customer. document flow is sales order -
    delivery item category. It will not be relevent for billing and pricing because you are not charging money for these goods in this step.
    In schedule line category, you will set movement type 631 & set for availability check and TOR.
    Consignment <b>issue</b>
    -Sales order>delivery[ PGI]->billing
    Item Cat = KEN, Schd ln = C1
    Consignment <b>pick up</b>
    -Sales order>delivery[PGR]->no billing
    Consignment <b>RETURNS</b>
    -Sales order>delivery[PGR]->Credit Memo
    Item cat = KAN ,schd. line F1
    Hope this helps

  • Selecting the data without considering any case sensitives

    Moderator message: please do not post the same question more than once
    Hi,
    I need to select the data without considering any case sensitives.
    Eg: If i enter ***JoHn****, then system need to select all currencies or amount depending on the this name.
    Please assist, many thanks.
    Sameer.
    Edited by: Matt on Nov 20, 2008 1:16 PM

    Hi,
    use cp or like in the select query
    and more over any thing given in single quotes must be in upper case to my knowledge in ABAP.
    any how try this
    select * from dbtab where name like '%JoHn%'.
    if doesnt work translate it to upper case.
    hope this this would solve.
    regards
    Ramchander Rao.K

  • Is there any way to break into an ipod after it has been disabled

    i need help is there any way to break into an ipod touch after it has been disabled

    Maybe the CIA could get data from an disabled iPod.
    It is easy for anybody to erase the iPod and regain use of the iPod for their own use.  Just place in recovery mode and retore.

  • Is there anyway I can use my ipod shuffle while swimming? Is there any case/earphones that makes it waterproof?

    Is there anyway I can use my ipod shuffle while swimming? Is there any case/earphones that makes it waterproof?

    Click here.
    Regards.

  • Is there anyway I can use my ipod touch while swimming? Is there any case/earphones that makes it waterproof?

    Is there anyway I can use my ipod touch while swimming? Is there any case/earphones that makes it waterproof?

    Click here.
    Regards.

  • Is there any patch or update for Oracle BPM 10.3.2

    Is there any patch or update for
    Oracle (R) BPM Studio
    Version: 10.3.2
    Build: #100141
    to fix some problems ?
    tks

    Current build is #100406 and it fixes a lot of bugs since your build.
    +(Patch 9870519: Oracle BPM 10.3.2 HotFix build 100406 - Studio)+
    Use Oracle Support to download patch.
    Rgds,
    W.
    Edited by: Waldemar Thiel on 2010-07-14 15:17

  • Hi There, Is there any Viewlet or PPT for Oracle Implemantation on metalink

    Hi There,
    Is there any Viewlet or PPT for Oracle Implemantation on metalink.
    If it is there Please Give me the link.
    Bachan.

    Even if you find such a document, I believe it will not be enough to cover the implementation steps.
    The best source of information is Oracle Documentation in addition to Metalink course of course:
    http://download-uk.oracle.com/docs/cd/B25516_14/current/html/docset.html

  • Is there any way to sync 20 iPads to the same account and keep their folders?

    Is there any way to sync 20 iPads to the same account and keep their folders?

    We have 2200 student iPads on our school campus. When starting from scratch they all receive one identical image and then are renamed according to their property tag (manually ). Students are then checked out their device for the school year and often move their apps around into folders. I often have some come back in to be synced, updated, etc. and I do mid-year updates to apps. As long as their names are unique I have no issues with them retaining folders when they are resented late. So basically as long as you don't mind doing the set up to each one of the 20 the first time you sync them, you can update them whenever you'd like, adding and updating apps, and you can retain folders.
    And of course there are all sorts of other options with Configurator and other MDMs. 

  • Is there any way to have a COMPLETE list of all samples and loops ( Logic 8

    I'm sure it's been posted previously, but anyway, I'm looking to buy new Apple Loops libraries and I have faced the fact , that many of the sounds and loops produced by third parties manufacturers have been already included in Logic installation discs.
    I have a list of Apple Loops DVD's that have been included with Logic somewhere, the problem is, Apple didn't post ( I believe) the credits of all 3rd party manufacturers that have produced these libraries that are included with Logic or Garage band. Is there any way to have a COMPLETE list of all samples and loops that are included with Apple DAW's so I wouldn't duplicate anything ? I'm pretty much positive that Apple had other companies to sound design and sample all libraries for them, so is there also a way to have a list of those manufacturers? Again, the objection is to start upgrading the sound library without any possible duplication?
    Thanks in advance!

    Chris, I certainly don't mind additional questions and postings.
    I believe there are many issues with Apple Loops and Logic that need to be resolved and people need to be aware of that. Unfortunately, in opposite to the old "german" version of Logic , there's no lifetime tech support, you can't even call and ask the question after 60 days , which isn't right for a professional software of this level, especially considering the fact that many things still remain vague in Logic even for developers and tech support people!( believe me, I've called and asked!)
    Issues like that need to be resolved over the phone with the company, period!
    One thing I also learned over the years as a Mac OSX user, if something doesn't work, don't mess with it. Delete your drive and re-install everything. This is very frustrating , I know, but unfortunately this is the only way to deal with OSX issues, if you got a problem with your system, don't try to fix it. It's never gonna be the same again. I know , it's off the topic a little bit, but if your content is missing from the system files, before installing your new Logic, back up your important files, wipe up your drive and clean install Mac OSX , run updates and then install the Logic. Most likely , everything will be in it's place, at least 90% or more. I gave up trying to make two system in my house to be compatible 100% , but it's OK if they're 90% or more identical. I spent enormous amount of time trying to find out what's missing and where, I visited most of the forums and there's no clean answer.
    Message was edited by: Moderator

  • I just bought a new Macbook Pro and loaded all my info from My old Macbook...now i can't remember for the life of me my Admin Password 9which i created 3 years ago)...is there ANY WAY to bypass this on my new Macbook Pro and begin again...?

    i just bought a new Macbook Pro and loaded all my info from My old Macbook...now i can't remember for the life of me my Admin Password (which i created 3 years ago)...is there ANY WAY to bypass this on my new Macbook Pro and begin again...?

    I assume that you don't have the installation discs, so:
    1. Reboot
    2. Hold command + s key down after you hear the chime.
    3. When you get a text prompt enter in these terminal commands to create a brand new admin account (hitting return after each line):
    (Type these commands very carefully)
    mount -uw /
    rm /var/db/.AppleSetupDone
    shutdown -h now
    4. You will go through the setup process again, create a new admin account, login to it and then change your existing account password or whatever else you need to do. You can delete the account you made in this process, or not.

  • Differences beetwen Oracle AS 10g Release 2 and Release 3

    Hi
    Could you give me links or just write about differences between Oracle AS 10g Release 2 and Release 3. I have books to Oracle 10g AS Release 2, and I don't know, what information are incorrect with reference to Release 3. I've found this link http://download.oracle.com/docs/cd/B32110_01/core.1013/b32196/whatsnew.htm#sthref7 , but Oracle 10g AS Release 3 for example does not require a metadata repository. So where can I find all diferences?
    Thanks awfully for help.
    Regards

    Application Server 10R2 (10.1.2.0.2) includes products such as OID, Forms & Reports, Discoverer, Oracle Portal etc. These are not included in Application Server 10R3, which was a JEE only install geared towards JEE solutions.
    Both versions will be desupported in December 2011 so I would spend to much time on these versions. Go with Fusion Middleware 11g : http://download.oracle.com/docs/cd/E21764_01/index.htm
    Thanks,
    EJ

Maybe you are looking for