Is this syntax for oracle database?

Does the syntax below indicates that the developer is using oracle database?
PreparedStatement updt = db.prepareStatement("insert into tablename values (?, ?, ?, ?, ?)");
updt.setInt(1, number);
updt.setInt(2, 1);
updt.setString(3, staffName);
updt.setString(4, description);
updt.setDate(5, today);

Oh...
but when I use microsoft access, it didn't seems to work
error is:
SQL data type out of array
the PreparedStatement and it's associate syntax don't work with ODBC?

Similar Messages

  • Current Patch Set for Oracle Database Release 11.2

    Hi
    I am upgrading oracle 10G to 11GR2 in AIX 5.3 Environment with SAP ECC6 , I have just just installled Oracle 11.2.0.1.0 according to the "Database Upgrade Guide -Upgrade to Oracle Database 11g Release 2 (11.2): UNIX". After database software installation , in upgrade manual in section 3.4.4 it says, you need to install current patch set for oracle database 11g R2 and referencing a SAP note 1431799.
    I have just read note 1431799 which says Current Patch Set for Oracle Database Release 11.2 is not generally available for SAP customers until December 2010, also I donu2019t find the note 1522330 as mentioned in 1431799.
    Please let me know how I can get current patch set to apply with Oracle 11.2.0.1.0 (Is it in SAP service market place?)
    I also want to upgrade my installation to oracle 11.2.0.2, please let me know where I get the patch set to upgrade from 11.2.0.1.0 to 11.2.0.2,
    or
    I have to live with 11.2.0.1.0 and apply SAP Bundle Patch ( SBP)

    Abu Al MAmun,
    I understand from your posts that you recently upgraded to 11.2.0.2.
    I am having the same difficulty, of finding the current patch set for 11.2. Could you please let me know how you worked around it?
    Thanks,
    Siri
    Hello Everyone,
    I did read the post on to how you have to install the current patch set for 11.2.
    But honestly, it pretty much flew over my head.
    I am trying to upgrade our SAP AIX 64 bit test system from Oracle 10.2.0.4 to 11.2.0.2.
    And so far I have downloaded all the required sw for the upgrade, except for the current patch set 11.2.
    This is what I have right now:
    1) Oracle 11.2 AIX 64 bit upgrade sw - 51038805_part 1 to 51038805_part 7 and 51039800.
    2) Database Patches -->Oracle 11.2.0.2 -->
    All they have here is
    a. Database RDMBS - SAP_112020_201012_AIX.zip and b. SAP_112020_201101_AIX.zip
    b. OPatch - OPatch_11201_Generic_v3.zip and mopatch-2_1_6.zip
    c. Database Vault - DV - >Generic - p9656644_112020_Generic.zip
    If I am not wrong, the Database RDBMS files are nothing but the SAP Bundle Patches that have to be installed after installing the currrent patch set 11.2.0.2 using MOPatch.
    But I did not find the currrent patch set 11.2.0.2.
    Could someone please explain the process to me in detail? This being my first time , I am finding it a bit hard to catch up with some of the stuff.
    Thank You!
    Siri

  • How to set JDBC Data Sources in Oracle MapViewer for Oracle database 12c Release 1 (12.1.0.1)

    How to set JDBC Data Sources in Oracle MapViewer for Oracle database 12c Release 1 (12.1.0.1)?
    The following is my configuration in the conf\mapViewerConfig.xml:
    <map_data_source name="mvdemo12"
    jdbc_host="127.0.0.1"
    jdbc_sid="orcl12c1"
    jdbc_port="1522"
    jdbc_user="mvdemo"
    jdbc_password="7OVl2rJ+hOYxG5T3vKJQb+hW4NPgy9EN"
    jdbc_mode="thin"
    number_of_mappers="3"
    allow_jdbc_theme_based_foi="true"
    editable="true"/>
    <!--  ****  -->
    But it does not work.
    After use "sqlplus mvdemo/[email protected]:1522/pdborcl", it connected to the Oracle database 12c.
    Does anyone know it?
    Thanks,

    For 11.1.1.7.1 use the syntax for jdbc_sid, i.e.
    //mypdb1.foo.com as described in the README,
    - MapViewer native (non-container) data sources can now use database service name in place of SID. To supply a db service name, you will use the same jdbc_sid attribute, but specify the service name with double slashes in front, such as follows:
      <map_data_source name="myds"
        jdbc_host="foo.com"
        jdbc_sid="//mypdb1.foo.com"
        jdbc_port="1522"
      />
    For 11.1.1.7.0 use a container_ds instead.
    i.e. instead of using
    <map_data_source name="my_12c_test"
                       jdbc_host="mydbinstance"
                       jdbc_sid="pdborcl12c"
                       jdbc_port="1522"
                       jdbc_user="mytestuser"
                       jdbc_password="m2E7T48U3LfRjKwR0YFETQcjNb4gCMLG8/X0KWjO00Q="
                       jdbc_mode="thin"
                       number_of_mappers="6"
                       allow_jdbc_theme_based_foi="false"
                       editable="false"
       />
    use
      <map_data_source name="my_12c_test"
                       container_ds="jdbc/db12c"
                       number_of_mappers="6"
                       allow_jdbc_theme_based_foi="false"
                       editable="false"
       />
    In my case the Glassfish 3.1.2.2 JDBC connection pool definition was
    Property
    url  jdbc:oracle:thin:@mydbinstance:1522/pdborcl12c.rest_of.service.name
    Uncheck the Wrap JDBC Objects option in Advanced panel, i.e. the Edit JDBC Connection Pool Advanced properties page.
    Add a JDBC resource for that newly created pool
    Use that in mapviewerconfig.xml as above

  • Oracle SQL template to create re-usable DDL/DML Scripts for Oracle database

    Hi,
    I have a requirement to put together a Oracle SQL template to create re-usable DDL/DML Scripts for Oracle databases.
    Only the Oracle DBA will be running the scripts so permissions is not an issue.
    The workflow for any DDL is as follows:-
    1) New Table
    a. Check if the table exists from the system/admin views.
    b. If table exists then give message "Table Exists"
    c. If table does not exist then execute DDL code
    2) Add Column
    a. Check if Column exists for a given table from system/admin views
    b. If column exists in the specified table,
    b1. backup table.
    b2. alter table to make changes to the column
    b3. verify data or execute dml script convert from backup to the new change.
    c. If Column does not exist
    c1. backup table
    c2. alter table to add column
    c3. execute dml to populate column with default value.
    The DML scripts are for populating base tables with data required for business operations.
    3) Add new row
    a. check if row exists by comparing old values of each column with new values to be added for the new record.
    b. If exists, give message row exists
    c. If not exists, add new record.
    4) Update existing record (We have createtime columns in these tables so changes can be tracked)
    a. check if row exists using primary key.
    b. If exists,
    b1. deactivate the record using the "active" column of the table
    b2. Add new record with the changes required.
    c. If does not exist, add new record with the changes required.
    Could you please help with some ideas which can get this done accurately?
    I have tried several ways, but I am not able to put together something that fulfills all requirements.
    Thank you,

    First let me address your question. (This is the easy part.)
    1. The existence of tables can be found in DBA_TABLES. Query it and and then use conditional logic and execute immediate to process the DDL.
    2. The existence of table columns is found in DBA_TAB_COLUMNS. Query it and then conditionally execute your DDL. You can copy the "before picture" of the table using that same dba view, or even better, use DBMS_METADATA.
    As for your DML scripts, they should be restartable, reversible, and re-run-able. They should "fail gracefully" on error, be written in such a way that they can run twice in a row without creating duplicate changes.
    3. Adding appropriate constraints can prevent invalid duplicate rows. Also, you can usually add to the where clause so that the DML does only what it needs to do without even relying on the constraint (but the constraint is there as a safeguard). Look up the MERGE statement to learn how to do an UPSERT (update/insert), which will let you conditionally "deactivate" (update) or insert a record. Anything that you cannot do in SQL can be done with simple procedural code.
    Now, to the heart of the matter...
    You think I did not understand your requirements?
    Please be respectful of people's comments. Many of us are professionals with decades of experience working with databases and Oracle technology. We volunteer our valuable time and knowledge here for free. It is extremely common for someone to post what they feel is an easy SQL or PL/SQL question without stating the real goal--the business objective. Experienced people will spot that the "wrong question" has been asked, and then cut to the chase.
    We have some good questions for you. Not questions we need answers from, but questions you need to ask yourself and your team. You need to reexamine this post and deduce what those questions are. But I'll give you some hints: Why do you need to do what you are asking? And will this construct you are asking for even solve the root cause of your problems?
    Then ponder the following quotations about asking the right question:
    Good questions outrank easy answers.
    — Paul Samuelson
    The only interesting answers are those which destroy the questions.
    — Susan Sontag
    The scientific mind does not so much provide the right answers as ask the right questions.
    — Claude Levi-Strauss
    You can tell whether a man is clever by his answers. You can tell whether a man is wise by his questions.
    — Mahfouz Naguib
    One hears only those questions for which one is able to find answers.
    — Friedrich Nietzsche
    Be patient towards all that is unresolved in your heart and try to love the questions themselves.
    — Rainer Maria Rilke
    What people think of as the moment of discovery is really the discovery of the question.
    — Jonas Salk
    Judge a man by his questions rather than his answers.
    — Voltaire
    The ability to ask the right question is more than half the battle of finding the answer.
    — Thomas J. Watson

  • Server Sizing For Oracle Database

    Hi All,
    I need a server sizing for the below mentioned architecture:
    This application is basically for logistics company which we are planing to host it centrally with two server's one server for application and one for oracle database along with DR site (Other Location). There are four locations and each location will have 20 users who are going to access this application (20 x 4= 80 Users). We are using MPLS network of 35 mbps bandwidth.
    1. Application server: Windows server 2008 R2
    2. Database Server: Windows server 2008 R2, Oracle 11g r2
    I need a server sizing documents.
    Thanks........

    EdStevens wrote:
    Justin Mungal wrote:
    EdStevens wrote:
    user1970505 wrote:
    Hi All,
    I need a server sizing for the below mentioned architecture:
    This application is basically for logistics company which we are planing to host it centrally with two server's one server for application and one for oracle database along with DR site (Other Location). There are four locations and each location will have 20 users who are going to access this application (20 x 4= 80 Users). We are using MPLS network of 35 mbps bandwidth.
    1. Application server: Windows server 2008 R2
    2. Database Server: Windows server 2008 R2, Oracle 11g r2
    I need a server sizing documents.
    Thanks........I'd seriously reconsider hosting Oracle db on Windows. Obviously there are many, many shops that do. And obviously it is often a case of the fact that they do not have (and choose to not acquire) expertise in Linux. But I've been in IT for 30+ years and have worked on IBM S-370 and its variants and descendents, Windows since v3, DEC VMS, IBM OS/2, Solaris, AIX, HPUX, and Oracle Linux. The first Oracle database I ever created was on Windows 3.11 and at that point I had never seen *nix.  Now I am in a position to state that Windows is the worst excuse of an operating system of any I have ever used.  I am constantly amazed/amused by how often (at least once a month on schedule, plus unplanned times) that our Windows SA has to send out a notice that he is re-booting his servers.  I can't remember the last time we had to reboot a Linux server ( I have 4 of them)
    Yes, I'm biased away from Windows, but that bias comes from experience. Hardly a day goes by that I don't see something that causes me to say to whoever is in earshot "have I told you how much I hate Windows?"I was going to refrain from commenting on that, as I assumed they're a Windows shop and aren't open to any other OS (but my assumption could be incorrect).
    I haven't been working in IT for as long as many of the folks around here, only about 10 years. I'm a former system admin that maintained both Linux and Windows servers, but my focus was on Windows. In the right hands, Windows can be rock solid. If a system admin has to reboot Windows servers often, he is most likely doing something wrong, or is rebooting for security updates. It's never as simple as "Windows Sucks," or "Linux Sucks;" it all depends on who's running the system (again, in my opinion).
    I have seen some windows servers run uninterrupted for so long no one could remember the admin password. But more often memory leaks and the "weekly update" (replacing last weeks bugs with this weeks) is the culprit.
    Yes, it really is sad how often you have to reboot for updates if you want to keep your system current. Mind you, it's better to have the fixes then to not have them (maybe). I rebooted my servers about once every month at my old place... which is not that bad.
    With that said, in my experience, Oracle on Windows is a major pain. It takes me much longer to do anything. Once you get proficient with a CLI like the bash shell, the Windows GUI can't compare.Agreed. One of my many complaints about Windows is the poor excuse of a shell processor. I'm pretty proficient in command line scripting, but still cringe when I have to do it. Practically every line of code I write for a command script is accompanied by the remark "this is so lame compared to what I could do with a shell script". Same for vi vs. notepad. But my real problem is the memory leaks and the registry. I'm fairly comfortable hacking certain areas of the registry, but the need to and the arcane linkages between different areas of the registry and how they influence 'process environment' remains a mystery to all but a tiny minority of admins. Compare to *nix where everything is well documented and "knowable". 
    One (of many) anecdotal experiences, this with my personal Win7 laptop. One time it crashed and refused to reboot. A bit of a google search turned up some arcane keystroke sequence to put it into some sort of recovery mode on bootup .. similar to getting into the bios, but the keystroke sequence was much more complex .. it may have involved standing on one foot while entering the sequence. Anyway, it entered a recovery process I've never seen before or since and repaired everything. My first thought was "hey, that was pretty cool." Then my second thought was 'but only Windows would need such a facility.
    Bottom line? To paraphrase a famous Tom Hanks character, "My momma always said Windows was like a box of chocolates. You never know just what you'll get."Haha... I like that one. Yes, the registry is definitely horrible. It's amazing to me that a single point of failure was Microsoft's answer to INI files.
    I think Windows and nix have their places. Server work definitely seems more productive to me in a nix environment, but I think I'd jump off a cliff if I had to use it as my desktop environment day-in-day-out. The other problem is application lock-down; I can't blame the OS for that, but it's a reality... and using virtualization to run those applications seems to defeat the point to me.

  • Compression for oracle database and index compression during import of data

    Hi All,
    I have a query , in order to import into oracle database and also have compression and index compression , do we have some kind of load args for r3load and also do we have to change the tpl file ?

    Hello guy,
    I did this kind of compression within migration project before.
    I performed index compress first and then export -> import with table compress.
    One thing you should take care, delete nocompress flag from TARGET.SQL (created by program SMIGR_CREATE_DDL, program SMIGR_CREATE_DDL created pure non-compression objects for these considered non-standard tables). For table columns > 255, we should not delete this flag.
    Regarding to the index compress in source system, please check the following notes:
    Note 1464156 - Support for index compression in BRSPACE 7.20
    Note 1109743 - Use of Index Key Compression for Oracle Databases
    Note 682926 - Composite SAP note: Problems with "create/rebuild index"
    Best Regards,
    Ning Tong

  • Pro Oracle Spatial for Oracle Database 11g - Book now available

    Pro Oracle Spatial for Oracle Database 11g
    Pro Oracle Spatial for Oracle Database 11g shows how to take advantage of Oracle Databases built-in feature set for working with location-based data. A great deal of the information used in business today is associated with location in some way, and analysis of that data is becoming ever more important in todays mobile and highly connected world. In Pro Oracle Spatial for Oracle Database 11g, authors Ravi Kothuri and Albert Godfrind address
    * The special nature of spatial data and its role in professional and consumer applications
    * Issues in spatial data management such as modeling, storing, accessing, and analyzing spatial data
    * The Oracle Spatial solution and the integration of spatial data into enterprise databases
    * How spatial information is used to understand business and support decisions, to manage customer relations, and to better serve private and corporate users
    When you read Pro Oracle Spatial for Oracle Database 11g, you’re learning from the very best. Ravi Kothuri is a key member of Oracle’s Spatial development team. Albert Godfrind consults widely with Oracle clients on the implementation of Oracle Spatial, develops training courses, and presents frequently at conferences. Together they have crafted a technically sound and authoritative fountain of information on working with Spatial data in Oracle...
    Goto http://www.apress.com/book/view/1590598997 or Amazon.com

    Thank you very much.....got it.
    I know it isn't your gig, so I am not asking for a solution, just looking to know where I might have to go to get one. If buying SR's on meta link is going to solve this for me, then I am all for it, just let me know where the expertise can be found, I have been battling this overall set up now for too long, I need someone who really knows this stuff so I can get on with making use of it in industry....thanks....
    Can you steer me in the right direction to access some solid support on the installation issues I am having? See below;
    From oc4j on an attempted stand-alone install;
    07/11/22 20:23:39 INFO [oracle.lbs.mapserver.core.MapperConfig] using default config file: /opt/mv10131/mv10131_qs/oc4j/j2ee/home/applications/mapviewer/web/WEB-INF/conf/mapViewerConfig.xml
    07/11/22 20:23:39 WARN [oracle.lbs.mapserver.core.MapperPool] destroying ALL mapmaker instances.
    07/11/22 20:23:39 Oracle Containers for J2EE 10g (10.1.3.1.0) initialized
    07/11/22 20:23:39 INFO [oracle.lbs.mapserver.core.MapperConfig] Map Recycling thread started.
    07/11/22 20:23:39 INFO [oracle.lbs.mapserver.oms] *** Oracle MapViewer started. ***
    07/11/22 20:23:40 INFO [oracle.lbs.mapcache.mcservlet] *** Oracle MapCacheServer started. ***
    07/11/22 20:23:40 Thu Nov 22 20:23:40 EST 2007 INFO [oracle.lbs.mapserver.core.MapRecycleThread, ,#Thread-19] cleansing old maps
    user induced ctl-c....program jams
    07/11/22 20:23:51 Shutting down OC4J...
    07/11/22 20:23:54 ERROR [oracle.lbs.mapcache.mcservlet] !!! Oracle MapCacheServer destroyed. !!!
    07/11/22 20:23:54 WARN [oracle.lbs.mapserver.core.MapperPool] destroying ALL mapmaker instances.
    07/11/22 20:23:54 WARN [oracle.lbs.mapserver.oms] Oracle MapViewer shut down
    From a full AppServer Install Attempt (10.1.3 from e-delivery pack) , despite proper TMP/TMPDIR variables, more than ample space via df -k /tmp (300G) and chmod a+rwx /tmp settings;
    [root@bluesky1 Disk1]# ./runInstaller
    Starting Oracle Universal Installer...
    Checking installer requirements...
    Checking operating system version: must be redhat-2.1, redhat-3, redhat-4, SuSE-9 or UnitedLinux-1.0
    Passed
    All installer requirements met.
    Preparing to launch Oracle Universal Installer from /tmp/OraInstall2007-11-22_07-58-50PM. Please wait ...
    Error in writing to directory /tmp/OraInstall2007-11-22_07-58-50PM. Please ensure that this directory is writable and has atleast 60 MB of disk space. Installation cannot continue.
    : Success
    The people in the forums have been trying to help, and they have all been great, but noone seems able to solve....I am asking you because I am hoping you will know who the guru's are, and what I can do to access some of their wisdom to get up and running.?

  • Pl   Provide Rc. of SUN BIDW for Oracle database 10g .. datasize 10TB

    Hi,
    We need a Sun BIDW Reference Configurations for Oracle database 10g with raw datasize of more than 10TB.
    Kindly help me providing any reference guide relevant to this.
    Regards,
    Debasis

    Hi Debasis,
    Try posting this in the following forum:
    General Database Discussions
    Thanks, Mark

  • Download link for Oracle Database 10g Documentation seems to be broken.

    Hi,
    I am trying to download the documentation for Oracle Database 10g but the zip archive seems to be corrupt. The md5 checksum for the file I have downloaded is:
    $> md5 Downloads/B19306_01.zip
    MD5 (Downloads/B19306_01.zip) = 75551f2bb5cfeecedcd08e2e6ac71bf7
    and the unzip output is:
    $> unzip Downloads/B19306_01.zip
    Archive: Downloads/B19306_01.zip
    End-of-central-directory signature not found. Either this file is not
    a zipfile, or it constitutes one disk of a multi-part archive. In the
    latter case the central directory and zipfile comment will be found on
    the last disk(s) of this archive.
    unzip: cannot find zipfile directory in one of Downloads/B19306_01.zip or
    Downloads/B19306_01.zip.zip, and cannot find Downloads/B19306_01.zip.ZIP, period.
    Also, the file size of my downloaded file is 443.4 MB but the size mentioned on the download page is 445.8 MB
    I have twice tried to download the file but both times I get the same corrupt zip error. Can any one confirm the status of the file.
    Oracle Database 10g Documentation Download page:
    http://www.oracle.com/technetwork/database/database10g/documentation/database10gr2-087366.html

    it worked for me
    1239489356         461527463  63%                            20200 files
    bcm@bcm-laptop:~/Downloads/V10_docs$ ls
    B19306_01.zip
    bcm@bcm-laptop:~/Downloads/V10_docs$ ls -l
    total 454056
    -rw-r--r-- 1 bcm dba 464948533 2011-01-08 16:46 B19306_01.zip

  • Where can I download PRO*COBOL for Oracle database 11g ?

    Where can I download PRO*COBOL for Oracle database 11g ? I have downloaded & installed linux.x64_11gR1_database_1013.zip
    It has a procob32 but it gives an ERROR loading shared library libcIntsh.so.11.1 ?
    What should pro*cobol be for my linux 64 bit AMD ? (procob procob32, procob18, procob64)
    Hope somebody can help with this, Thanks, [email protected] www.uvsoftware.ca

    This is not the appropriate forum to post this.
    Kindly post it in the Database General Forum or search in the download section.
    Regards.
    Satyaki De.

  • When I increase storage for Oracle database

    Hi, Gurus
    We start and golive SAP one year ago, Now
    my oracle databes usage is 68%  like below from ST04.
    Size:                   308.09   GB                        Total size:                 400.39 GB  <br>
    Free Size:               97.27 GB                        Total free size:            189.57 GB <br>
    Used:                       68 %                              Total used:                     53 %  <br>
    This storage usage at UNIX level <br>
    /dev/vx/dsk/eccprd-dg/sapdata1    100G    72G    26G    74%    /oracle/PRD/sapdata1 <br>
    /dev/vx/dsk/eccprd-dg/sapdata3    100G    80G    19G    82%    /oracle/PRD/sapdata3 <br>
    /dev/vx/dsk/eccprd-dg/sapdata4    100G    68G    30G    70%    /oracle/PRD/sapdata4 <br>
    /dev/vx/dsk/eccprd-dg/sapdata2    100G    89G    10G    90%    /oracle/PRD/sapdata2 <br>
    When I must increase storage size because it to much usage 90% ?
    Or wait 90++ % all drive.
    Thank for all comment.

    Hi Witoon,
    What you need to do for monitoring space for oracle Database is to proactively monitor tablespaces of the databases.
    This can be easily done with the help of BRtools . It is safe to keep the used tablespace < 85 % to avoid any kind of tablespace issues. If any major loading process is to started then the free space of the table space should be adjusted accordingly.
    Out of several tablespaces present in the Oracle DB few are made by Oracle for example
    SYSTEM
    PSAPUNDO
    SYSAUX
    PSAPTEMP
    TOOLS
    Leaving the above mentioned tablespaces you need to monitor the tablespaces whose sizes are changing.
    When you increase the size of the tablespace then more space is allocated on the disk in the form of datafile for that tablespace so before increasing the size of the tablespace you need to check the free space on the disk
    Use     df -h (Linux command) for checkin the diskspace on linux server.
    Thanks
    Aditya

  • Configure Xiotech storage for Oracle database

    Our db is 10.2.0.3 RAC db with 2 nodes of MS Window 2003 servers. We just purchased a new storage Xiotech Emprise 7000 for database usage and I would like to get any information related how to better configure this kind of storage for Oracle database. Such as how big the logical volumes should be and how many disks you be included in them?
    Thanks a lot for your input,
    Shirley

    Since you are using RAC, you'd better configure storage to use ASM.
    Using Automatic Storage Management
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14231/storeman.htm#ADMIN10181
    It looks like Xiotech only support fiber channel connection. as to how big the volumes should be and how many disks that really depends on your requirement. You might just create a set of LUNs and create ASM diskgroups on top of them.

  • Is RAID 5 not recommended for Oracle database ?

    - I am planning to install Oracle database
    Here are the specs:
    - Dell PowerEdge T610 server
    - Windows 2008 R2 (64-bit )
    - 24 GB memory
    - Oracle 10g database (64-bit database)
    - Our database is for an ERP based client server application
    - Will have around 35-45 users
    - Will have around 150-200 transaction per day ( 8AM-5PM) only database
    - database would be around 10-15GB (data files)
    Now I am planning to buy the hardware server, I heard that RAID 5 is not recommended for Oracle database.
    Is it true ?
    What do you recommended for Oracle database ? RAID 5 (or) RAID 1

    johnpau2013 wrote:
    I heard that RAID 5 is not recommended for Oracle database.
    Is it true ?Kind off... as Oracle (as per the RAC Starter Kits for example) explicitly recommends SAME - as in Stripe And Mirror Everything.
    This is a combination of RAID1 and RAID0.
    However, you will also get whitepapers from storage vendors like EMC in partnership with Oracle, that explains how to configure and use RAID5 storage and how effective this is. And as some will tell you, RAID5 can work just fine with Oracle... and some others will grimace and tell you how bad an idea that is from personal experiences.
    In a nutshell - RAID5 requires a parity calculation on each write. That is a very expensive overhead if that calculation impacts the fwrite() (file write) command of a process writing data to disk. It significantly slows down the write operation.
    However, if that parity calculation is done asynchronously and does not effect the elapsed time for a fwrite(), then a fwrite() to RAID5 is as fast or as slow as it would be to RAID10 for example.
    Unsure how many modern storage system supports off-loading the parity calculation and not impacting the write I/O call. This can be done using ASICs (Application Specific Integrated Circuits), specialised s/w on the storage server, etc.
    Whatever you put in place - test the RAID config thoroughly up front and ensure that performance is up to specs. There's a utility called fio (<i>Flexible I./O</i>) written by a Linux kernel hacker that works for Oracle. It is an excellent utility to use to generate and test I/O - but it is Linux and Unix based.
    Any specific reason using Windows? Linux is by far a more predominant 64bit operating system than Windows, and has significant higher market share in Oracle RDBMS than Windows. Given the fact that over 93% of the 500 fastest computer systems on this planet runs Linux, I'm always kind of amazed that some would still use Windows as a server-side o/s for Oracle.

  • Oracle VM Manager: Includes a Restricted-use License for Oracle Database?

    I'm evaluating OVM and OL for building a small private cloud and - at this stage of the evaluation - am primarily focused on making sure that I understand the licensing requirements of Oracle virtualization.
    The Oracle® VM Installation and Upgrade Guide for Release 3.1.1 states that...
    Oracle VM Manager includes a restricted-use license of the
    Oracle Database (Standard Edition or Enterprise Edition) for use as
    the Oracle VM Manager Management Repository only. The supported
    version of Oracle Database are...
    Am I understanding this correctly? Does this mean that, for the purposes of implementing Oracle VM Manager, it will not be necessary to purchase a license for Oracle Database (11g) Standard Edition?
    Eric Pretorious
    Truckee, CA

    For the uninitiated and/or impatient: In order to use Oracle Database 11g SE/EE instead of Oracle Database XE...
    >
    Oracle VM Manager can be installed in a demo installation using Oracle XE, or as a production installation using Oracle SE or EE. The demo installation installs Oracle XE on the local host and configures it to use as the repository. *The production option collects information on the pre-installed Oracle Database* and uses it as the repository...><ol>
    <li>Go [url http://www.oracle.com/us/products/database/standard-edition/overview/index.html]the Oracel Database 11g product page.
    <li>Follow the link to [url http://www.oracle.com/technetwork/database/enterprise-edition/downloads/index.html?ssSourceSiteId=ocomen]the Download Page.
    <li>Follow the link to your preferred architecture.
    <li>Review and accept the EULA.
    <li>Download the packages.
    <li>Follow the link to the Documentation Page:
    3. Installation guides and general Oracle Database 11g documentation are here.<li>Follow the link to the documentation about "Installing and Upgrading".
    <li>Download the Database Quick Installation Guide for your preferred architecture.
    </ol>
    Eric Pretorious
    Truckee, CA
    Edited by: epretorious on Sep 13, 2012 6:50 PM - Added a signature.

  • LDOM for Oracle database

    We have T5440. We will be creating 5 LDOMS on this. Each LDOM will host Oracle database server. This is for functional testing purpose only. No performance test will be performed on this setup.
    Four ISCSI LUNs (500 GB each) are attached to this machine. Our system administrator has created two zpool for these LUNS. Each machine will be given two virtual disk (one for data and one for OS) from these zpool.
    Write cache will not be disabled at scsi level or at zpool level or even at guest OS filesystem (UFS) level.
    My question - Is this the right way to configure disks for LDOMs running oracle database? [I know we will not be performing any performance test but oracle database server running on these machines should be usable enough]
    Thanks
    --D                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Already answered at the dup post --> Re: For Oracle Database and WEbsphere
    ~ Madrid
    http://hrivera99.blogspot.com

Maybe you are looking for

  • What is the point of Precision and Scale in Number Type?

    Version :11.2 What is the point in having PRECISION and SCALE in number type? If you create the column with just NUMBER ie.without specifying precision or scale , you can enter numbers with any precision and scale. SQL> select * From v$version where

  • How to have Safari remember PDF display preference (two pages continuous)?

    I am using the built-in PDF viewer in safari and every single time I am a opening a link or document I have to right-click and choose "two pages continuous" (or at least zoom out) to obtain suitable display preferences. Is there a way to have Safari

  • Where can i buy an iphone 3gs screen?

    My screen is cracked and I know how to replace it myself. I just need to know where I can purchase a screen that is compatable with my phone. Unfortunately I don't know what operating system it is using. Please help!

  • Error while creating duplicate repository

    Hi, While creating a duplicate repository, i'm encountering the following error: "Unable to modify database" Can anyone plz guide me on the same

  • Migrating from older osx to mavericks

    Hello, my old MBP died and I am trying to use the migration assistant to copy over my old user data from my hdd to the new mbp. There is over 400GB of data that it detects, it shows a message 'this user needs attention...' and no matter what I select