Oracle 10g training needed !

I am looking for advice to get oracle 10 g training.
Would like to get an idea of what courses/training I need to take to
be considered an Oracle DBA.
Also what resources: schools, on-line, etc.
I am an experienced data modeler and metadata admiistrator.
Any help is greatly appreciated.

Depending on your country you may need to be nothing more than a liar.
In the US anyone that can put the letters "DBA" on their resume is one if some company is fool enough to hire them.
There are few places, if any, where any specific training or skill set is mandated.
Generally speaking though DBAs should have a minimum of three years of hands-on development experience with SQL and PL/SQL and be competent with all topics covered in this document:
http://download.oracle.com/docs/cd/B19306_01/server.102/b14196/toc.htm
with the possible exception of RAC.

Similar Messages

  • Please Help----ORACLE 10g Training

    Hello All,
    I have got a chance to work in Oracle 10g in the firm where i work.
    This is the first time i am working directly Oracle stuff,even though i have experience in a other Database query language fully internally developed.
    ***I intend to study and clear the OCP and I am in need of guidance as to which course I should take.So need your advise that how much time does it usually take to master the features we have in Oracle 10g.I know its very huge.
    ***Also,could you please suggest some good training institutes for ORACLE 10g who don't charge much(I am sorry ...but I cant afford much.) .I stay in BANASWADI area,bangalore.
    I am looking for a place in this same area so that i can attend weekend classes because weekdays i am whole day out of home.
    MP

    ***I intend to study and clear the OCP and I am in need of guidance as to which course I should take.So
    need your advise that how much time does it usually take to master the features we have in Oracle 10g.I know its very huge.Oracle Database 10g Administrator Certified Professional
    http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=151
    Oracle Certification Program Oracle Certifications – All
    http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=141
    Oracle Certification Program
    http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=39
    ***Also,could you please suggest some good training institutes for ORACLE 10g who don't charge much(I am
    sorry ...but I cant afford much.) .I stay in BANASWADI area,bangalore.http://www.oracle.com/global/in/education/maps/oracle_edu_centers.html
    http://www.oracle.com/global/in/education/maps/sql_star_international.html
    http://www.oracle.com/global/in/education/maps/contact_us_india.html

  • Oracle 10g fetaures need to configure for production database

    Dear All,
    I am working for database, want to add all 10g features which can help database to work the properly.
    can you please advice what are the things I can implement for my database.
    I have a oracle 10G running on Linux 5.3.
    Regards,
    DevD!

    user12138514 wrote:
    Dear All,
    I am working for database, want to add all 10g features which can help database to work the properly.
    can you please advice what are the things I can implement for my database.
    I have a oracle 10G running on Linux 5.3.DevD,
    As Anurag said, we don't even know that what version you are on at the moment and what's the need of your business. So it wouldn't be possible for us to tell what you should put in your db regarding 10g. Interestingly, you mentioned that you are running 10g so what features you saw in 10g that raised eyebrows of yours, none is it? Since you have asked , I would give a try to the new EM given by 10g but that's just one of the may new features and only you would decide what fits for you and with your application.
    HTH
    Aman....

  • Group By clause in oracle 10g help needed

    Hi
    we have a requirement that get the AR aging details at customer level.I have written the following query to fetch the correct rows at invoice level.But now i need to sum the amounts and i should show at invoice level and customer level.Could you please help me how can i group by customer level.
    Here is the query i used
    select ps.org_id
    , sob.SET_OF_BOOKS_ID
    , sob.CHART_OF_ACCOUNTS_ID
    , gcc.SEGMENT1 Company
    , gcc.SEGMENT2 Location
    , gcc.SEGMENT3 Department
    , gcc.SEGMENT4 Account
    , gcc.SEGMENT5 Future_1
    , gcc.SEGMENT6 Future_2
    , gcc.SEGMENT7 Future_3
    , gcc.CONCATENATED_SEGMENTS gl_cc_concat_kff
    , ps.trx_number
    , ps.trx_date
    , ps.due_date
    , ps.invoice_currency_code
    , sob.currency_code SOB_Currency_Code
    , ps.class
    , ps.amount_due_original
    , ps.amount_due_original * nvl(ps.exchange_rate, 1) acctd_amount_due_original
    , ps.amount_due_remaining
    , ps.acctd_amount_due_remaining
    , ps.status
    , ps.cust_trx_type_id
    , ps.customer_site_use_id
    , ps.customer_trx_id
    , ps.cash_receipt_id
    , ps.gl_date
    , rctlda.CODE_COMBINATION_ID
    , ps.customer_id
    , nvl(rcta.ATTRIBUTE5,ps.CUSTOMER_ID) End_Customer_Id
    , rc.customer_number
    , rc2.CUSTOMER_NUMBER Brand_Cust_no
    , round((sysdate-ps.due_date))
    from gl_sets_of_books sob
    , hr_operating_units ou
    , ar_payment_schedules_all ps
    , ra_customers rc
    , ra_cust_trx_line_gl_dist_all rctlda
    , gl_code_combinations_kfv gcc
    , ra_customer_trx_all rcta
    , ra_customers rc2
    where sob.set_of_books_id = ou.set_of_books_id
    and ou.organization_id = ps.org_id
    and ps.status = 'OP'
    and ps.org_id is not null
    and ps.CUSTOMER_ID=rc.CUSTOMER_ID
    and ps.CUSTOMER_TRX_ID=rctlda.CUSTOMER_TRX_ID
    and rctlda.ACCOUNT_CLASS='REC'
    and rctlda.latest_rec_flag = 'Y'
    and rctlda.CODE_COMBINATION_ID=gcc.CODE_COMBINATION_ID
    and ps.CUSTOMER_TRX_ID=rcta.CUSTOMER_TRX_ID
    and gcc.CODE_COMBINATION_ID=39446
    -and ps.trx_number = '1-15O0A8O'
    --and    rc.CUSTOMER_NUMBER='1-10PA5KX'
    and nvl(rcta.ATTRIBUTE5,ps.CUSTOMER_ID)=rc2.CUSTOMER_ID
    Could any one help me how to get the same columns with sum( ps.amount_due_original ) for each customer.I tried to use group by clause but it is again giving invoice level.
    But my req is for each customer invoice amount should be summed and it should give the total
    Thanks
    Y

    if you need to have the sum of invoice related to each customer then may also need to check for the
    CUBE
    http://download.oracle.com/docs/cd/B28359_01/server.111/b28286/statements_10002.htm#sthref9448
    and example here
    http://download.oracle.com/docs/cd/B28359_01/server.111/b28286/statements_10002.htm#i2066443
    and ROLLUP
    http://download.oracle.com/docs/cd/B28359_01/server.111/b28286/statements_10002.htm#sthref9445
    I couldn't follow with all your SQL statement, or I could rewrite it for you again
    Thanks
    Edited by: user9532576 on Jul 21, 2009 9:24 AM

  • Oracle 10g training

    hi this is sunil from bangalore. I have been working as QA for 3 years, now i want to change my domain to Oracle/ database oriented domain. Can anybody help me in findind the best oracle product to switch into. I have MS in computer science degree from Manipal university.
    sunil,
    [email protected]

    Besides courses offered by Oracle University you can also try training offered by Oracle training partner. It's usually cheaper than OU.
    http://www.oracle.com/education/partners/partners.html
    The courses offered by your local community college are cheapest you can get, sometime they are not as good. Depends.

  • Does oracle 10g 64bit need windows 64bit to support?

    Must I install 10g 64bit on windows 64bit ?

    Thead title is different from following question.
    Not only on Windows: 64bit software requires 64bit OS, but 64bit OS does NOT require 64bit software. So you don't need to install 10g 64bit on windows 64bit, but you cannot install 10g 64bit on windows 32bit.
    Werner

  • Oracle 10G and UCCX 5.0 Database Connection return 0 rows on query

    Currently I have an issue with UCCX 5.0 and Oracle 10G, we need to access a table on an Oracle10G DB, form IP IVR, so I installed the driver, created the ODBC connection and declared the ODBC, user and password on the Database subsystem (name on UCCX match the ODBC name) and restarted the engine.
    Im trying to do simple select statement (SELECT * FROM TABLE) and I'm getting a 0 count once I test it.

    Hi,
    I see it has been a while since you posted this question, but I am having exactly the same problem with an Oracle integration and I was wondering if you were able to fix this and how.
    Your reply will be greatly appreciated.
    Regards,
    Eduardo

  • How  to get the oracle 10g database backup.

    Hi,
    i have installed oracle 10g.i need to get the back up of db.
    i have search so many sites.i didn't get much information.
    some guys tells we go to installed directory in that run"RAMNS".
    i am following in the process.after run the rams which commands
    i have to used to get the db back up.
    C:\Oracle\app\oracle\product\10.2.0\server\BIN\RAMNS
    RAMNS>...(here is the prob which commands i have to used)
    i have seen another way solution is you can use "imp" and "exp" present in BIN to take back up.(how to follow this)
    please help me,

    Would suggest you read the docs on backup, restore. if you cannot restore you db, you are in trouble. read it and understand it well.
    Summary:
    For 10g, you have rman, imp/exp and datapump import/export (replaces imp/exp).
    For very simple backups where you have windows you can shut down, run a cold backup. shutdown the database, copy the database files, and startup. i also take copies of the current pfile and anything else important to restore the database with. we copy the files to a dedicated backup file system, which go to tap, e.
    That will give you a simple option to restore.
    For prod databases, you typically want archive mode on which means you can run hot or online backups. just remember you have to have the archive logs generated during the hot backup. you now also have the ability to do a point in time restore.
    Exp or datapump exp can be used for metadata exports, full exports or partial (schema, table, etc) as needed. i typically run a cold or hot plus an export for redundacy and restore options, but db size will change how you back things up.
    You can find plenty of scripts to automate these. just understand how the scripts work and understand the process itself. if not, you will have trouble restoring when it is needed the most.
    Rman is also a good option with the latest releases.

  • Needs to upgrade from Oracle 8i DBA to oracle 10g DBA

    I need help from oracle guru's if they advice me on how to take up the upgradation exam from 8i to 10g. Actually, since last 4 years i am working as Oracle ERP Techno Functional Specialist for impementation on Project Contracts 11i. I would be greatful if anyone can suggest some of the best institutes in Hyderabad, india for training on Oracle 10g DBA?
    Thans in advance
    Arizuddin
    [email protected]
    Mobile: +966502297583

    Oracle Database 10g: New Features for Oracle8i DBAs (Database)
    http://education.oracle.com/pls/web_prod-plq-dad/show_desc.redirect?dc=D17389GC10&p_org_id=28&lang=US&source_call=

  • Vedio / Audio web based training for Oracle 10g DBA.

    Hi Everyone,
    I am looking for a free web based training / Vedio / Audio for Oracle 10g DBA.
    Please help me out in the same.
    Thanks & Regards,
    Deepak
    Edited by: [email protected] on May 15, 2009 9:48 PM

    [email protected] wrote:
    Hi Everyone,
    I am looking for a free web based training / Vedio / Audio for Oracle 10g DBA.
    Please help me out in the same.
    Thanks & Regards,
    Deepak
    Edited by: [email protected] on May 15, 2009 9:48 PM
    Deepak,
    There is no free lunch anywhere in this world, and the same is true for the training as well of Oracle modules. If you can't get time out to attend an Instructor based training, you have two choices,
    1) Self Study CD Roms Oracle offers the trainining in a self paced learning format with CD Roms which have all whatis needed to make one start and grow with the learning of a specific module. You can check which module you need and can order the cd rom for that. Learn more about this from here,
    http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=35
    2) Live Virtual Class This is the newest standard that Oracle has introduced in the training formats. As the name suggests, this is a class which is surely taught by an instructor only but this doens't need you to come and attend a course at a specific location , for example at Oracle's education office. You can attend the prorgam while being at your home/office as well. It offers rich video/audio expereince which doesn't make you feel that you are just learning sitting in front of a computer. Learn more about it from here,
    http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=233
    That said, both the options mentioned above are NOT free and there is NO free event happening anywhere which goes from the start to finish of a module. There are some small web events but they can't be called a training class as there are just some topics discussed in them. So once again, don't look for free lunch, its not there anywhere.
    HTH
    Aman....

  • Need Oracle 10g & 10g AS advice in Delhi

    We have a developed a MIS software related to HARD/Road/Bridge/Building with Inventory and project monitoring. The Software is complete as per Client Server Architecture. Presently we have Oracle 9i , Windows NT/2003 Server, 32 bit .
    We require to migrate it to 10g and deploy it on Oracle 10g application Server and impart training to the users/ developers .
    I[b] am seeking someone from Delhi region to provide me some IMMEDIATE technical ONSITE support .  .
    Technical details
    (1) Oracle 9i: Ver Rel2 (9.2.0.1.0) for windows
    (2) Server 512 MBR, present OS is NT4.0 we are upgrading it to Windows 2003
    (3)(report and forms have been designed by d2k- form6i/report6i
    One may call me at +91 9830251150 . Pls ask your friends / contacts if they could assist us .

    First, you will not be able to install a Database and Application Server on that server with 512MB RAM. Secondly is this definitely NOT the kind of forum where you should make commercial advertisement, spamming etc. If you need a resource, I advice you to call Oracle Consulting directly.
    Regards,
    Martin

  • Need Advise and Suggestions-Oracle 10g

    Hi,
    I have been working on databases as DB developer(mainly PLsql)--Oracle 10g
    Recently,i have joined in a particular position where I have been asked to find out areas where
    improvement is necessary / or areas where improvement or changes would help very much and also gradually implement all best practises avaialable.
    So,could you please help me with these queries
    (1)What are the most important areas that i can start with the database which would impact largely the entire database.How can i start with it? any steps or process
    (2)I had once taken a report out for the expensive SQLs running.But that dint help much...because those SQLs were used temporarily on and off.
    Similarly,what are the other points to be looked on.
    (3)Things which can be replaced with the industry standarad better ones fully.
    an example would be...like.."following a particular naming format,or coding style,etc
    Thanks
    Rohit

    Hi Rohit,
    This is a pretty huge subject. To start, I'd say you need to talk to the business. Talk to the users of the database, cause they are your customers. Get a clear understanding of the most critical business processes. Start with the most critical ones, and get performance profiles. How long do they take to run? What's the customer's perception of the process performance? If it's acceptable, move on to the next one. If it's not acceptable, you'll need to dig deeper. Look at each piece of the process. Where is the most time being spent? Can it be improved? This step will be a combination of process improvement and setting the correct expectation. Often, the user doesn't really know what is realistic in terms of performance. If you have a 2 billion row table that needs to get full table scanned, expecting a response time of a few seconds just simply isn't going to happen. You need to clearly convey that to the customer. On the other hand, at the same time, you should be on the lookout for real improvements. If you can re-write the SQL or add an index, and eliminate the FTS on that 2 billion row table, maybe a response time of a few seconds is actually realistic.
    It's all about understanding the system, and understanding the customer's needs, and how they intersect. It will be an iterative process, and will take some time.
    As to "best practices", I'm not a fan of them. Understand your system, understand your customer's needs, and understand how Oracle actually works. If you can master that, you'll be unstoppable. Note that many, many people, much smarter people than me, have spent a lifetime trying to master those three points... :-)
    Good luck with your new job!
    -Mark

  • Need HELP :: Oracle 10g for Windows 7 Professional 64bit

    I am trying to install Oracle 10g for my Laptop (Windows 7 64bit)and i am getting error message: ERROR Starting Database Control.
    Here are last few lines from emconfig.log file ---
    Jan 4, 2012 2:47:59 PM oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: Enter Enterprise Manager Root Password :
    ******** **** Certificate was added to keystore
    Certificate reply was installed in keystore
    Jan 4, 2012 2:47:59 PM oracle.sysman.emcp.util.FileUtil printFileToLog
    CONFIG: Printing file(After Secure DBConsole): C:\oracle\product\10.2.0\db_1\oc4j\j2ee\OC4J_DBConsole_NCI-01874908-L.nci.nih.gov_ORA10G\config\http-web-site.xml
    <?xml version = '1.0' standalone = 'yes'?>
    <!DOCTYPE web-site PUBLIC "OracleAS XML Web-site" "http://xmlns.oracle.com/ias/dtds/web-site-9_04.dtd">
    <web-site port="1158" display-name="OC4J Java HTTP Web Site" secure="TRUE">
    <!-- The default web-app for this site, bound to the root -->
    <default-web-app application="default" name="defaultWebApp"/>
    <web-app application="default" name="dms0" root="/dms0"/>
    <web-app application="default" name="dms" root="/dmsoc4j"/>
    <web-app application="em" name="em" load-on-startup="true" root="/em" shared="true" />
    <!-- Access Log, where requests are logged to -->
    <access-log path="../log/http-web-access.log"/>
    <!-- Uncomment this if you want to use ODL logging capabilities
    <odl-access-log path="../log/http-web-access" max-file-size="1000" max-directory-size="10000"/>
    -->
    <ssl-config needs-client-auth="false" keystore="C:\oracle\product\10.2.0\db_1/oc4j/j2ee/OC4J_DBConsole_NCI-01874908-L.nci.nih.gov_ORA10G/config/server/keystore.test" keystore-password="FE7337F1A5D238357C9C6819AFC4F812" />
    </web-site>
    Jan 4, 2012 2:47:59 PM oracle.sysman.emcp.util.DBControlUtil secureDBConsole
    INFO: Database Control secured successfully.
    Jan 4, 2012 2:47:59 PM oracle.sysman.emcp.EMDBPostConfig performConfiguration
    CONFIG: Securing Database Control completed successfully .
    Jan 4, 2012 2:47:59 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Jan 4, 2012 2:47:59 PM oracle.sysman.emcp.util.DBControlUtil startOMS
    INFO: Starting Database Control (this may take a while) ...
    Jan 4, 2012 2:47:59 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: cmdType: 0
    Jan 4, 2012 2:47:59 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Starting Windows service...OracleDBConsoleORA10G
    Jan 4, 2012 2:47:59 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleORA10G' to fully start
    Jan 4, 2012 2:48:09 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleORA10G' to fully start
    Jan 4, 2012 2:48:19 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleORA10G' to fully start
    Jan 4, 2012 2:48:29 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleORA10G' to fully start
    Jan 4, 2012 2:48:39 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleORA10G' to fully start
    Jan 4, 2012 2:48:49 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleORA10G' to fully start
    Jan 4, 2012 2:48:59 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleORA10G' to fully start
    Jan 4, 2012 2:49:09 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleORA10G' to fully start
    Jan 4, 2012 2:49:19 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleORA10G' to fully start
    Jan 4, 2012 2:49:29 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleORA10G' to fully start
    Jan 4, 2012 2:49:39 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleORA10G' to fully start
    Jan 4, 2012 2:49:49 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleORA10G' to fully start
    Jan 4, 2012 2:49:59 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleORA10G' to fully start
    Jan 4, 2012 2:50:09 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleORA10G' to fully start
    Jan 4, 2012 2:50:19 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleORA10G' to fully start
    Jan 4, 2012 2:50:29 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleORA10G' to fully start
    Jan 4, 2012 2:50:39 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleORA10G' to fully start
    Jan 4, 2012 2:50:49 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleORA10G' to fully start
    Jan 4, 2012 2:50:59 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleORA10G' to fully start
    Jan 4, 2012 2:51:09 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleORA10G' to fully start
    Jan 4, 2012 2:51:19 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleORA10G' to fully start
    Jan 4, 2012 2:51:29 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleORA10G' to fully start
    Jan 4, 2012 2:51:39 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleORA10G' to fully start
    Jan 4, 2012 2:51:49 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleORA10G' to fully start
    Jan 4, 2012 2:51:59 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleORA10G' to fully start
    Jan 4, 2012 2:52:09 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleORA10G' to fully start
    Jan 4, 2012 2:52:19 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleORA10G' to fully start
    Jan 4, 2012 2:52:29 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleORA10G' to fully start
    Jan 4, 2012 2:52:39 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleORA10G' to fully start
    Jan 4, 2012 2:52:49 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleORA10G' to fully start
    Jan 4, 2012 2:52:59 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleORA10G' to fully start
    Jan 4, 2012 2:53:09 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleORA10G' to fully start
    Jan 4, 2012 2:53:19 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleORA10G' to fully start
    Jan 4, 2012 2:53:29 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleORA10G' to fully start
    Jan 4, 2012 2:53:39 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleORA10G' to fully start
    Jan 4, 2012 2:53:49 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleORA10G' to fully start
    Jan 4, 2012 2:53:59 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleORA10G' to fully start
    Jan 4, 2012 2:54:09 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleORA10G' to fully start
    Jan 4, 2012 2:54:19 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleORA10G' to fully start
    Jan 4, 2012 2:54:29 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleORA10G' to fully start
    Jan 4, 2012 2:54:39 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleORA10G' to fully start
    Jan 4, 2012 2:54:49 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleORA10G' to fully start
    Jan 4, 2012 2:54:59 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleORA10G' to fully start
    Jan 4, 2012 2:55:09 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleORA10G' to fully start
    Jan 4, 2012 2:55:19 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleORA10G' to fully start
    Jan 4, 2012 2:55:29 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleORA10G' to fully start
    Jan 4, 2012 2:55:39 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleORA10G' to fully start
    Jan 4, 2012 2:55:49 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleORA10G' to fully start
    Jan 4, 2012 2:55:59 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleORA10G' to fully start
    Jan 4, 2012 2:56:09 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleORA10G' to fully start
    Jan 4, 2012 2:56:19 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleORA10G' to fully start
    Jan 4, 2012 2:56:19 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Initialization failure for service during start
    Jan 4, 2012 2:56:19 PM oracle.sysman.emcp.EMConfig perform
    SEVERE: Error starting Database Control
    Refer to the log file at C:\oracle\product\10.2.0\db_1\cfgtoollogs\dbca\ORA10G\emConfig.log for more details.
    Jan 4, 2012 2:56:19 PM oracle.sysman.emcp.EMConfig perform
    CONFIG: Stack Trace:
    oracle.sysman.emcp.exception.EMConfigException: Error starting Database Control
    at oracle.sysman.emcp.EMDBPostConfig.performConfiguration(EMDBPostConfig.java:646)
    at oracle.sysman.emcp.EMDBPostConfig.invoke(EMDBPostConfig.java:224)
    at oracle.sysman.emcp.EMDBPostConfig.invoke(EMDBPostConfig.java:193)
    at oracle.sysman.emcp.EMConfig.perform(EMConfig.java:184)
    at oracle.sysman.assistants.util.em.EMConfiguration.run(EMConfiguration.java:436)
    at java.lang.Thread.run(Thread.java:595)

    Pl identify which exact version of 10g is being installed.
    Only 10.2.0.5 is supported/certified. The install steps are here - http://docs.oracle.com/cd/B19306_01/relnotes.102/b15680/toc.htm#BABEBBJF
    MOS Doc 1222603.1 (Enterprise Manager Database Control Configuration - Recovering From Errors Due to CA Expiry on Oracle Database 10.2.0.4 or 10.2.0.5 [Video]) may be relevant
    HTH
    Srini

  • I need to add a new node to RAC Oracle 10g R2

    I need to add a new node to RAC Oracle 10g R2.
    what is the best mode.
    cloning or step by step?
    SO: Solaris 64bit
    Message was edited by:
    ACS

    Hi All,
    I get the following error eventhough I have followed the instruction for Solaris R2. The instruction is enclosed. Please Advise! Thanks.
    /app/cluvfy/runcluvfy.sh stage -post hwos -n nod1 -verbose
    Result: User equivalence check failed for user "oracle".
    ERROR:
    User equivalence unavailable on all the nodes.
    Verification cannot proceed.
    Post-check for hardware and operating system setup was unsuccessful on all the nodes.
    =========================
    1. Log in as the oracle user.
    2. If necessary, create the .sshdirectory in the oracle user’s home directory and
    set the correct permissions on it:
    $ mkdir ~/.ssh
    $ chmod 700 ~/.ssh
    3. Enter the following commands to generate an RSA key for version 2 of the SSH
    protocol:
    $ /usr/bin/ssh-keygen -t rsa
    At the prompts:
    ¦ Accept the default location for the key file.
    ¦ Enter and confirm a pass phrase that is different from the oracle user’s
    password.
    This command writes the public key to the ~/.ssh/id_rsa.pub file and the
    private key to the ~/.ssh/id_rsafile. Never distribute the private key to anyone.
    4. Enter the following commands to generate a DSA key for version 2 of the SSH
    protocol:
    $ /usr/bin/ssh-keygen -t dsa
    At the prompts:
    ¦ Accept the default location for the key file
    Pre-Installation Tasks 2-11
    Creating Required Operating System Groups and User
    ¦ Enter and confirm a pass phrase that is different from the oracle user’s
    password
    This command writes the public key to the ~/.ssh/id_dsa.pub file and the
    private key to the ~/.ssh/id_dsa file. Never distribute the private key to
    anyone.
    Add keys to an authorized key file: Complete the following steps:
    1. On the local node, determine if you have an authorized key file
    (~/.ssh/authorized_keys). If the authorized key file already exists, then
    proceed to step 2. Otherwise, enter the following commands:
    $ touch ~/.ssh/authorized_keys
    $ cd ~/.ssh
    $ ls
    You should see the id_dsa.pub and id_rsa.pubkeys that you have created.
    2. Using SSH, copy the contents of the ~/.ssh/id_rsa.puband
    ~/.ssh/id_dsa.pubfiles to the file ~/.ssh/authorized_keys, and provide
    the Oracle user password as prompted. This process is illustrated in the following
    syntax example with a two-node cluster, with nodes node1 and node2, where the
    Oracle user path is /home/oracle:
    [oracle@node1 .ssh]$ ssh node1 cat /home/oracle/.ssh/id_rsa.pub >>
    authorized_keys
    oracle@node1’s password:
    [oracle@node1 .ssh]$ ssh node1 cat /home/oracle/.ssh/id_dsa.pub >>
    authorized_keys
    oracle@node1 .ssh$ ssh node2 cat /home/oracle/.ssh/id_rsa.pub >>
    authorized_keys
    oracle@node2’s password:
    [oracle@node1 .ssh$ ssh node2 cat /home/oracle/.ssh/id_dsa.pub
    authorized_keysoracle@node2’s password:
    Note: Repeat this process for each node in the cluster                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Need help for importing oracle 10G dump into 9i database

    hi, Someone help me to import oracle 10G dump into 9i database. I'm studying oracle . Im using oracle 10G developer suite(downloaded from oracle) and oracle 9i database. I saw some threads tat we can't import the higher version dumps into lower version database. But i'm badly need help for importing the dump...
    or
    someone please tell me the site to download oracle 9i Developer suite as i can't find it in oracle site...

    I didnt testet it to import a dump out of a 10g instance into a 9i instance if this export has been done using a 10g environment.
    But it is possible to perform an export with a 9i environment against a 10g instance.
    I am just testing this with a 9.2.0.8 environment against a 10.2.0.4.0 instance and is working so far.
    The system raises an EXP-00008 / ORA-37002 error after exporting the data segments (exporting post-schema procedural objects and actions).
    I am not sure if it is possible to perform an import to a 9i instance with this dump but maybe worth to give it a try.
    It should potentially be possible to export at least 9i compatible objects/segments with this approach.
    However, I have my doubts if this stunt is supported by oracle ...
    Message was edited by:
    user434854

Maybe you are looking for