Generate Create Script creates scripts that won't run: ORA-00922: missing..

I'm having trouble running a script that I created by using the Generate Create Script tool in Oracle Explorer. I created the following script by running the Generate Create Script on a table called, "ASPNET_APPLICATIONS":
CREATE TABLE "DEV"."ASPNET_APPLICATIONS" ("APPLICATIONID" NUMBER,"APPLICATIONNAME" VARCHAR2(256 BYTE),"DESCRIPTION" VARCHAR2(256 BYTE)) TABLESPACE "USERS" PCTFREE 10 INITRANS 1 MAXTRANS 255 STORAGE ( INITIAL 65536 MAXEXTENTS 2147483645 MINEXTENTS 1 )
CREATE UNIQUE INDEX "DEV"."PK_APPS" ON "DEV"."ASPNET_APPLICATIONS" ("APPLICATIONID" ) TABLESPACE "USERS"
CREATE UNIQUE INDEX "DEV"."IDX_APPS_APPNAME" ON "DEV"."ASPNET_APPLICATIONS" (LOWER(TRIM("APPLICATIONNAME")) ) TABLESPACE "USERS"
ALTER TABLE "DEV"."ASPNET_APPLICATIONS" ADD ( CONSTRAINT "SYS_C004598" CHECK ("APPLICATIONNAME" IS NOT NULL) ENABLE VALIDATE )
ALTER TABLE "DEV"."ASPNET_APPLICATIONS" ADD ( CONSTRAINT "SYS_C004597" CHECK ("APPLICATIONID" IS NOT NULL) ENABLE VALIDATE )
I then deleted the table in my Oracle 10g database and ran the above script to recreate the table. The result is that I get an error the following error, ORA-00922: missing or invalid option. Does anyone know how to resolve this?
Is anyone aware of any bugs in the Generate Create Script option of Oracle Explorer?

Okay, I think I found my problem.
I was trying to run the script created by Oracle Explorer directly from a Database project I added to my Solution in Visual Studio. Visual Studio is probably using some SQL Server specific tool when I select the Run or Run On option on the script.
When running the same script directly in the Oracle 10g Home Page (Home > SQL > SQL Scripts), I had no problem. Everything executes correctly.
Is anyone aware of another way to run Oracle scripts directly from Visual Studio? Do I have my project setup incorrectly? This is the first project I've used .NET and Oracle together, so if anyone has any suggestions, I'd really appreciate the help.
Thanks,
Mycole

Similar Messages

  • Migration Workbench generates scripts that won't run

    If the source db contains objects with names approaching 30 characters, the migration workbench will generate scripts with name clashes for tables, sequences and triggers, e.g
    e.g. In source db, table name = task_deliverables_reviews_data , has one auto-inc field. SQL Developer tries to create a table , sequence and trigger all of the same name. I think this happens because to generate the relevant seq and trg, it appends SEQ and TRG to the object name, but then truncates it back to 30 chars!
    Unfortunately renaming the objects in the 'converted model' section of the workbench has no impact as renaming the objects does not alter the generated code. e.g. rename the sequence, but the trigger will still refer to the original name.

    Okay, I think I found my problem.
    I was trying to run the script created by Oracle Explorer directly from a Database project I added to my Solution in Visual Studio. Visual Studio is probably using some SQL Server specific tool when I select the Run or Run On option on the script.
    When running the same script directly in the Oracle 10g Home Page (Home > SQL > SQL Scripts), I had no problem. Everything executes correctly.
    Is anyone aware of another way to run Oracle scripts directly from Visual Studio? Do I have my project setup incorrectly? This is the first project I've used .NET and Oracle together, so if anyone has any suggestions, I'd really appreciate the help.
    Thanks,
    Mycole

  • I want to know how to create a new script that can be run in batch proces in Photoshop Element 11 ?

    I want to know how to create a new script that can be run in batch proces in Photoshop Element 11 ?

    Have a look at the menu file/process multiple files. You can choose to add your signature (or the caption) to the image and export the new files.
    If that solution is not flexible enough, consider using the very affordable (12$)  Elements+ add-on which offers a 'meta stamp' script :
    http://elementsplus.net/v5/en/meta-stamp.htm
    Otherwise, have a look at other free and good solutions like Faststone Photoresizer, Xnview...

  • ORA - 00922 Missing or Invalid option error while creating table

    I am tryin to create a table with the following syntax
    1 CREATE TABLE TEST_FOR_SCRIPT (
    2 TEST_A NUMBER NOT NULL
    3 ,TEST_B VARCHAR2(30) DEFAULT 'UNDEFINED' NOT NULL
    4 )
    5* @storage_parms_table_cmn
    6 /
    @storage_parms_table_cmn
    ERROR at line 5:
    ORA-00922: missing or invalid option
    Here, storage_parms_table_cmn.sql reads like this
    tablespace DBK_CMN_DATA
    Can anyone please guide me how to overcome this error.

    What is your Oracle Version?
    i can do it exactly what you did without error
    sql> CREATE TABLE vd.TEST_FOR_SCRIPT (
    2 TEST_A NUMBER NOT NULL
    3 ,TEST_B VARCHAR2(30) DEFAULT 'UNDEFINED' NOT NULL
    4 )
    5 @test1.sql
    6 /
    Table created.
    Cheers
    http://fiedizheng.blogspot.com/

  • ORA-00922: missing or invalid option in create seq, trigger

    Hi All,
    I am trying to create a table, sequence, and trigger with the following SQL and am getting the error:
    ORA-00922: missing or invalid option
    CREATE TABLE "DATA_INVENTORY"
    (     "ID" INTEGER NOT NULL ENABLE,
         "COE_CONTRACT_NUM" VARCHAR2(30),
         "PROJ_AREA" VARCHAR2(30),
         "STATE" VARCHAR2(30),
         "DATA_DATE" VARCHAR2(30) NOT NULL ENABLE,
         "NUM_OF_MEDIA" NUMBER,
         "DATA_TYPE" VARCHAR2(30)NOT NULL ENABLE,
         "MEDIA_TYPE" VARCHAR2(30)NOT NULL ENABLE,
         "EXTERNAL_DRIVE_DESCR" VARCHAR2(200),
         "ROOM_NUM" VARCHAR2(10)NOT NULL ENABLE,
         "DRAWER_NUM" VARCHAR2(30),
         "PROJ_CODE" VARCHAR2(30),
         "COMPANY" VARCHAR2(30),
         "DESCRIPTION" VARCHAR2(200),
         "NOTES" VARCHAR2(500),
         "INDEX" VARCHAR2(30),
         "INDEX_LINK" VARCHAR2(75),
         "DATA_LINK" VARCHAR2(75),
         "METADATA" VARCHAR2(75),
         "METADATA_LINK" VARCHAR2(75),
         "DISTRIBUTE" VARCHAR2(30)NOT NULL ENABLE,
         "CORPORATE" VARCHAR2(1)NOT NULL ENABLE,
         CONSTRAINT "DATA_INVENTORY_PK" PRIMARY KEY ("ID") ENABLE,
         CONSTRAINT "DATA_INVENTORY_UK1" UNIQUE ("COE_CONTRACT_NUM", "PROJ_AREA") ENABLE
    CREATE SEQUENCE "DATA_INVENTORY_SEQ" MINVALUE 1 MAXVALUE 999999999999999999999999999 INCREMENT BY 1 START WITH 324 CACHE 20 NOORDER NOCYCLE
    CREATE OR REPLACE TRIGGER "BI_DATA_INVENTORY"
    before insert on "DATA_INVENTORY"
    for each row
    begin
    select "DATA_INVENTORY_SEQ".nextval into :NEW.ID from dual;
    end;
    ALTER TRIGGER "BI_DATA_INVENTORY" ENABLE
    Does anyone see anything wrong with this?
    The create table part is alright but when I add the create sequence etc it causes the error
    Thanks,
    Kirk

    Hello Kirk,
    Your code work likes a charm. Check your privileges for creating sequences and triggers.
    Greetings,
    Roel
    http://roelhartman.blogspot.com/
    http://www.bloggingaboutoracle.org/
    http://www.logica.com/

  • De authorizing a computer that won't run QT

    How do you deauthorize a computer that won't run quicktime, causing itunes not to launch?
    Or better yet, how do you fix quicktime so it works, allowing itunes to run in the first place.

    Thanks for your reply!
    My OS is posted along with my original post... XP pro... But is at the SB2 with all the latest updates via automatic updates. I can't seem to properly uninstall quicktime, as it gives me an error, and re installing gives an error as well, but I don't have those errors readily available to post at this time.
    Running QT itself provides no error information. It simply doesn't run! When launched, I get an hourglass for a few moments, and it's done! That's it.
    I had downloaded the latest at the time the other posting was made. I'll try again with the latest. I Don't expect any improvement.
    Perhaps I'll use your recommendation and deauthorize all, and re authorize those that still work. I'll likely need to reformat and install everything on this system to get it working again as it looks.

  • Have a CS2 script that will not run in CS3. Can someone help?

    I have a script that was written for me to find a certain paragraph style and replace the paragraph with an anchored text frame containing the text from the paragraph. I moved the script over to CS3 and updated the style names for my new document, but nothing happens when I try to run the script. I'll flow the script in after my opening post.

    //find paragraph style text and replace with text in anchored text frame
    myDoc = app.activeDocument
    myPstyle = myDoc.paragraphStyles.itemByName("Teaching Tip");
    app.findPreferences = app.changePreferences = null;
    app.findPreferences.appliedParagraphStyle = myPstyle;
    myFinds = myDoc.search("", false, false, undefined, {appliedParagraphStyle:myPstyle});
    for (var j = myFinds.length - 1; j >= 0; j--) {
    makeAnchor(myFinds[j]);
    if ((j > 0) && (j % 100 == 0)) {
    myDoc.save(myDoc.fullName);
    function getParentTextFlow(theTextRef) {
    // Returns reference to parent story or text of cell, as appropriate
    if (theTextRef.parent.constructor.name == "Cell") {
    return theTextRef.parent.texts[0];
    } else {
    return theTextRef.parentStory;
    function makeAnchor(theText) {
    // Transfers contents of theText into new anchored frame that replaces theText
    var myStory = getParentTextFlow(theText);
    var myAnchLocation = theText.insertionPoints[-2].index;
    var myTF = myStory.insertionPoints[myAncLocation].textFrames.add();
    myStory.recompose();
    makeInchWide(myTF);
    myTF.applyObjectStyle(myDoc.objectStyles.item("Teacher's Tip", true));
    theText.move(LocationOptions.atEnd, myTF.parentStory);
    myAnchStory = myTF.parentStory;
    theText.move(LocationOptions.atEnd, myAnchStory);
    myAnchStory.texts[0].appliedParagraphStyle = myDoc.paragraphStyles.item("Teaching Tip");
    myTF.fit(FitOptions.frameToContent);
    makeInchWide(myTF);
    function makeInchWide(theObj) {
    // Makes theObj one inch wide
    //Save user's measurement preferences
    userHoriz = myDoc.viewPreferences.horizontalMeasurementUnits;
    userVert = myDoc.viewPreferences.verticalMeasurementUnits;
    myDoc.viewPreferences.horizontalMeasurementUnits = MeasurementUnits.inches;
    myDoc.viewPreferences.verticalMeasurementUnits = MeasurementUnits.inches;
    var myBounds = theObj.geometricBounds;
    myBounds[3] = myBounds[1] + 3;
    theObj.geometricBounds = myBounds;
    myDoc.viewPreferences.horizontalMeasurementUnits = userHoriz
    myDoc.viewPreferences.verticalMeasurementUnits = userVert

  • Action steps that won't run correctly in PSE 7/8/9 (but did in 4 and 6)

    I have a wonderful action that was written to work in PSE 3/4/6.  It won't run in PSE 7/8/9.  After fooling around for a while, I think I understand why.  Adobe changed the way Adjustment Layers are handled.  In earlier versions of Photoshop and Elements, Adjustment Layers threw up a modal dialog box.  That changed so that Adjustment Layers now appear in the Palette Bin as a palette.
    Here a sample of some of the action steps that won't work correctly:
    Make adjustment layer
    Using: adjustment layer
    Type: levels
    Set Selection
    To: none
    Set current layer
    To: layer
    Name:  “Adjustment 1”
    Set current layer
    To: layer
    Mode: luminosity
    Stop
    Message:  “Move gray slider left”
    With Continue
    Set current adjustment layer
    To: levels
    In earlier versions of PS and PSE, the way these steps would work is that a new adjustment layer would be created, the dialog box giving the instruction would open, it would be dismissed by clicking "Continue," and then the "Set current adjustment layer to: Levels" would generate a model adjustment layer dialog box would open up which would let one make the adjustment.
    In newer versions, since Adjustment Layers are handled in the Palette Bin, after dismissing the instructions, the action doesn't stop to allow the user to make change the sliders on the adjustment layer.
    The action runs perfectly in CS4 and CS5 and throws up the levels adjustment modal box as it did in PSE 4 and PSE 6, but the action doesn't throw the modal box in PSE 7/8/9
    Does anyone know of a way to alter the action steps to allow the action to stop to allow the adjustment and then to resume again?

    Adding a new levels adjustment layer on top of the Midtone contrast layer
    should work, just use a clipping mask to restrict the adjustments to the
    areas of the levels adjustment layer below. The histogram will be different, but
    actually testing the action is really the only way to know if that makes any difference.
    Replacing the levels adjustment layer is another option, though it requires a few more steps.
    The following assumes when the action gets to this point,
    the Midtone contrast adjustment layer is the active (selected) layer.
    To record this part of the action:
    1. Duplicate current channel (in the channels panel. drag the Midtone contrast mask
        down to the Create new channel icon at the bottom of the channels panel)
    2. Ctrl+click on the newly created channel (Midtone contrast mask copy)
        This loads the selection of that channel.
    3. Drag the new channel (midtone contrast mask copy) to the trash icon at the bottom
       of the channels panel.
    4. Back in the layers panel, delete the Midtone Contrast adjustment layer.
    5. Go to Layer>New Adjustment Layer>Levels
        This creates a new levels adjustment layer using the selection loaded from
        the duplicated channel and opens the levels dialog.
    To load the RGB (composite) as a selection, Ctrl+click on the rgb in the channels panel
    and the same is true for the red, green and blue channels.
    With layer masks, elements doesn't seem to want to load them as selections in actions,
    so that's the reason for the action steps above.
    MTSTUNER

  • Compressor creating movs that won't play in Windows

    I am trying to make transcode video to play back on an installed HD television set. It is being fed by a Windows XP computer over HDMI using Windows Media Player. I have tried 25 different codecs including avi, wmv and mov. The avi and wmv will play on the pc, but the quality is bad and file size is too big. The movs that I create work fine on my mac but won't play on the pc. The movies load with an error message indicating an unknown file type. The audio track plays but no video.
    Is there a "Make PC compatible" button that I am missing?

    From what I've experienced, HD Quicktime Codecs are not cross-platform. You could try using AJA's or Blackmagic's free downloadable codecs, which are cross-platform, but I don't know how those codecs perform with Windows Media Player.
    Your best bet would be to purchase the Flip4Mac HD WMV codecs:
    http://www.flip4mac.com/wmv.htm

  • Facebook won't load properly. Takes forever and then I get a script page with log-in and then that takes forever and gives me further script that won't let me access anything. Other sites load and work OK!

    Started after last auto update several days ago. A few other sites are slow to load while many are good but Facebook just won't present it's usual mix of pre-programmed scripts and links but comes up eventually as part HTML script with a log-in box and when you log-in it then takes forever again and just gives HTML type script for "Friends" "messages" etc. but if you click these it goes nowhere!
    Also it won't let me clear history at all despite many tries. I removed and reloaded the program last night but no positive effect.

    I still haven't resolved this problem. Here is some more information...
    youtube is the only website that has started working, but it sometimes stops working again.
    There are many other sites that don't work, cnn.com, washingtonpost.com (sometimes), and a lot of others.
    I have contacted our internet service provider and they said that they had nothing to do with the problem.
    Some websites will not work at all. Safari tells me that it can't find the server. Some that do this are ups.com, computerworld.com, and others.
    I think that the problem is that, for some reason, our mac computers can't access certain servers where we are. (We are at a small ski resort (on the mountain) in Canada.) I think this because when a site doesn't load properly there are several errors and they are all "can't find host" errors from a couple of the same sites (ex. example.something.something).
    *Also, I ran a test on speedtest.net on the laptop and one of our iMacs and the results were way faster than anything actually loads/downloads or than the activity monitor shows, even when checking the activity monitor at the same time as running the test.

  • Help with working script that won't convert på higher version player (As2)

    HI have an issue with a file that was created some time ago to Fplayer v6 and when I now “upgrade” it to 8-9 or 10 it does not load the xml links ;/
    I have no idea why, the file(s) works fine in the old player 6
    I have a set of xml files (note: one file for each country on a map,and the possible solution should not include to put all links in the same xml file)
    the xml looks like this (example is for Denmark file called dk.xml):  [code]
    <broadcast>
    <story>
    <lead>www.alink.com</lead>
    <URL>http://www.alink.com/</URL>
    </story>
    </broadcast>
    So in the flash file I have a set of buttons the does a few actions
    one action is to call/go to a specific frame in a MC in that frame I put the Xl loading stuff for each frame (lable)
    [code]
    headlineXML = new XML();
    headlineXML.onLoad = myLoad;
    headlineXML.load("be.xml");
    function myLoad(ok) {
                                 if (ok == true) {
                                 Publish(this.firstChild);
    function Publish(HeadlineXMLNode) {
    if (HeadlineXMLNode.nodeName.toUpperCase() == "BROADCAST") {
    content = "";
    story = HeadlineXMLNode.firstChild;
    while (story != null) {
                                 if (story.nodeName.toUpperCase() == "STORY") {
                                 lead = "";
                                 URL = "";
                                 element = story.firstChild;
    while (element != null) {
    if (element.nodeName.toUpperCase() == "LEAD") {
    lead = element.firstChild.nodeValue;
    if (element.nodeName.toUpperCase() == "URL") {
                                 URL = element.firstChild.nodeValue;                                                                                                                   
    }                                                         element = element.nextSibling;
    content += "<font size='+2' color='#3366cc'><a href='"+URL+"'>"+lead+"</a></font><br>"+body+"<br><br>";
    txt.htmltext=content;
    story = story.nextSibling;
    the button (main stage)  that calles the MC frame lable with the xml that loads the load thex and a link into a dynamic txt box (called “txt”), has this code on it: [code]
    on (press) {
                                 infoon("DK");
    on (rollOver) {
                                 DK._alpha = 50;
    on (releaseOutside, rollOut, dragOut) {
                                 DK._alpha = 100;
    so as said it works fine in FP 6 (as2)  but when published to FP 8 -9 or 10 only the XML does not load at all
    What could be the issue (I know that it is old code and it is pretty poor and should be fully upgraded but my
    skills is not on that level, I managed to make the above work from some tutorials but understanding the publishing issues
    is a bit over my head J
    I would be extremely gratefull if anyone could help me out it is really frustrating especially since the file actually works fine
    in the old player ;/
    best
    OrsonB

    the two most common issues when converting from as2 vp 6 to as2 vp 6+ are:
    1.  failure to initialize some variable.  (if not explicitly initialized in vp 6, understood to be zero.  in vp+, it's undefined.)
    2.  vp6 is not case-senstive.  vp 6+ is case- sensitive.
    you have both.
    body is undefined and htmltext is not the same as htmlText.  fix those and retest.

  • Scripted movie won't run outside of firewall...open multiple ports?

    I'm new to Flash and AS3, but with the help of many examples I have managed to created a scripted movie using some time lapse photography.  I load the images from an XML file and use an event listener to add each image as a child of a movie clip.  As the number of children grew, it caused the frame rate to slow, so I figured out that I could remove them after they were viewed and just keep looping through the array.
    This works great on the local machine and when served up from the web server behind the firewall.  However,  if I try to access the file from outside the firewall, it loads the first image or two very slowly (if at all) then hangs.  I've performed a net stat from the server and noticed that it is opening an inordinate number of connections to the remote client on various client ports (from 6 to 60+).
    Any help would be greatly appreciated!  The code I'm using is below...
    // Input Parameters
    var ssxml:String = "myfile.xml"; // file containing images & dates
    // Stage settings
    var swfStage:Stage = this.stage;
    var swfFrameRate:int = 10;
    swfStage.scaleMode = StageScaleMode.NO_SCALE;
    //  Movie Clip
    var mc:MovieClip = new MovieClip();  // initiate movie clip
    mc.x      = 25;     // starting point X
    mc.y      = 50;     // starting point Y
    //  Text Field
    var tf:TextField = this.dtsText;
    // Cropping Rectangle
    var cr:Sprite = new Sprite();
    cr.graphics.beginFill(0x057072);
    cr.graphics.drawRect(25,50,550,7);
    cr.graphics.endFill();
    // Read Flash Variables
    try {
    var keyStr:String;
    var valueStr:String;
    var paramObj:Object = LoaderInfo(this.root.loaderInfo).parameters;
    for (keyStr in paramObj) {
      valueStr = String(paramObj[keyStr]);
      if (keyStr == "srcFile") {
       ssxml = valueStr;
      if (keyStr == "swfFrameRate") {
       swfFrameRate = int(valueStr);
       swfStage.frameRate = swfFrameRate;
    } catch (error:Error) {
    trace (error.message);
    *  Configure a loader to import the list of images and date
    *  time stamps from an XML file. The list of variables will
    *  be stored in arrays.
    var photos_xml:XML
    var xmlLdr:URLLoader = new URLLoader();
    xmlLdr.addEventListener(Event.COMPLETE, completeHandler);
    xmlLdr.load(new URLRequest(ssxml));
    var img_array:Array = new Array(); // images
    var dts_array:Array = new Array(); // date time stamps
    var img_count:int   = 0;
    function completeHandler(event:Event):void {
    try {
      photos_xml = new XML(event.target.data);
      var imgs:XMLList = photos_xml.img;  
      var dtss:XMLList = photos_xml.dts;    
      img_count = imgs.length();
      for (var i=0;i<img_count;i++) {
       img_array.push({src:imgs[i].text()});
       dts_array.push({src:dtss[i].text()});
    } catch(error:Error){
      trace(error.message);
    var nextImg:int = 0;
    var imgLdr:Loader = new Loader();
    imgLdr.contentLoaderInfo.addEventListener(Event.COMPLETE, doneLoad);
    imgLdr.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, loadError);
    imgLdr.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, updateInfo);
    stage.addEventListener(Event.ENTER_FRAME, enterFrameHandler);
    function enterFrameHandler(event:Event):void {
    try {
             if (img_array.length > 0 ) {
       loadInitialImage();
    } catch(error:Error){
      trace(error.message);
    function loadInitialImage():void {
    imgLdr.load(new URLRequest(img_array[nextImg].src));
    function doneLoad(event:Event):void {
    var theImage:DisplayObject = event.target.content;
    imgLdr.unload();
    var bm:Bitmap = theImage as Bitmap;
    mc.addChild(bm);
    mc.scaleX = 550/640;
    mc.scaleY = mc.scaleX;
    addChild(mc);
    addChild(cr);
    tf.text = dts_array[nextImg].src;  
    if (mc.numChildren > 1){
      mc.removeChildAt(0);
    nextImg = (nextImg+1)%img_count;
    function loadError($event:IOErrorEvent):void {
    tf.text = "Loading Data.....Please Stand By..........."; 
    //  Loader Progress
    var swfTF:TextField = new TextField();
    swfTF.autoSize = TextFieldAutoSize.LEFT;
    swfTF.border = false;
    addChild(swfTF);
    //swfTF.text = "srcFile: " + ssxml + " FR: " + swfFrameRate;
    function updateInfo($event:ProgressEvent):void {
    swfTF.text =  "srcFile: " + ssxml + " FR: " + swfFrameRate
         + " Loading: " + img_array[nextImg].src + " "
         + Math.floor($event.bytesLoaded/1024)
         + " KB of "
         + Math.floor($event.bytesTotal/1024)
         + " KB.";

    OK I figured it out.  Apparently, the ENTER_FRAME event continues firing even as the image loader is processing.  Outside the firewall, where it was taking longer to load the images, this was causing loadInitialImage() to request the same image over and over again which resulted in the port behavior I was seeing on the server as well as the client "locking up".  The simple fix was to add a variable called currentImg (initialized to -1) which I set equal nextImg in loadInitialImage().  I then modified the if statement in enterFrameHandler() to only call loadInitialImage() if nextImg != currentImage.

  • I have a mid 2009 MacBook Pro 5,3 Unibody that won't run anything past Leopard.

    I have a mid 2009 MacBook Pro 5,3 Unibody that suffered a minor liquid spill.  After waiting for it to dry out, we found that it powers up (but the display doesn't work unless connected to an external monitor) just fine.  For several months it worked like a tank running Snow Leopard.  I upgraded to Lion with no problems.  Once the 10.7.1 update came out, it completely flipped out and wouldn't finish the install.  I was forced to take it all the way back to Leopard and now it won't upgrade past Leopard.  I replaced the hard drive completely and tried a fresh install of Lion using the thumb drive and that didn't work either.  I got the set of errors you will find below.  (Sorry, I don't know how to hide them like you can in some forums.)  Any ideas or suggestions on why it won't install Lion would be great.  I'm not so concerned about the display as wondering why it worked for 4 months and then another month on Lion and then suddenly flipped out on me.  I'm not knowledgeable enough to decipher the message below. 
    Jun 26 10:16:11 christine-cowens-macbook-pro mDNSResponder[22]: ERROR: getOptRdata - unknown opt 4
    Jun 26 10:16:14: --- last message repeated 5 times ---
    Jun 26 10:16:14 christine-cowens-macbook-pro authexec[158]: executing /Volumes/Mac OS X Install DVD/Install Mac OS X.app/Contents/Resources/InstallAssistantTool_10_5
    Jun 26 10:16:17 christine-cowens-macbook-pro mDNSResponder[22]: ERROR: getOptRdata - unknown opt 4
    Jun 26 10:16:18: --- last message repeated 1 time ---
    Jun 26 10:16:18 christine-cowens-macbook-pro [0x0-0xa00a].com.apple.systemuiserver[98]: Unexpected reply from backup server - ignored
    Jun 26 10:16:18 christine-cowens-macbook-pro [0x0-0xb00b].com.apple.finder[99]: Unexpected reply from backup server - ignored
    Jun 26 10:16:25 christine-cowens-macbook-pro mDNSResponder[22]: ERROR: getOptRdata - unknown opt 4
    Jun 26 10:16:55: --- last message repeated 11 times ---
    Jun 26 10:17:53 christine-cowens-macbook-pro mDNSResponder[22]: ERROR: getOptRdata - unknown opt 4
    Jun 26 10:18:23: --- last message repeated 9 times ---
    Jun 26 10:21:50 christine-cowens-macbook-pro mDNSResponder[22]: ERROR: getOptRdata - unknown opt 4
    Jun 26 10:22:20: --- last message repeated 7 times ---
    Jun 26 10:22:21 christine-cowens-macbook-pro com.apple.launchd[72] ([0x0-0x14014].com.apple.installassistant[150]): Stray process with PGID equal to this dead job: PID 158 PPID 1 InstallAssistant
    Jun 26 10:22:22 christine-cowens-macbook-pro loginwindow[23]: DEAD_PROCESS: 0 console
    Jun 26 10:22:22 christine-cowens-macbook-pro shutdown[170]: reboot by christinecowen:
    Jun 26 10:22:22 christine-cowens-macbook-pro shutdown[170]: SHUTDOWN_TIME: 1340731342 279916
    Jun 26 10:22:22 christine-cowens-macbook-pro mDNSResponder mDNSResponder-176.3 (Nov 3 2008 16:52:57)[22]: stopping
    Jun 26 10:22:22 christine-cowens-macbook-pro com.apple.loginwindow[23]: Shutdown NOW!
    Jun 26 10:22:22 christine-cowens-macbook-pro com.apple.loginwindow[23]: System shutdown time has arrived^G^G
    Jun 26 10:31:05 localhost com.apple.launchctl.System[2]: fsck_hfs: Volume is journaled.  No checking performed.
    Jun 26 10:31:05 localhost com.apple.launchctl.System[2]: fsck_hfs: Use the -f option to force checking.
    Jun 26 10:31:07 localhost com.apple.launchctl.System[2]: launchctl: Please convert the following to launchd: /etc/mach_init.d/dashboardadvisoryd.plist
    Jun 26 10:31:07 localhost com.apple.launchd[1] (com.apple.RemoteDesktop.PrivilegeProxy): Unknown key for boolean: EnableTransactions
    Jun 26 10:31:07 localhost com.apple.launchd[1] (com.apple.usbmuxd): Unknown key for boolean: EnableTransactions
    Jun 26 10:31:07 localhost com.apple.launchd[1] (org.cups.cupsd): Unknown key: SHAuthorizationRight
    Jun 26 10:31:07 localhost com.apple.launchd[1] (org.ntp.ntpd): Unknown key: SHAuthorizationRight
    Jun 26 10:31:07 localhost com.apple.launchd[1] (org.x.privileged_startx): Unknown key for boolean: EnableTransactions
    Jun 26 10:31:07 localhost kernel[0]: npvhash=4095
    Jun 26 10:31:07 localhost kextd[10]: 417 cached, 0 uncached personalities to catalog
    Jun 26 10:31:07 localhost kernel[0]: hi mem tramps at 0xffe00000
    Jun 26 10:31:07 localhost kernel[0]: PAE enabled
    Jun 26 10:31:07 localhost kernel[0]: 64 bit mode enabled
    Jun 26 10:31:07 localhost kernel[0]: Darwin Kernel Version 9.8.0: Wed Jul 15 16:55:01 PDT 2009; root:xnu-1228.15.4~1/RELEASE_I386
    Jun 26 10:31:07 localhost kernel[0]: standard timeslicing quantum is 10000 us
    Jun 26 10:31:07 localhost kernel[0]: vm_page_bootstrap: 905993 free pages and 77047 wired pages
    Jun 26 10:31:07 localhost kernel[0]: mig_table_max_displ = 79
    Jun 26 10:31:07 localhost kernel[0]: 104 prelinked modules
    Jun 26 10:31:07 localhost kernel[0]: AppleACPICPU: ProcessorApicId=0 LocalApicId=0 Enabled
    Jun 26 10:31:07 localhost kernel[0]: AppleACPICPU: ProcessorApicId=1 LocalApicId=1 Enabled
    Jun 26 10:31:07 localhost kernel[0]: Loading security extension com.apple.security.TMSafetyNet
    Jun 26 10:31:07 localhost kernel[0]: calling mpo_policy_init for TMSafetyNet
    Jun 26 10:31:07 localhost kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    Jun 26 10:31:07 localhost kernel[0]: Loading security extension com.apple.nke.applicationfirewall
    Jun 26 10:31:07 localhost kernel[0]: Loading security extension com.apple.security.seatbelt
    Jun 26 10:31:07 localhost kernel[0]: calling mpo_policy_init for mb
    Jun 26 10:31:07 localhost kernel[0]: Seatbelt MACF policy initialized
    Jun 26 10:31:07 localhost kernel[0]: Security policy loaded: Seatbelt Policy (mb)
    Jun 26 10:31:07 localhost kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    Jun 26 10:31:07 localhost kernel[0]: The Regents of the University of California. All rights reserved.
    Jun 26 10:31:07 localhost kernel[0]: MAC Framework successfully initialized
    Jun 26 10:31:07 localhost kernel[0]: using 16384 buffer headers and 4096 cluster IO buffer headers
    Jun 26 10:31:07 localhost kernel[0]: IOAPIC: Version 0x11 Vectors 64:87
    Jun 26 10:31:07 localhost kernel[0]: ACPI: System State [S0 S3 S4 S5] (S3)
    Jun 26 10:31:07 localhost kernel[0]: mbinit: done
    Jun 26 10:31:07 localhost kernel[0]: Security auditing service present
    Jun 26 10:31:07 localhost kernel[0]: BSM auditing present
    Jun 26 10:31:07 localhost kernel[0]: rooting via boot-uuid from /chosen: CFA77CDA-F33D-3F25-97CF-9E5EE113C739
    Jun 26 10:31:07 localhost kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    Jun 26 10:31:07 localhost kernel[0]: wl0: Broadcom BCM432b 802.11 Wireless Controller
    Jun 26 10:31:07 localhost kernel[0]: 5.10.91.21
    Jun 26 10:31:07 localhost kernel[0]: FireWire (OHCI) Lucent ID 5901 built-in now active, GUID 0025bcfffee5710e; max speed s800.
    Jun 26 10:31:07 localhost kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@B/AppleMCP79AHCI/PR T0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOBlockStorageD river/ST9500420AS Media/IOGUIDPartitionScheme/Untitled@3
    Jun 26 10:31:07 localhost kernel[0]: BSD root: disk0s3, major 14, minor 3
    Jun 26 10:31:07 localhost kernel[0]: jnl: unknown-dev: replay_journal: from: 2878464 to: 2969088 (joffset 0x4b7000)
    Jun 26 10:31:07 localhost kernel[0]: jnl: unknown-dev: journal replay done.
    Jun 26 10:31:07 localhost kernel[0]: [HCIController][configurePM] power parent ready after 1 tries
    Jun 26 10:31:07 localhost kernel[0]: Jettisoning kernel linker.
    Jun 26 10:31:07 localhost kernel[0]: Resetting IOCatalogue.
    Jun 26 10:31:07 localhost kernel[0]: GFX0: family specific matching fails
    Jun 26 10:31:07 localhost kernel[0]: IGPU: family specific matching fails
    Jun 26 10:31:07 localhost kernel[0]: Matching service count = 2
    Jun 26 10:31:07 localhost kernel[0]: Matching service count = 4
    Jun 26 10:31:07: --- last message repeated 4 times ---
    Jun 26 10:31:07 localhost kernel[0]: Matching service count = 5
    Jun 26 10:31:07 localhost kernel[0]: NVDANV50HAL loaded and registered.
    Jun 26 10:31:07 localhost kernel[0]: IGPU: family specific matching fails
    Jun 26 10:31:07 localhost kernel[0]: Previous Shutdown Cause: 3
    Jun 26 10:31:07 localhost kernel[0]: AppleTyMCEDriver::probe(MacBookPro5,3)
    Jun 26 10:31:07 localhost kernel[0]: AppleTyMCEDriver::probe fails
    Jun 26 10:31:07 localhost kernel[0]: GFX0: family specific matching fails
    Jun 26 10:31:07 localhost kernel[0]: AGC: 2.8.15, HW version=1.8.8, flags:0, features:1
    Jun 26 10:31:07 localhost kernel[0]: GFX0: family specific matching fails
    Jun 26 10:31:07 localhost kernel[0]: IGPU: family specific matching fails
    Jun 26 10:31:07 localhost kernel[0]: GFX0: family specific matching fails
    Jun 26 10:31:07 localhost kernel[0]: IGPU: family specific matching fails
    Jun 26 10:31:07 localhost kernel[0]: Matching service count = 0
    Jun 26 10:31:09 localhost kernel[0]: AppleIntelCPUPowerManagement: initialization complete
    Jun 26 10:31:11 localhost bootlog[36]: BOOT_TIME: 1340731864 0
    Jun 26 10:31:11 localhost rpc.statd[18]: statd.notify - no notifications needed
    Jun 26 10:31:11 localhost DirectoryService[32]: Launched version 5.7 (v514.25)
    Jun 26 10:31:11 localhost /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow[23]: Login Window Application Started -- Threaded auth
    Jun 26 10:31:12 localhost fseventsd[27]: bumping event counter to: 0x25d156 (current 0x0) from log file '000000000025c40a'
    Jun 26 10:31:13 localhost kernel[0]: NVEthernet: Ethernet address 00:25:bc:e5:71:0e
    Jun 26 10:31:13 localhost kernel[0]: AirPort_Brcm43xx: Ethernet address 00:26:08:e3:43:79
    Jun 26 10:31:13 localhost blued[45]: Apple Bluetooth daemon started.
    Jun 26 10:31:14 localhost mDNSResponder mDNSResponder-176.3 (Nov  3 2008 16:52:57)[22]: starting
    Jun 26 10:31:14 localhost com.apple.usbmuxd[15]: usbmuxd-268.5 on Apr  5 2012 at 15:33:48, running 32 bit
    Jun 26 10:31:15 localhost kernel[0]: NVEthernet::setLinkStatus - Valid but not Active
    Jun 26 10:31:15 localhost kernel[0]: NVEthernet::mediaChanged - Link is down
    Jun 26 10:31:15 localhost kernel[0]: NVEthernet::setLinkStatus - Valid but not Active
    Jun 26 10:31:15 localhost kernel[0]: AirPort: Link Down on en1
    Jun 26 10:31:15 localhost kernel[0]: jnl: disk0s2: replay_journal: from: 9485824 to: 9519104 (joffset 0x9d9000)
    Jun 26 10:31:15 localhost /usr/sbin/ocspd[68]: starting
    Jun 26 10:31:15 christine-cowens-macbook-pro configd[34]: setting hostname to "christine-cowens-macbook-pro.local"
    Jun 26 10:31:16 christine-cowens-macbook-pro kernel[0]: jnl: disk0s2: journal replay done.
    Jun 26 10:31:17 christine-cowens-macbook-pro kernel[0]: en1: 802.11d country code set to 'CN'.
    Jun 26 10:31:17 christine-cowens-macbook-pro kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 12 13 5 6 7 8 9 10 11 12 13 1 2 3 4 5 6 7 8 9 149 153 157 161 165 153 161 149 157
    Jun 26 10:31:19 christine-cowens-macbook-pro org.ntp.ntpd[14]: Error : nodename nor servname provided, or not known
    Jun 26 10:31:19 christine-cowens-macbook-pro ntpdate[72]: can't find host time.apple.com
    Jun 26 10:31:19 christine-cowens-macbook-pro ntpdate[72]: no servers can be used, exiting
    Jun 26 10:31:20 christine-cowens-macbook-pro kernel[0]: Auth result for: c8:3a:35:56:9b:80 MAC AUTH succeeded
    Jun 26 10:31:20 christine-cowens-macbook-pro kernel[0]: AirPort: Link Up on en1
    Jun 26 10:31:21 christine-cowens-macbook-pro kextd[10]: writing kernel link data to /var/run/mach.sym
    Jun 26 10:31:25 christine-cowens-macbook-pro loginwindow[23]: Login Window Started Security Agent
    Jun 26 10:31:25 christine-cowens-macbook-pro authorizationhost[85]: MechanismInvoke 0x129e00 retainCount 2
    Jun 26 10:31:25 christine-cowens-macbook-pro SecurityAgent[86]: MechanismInvoke 0x1015f0 retainCount 1
    Jun 26 10:31:25 christine-cowens-macbook-pro loginwindow[23]: Login Window - Returned from Security Agent
    Jun 26 10:31:25 christine-cowens-macbook-pro SecurityAgent[86]: MechanismDestroy 0x1015f0 retainCount 1
    Jun 26 10:31:25 christine-cowens-macbook-pro authorizationhost[85]: MechanismDestroy 0x129e00 retainCount 2
    Jun 26 10:31:25 christine-cowens-macbook-pro loginwindow[23]: USER_PROCESS: 23 console
    Jun 26 10:31:25 christine-cowens-macbook-pro com.apple.launchd[1] (com.apple.UserEventAgent-LoginWindow[82]): Exited: Terminated
    Jun 26 10:31:25 christine-cowens-macbook-pro com.apple.launchd[76] (com.apple.AirPortBaseStationAgent): Unknown key for boolean: EnableTransactions
    Jun 26 10:31:25 christine-cowens-macbook-pro com.apple.launchd[76] (org.x.startx): Unknown key for boolean: EnableTransactions
    Jun 26 10:31:26 christine-cowens-macbook-pro /System/Library/CoreServices/coreservicesd[43]: SFLSharePointsEntry::CreateDSRecord: dsCreateRecordAndOpen(Christine Cowen's Public Folder) returned -14135

    Might have a hardware issue that was caused by the minor liquid spill.
    Take it to Apple to have them look at it.  I think they do a free diagnostics.  That way you can find out what's wrong with your MB.
    Good luck....Hope you get it sorted out.

  • I need to de-install Foxfire 6 and go back to Foxfire 5 on my Mac to run a picky program that won't run under Foxfire 6. I can't get install software for version 5 to run. It sees it as exe file.

    When I drag the downloaded Foxfire 5 install file to my Applications folder, it shows up as an .exe file. When I double click to run it, I get an error message saying it is not DOS executable.

    In the exact same boat here. Life-long iPhone user. Got a 6 on Tuesday and absolutely hate it to the point where I dread using it. Upgraded from an iPhone 4 I'd had for 4+ years. After making several phone calls, my understanding is that Apple will take it back no problem, within 14 days. My iPhone 4 was out of contract with AT&T but when I bought the 6, I renewed my previous contract for 2 years. My AT&T contract also has a 14 days, cancel for any reason with no early termination fee, clause. I assume your AT&T contract would have the same. But I don't think you need to worry about canceling your contract. Since you still have your iPhone 5, you should be able to bring it to the AT&T store, have them switch the existing contract from the 6 to your old 5 and then you can go return the 6 to the Apple store where you bought it. That's no different than being halfway through a two year contract, your phone is stolen and you have to buy a new one at retail price to replace it on your existing contract. You're essentially just bringing your own device you already paid for (the 5) to the existing AT&T plan.
    I would just caution that assuming you want to keep your phone number, get the service put back on your 5 at AT&T and have them deactivate the 6 before you go return the 6. Or just make sure the Apple store is capable of transferring the service from the 6 back to the 5 while you're there to do the 6 return.

  • I need to load v3.6 onmy Asus tablet to support a program that won't run with newest version

    i just purchased a Asus Transformer tablet. I need to use an online application, Angel, to participate in my college course. The college indicated that your latest version of Mozillia has compatibility issues with Angel. They have instructed us to use ver 3.6. when I got to your website to download the ver 3.6 it only shows for Windows, Mac and Linux and not Android

    There was no Firefox 3.6.* releases for Android as the earliest was the EOL Firefox 4.0
    This Extension may be a option. https://addons.mozilla.org/en-US/mobile/addon/phony/

Maybe you are looking for

  • How much hard drive do I need on the Macbook Pro?

    I am buying a Macbook Pro 13" to use for email, internet, word processing and photo editing (in raw and jpeg).  It comes wtih 500 or 750 GB Seriesl ATA hard drive which is way more hard drive than I need.  I will keep most of my photos on an external

  • Synchronizing iMac & MacBook Pro causes faulty cursor

    After cloning my iMac and MacBook Pro back and forth a few times using SuperDuper in order to keep them synchronized, the cursors on both machines were intermittently non-functional upon startup.Of course one has a trackpad and one doesn't. I reinsta

  • Maps on Nokia N95

    Hello, I was just wondering(currently waiting for my N95 to arrive) does the phone come with the maps for sat nav already loaded and ready? Cheers, Carl

  • Issue in FTP to FTP scenairo

    Hi all, In the FTP to FTP scenario, the source file is not picked up, but in communication channel monitoring for the sender channel the status says, Polling stated,  file processed successfully. It doesn't show a link, for the source message. It imp

  • Order-related intercompany BIlling - RVIVAUFT

    Dear SAP Experts, Currently I am doing the Order-related intercompany Billing, However the 2nd billing document is not created. I have referred to OSS notes and they are referring to report RVIVAUFT and the output type RDIV and copy control settings.