Need suggestions in upgrading server and software

Hi,
We are about to upgrade our database to 10g from 8.0.6 on windows 2003 server. we have around 85GB of data in healthcare environment. I would like to know
1) If linux/windows is the best option for our server.
2) Will it be possible to directly upgrade from 8.0.6 to 10g.
3) Are there any particular versions of linux that support 10g ?
4) Will there be any problem installing database on 64 bit machine.
Best Regards,
Ateeq

1. If DBA is confident / easy in linux then OEL 5.5 is the best which can be download from edelivery.oracle.com. If he/she is confident in windows; then any server edition is good.
2.http://download-east.oracle.com/docs/cd/B19306_01/server.102/b14238/preup.htm#i1007814
You can'nt directly upgrade from 8.0.6 to 10.2.0.1, you have to apply 8.1.7.4 patch then it will upgrade to 10.2.0.1. Here you have following options too :
(a) Simple export the db and import to 10g.
(b) You can have dblinks in 10g by which you can create tables/MVs etc. something like :
[In 10g version : create table emp as select * from scott.emp@olddb]
3.Please check and download respective (32 bit or 64 bit machines) zips from :
http://www.oracle.com/technology/software/products/database/index.html
4.No problem, if you first read the installation manual, follow the steps as mentioned in docs; otherwise come to forum, mention what you have done, what exact error your getting; i am sure you will get answer.
HTH
Girish Sharma

Similar Messages

  • Need suggestion on Multi currency and Unicode character set use in ABAP

    Hi All,
    Need suggestion. In one of the requirement I saw 'multi-currency and Unicode character set experience in FICO'.
    Can you please elaborate me how ABAPers are invlolved in multi currency as I think this is FICO fuctional area.
    And also what is Unicode character set exp.? Please give me some document of you have any.
    Thanks
    Sreedevi
    Moderator message - This isn't the place to prepare for interviews - thread locked
    Edited by: Rob Burbank on Sep 17, 2009 4:45 PM

    Use the default parser.
    By default, WebLogic Server is configured to use the default parser and transformer to parse and transform XML documents. The default parser and transformer are those included in the JDK 5.0.
    The built-in WebLogic Server DOM factory implementation class is com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderFactoryImpl.
    The DocumentBuilderFactory.newInstance method returns the built-in parser.
    DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();

  • Need help with OSx server and profile manager

    I messed up my OS X server and seems like it has stopped working.
    I cannot access my server remotely or locally and it shows Safari cannot connect to server.
    I made mistake resetting keychain to default and all certificates were missing.I restored system.keychain from time machine but not it won't run.
    System log shows
    ec 30 18:31:25 mdmserver.medicalpharmacies.com certadmin[14697]: BundleManager(non-plugin calling servermgr_certs): doCommand finished reply = {
         error = <62706c69 73743030 d4010203 04050625 26582476 65727369 6f6e5824 6f626a65 63747359 24617263 68697665 72542474 6f701200 0186a0a8 07081112 1a1b1c22 55246e75 6c6cd409 0a0b0c0d 0e0f1056 4e53436f 64655a4e 53557365 72496e66 6f584e53 446f6d61 696e5624 636c6173 7311138a 80038002 80075f10 19636f6d 2e617070 6c652e73 65727665 726d6772 5f636572 7473d313 140c1517 19574e53 2e6b6579 735a4e53 2e6f626a 65637473 a1168004 a1188005 80065f10 164e534c 6f63616c 697a6564 44657363 72697074 696f6e5f 1032556e 61626c65 20746f20 66696e64 20706173 73706872 61736520 666f7220 6578706f 72746564 20707269 76617465 206b6579 d21d1e1f 205a2463 6c617373 6e616d65 5824636c 61737365 735c4e53 44696374 696f6e61 7279a21f 21584e53 4f626a65 6374d21d 1e232457 4e534572 726f72a2 23215f10 0f4e534b 65796564 41726368 69766572 d1272854 726f6f74 80010008 0011001a 0023002d 00320037 00400046 004f0056 0061006a 00710074 00760078 007a0096 009d00a5 00b000b2 00b400b6 00b800ba 00d30108 010d0118 0121012e 0131013a 013f0147 014a015c 015f0164 00000000 00000201 00000000 00000029 00000000 00000000 00000000 00000166>;
         errorCode = 5002;
         errorDescription = "Unable to find passphrase for exported private key";
    Dec 30 18:31:25 mdmserver com.apple.xpc.launchd[1] (org.apache.httpd[14695]): Service exited with abnormal code: 1
    Dec 30 18:31:25 mdmserver com.apple.xpc.launchd[1] (org.apache.httpd): Service only ran for 0 seconds. Pushing respawn out by 10 seconds.

    Hi!
    Do you have a time machine backup? What you can try to do is a full restore on a testmachine or a VM and export the old keychain and import it into your broken server:
    Passwords:
    http://www.icreatemagazine.com/tips/os-x-tutorial-how-to-transfer-keychain-data- between-macs/
    Certs:
    https://www.racf.bnl.gov/docs/howto/grid/osxcertmgmt
    Good luck!

  • Need suggestion on PLSQL Create and EXECUTE IMMEDIATE

    Most of you already know plsql doesn't like create table, so we have to use EXECUTE IMMEDIATE for creating table. What if I want to see if the table exist, if not then create the table, later I will insert data into that table.
    My problem is it returned me the error saying I am try to insert into a non existing table when trying to compile my code. I think plsql doesn't pick up the execute statement.
    what I did is, both create and insert are executed by using EXECUTE IMMEDIATE. Anyone have such experience before and willing to share your knowledge?
    PS: I am having same problem for creating sequence as well.

    I think plsql doesn't pick up the execute statement.Since it is a runtime instruction, it will pick it up at runtime. but to be able to run, it needs to compile the code and in order to compile (so it can run) the code it needs that table/sequence you are referencing to exist already. So, you need to run the code to get the table and run needs to compile the code and compile needs the table to compile. can't go from here to there when you try to mix dynamic sql with static sql on the same object within the same program unit (or dependent units).

  • Need advice on bluetooth driver and software download

    *PLEASE HELP*: just bought a Nexus bluemicro pro bluetooth v2.1 dongle. and ive damaged the disk it came with when I was opening the packet.
    The disk says: Toshiba bluetooth driver and software bluetooth BT1.2/2/0/2.1.
    Does anyone know if there is a download for this online somewhere or will I have to go out and buy another one? I'm not clued up when it comes to computers and would very much appreciate any advice and help.... I;m using windows vista so it would have to be compatible.

    On Toshiba support and download page you can download Toshiba BT stack but it is for usage with Toshiba notebooks.
    You bought non-Toshiba product so for download contact Nexus or visit Nexus support page.

  • Need suggestion in forms migration and database migration

    Friends,
    We have currently forms 6 (not 6i) applications in Novell 4.
    and our db is 9iR2 in RHEL AS 3. which is running for more than 8 years.
    our management has decided to go for the migration....
    Before one month i searched in the web and i came up with the solution as like below.
    1. convert forms 6 to 10g and deploy using Oracle Application Server 10.1.2.0.2 (this is the latest version for forms and repots) in RHEL AS 4.8
    2. upgrade 9ir2 db to 10gr2 db in RHEL AS 4.8
    But now...my manager is asking me to go for the latest version.
    that is....
    1. forms 11g or the latest supporting version (Fusion middleware) in windows/Linux (choose the best one)
    2. 11gR2 db in rhel 5.3 or above
    so, please suggest me....which version i should go?
    which type of combination will be better?
    i cannot install oracle application server 10gR3....am i correct? it will not support forms and reports to deploy.
    i hope somebody will help me in this regarding....
    thanks

    Hi Pankaj,
    According to my knowledge there is no option to update the backend system by using  the scanned PDF file like adobe forms. It is advisable to design the adobe form by seeing the paper document & updating the backend system.
    Regards
    Krishna Balaji T

  • Need suggestions on upgrading my Mac G4 500 dual drive purchased in 2000

    I was looking to purchase a new G5 however due to the price being so high and funds being low I want to upgrade my G4 so it can run the lates version of Final Cut Pro. I have been told i need to increase my RAM to the highest which is four 528 MB dimm RAM. I was told upgrade my processor. I don't know which one since there are so many out there. Keeping in mind the price can any one suggest one that is reasonable. I was also told to change my video card. Again any suggestions. If i upgrade my video card would i need to upgrade the ac adaptor?
    I also want to run the latest version of the Operating system i think its Leopard.
    I do about 10 weddings a year to I dont really need the Fastest system. I just need to upgrade my system to run solid.
    Any suggestions is appreciated. I live in New York City. If any one knows of a place in NYC where I can have this done i would appreciate knowing where they are.
    Finally if I do all these upgrades will I be getting a good system or just invest in an Imac?
    Thanks

    I have upgraded my G4 Gigabit Ethernet to point of exhaustion. I can't put anything else in it, and by the end, it has costed more than a new computer. The difference is this - with a new computer, you have to plop down all of the money right away, but you get something that is going to last you a while. Upgrading a used computer is good because you can upgrade is gradually and it doesn't effect your pocket book so much because you make small investments at different times. The only problem with upgrading is that the more you add to the system, the more problems you could potentially cause, plus things start to fail when they get older.
    If I had to do it all over again, I think I would pick the newer machine. There are just too many limitations to the old G4's, things like the 2x AGP slot, no PCI-X, only 2 GB of RAM, bus speed is only 100 or 133 mhz, clock speed is limited, etc. - all things you can't upgrade. ESPECIALLY if you want run an app like final cut pro. I bought my machine for running Pro Tools (professional audio recording app), and I still can feel the lack of power my machine has even after all of the upgrading.
    The most important advice I think I could give you is this - do some research, see what everyone else who has experience would do, shop around, weigh the pros and cons to each possible machine to buy, and make lists of all of what you need and total up the costs depending on what machine you get. I would guess that buying a newer machine vs an older machine plus all of the upgrading needed would be pretty close. If you're patient, you should be able to get the newer machine without it hurting your pocketbook so badly.

  • Xserver, os X Server and software licensing

    Hi!
    I work on a comunication agency, in the design dept.
    The agency is preparing a plan to update the servers and network structure. My boss ask me to make part of the team that is identifiyng the needs in these area.
    The design dept. uses Macs (4). All the rest of the agency uses Pc's.
    One of the things that I've purposed is a Apple Xserver for the design dept., and the IT administrator told to the team that 2 year ago installed a Xserver and he told us that is possible to install all the software we use in the server (photoshop, indesign, etc...) and that the xserver makes the distribution of the licenses.
    Ex.: We have 2 licenses of Indesign CS 2 installed on 2 different computers. If one of us need to use Indesign and we dont have it installed in the computer we are using at the moment, we have to swap arround users, close the works and reorganize things... not good!
    I searched for that feacture in Apple website and didnt find.
    So is that true? Is it possible?

    Adobe does not offer floating licenses for business, only education clients, AFAIK.
    Mac OS X server does not have a license server built in, but Sassafas KeyServer is an app, that I've used in education settings for this very purpose.
    You may be able to netboot your Macs and use your software in this way, but it might not be worth the trouble.
    You can use Portable Home Directories in OSX Server to make moving from one machine to another easier, but managing software that locks or activates, based on a particluar machine's hardware would be difficult.

  • Need suggestion for a burner and set up....

    Hi
    Last week I downloaded latest addition of I-tunes and have imported some songs. I want to put on a basic CD for listening in car. My computer (windows XP Home) doesn't have a built in CD burner so I need to purchase an external CD burner.
    I just need the basics. Any suggestions? How does one hook this up to the computer and how will I know if it will work with I-tunes? Thanks much

    They can hook up via USB/Firewire. I would get it from here,
    http://www.tigerdirect.com/applications/category/category_slc.asp?CatId=478&Nav=
    Or here,
    http://www.amazon.com/s/ref=nbssgw/103-3031257-3011057?url=search-alias%3Daps&field-keywords=externalcdburner&Go.x=0&Go.y=0&Go=Go
    and they should work just fine with iTunes.

  • Need suggestion regarding File compression and splititng

    Hi,
    I want to split and compress the big files into small chucks. On later any standard zip utility i.e. winzip, 7z etc can merge(extract) all the chunks to generate the original file. I am looking for any java library which provide the split and compression functionality.
    As Java also supports in built compression utility. Should I use those library or any other open source is available to do this? I welcome your suggestion regarding how can I start.
    Thanks

    If you're just looking for something to be used internally, it'd be pretty simple:
    1. Open your source InputStream.
    2. Create a standard read/write loop to pump the stream.
    3. Add a counter that determines how much you've pushed into your current target. After you reach a certain value, close your current target, create a new target stream, and reset the counter.
    4. Conclude by closing your source and your current target.
    For compression, you can use the built-in GZIPOutputStream or a third-party library of your choice. I usually find GZIP sufficient for my needs.
    Of course, if you want the output to be compatible with other programs like 7-Zip, you've got a lot more work on your hands complying with the file format spec. :)

  • Need suggestions for upgrading discontinued site templates.

    I'm currently working on migrating our MOSS 07 site to SharePoint 2013 (using 3rd party software). I have a site template that i'm not sure what i should convert/upgrade it too.
    I have a Budgeting and Tracking Multiple Projects (PROJMULTI#0) site template. What would be an equivalent or similar template that I could convert this too?
    Thanks
    James T.F

    Hi James,
    Quote from
    http://technet.microsoft.com/en-us/library/cc263203(v=office.15).aspx "Fabulous 40" application templates:
    Microsoft is not creating new versions of these templates. Environments that contain sites based on these templates can be upgraded as long as the templates are installed. But there might be issues when you try to upgrade the site collections. Make sure
    that you test each site before you upgrade the production environment.
    There are some links for upgrade these templates to SharePoint 2010 environments:
    http://blogs.technet.com/b/tothesharepoint/archive/2010/08/18/sharepoint-2010-products-upgrade-and-the-fabulous-40-application-templates.aspx
    http://blogs.msdn.com/b/sharepointdev/archive/2012/06/01/migrating-the-sharepoint-2007-fab-40-templates-to-sharepoint-2010.aspx
    Also a link for deploy 2010 solution in 2013:
    http://www.learningsharepoint.com/2013/03/24/deploy-sharepoint-2010-solutions-in-sharepoint-2013/
    You could refer to the link below to upgrade your SharePoint 2007 to SharePoint 2010, then upgrade it to SharePoint 2013:
    http://technet.microsoft.com/en-us/library/ee947141.aspx
    Regards,
    Rebecca Tu
    TechNet Community Support

  • Need suggestions for upgrading my hard drive...(700 gigs, completely full.)

    I like having a large internal drive. I want to buy one of those Western Digita 2 Terabyte SATA drives and put it in.
    Problem is, I'd need a way to time-machine the 700 gig drive first. And for that I'd need an external 700gig drive. And a lot of free time.
    Any suggestions?

    All you need to do is connect an external drive to your iMac and run Time Machine, if you are going to put a 2 TB drive inside your iMac you are not going to get any much larger than 2 TB right now. My recommendation is to rethink the way you store things. I would recommend instead of one large internal drive to get 2 external drives, all being FW 800 for speed. You could do something like this.
    External HD #1 used as a bootable clone to the internal drive. This drive does not need to be large, less than 100 GB would be fine. You can create a bootable clone using SuperDuper or Carbon Copy Cloner.
    External HD #2, move most of your data from the internal drive to this drive. If you get a FW 800 drive as recommended you will still have plenty of speed and most likely not perceive any loss in performance.
    External HD #3, use this as your Time Machine Drive. This doesn't have to be FW 800 but it does make it easier if it is because you can daisy chain all the external drives together.
    It's not cheap but it is a more efficient way to work in my opinion.
    Regards,
    Roger

  • Need advice on upgrading OS and iPhoto with multiple altered libraries.

    I am going to upgrade from Tiger to Snow Leopard (Bundle Pack) and from iPhoto 6 to iPhoto 8. My wife and I have separate accounts on our MacBook Pro and I have combined our iPhoto Libraries onto an external hard drive using iPhoto Library Manager. Afterwards, I opened the Mac HD icon on my desktop, opened the pictures folder, went through the iPhoto Library folder, and opened the Originals folder. I deleted my photos through here which kept the thumbnail data (when I open iPhoto, I can see all of my photos, I just can't enlarge them beyond a certain size or I get a grayed out image with an exclamation point). I have since done the same for some of my wife's photos to free up space. This has been sort of useful to know what photos we have while not eating up the hard drive.
    How do I install iLife '09 with a clean iPhoto Library? I do not care about seeing thumbnails anymore. However, is it possible to keep the thumbnails on my wife's account? When I open the iPhoto Library on the external HD, will it automatically convert it to the updated version?
    An Apple Tech once told me that altering the iPhoto database like I did can corrupt it and they have since removed that ability in the latest version of iPhoto. I know I screwed it up and am unsure about the best approach once I do upgrade. Any advice is much appreciated.

    bustercharlie wrote:
    I am going to upgrade from Tiger to Snow Leopard (Bundle Pack) and from iPhoto 6 to iPhoto 8. My wife and I have separate accounts on our MacBook Pro and I have combined our iPhoto Libraries onto an external hard drive using iPhoto Library Manager. Afterwards, I opened the Mac HD icon on my desktop, opened the pictures folder, went through the iPhoto Library folder, and opened the Originals folder. I deleted my photos through here which kept the thumbnail data (when I open iPhoto, I can see all of my photos, I just can't enlarge them beyond a certain size or I get a grayed out image with an exclamation point). I have since done the same for some of my wife's photos to free up space. This has been sort of useful to know what photos we have while not eating up the hard drive.
    How do I install iLife '09 with a clean iPhoto Library? I do not care about seeing thumbnails anymore. However, is it possible to keep the thumbnails on my wife's account? When I open the iPhoto Library on the external HD, will it automatically convert it to the updated version?
    Installing iPhoto '09 will work smoothly and seamlessly for operating libraries - I have no idea how it will react to the ones your have corrupted but suspect that it will upgrade them so they will operate in the same crippled way they do now
    To have a fresh library you depress the option key and launch iPhoto and use new library option
    An Apple Tech once told me that altering the iPhoto database like I did can corrupt it
    that is correct as you see when you try to enlarge a photo in the libraries you have modified
    and they have since removed that ability in the latest version of iPhoto.
    not removed but made more difficult so it is less like to happen by mistake - you can still do it in a number of ways but it is not a good idea
    I know I screwed it up and am unsure about the best approach once I do upgrade. Any advice is much appreciated.
    My advice is to use standard operating procedure - backup everything up and do your upgrades (I would do the OS and wait a few days and then do iPhoto myself) - the good library will be updated and work as before - the corrupted libraries may or may not upgrade but i would guess they will and work as before too
    LN

  • Newbee needs suggestions for a search and replace script

    I can't figure out this scripting stuff. I looked at the scripting guide I downloaded from adobe some time ago. I am not a programmer.
    I do not need a script that says "hello world."
    I need a script that will do the following:
    Search selected text from one point to another. let me explain.
    I create a table of contents in InDesign CS4. We separate our book sections by "section". So the TOC looks like:
    Section 1
    item one.... 1
    item two... 2-4
    item three... 5
    Section 2
    item one... 1-3
    item two... 4-5
    item three... 6
    and so forth.
    I then manually go in and change the TOC to:
    Section 1
    item one... 1 - 1
    item two... 1 - 2-4
    Section 2
    item one... 2 - 1-3
    item two... 2 - 4-5
    Where the page reference in the TOC contains the section prefix and the page number provides the page range (if more than one page). Should mention that when I create the TOC I use a place holder in the TOC style set up for the section prefix; that is, my TOC initially looks like:
    Section 1
    item one.... X - 1
    item two.... X - 2, etc. I then highlight a range and find/change for each range.
    So, the script would do the following:
    Look in selected text (the entire TOC) frame which at times spans two or three pages from Section 1 to Section 2:
    Change the "^t (tab before number) to "^t (section number)(space)(hyphen)(space)":
    And then look at next number (i.e "4") and change the previous end of previous line from "1" to "1-3"
    Then repeat for range from Section 2 to Section 3, etc.
    Currently, I do it manually. That is ok, but it would be great to have a script that would do this for me.
    Thanks in advance,
    RPP

    The last thing you need is a script.
    When you want to make your TOC, go to Pages, Numbering and Section Options, and put a section prefix in like 1- for each section (both 1 and 2 in your case). Click "Include Prefix When Numbering Pages".
    Then make your TOC.
    It will have all the section prefixes. ("1-1", "2-2-4", examples)
    Now just change the Numbering and Section Options BACK to your pre-TOC defaults. As long as  you don't update the TOC under Layout/Update TOC, your TOC text will contain the prefix, but your page numbers will look normal. If you have to change the text in the TOC for any reason, do it manually.
    Let me know if that works.
    Greg Ledger
    www.macproductionartist.wordpress.com

  • Do I need to have SQL server and VSS writer installed on my Laptop?

    I am a home user and I just want to know if it is necessary for me to have these installed om my computer? What do they do? I have the services disabled as of now. Should I re-enable them? Is there any benefit from them? Thanks-George
    This has been resolved.Thanks-G

    no, you don't need them unless you are developing database-driven websites.   each are services related to hosting databases locally.
    ThinkStation C20
    ThinkPad X1C · X220 · X60T · s30 · 600

Maybe you are looking for

  • Asset budgeting through Statistical WBS

    Dear Experts, I have configured and assigned Statistical WBS to Asset to carry out active budgeting. To my knowledge I have configured all relevant configuration but when I create PR over this Asset, WBS field is not updated in the PR and therefore n

  • Storing file contents in a Collection

    Hi All, Im trying to read a csv file, break the lines by comma, then store them and sort them. I have the test code working from: http://java.sun.com/docs/books/tutorial/collections/interfaces/order.html I am reading the file, but when I System.out.p

  • WLC Internal and External DHCP

    I am currently using the Internal DHCP component within my 5508 Controller with software version 7.0.166.0.  This seems to be working fine as the Vlan Routed interface connected to it via the Dynamic Trunk Port is functioning as l have the ip-helper

  • Disabling NAT

    Hi All, I am doing load balancing for users accessing an application servers. In basic configuration the application servers see the source IP of the users as the VIP of thier group and not the original client source IP. Is there a way to disable the

  • Task Deadlines- Create deadlines for a task

    There is a feature that is present in both MS Project and PWA 2013 that is  Task Deadlines Create deadlines for a task so anyone can please tell me how to create deadlines for task from PWA in project server 2013.