Oracle is Case Sensitive, can we change this.?

Hi all,
As Oracle Data is a Case sensitive.
but i want to know that,
is there any way to change this ?
that is , the data should not be a case sensitive.
select * from emp where ename = 'smith';
Even the SMITH is in caps. it should return that records for the above query.
Thanks.
GowriShankar.N

As a one off for queries you can use the UPPER and LOWER functions, ie;
select * from emp where LOWER(ename) = 'smith';

Similar Messages

  • Problem in XI - JDBC (oracle) Scenario, case sensitive column name

    I had a XI -> JDBC scenario, connecting to a SQL server, where the query was being generated using Message Mapping (XML SQL Format),
    now the database has been migrated from SQL server to Oracle, and we are using the same XI scenario, but now the problem is, the query generated using message mapping doesnt work because it seems the query (UPDATE statement) requires the field name as having All capital letters, i mean the Column name in query to Oracle has become case sensitive,
    can u help me out

    Hi
    Oracle doesnt have restriction that Query has to be in uppercase for any column. But it is good go use Upper case for the Query.
    Use oracle editor to do the query if it is working fine and then use XML SQL in XI
    Check this thread SAP has given some
    http://help.sap.com/saphelp_nw04s/helpdata/en/43/68a541a1166153e10000000a1553f6/frameset.htm
    Check FAQ on the JDBC adapter, see SAP Note 831162
    always useful Note
    Thanks
    Gaurav

  • Oracle Passwords CASE Sensitive

    My Oracle 9i DB is not CASE sensitive on my passwords. I can not find any info on what parameter I can change to make it case sensitive.
    All documents I find on net tell me that Oracle is CASE sensitive by default why are my passwords not?
    Thanks in advance for any and all help,
    David Miller

    The topic they are typically were talking about being case sensitive is data insdie oracle db...
    Also saw discussiona on use of " " (double quotes) on the ALTER USER command and password to make it specific to case.. Not sure where that came from at all...
    Miller

  • I bought a new laptop (Macbook) but the current installation files I have of Photoshop Elements 12 is for Windows, how can I change this? Or do I have to purchase an all new photoshopset?

    Can anyone help me with this question?
    I bought a new laptop (Macbook) but the current installation files I have of Photoshop Elements 12 is for Windows, how can I change this? Or do I have to purchase an all new photoshopset? I hope not because that would be really expensive.

    Really? That's extremely unusual. Have you looked at all the discs? In any case you can download the mac version here:
    Download Photoshop Elements products | 12, 11, 10

  • RAW JPEG PROBLEM  I'm new to Aperture and neglected to mark RAW JPEG pairs when I imported (from iPhoto).  Now I have two images for each photo.  Help!!  How can I change this?

    I’m new to Aperture and neglected to mark RAW+JPEG pairs when I imported (from iPhoto).  Now I have two images for each photo.  Help!!  How can I change this?

    How did you import from iPhoto? If you saw the Import panel with raw -jpeg pairs, then you probably did not import your iPhoto library as library, but as files, and then you will see plenty of duplicates - previews, thumbnails, originls, edited versions. If that should be the case, it would be better to delete the import from iPhoto and to import your iPhoto library again, but this time using "File > Import > Library".
    Only that would require compatible versions of iPhoto and Aperture.  What are your Aperture and iPhoto version numbers?

  • I am using the dynamic signal analyzer.vi but this vi has the output as single precision. How can I change this to DBL precision?

    I am using the dynamic signal analyzer.vi but this vi has the output as single precision. How can I change this to DBL precision? If I change the representation from single to double in the AI buffer read.vi labview returns ilegal operation and crash. I have labview 5.1 on windows 95 and one AT-MIO16XE50 DAQ board.
    Thanks in advance
    Ricardo.

    Probably by changing the data type that lvdaq.dll expects to write to is causing the crash. I can't test this since I have only 6.1 installed now. In any case, since the daq card is only 16 bits, the single precision is probably adequate for AI Buffer Read. If you do need the greater precision later on, you should be able to change representation in any one of the upper level VIs.

  • Trying to erase settings from my old iphone but when I have to enter my itunes ID password the old email address is displayed.  How can I change this to my existing itunes account so I can reset this phone?  Thank you.

    Trying to erase settings from my old iphone but when I have to enter my itunes ID password the old email address is displayed.  How can I change this to my existing itunes account so I can reset this phone?  Thanks in advance.

    I know it sounds weird, and that is the reason I posted my question.  Because my case is not like all the ones I've found online and it's confusing.  I added a screen capture of my itunes with my old iphone (the one that houses my playlists) connected to it.
    My playlists "ARE"  in my iphone 4s.  They are still there even though they do not show up when I plug in to itunes in my computer. 
    When connecting my phone to itunes on my macbook, the playlists do not appear anywhere in itunes.  I have found my connected iphone icon, I have clicked on the arrow next to it and it does pull up the standard lists that come with the iphone/itunes:  Music, Movies, TV shows, books.  That's it! below that is "Genius" and below "Geniuns" is "PLAYLISTS"  but the only playlist of mine that shows there is one that I created several years back titled "90's music" and that one I created it on my computer, not my phone.  Under "90's music" there are also other standard playlists that itunes automatically adds.
    Does anyone else have this issue or know how to get around this.  I am starting to think that I am going to have to recreate these lists on my computer

  • When adding a folder in the finder window it makes me Authenticate.. how can i change this?

    when adding a folder in the finder window it makes me Authenticate.. how can i change this?
    i am logged into the computer as the root user...
    i know when i upgraded to 10.6 this happened but i cannot remember what i did to fix this
    and it is doint it in 10.7
    message says....
    finder wants to make changes. type your password to allow this...
    MBP 2.66 C2D

    If you need a GUI to change the owner of a file or files, try BatChMod
    Download BatChmod 1.51
    Works on 10.5 and 10.6
    http://www.macchampion.com/arbysoft/BatchMod/Download.html
    Here are similar teminal commands:
    Macintosh-HD -> Applications -> Utilities -> Terminal
    #Your current user is:
    echo $USER
    #Let's assume myuser
    #Or, you can use the id command.
    id
    #Remember, this will be the correct userid.  You need to find the bad userid.
    #You need to look on one of your bad files. To find out your UID and GID do:
    cd ~
    ls -ln
    ls -l
    ls -ln filename-of-bad-file
    Now, compare the output and write down what you find.
    You best use the numeric value of the old userid. In this case it is 501.  Before you do a command that will change files,  you should  list all  the files to be changed.   From an administrator  account, enter the following command:
    sudo find -x / -user 501 -exec ls -l {} \;
    # the system will ask for your log on password.  Type it in.  The letters will not appear on the screen.  Then, press the enter key.
    # adding a -x before the / limits the search to the current file system which will be your startup partition.
    # To stop the display press control-c ( hold down the control key then press c )
    mac $ sudo find -x / -user 501 -exec ls -l {} \;
    -rwxr-xr-x   1 na  unknown  0 Oct 23  2001 /Applications/AppleWorks 6/AppleWorks 6.app/AppleWorks 6
    -rwxr-xr-x   1 na  unknown  0 Oct 23  2001 /Applications/AppleWorks 6/AppleWorks 6.app/Contents/MacOS/AppleWorks Essentials
    -rwxr-xr-x   1 na  unknown  0 Oct 23  2001 /Applications/AppleWorks 6/AppleWorks 6.app/Contents/MacOS/Clippings
    -rwxr-xr-x   1 na  unknown  0 Oct 23  2001 /Applications/AppleWorks 6/AppleWorks
    ^C
    This command will change the ownership of a file.
    Any file or folder with a userid of 501 is changed to 1000.  Your numbers will differ.
    sudo find -x / -user 501 -exec chown 1000  {} \;
    #And you need to do this from an administrator id.
    More examples:
    sudo find -x / -user 501 -exec chown 5464 {} \;
    sudo find -x / -group 20 -exec chgrp 211 {} \;
    #combined change of uid & gid
    sudo find -x / -user 501 -exec chown 5464:211 {} \;
    Hope this helps a little.
    Robert

  • When I create a New Folder (on the desktop or in Finder), the system uses the Generic Document Icon instead of the Generic Folder Icon. How can I change this back?

    When I create a New Folder (on the desktop or in Finder), the system uses the Generic Document Icon instead of the Generic Folder Icon. How can I change this back?
    All of a sudden I noticed that most of the folders on my computer were no longer using the folder icon, but the generic document icon. I had to manually change back the icon being used by opening Get Info for each folder and copying and pasting the generic folder icon from some folders that remained unchanged. Now whenever I create a New Folder (right click -> "New Folder"), the icon that shows up is the generic document icon (white page with top right corner turned down). And I have to manually change it so it shows up as a folder in Finder or on my desktop. I don't know why or how this switch happened. All of the folders now on my computer look ok, but I need to change the default so when I create a New Folder it uses the correct icon.
    I have also Forced Relaunch of my Finder and rebooted the system. I downloaded Candybar but am not sure what will fix anything, so I haven't proceeded.
    Anyone know how I can do this? Thanks.

    Anyone?

  • My iPhone 4S appears to be using an old Apple ID.  How can I change this to my current one?

    My iPhone 4S appears to be using an old Apple ID and keeps asking for my sign in.  How can I change this to my current ID -this applied to iCloud only.

    Thanks for the response -
    Unfortunately - I can not use my Old Apple ID at all - Apple/Itunes is not recognizing it at all.  I thought about your last suggestion and the system is not accepting the old ID and password.  I believe this is because the old id (email address) is associated to a service (Verizon) that I no long have.  When I discontinued service with Verizon, their email address that I used as my Old apple ID become invalid.
    I am sure this scenario happens frequently - hopefully Apple can find a better solution in the future.
    Thanks,
        dr

  • I have 2 iphones that share the same apple id but do not want them to share contacts and apps, how can I change this

    I have 2 iphones that share the same apple ID I do not want them to share contacts and apps how can I change this?

    You can use separate AppleIDs for iCloud, iMessage and iTunes - you just need to create unique AppleIDs for the iCloud accounts if syncing contacts that way (you will need an email address that is not already registered as an AppleID though to get another AppleID).
    Apps are a different matter in that purchases are tied to the AppleID used to log in to the store to make the purchase.  So you can create another AppleID for iTunes as well and use different ones on the different phones, but any apps you have already purchased with your existing AppleID are permanently tied to that AppleID.
    Really, unless you are sharing apps, content and such, there is no reason to use the same AppleID on each anyway.  So the simplest solution is to create new AppleID(s) for the second device.  If you need an email address to do that, just get a gmail account (or hotmail, yahoo or any other free email account).

  • 3 iphones in household.All use same apple ID.But all contacts get mixed between phones and facetime calls come in from other contacts.Ho can we change this so our phone information isn't visible to each other?

    3 iphones in household.All use same apple ID.But all contacts get mixed between phones and facetime calls come in from other contacts.How can we change this so our phone information isn't visible to each other?

    Use separate Apple IDs for each family member and use Family Sharing features of those things (if any) that you do want to share. https://www.apple.com/ios/whats-new/family-sharing/

  • My iPhone and iPad are on my moms icloud account and i just got a macbook air and i want all my devices on my own iCloud account - i went to all of my settings and it won't let me change my iCloud account on my phone and iPad. can i change this?

    My iPhone and iPad are on my moms icloud account and i just got a macbook air and i want all my devices on my own iCloud account - i went to all of my settings and it won't let me change my iCloud account on my phone and iPad. can i change this?

    You will have to do more than simply changing settings in your moms account. To set up everything in your own account, go to Settings > iCloud > scroll down and press sign out. From this, check out this link for how to setup iCloud on all of your devices after making a new icloud account on your phone: https://www.apple.com/icloud/setup/
    Before you set that up, you will have to make a new iCould account which you can simply do after you sign out of your mom's account on your devices.
    Hope I can help!

  • When I tap on the to line to add an address sometimes people's names come up that I don't have as contacts.  How can I change this setting?

    When I tap on the to line to add an address sometimes people's names come up that I don't have as contacts.  How can I change this setting?

    The only way that I know currently know of to remove old or incorrect email addresses from the Mail app is to reset the iPad back to factory defaults, which I assume that you don't want to to. You could try leaving feedback for Apple and maybe one day we'll day be able to edit them : http://www.apple.com/feedback/ipad.html#ipad

  • Trying to d/l Kindle ap to new iPad w/retina display.  User ID is pre-populated with incorrect email address. How can I change this to my Apple User ID?

    Trying to d/l Kindle and Amazon aps to new iPad w/Retina Display.  User ID is pre-populated with the incorrect email address for my Apple account.  How can I change this to my correct Apple User ID?

    You should setup as new.
    Settings>General>Reset>Erase all content and settings

Maybe you are looking for