UPDATE STANDBY SITE NAME with DATAGUARD BROKE "DGMGRL"

I've a llitlle PB with my Dataguard
After shutdown both sites to increase SGA size in Primary site and update in secondary site too
I start the Primary site without Pb.
But the Secondary site don't want to start.
When I do a startup it fails.i check in Dataguard and i found
The Pb is the secondary site name is not ('DMWEBDG_srvsdmwebp02')
bu only "DMWEBDG"
And I can't find any way to update the site name in Dataguarg.
the Alter command doesn't explain very well.
Soes anyone knows how to do it?
Thxs
DGMGRL> show site verbose 'DMWEBDG_srvsdmwebp02'
Site
Name: 'DMWEBDG_srvsdmwebp02'
Hostname: 'srvsdmwebp02'
Instance name: 'DMWEBDG'
Service Name: '(DESCRIPTION=(ADDRESS_LIST = (ADDRESS=(PROTOCOL=tcp)(HOST=srvsdmwebp02.int.imd.ch)(PORT=1525)))(CONNECT_DATA=(SID=DMWEBDG)(SERVER=DEDICATED)))'
Standby Type: 'physical'
Number Built-in Processes: '2'
Number Generic Processes: '0'
Enabled: 'yes'
Required: 'yes'
Default state: 'STANDBY'
Intended state: 'STANDBY'
PFILE: ''
Number of resources: 1
Resources:
Name: DMWEBDG_srvsdmwebp02 (default) (verbose name='DMWEBDG_srvsdmwebp02')
Current status for "DMWEBDG_srvsdmwebp02":
Warning: ORA-01034: ORACLE not available

Thxs
The PB was Solved.

Similar Messages

  • How to Configure  Oracle Management Server (OMS) with  Dataguard Broker

    Dear Experts,
    i have a production DB (192.168.200.9) 9.2.0.1.0 on Server 2003
    i have a standby DB (192.168.200.19) 9.2.0.1.0 on Server 2003
    Archive logs are shipped to standby database and applied there. *(Datagauard is configured).*
    Now i want that Graphically i want to see that archivelogs are shipping to standby database and applied there ( i want to configure Dataguard Broker in graphical mode (*dataguard manager*) isnt it ( bcz i anm bit confused with this).............?
    *1.* For this purpose to achieve i take some seperate machine install on it Server 2003.
    *2.* and then Install oracle db 9.2.0.1.0 ( here i will install FULL DATABASE, CUSTOM installation ( then createsome repository).
    *3*. can i configure this repository for OMS on my already running production or standby DB............?
    *4.* After this OMS is configured or not..........?
    *5.* how i will configure datagauard broker
    what i know regarding this is on primary and standby db *( DG_BROKER_START = TRUE)* and after
    this we have to create some configuration wizards but how
    i think i have to go with this sequence if somebody has different sequence tellm e
    wait for replies
    thanks in advance
    regards rehan
    faisalabad pakistan

    Does anybody dont know anything about this.................?

  • How can I update a Site Column with the content of an array with javascript CSOM?

    I'm relative new to Sharepoint 2013, I'm trying to update the content of a Site column with the content of an array, I can retrieve and visualize the content of my site column, the user is able to change and save the necessary part and the changes are
    saved into an array, now I have to update the content of the site column with the content of the array, but for some kind of reasons I can't accomplish that, any suggestion/example? This is my code so far to retrieve, visualize the site column and store the
    mofication into my array.
        <body>
                <select id="dropdown" name="dropdown" onchange="optSelect()">
                    <option value="EngineType_Cylinders">EngineType_Cylinders</option>
                    <option value="EngineType_EngineCycle">EngineType_EngineCycle</option>
                    <option value="EngineType_EngineFamily">EngineType_EngineFamily</option>
                    <option value="EngineType_Euro">EngineType_Euro</option>
                    <option value="EngineType_FamilyEvolution">EngineType_FamilyEvolution</option>
                    <option value="EngineType_GasEmissionLevel">EngineType_GasEmissionLevel</option>
                    <option value="EngineType_Power">EngineType_Power</option>
                    <option value="EngineType_PowerSupply">EngineType_PowerSupply</option>
                    <option value="EngineType_Use">EngineType_Use</option>
                </select><br />
                <textarea id="textareadisplay" rows="25" cols="23"></textarea><br />
                <input type ="button" value="Update values" onclick="addItemsToColumns()" />
            </body>
    My Javascript
        $(function () {
            SP.SOD.executeOrDelayUntilScriptLoaded(Function.createDelegate(this, function () {
               var select = document.getElementById('dropdown').value;
                console.log(select);
                getSiteColumns(select);
            }), 'SP.js');
        var fieldChoice;
        var choices;
        var addFields = [];
        var slc;
        var clientContext;
        function optSelect() {
            slc = document.getElementById('dropdown').value;
            getSiteColumns(slc);
        function getSiteColumns(selection) {
           clientContext = SP.ClientContext.get_current();
            if (clientContext != undefined && clientContext != null) {
                var web = clientContext.get_web();
                fieldChoice = clientContext.castTo(web.get_availableFields().getByTitle(selection), SP.FieldChoice);
                clientContext.load(this.fieldChoice);
                clientContext.executeQueryAsync(Function.createDelegate(this, this.OnLoadSuccess), Function.createDelegate(this, this.OnLoadFailed));
        function OnLoadSuccess(sender, args) {
            choices = fieldChoice.get_choices();
            var textarea = document.getElementById("textareadisplay");
            textarea.value = choices.join("\n");
        function OnLoadFailed(sender, args) {
            alert('Request failed. ' + args.get_message() + '\n' + args.get_stackTrace());
        function addItemsToColumns() {
            clientC = SP.ClientContext.get_current();
            var arrayForUpdate = $('#textareadisplay').val().split('\n');
            fieldChoice.set_item(, arrayForUpdate);
            fieldChoice.update();
            clientContext.executeQueryAsync(function () { }, function () { });
        function OnUpdateSuccess(sender, args) {
            var newchoices = fieldChoice.get_choices();
    My problem is on the function addItemsToColumns() please help! Thanks in advance.

    Let's look at your stylesheet -
    <style type="text/css">
    body {
    background-image: url(assets/images/Business%20Men%20In%20Reception%20Col.2.jpg);
    background-repeat: no-repeat;
    background-color: #003;
    margin-left:auto;
    margin-right:auto;
    position: relative;
    width: 960px;
    It's a good idea not to use spaces or any punctuation in your filenames when working for the web.
    #header {
    margin-left:auto;
    margin-right:auto;
    position: relative;
    width: 960px;
    #heading {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 36px;
    font-style: italic;
    font-variant: normal;
    margin-left:auto;
    margin-right:auto;
    There's no need to specify the default values (font-variant:normal) or to specify auto margins for any block element without an explicitly defined width. And wouldn't it make more sense to put the font style on the body tag, where it will inherit into the rest of the page than to restate it as you have done in the next rule?
    #bodytext {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 18px;
    line-height: 25px;
    font-variant: normal;
    width: 300px;
    #container {
    width: 960px;
    position: relative;
    margin-left:auto;
    margin-right:auto;
    .rightimg {
    float: right;
    margin-left: auto;
    padding-right: 40px;
    #heading #navbar ul li {
    padding: 30px;
    </style>
    Margin-left:auto can't work without knowing what the width of the element is....  Keep your CSS lean and targeted - it will help you to debug your layouts.

  • IREC : Update seeded site name in format job posting

    Hi,
    Can we rename the Site name displayed in format job posting when creating or updating vacancy.
    Seeded site name -
    iRecruitment External Site
    iRecruitment Internal Site
    These site name to be renamed with customer portal name, is it possible without updating the table "IRC_ALL_RECRUITING_SITES_TL"
    thanks
    Siva

    Hi Siva,
    Unfortunately, there is no supported way to do it unfortunately.
    Regards,
    Vinayaka

  • Issue with Dataguard Broker

    DB Version -Oracle Database 11g Enterprise Edition Release 11.2.0.2.0
    DGMGRL> show configuration;
    Configuration - testDG
    Protection Mode: MaxPerformance
    Databases:
    orcl - Primary database
    standby1 - Physical standby database
    Error: ORA-16664: unable to receive the result from a database
    Fast-Start Failover: DISABLED
    Configuration Status:
    ERROR
    I completed all basic checks i.e 1) Listerner on both standby and physical db's contains entry for DGMGRL 2) tnsping is working fine from both primary and physical dB’s, 3) I disabled configuration, removed the old broker configuration files and rebuild it, still the issue is not resolved4) All other issues like log shipping and sync is perfect in the configuration
    Any help here will be highly appreciated !!
    Thanks in advance .
    Edited by: 918868 on Apr 10, 2013 10:40 AM

    I did this testing before,see the below output :-
    [oracle@primary ~]$ sqlplus sys/oracle@standby1 as sysdba
    SQL*Plus: Release 11.2.0.2.0 Production on Thu Apr 11 08:07:06 2013
    Copyright (c) 1982, 2010, Oracle. All rights reserved.
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL>
    I checked lot of other things, dgbroker log shows the below lines :-
    2013-04-11 08:09:03.793 00000000 1207911714 for opcode = HEALTH_CHECK, phase = BEGIN, req_id = 1.1.1207911714
    2013-04-11 08:09:48.669 00001000 1207911715 DMON: Entered rfm_get_chief_lock() for MON_VERIFY, reason 0
    2013-04-11 08:09:48.670 00001000 1207911715 DMON: start task execution: client healthcheck
    2013-04-11 08:09:48.670 INSV: Received message for inter-instance publication
    2013-04-11 08:09:48.670 req ID 1.1.1207911715, opcode MON_VERIFY, phase BEGIN, flags 5
    2013-04-11 08:09:48.888 INSV: Reply received for message with
    2013-04-11 08:09:48.889 req ID 1.1.1207911715, opcode MON_VERIFY, phase BEGIN
    2013-04-11 08:10:04.044 NSV1: Site standby1 returned ORA-16664.
    2013-04-11 08:10:04.045 00000000 1207911715 DMON: Database standby1 returned ORA-16664
    2013-04-11 08:10:04.045 00000000 1207911715 for opcode = MON_VERIFY, phase = BEGIN, req_id = 1.1.1207911715
    2013-04-11 08:10:04.045 00000000 1207911715 DMON: Entered rfm_release_chief_lock() for MON_VERIFY
    Any other further troubleshooting tips will be great.
    Thanks in advance.

  • Creaton of Standby database and dataguard broker

    Hi Experts,
    I am using Linux with Oracle version 11gR2. We have planned to create a physical standby database and also configure dataguard broker for the standby database.
    Also, I've read the documents that active dataguard is a feature on 11g. Is it not possible on 10g ?
    Can someone please provide me the steps to create the standby database and configure the dataguard broker.

    Hello;
    A simple Data Broker setup would be :
    On both Primary and Standby sites, change the initialization parameter in the spfile to enable the Data guard broker.
    SQL> Alter system set dg_broker_start=True scope=both;
    On the PRIMARY site, open the ‘cmd’ and start Command Line Interface (CLI) of the Dataguard Broker (DGMGRL).
    /home/oracle:PRIMARY >dgmgrl
    DGMGRL for Linux: Version 11.2.0.1.0 - 64bit Production
    DGMGRL> connect sys/password@PRIMARY
    Create broker configuration.
    DGMGRL> create configuration ‘broker1’ as
    primary database is 'PRIMARY'
    connect identifier is primary;Configuration "?broker1?" created with primary database "PRIMARY"
    DGMGRL>
    (‘primary’ in Connect identifier is the service name through which the broker is connected to the PRIMARY database)
    Add Standby Database to the above configuration.
    DGMGRL> add database 'standby' as
    connect identifier is 'STANDBY'
    maintained as physical;
    Database "standby" added
    (‘to_standby’ in Connect identifier is the service name through which the broker is connected to the STANDBY database)
    Now the configuration has been set up but it is still disabled. You can view the configuration by executing:
    DGMGRL> show configuration
    The next step is to ENABLE the configuration ‘broker1’.
    DGMGRL> enable configuration;
    Enabled.
    Again view the configuration.
    DGMGRL> show configuration
    Configuration - ?broker1?
      Protection Mode: MaxPerformance
      Databases:
        PRIMARY - Primary database
        standby - Physical standby database
    Fast-Start Failover: DISABLED
    Configuration Status:
    SUCCESSIn my humble opinion its a good idea to setup Data Guard without Broker and get the "feel" of it first.
    Remember, once you setup Broker, you cannot use SQL to change your Data Guard setup.
    Best Regards
    mseberg

  • At the time of copying online redologs to STANDBY site.....

    hai..
    At the time of configureing dataguard manually(without rman) do i need to copy the online redologs to standby site along with *.dbf files and standby controlfile after clena shutdown? bcaz some procdeures guide me to copy all files with online redolog files to the stanndby environment.but some procedures guide me to only copy the *.dbf files to the standby environment along with init.ora,standby controlfile from the primary site.whcih one is correct? and which one is better?
    please guide me.

    What is better is to use RMAN.
    Why violate "best practice" guidelines.
    RMAN knows what to copy and does it correctly.
    Hint: If you don't copy the online redologs ... how will they be created? Magic rarely works.

  • Site made with iWeb using personal domain name

    I have created a web site on iWeb 08 and have a personal domain name through Network Solutions.
    The website was published to Mobile Me after "set up personal domain" was done. The C Name record was changed at Network Solutions to web.me.com. When I write the domain name in the browser a box comes down asking "idisk.mac.com" wants user name and password.
    1. Why is it asking for this?
    2. every ID and Password I put in, it tells me is incorrect? Ahhhhhhhh What does it want from me?
    Please help - I've waisted so much time on this (since last week).
    The website name is www.theplazarealty.com is you want to take a look.
    Thank you

    This relates to a problem I can't find in the iWeb manual. Where is my iWeb site actually published to, so I can accurately update it using FTP software, and which method to use for publishing it to domain names?
    I have created two websites for two different purposes each with a personal domain (one hosted, the other with webforwarding), and through ignorance have done all three options Publish to MobileMe / Publish All to MobileMe / and Publish to a folder (my home computer user Sites folder). As a result I have three Sites folders each containing both 'mysites'- Computer/user/Sites/sitename, or iDisk/user/Sites/sitename, or iDisk/user/Web/Sites/sitename - all different sizes, worryingly, leaving me unclear which is doing what. What is the diff between Publish All to MMe and Publish to MMe - they both seem to entail both sites totally republishing even if only one page has changed. Each time, of course, it takes several minutes or more to clear through the publishing process, and then some 20-30mins more to synchronise with FTP before I find out whether I've only used the duff old version after all. What is the difference between the three Sites destination folders? Can the difference be used productively? Should I, eg, ensure my sites exist both on my computer and iDisk as backup?
    Further confusing factor is that when I log into MMe and look at my folders icon on my iDisk, which are Sites and Web/Sites, the contents of the two 'mysites' folders listed under both areas are different from the SITES/iWeb display listed below them, which seems to be a truncated sort of merger of the 'mysites' contents without their separation into two. Is that iWeb item under SITES on the folders page listing a fourth set of the contents,or what?
    Now to synchronising/updating: which Sites folder to use to synchronise the websites with. Can I get updating in sync with republishing? My domain host UKcentric does not provide the CNAME options you have all talked about and they are unobtainable on my hosted domain page. I sent him the web.me.com message as described in the iWeb Personal Domain instrux, but he has persistently instructed me to use FTP software to upload and update the sites. He is not Mac-friendly, he admits. I have now used three programs, ClassicFTP, FileZilla and Cyberduck, all of which seem to be rather different and none of them has told me the sync has completed (the connection drops out, etc - it does take a long time, say 30-40mins to do, and I never know when I "resume" whether it'll pick up where it was or go back to zero start). If I am stuck with this laborious method of regular manual updating, I want to know I am using the correct Sites folder to synchronise the website with. None of this is clarified in the iWeb manual. Can anyone help?

  • Creating physical standby databases with DG Broker & OEM

    Hi guys,
    I manage 8i, 9i & 10g databases through OEM 10.2.0.2.
    Today, I would like to create physical standby db for the most important applications. Because I'm a lazy guy, I'd like to do it the easiest way, with GUI and wizzards provided by OEM.
    1. Do you know any tutorial on the Internet that would help to do it easily ? My only source up to now is the official DB broker documentation (http://download.oracle.com/docs/cd/B19306_01/server.102/b14230/toc.htm), which is 300 pages long like every Oracle doc. I'd appreciate any tutorial that could lead me straight to the essential. I've heard that is not so tricky to create a physical standby db
    2. Is the procedure really different to create (and then manage) a physical standby database on Oracle 8i, 9i and 10g ? Is it possible to do it through DB Broker and OEM for every version ?
    thank you for your help
    Antoine

    Antionio,
    Oracle Documentation is the best source of configuring any Oracle component.
    But, If you do not want to read the entire doc, and want to configure Dataguard Broker (without OEM), then here is the Link.
    http://www.oracledba.org/10g/dr/10gR2_dataguard_RAC_to_RAC.html#Configure_Dataguard_Broker:

  • I need to update my phone, but my computer broke, and do not have a new one. I have an Itunes account, can I use someone else computer to go through with the update?  Is there a chance of loosing all my data, ie: music/photos?

    I need to update my phone, but my computer broke, and do not have a new one. can I use someone else computer to go through with the update if i log on with my itunes account or Is there a chance of loosing all my data, ie: music/photos? And if all else fails can i go to the apple store and have them update my phone?

    Update to what? The 3G you want to update? You have ios3 or 4 on that 3G?
    Go to a friend, authorize that pc.
    Read this : http://support.apple.com/kb/ht1848
    and this : http://support.apple.com/kb/ht2519
    Make a backup of your stuff (from the phone. apps/photos/music/blabla). Update your phone. The phone will restore the backup automatically.

  • I want more than one site, all with personal domain names

    I have a dot mac account and I created a personal website using iweb (www.personalname.com) and now I would like to make a site for my business using iweb (www.businessname.com). Is that even possible? I've followed directions from other people. i know that I need to go into iweb and under file click new site and choose the templates and so on. But once I do all of that, I click publish and a box comes up and says this new site will now be published under your www.personalname.com.
    Am I missing something, or do I have to buy a completely new dot mac account for my business? Someone please help and walk me through this.
    Thanks a bunch!

    As Wyodor suggested have your domain name provider activate domain name forwarding for the second site. You'll need to open that site in your browser and get the actual URL to give the provider for forwarding.
    To make it easier to edit and publish individual sites I use iWebSites to manage multiple sites.. It lets me create multiple sites and multiple domain files.
    If you have multiple sites in one domain file here's the workflow I used to split them into individual site files with iWebSites. Be sure to make a backup copy of your original Domain.sites files before starting the splitting process.
    This lets me edit several sites and only republish the one I want.
    If you expect a lot of traffic to your business site you might want to consider having it hosted on a commercial hosting site that will not be bogged down with all of the bells and whistles that the MobileMe servers are in order to provide all of the special features. A commercial server will be faster and more reliable. Depending on where you purchase your business domain name you can host it on their servers.
    OT

  • How do I remove old web site when publishing new site with same URL in iweb? Hit replace when publishing new iweb site (so we could have control over changes) but new site name is attached to old via a / after our www address we want to keep.

    I hit the replace when publishing the new iweb site (so we could have control over changes - last one was not an apple based site) but new site name is attached to old via a forward slash and underscore after our www address. Makes it very messy with a very long web address.  Original address now followed by iweb site name followed by name of first page? Went for iweb as not that computer literate - all going so well?! Cheers for help in anticipation. Have to get off to work now but be great end to week if we could be sorted tonight. Rupes

    Well yes of course, if you try and publish through iWeb there won't be an option to publish without your site folder which is exactly why I told you to download Cyberduck and use Cyberduck to upload your site to your server having published your site from iWeb to a local folder.  That is what you need to do if you don't want your site name to be included in yoru url.
    It would have been easier also if you had used Cyberduck initially to connect to your server and delete your old site yourself - at least that way you would have deleted the correct files rather than relying on your hosting service to do it and doing it incorrectly.
    Download Cyberduck and then select the publish to a local folder option from iWeb and then use Cyberduck to upload your site to your server, but rather than uploading the whole site folder and separate index file, upload ONLY the contents of your site folder and then your url will be http://www.domain.com/page_name.html.
    It really isn't rocket science!

  • A bug in Fire Fox's update that is conflicting with PLESK site builder

    I asked AISO.net support for help because when I opened the PLESK Site-builder to edit my website, all I saw was HTML code instead of the WYSIWYG editor. They replied: Try using Internet Explorer as the site builder is optimized for that browser. It appears there is a bug in Fire Fox's update that is conflicting with the site builder program.
    Until fire fox addresses this issue you will need to use another browser.
    I want to use FIREFOX! Thanks, Janet

    Yes, there is a solution for this, made by Apple. Unfortunately nobody here is allowed to tell you what that is. Rules.
    But you can find the solution here:
    http://www.logicprohelp.com/forum/viewtopic.php?f=1&t=106513

  • Untrusted forest with duplicate AD site names

    Can anyone speculate on the behavior when enabling Forest discovery of an untrusted forest that has AD sites with the same names as what are in the installed forest (The forest where Config Mgr lives)?
    My concern is that the currently discovered boundaries (AD Site boundaries) already exist with the Site names so there may be some kind of conflict when Config Mgr tries to create AD Site boundaries based on the untrusted forest's duplicate named AD sites.

    There will be a conflict, but not with Forest discovery per se. I don't think it will really care. The conflict will come when clients actually use the boundaries for content lookup.
    Do the like-named sites represent the same locations in the enterprise? If so, then this should be a non-issue. If not, then you'll have to switch to another boundary type or get the AD folks to rename their sites -- it would be kind of dumb to name two
    different locations the same thing though so I suspect the former is the case.
    Jason | http://blog.configmgrftw.com | @jasonsandys

  • Will Oracle9i Dataguard broker work with Oracle10g Grid control ?

    Hello all,
    I have recently configured Oracle9i dataguard using Dataguard broker and it's currently working fine but I am not sure if this could be managed with Oracle10g Grid control as it does for Oracle10g dataguard (i.e. Switch-over, Protection mode switching and so on ..)
    I would appreciate if anyone could enlighten me further on this as I have not been able to find any proper document to provide me with the appropriate answer .
    Thanks..

    Ram,
    For your JBCL questions:
    JBCL 2.0 WILL be included in the production release of JDeveloper
    2.0, but will not be visible on the palette by default. You can
    add it back in if you really want to use JBCL.
    For more info on this decision and why we are recommending Swing,
    over JBCL see the post titled 'Which Oracle JDeveloper 2 GUI Lib
    for database access' dated March 26. It includes plenty of
    detail.
    As for your gridControl question:
    You can use a picklist with a gridcontrol, but there's not an
    'automatic' way to do it (i.e. via the properties sheet). You
    need to create a new rowsetinfo object that contains your query
    for the picklist. Then bind this rowsetinfo object to a Swing
    list control or combobox control. Finally, you need to hook the
    list control to the cell of the grid you want the list to appear
    in.
    - L
    Ram (guest) wrote:
    : Hi
    : I got a reply to my field control painting problem from Mark
    : Tomlinson saying that JBCL 2.0 is not included in the
    production
    : release of Jdev 2.0.
    : Any way Oracle has recommended using of Swing based DAC
    : Gridcontrol.I am using a oracle.dacf.gridcontrol.But I cant get
    : a picklist to popup using this.
    : I have a few questions here
    : 1. How do i get a picklist popping using
    oracle.dacf.gridcontrol
    : 2.At present i am using the same popup picklist item editor in
    : JBCL.If this is not included in the production release how Dom
    i
    : get this going
    : 3.Do you recommend not to use JBCL any more??
    : THanks
    : Ram
    null

Maybe you are looking for

  • Hard drive overloading with music

    My hard drive is getting quite full with music and such. I purchased an external drive and compied Itunes to it but when now they mirror each other. When I delete songs from the C drive (the almost full drive) they also disapper from the H drive (new

  • Accept RDF data using java code

    Hello, I am trying to write a java code that helps in accepting the RDF(resource description framework) data and finally output the file in csv format. Can I get some help regarding this? Regards

  • Could not install BB desktop software for PC (Window Vista)

    Bought a BB Bold 9900 for a week, still could not install Desktop software for PC. Error message: "the wizard was interrupted before the BlackBerry desktop software could be completely installed". Need help to install the desktop. Thank you.

  • Where has the "rotate" button gone??

    I have recently updated my IPad and now I don't see the rotate button that used to be on the top bar. Am I missing something? I see it in Images of the new Mini ( In the numerous ads I am getting sent to my inbox). Gari

  • Mac does not recognize the install DVD

    I can not get the install DVD to work. I am running a G5 1.6 GHZ, 1.5 GB ram and OS X 10.3.9. Tried just about everything, but it will not open on the desktop. Tried a restart with it in the drive holding down the C key but it just ejects the DVD. Wh