Trying to use spool command

heyyall,
am trying to use the spool command to save a file from an output but i get the message:
SPOOL save.lis
SP2-0606: Cannot create SPOOL file save.lis
am using sql-plus 10.2.0.1.0
?

No its not an advanced setup , its just i logged into database using putty, easy to use.
In Command Promt we use dir command to list the directories , in the same way in database ls list the subfolders/subdirectories and files present in the current directory.
I think you are using local database only right?.
Then go to command prompt (i.e., go to run and type cmd)
And from there i had done this scenario, please view it so that you can understand clearly
Microsoft Windows [Version 6.1.7600]
Copyright (c) 2009 Microsoft Corporation. All rights reserved.
C:\Users\Balaji K>dir
Volume in drive C has no label.
Volume Serial Number is 0282-81BD
Directory of C:\Users\Balaji K
03/27/2011 12:04 AM <DIR> .
03/27/2011 12:04 AM <DIR> ..
03/26/2011 03:04 AM <DIR> .VirtualBox
02/25/2011 04:57 PM <DIR> Contacts
03/26/2011 06:07 PM <DIR> Desktop
03/25/2011 06:00 PM <DIR> Documents
03/25/2011 08:44 PM <DIR> Downloads
03/04/2011 06:06 PM <DIR> Favorites
02/25/2011 04:57 PM <DIR> Links
02/25/2011 04:57 PM <DIR> Music
02/25/2011 04:57 PM <DIR> Pictures
02/25/2011 04:57 PM <DIR> Saved Games
02/25/2011 04:57 PM <DIR> Searches
03/26/2011 10:04 PM <DIR> Tracing
02/25/2011 04:57 PM <DIR> Videos
02/25/2011 06:07 PM <DIR> VirtualBox VMs
0 File(s) 0 bytes
16 Dir(s) 43,067,936,768 bytes free
C:\Users\Balaji K>sqlplus sys as sysdba
SQL*Plus: Release 10.2.0.1.0 - Production on Sun Mar 27 00:04:44 2011
Copyright (c) 1982, 2005, Oracle. All rights reserved.
Enter password:
Connected to:
Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production
SQL> spool example.txt
SQL> desc dba_users;
Name Null? Type
USERNAME NOT NULL VARCHAR2(30)
USER_ID NOT NULL NUMBER
PASSWORD VARCHAR2(30)
ACCOUNT_STATUS NOT NULL VARCHAR2(32)
LOCK_DATE DATE
EXPIRY_DATE DATE
DEFAULT_TABLESPACE NOT NULL VARCHAR2(30)
TEMPORARY_TABLESPACE NOT NULL VARCHAR2(30)
CREATED NOT NULL DATE
PROFILE NOT NULL VARCHAR2(30)
INITIAL_RSRC_CONSUMER_GROUP VARCHAR2(30)
EXTERNAL_NAME VARCHAR2(4000)
SQL> select username from dba_users;
USERNAME
SYS
SYSTEM
ANONYMOUS
MDSYS
OUTLN
DIP
TSMSYS
FLOWS_FILES
CTXSYS
DBSNMP
FLOWS_020100
USERNAME
XDB
HR
13 rows selected.
SQL> exit
Disconnected from Oracle Database 10g Express Edition Release 10.2.0.1.0 - Produ
ction
C:\Users\Balaji K>dir
Volume in drive C has no label.
Volume Serial Number is 0282-81BD
Directory of C:\Users\Balaji K
03/27/2011 12:04 AM <DIR> .
03/27/2011 12:04 AM <DIR> ..
03/26/2011 03:04 AM <DIR> .VirtualBox
02/25/2011 04:57 PM <DIR> Contacts
03/26/2011 06:07 PM <DIR> Desktop
03/25/2011 06:00 PM <DIR> Documents
03/25/2011 08:44 PM <DIR> Downloads
03/27/2011 12:05 AM 2,398 example.txt
03/04/2011 06:06 PM <DIR> Favorites
02/25/2011 04:57 PM <DIR> Links
02/25/2011 04:57 PM <DIR> Music
02/25/2011 04:57 PM <DIR> Pictures
02/25/2011 04:57 PM <DIR> Saved Games
02/25/2011 04:57 PM <DIR> Searches
03/26/2011 10:04 PM <DIR> Tracing
02/25/2011 04:57 PM <DIR> Videos
02/25/2011 06:07 PM <DIR> VirtualBox VMs
1 File(s) 2,398 bytes
16 Dir(s) 43,067,940,864 bytes free
C:\Users\Balaji K>
See now you can see the example.txt which we had spooled. Now if go with
C:\Users\Balaji K>edit example.txt command you can see that all the data is spooled into it.
And instead of exiting sqlplus, if you want to continue some other operations , then you can give spool off command .
sql> spool off.
Hope this helps you :)
Thanks,
Balaji K.
Edited by: balaji k on Mar 26, 2011 11:42 AM
Edited by: balaji k on Mar 26, 2011 11:43 AM

Similar Messages

  • Preserve a single space at the end of line using spool command

    Hi,
    Can you please help me to write the result of an sql query into a file with the last column of the row ending with a single space?
    For example:
    COL1DATA|COL2DATA|COL3DATA<space1>
    As mentioned in the example the col3 value in the file should end with a single space. And there should not be any delimiters at the end of the row.
    I tried with set trimspool on/off. But, it didn't work. When I say trimspool on - it is trimming all the trailing spaces.
    When I say trimspool off - it is retaining all the trailing spaces to the size of the line.
    But, I do not wish to modify the file through shell commands once it is written thru spool. I mean I do not wish to append spaces to the end of a line using shell script or any other method.
    I do not wish to use other methods like UTL_FILE also.
    Please help me how to do it using spool command?
    Thank you.
    Ramana

    My requirement is that all the trailing spaces should be truncated except the last one in the row.Why?
    As you have discovered a single column in sqlplus, is always a fixed length regardless of the size of the data, if the length of the data varies the output is padded to the maximum or line size with spaces. The trim and trimpsool commands are there to remove all the spaces from the end of a line if there are any. There are no commands to trim all the spaces except one, or even to trim all the spaces except two, or three even.
    If you want such custom processing you should post process the file in the OS using sed, awk or perl or something designed for such things.

  • Is it possible to automate the extraction using spool command?

    Hi,
    I am trying to export data from table to excel. But the result i am getting will be in million records. Till now i am manually extracting the data using plsql developer. but it is hampering my work alot when i am extracting.
    i am able to extract the data using below spool command in sqlplus
    set feed off markup html on spool on
    spool 'd:\filename.xls'
    select * from ca_trial_milestones;
    spool off
    set markup html off spool off
    But is it possible to run it in sql/plsql developer and schedule it on night time.
    U r replies will help me alot.
    Thanks alot in advance

    981145 wrote:
    Hi,
    I am trying to export data from table to excel. But the result i am getting will be in million records. Till now i am manually extracting the data using plsql developer. but it is hampering my work alot when i am extracting.
    i am able to extract the data using below spool command in sqlplus
    set feed off markup html on spool on
    spool 'd:\filename.xls'
    select * from ca_trial_milestones;
    spool off
    set markup html off spool off
    But is it possible to run it in sql/plsql developer and schedule it on night time.
    U r replies will help me alot.
    Thanks alot in advanceYou can create a batch file in window and then setting appropriate environment setting you can do
    sqlplus user/pass@connect @scriptnamewhere scriptname is you above script.
    You can then schedule this in windows schduler
    However excel can not handle more than 1,048,576 rown as of version 2010
    You can save the spool as html file and you will able to view the resultset.

  • How to write data to existing file using spool command?

    Hi,
    I am calling a stored procedure from a shell script. This stored procedure is having a CLOB object as an OUT parameter. How to write the data in CLOB object a existing file which is there in my client system. Below is the shell and sql scripts.
    Shell script
    ( echo "hello" ) > /root/file.txt
    sqlplus -s $user/$pass@$tns @/root/proc.sql /root/file.txt << EOF
    EOFSQL script
    set pages 0
    set trimspool off
    set serveroutput off
    set feedback off
    set term off
    set echo off
    variable out CLOB
    define file='&1'
    begin
    pack.proc(:out);
    end;
    spool &file
    select :out from dual;
    spool offThis code writes contents of the OUT variable to file.txt, but my existing data ('hello') is lost. Please help me.
    I figured the it...Use append in the spool command... :)
    Edited by: Balaji on Jul 19, 2012 8:55 PM

    >
    Hi Balaji
    I figured the it...Use append in the spool command... :Please mark the thread as answered as per the FAQ.
    Paul...

  • How to generate text file using spool command

    How can I use a SPOOL command with DBMS_OUTPUT.PUT_LINE with PL/SQL to produce text file on oracle client machine.

    You could try using a REF CURSOR as an alternative. Bare bones example listed below:
    --- SQL Script
    SET FEEDBACK OFF
    COLUMN first_name FORMAT A25
    COLUMN last_name FORMAT A25
    VARIABLE example_data REFCURSOR
    BEGIN
    example.get_data(:example_data);
    END;
    SPOOL example_data.txt
    PRINT example_data
    SPOOL OFF
    -----Output in example_data.txt
    FIRST_NAME LAST_NAME
    First Name 1 Last Name 1
    First Name 2 Last Name 2
    First Name 3 Last Name 3
    First Name 4 Last Name 4
    First Name 5 Last Name 5
    First Name 6 Last Name 6
    First Name 7 Last Name 7
    First Name 8 Last Name 8
    First Name 9 Last Name 9
    First Name 10 Last Name 10
    -----Example package used in SQL Script
    CREATE OR REPLACE PACKAGE example
    IS
    TYPE result_set IS REF CURSOR;
    PROCEDURE get_data
    p_result_set OUT result_set
    END;
    SHOW ERRORS
    CREATE OR REPLACE PACKAGE BODY example
    IS
    PROCEDURE get_data
    p_result_set OUT result_set
    IS
    BEGIN
    -- replace this with your query
    OPEN p_result_set FOR
    WITH fake_data AS (
    SELECT
    'First Name ' || level first_name,
    'Last Name ' || level last_name
    FROM DUAL
    CONNECT BY LEVEL <= 10
    SELECT *
    FROM fake_data
    END;
    END;
    SHOW ERRORS
    SPOOL OFF

  • How to Use SPOOL Command with Bind Variables

    For the Following SPOOL I want the GEN_DATE to be entered by the User at the time of execution of the SQL Script. Is it possible in SPOOL Command.
    set colsep , -- separate columns with a comma
    set pagesize 1000 -- get rid of disturbing ---- between pages
    set heading on -- Print column heading
    set trimspool on -- remove trailing blanks. eliminating the spaces up to eol
    set linesize 700 -- line size should be the sum of the column widths
    spool spool_results.csv
    SELECT *
    FROM GUI_SITE_JOURNAL
    WHERE GENDATE_ BETWEEN '2012-11-01 00:00:00:00000' AND '2012-11-02 00:00:00:00000'* ORDER BY GEN_DATE;
    spool off;
    The reason is to give the ability to user so that he can enter any range without modifying the code of the script.
    Can Any one help me please.
    Edited by: user10903866 on Feb 18, 2013 7:44 PM

    Hi,
    user10903866 wrote:
    For the Following SPOOL I want the GEN_DATE to be entered by the User at the time of execution of the SQL Script. Is it possible in SPOOL Command.Do you want the user input in the SPOOL command, or do you want it in the query?
    set colsep , -- separate columns with a comma
    set pagesize 1000 -- get rid of disturbing ---- between pages
    set heading on -- Print column heading
    set trimspool on -- remove trailing blanks. eliminating the spaces up to eol
    set linesize 700 -- line size should be the sum of the column widths
    spool spool_results.csv
    SELECT *
    FROM GUI_SITE_JOURNAL
    WHERE GENDATE_ BETWEEN '2012-11-01 00:00:00:00000' AND '2012-11-02 00:00:00:00000'* ORDER BY GEN_DATE;What is the data type oif gen_date?
    If it's a string, that's a big mistake. Information about dates belongs in DATE columns.
    If it's a DATE, then don't try to compare it to strings, such as '2012-11-01 00:00:00:00000' .
    spool off;
    The reason is to give the ability to user so that he can enter any range without modifying the code of the script.
    Can Any one help me please.One way to do that is with substitution variables:
    SET     VERIFY  OFF
    ACCEPT  start_gen_date     PROMPT "Starting date (e.g., 2013-02-18 23:00:00.00000): "
    ACCEPT  end_gen_date     PROMPT "Ending date   (e.g., 2013-02-18 23:59:59.99999): "
    SPOOL  spool_results.csv
    SELECT    *
    FROM        gui_site_journal
    WHERE        gen_date  BETWEEN '&start_gen_date'
                    AND     '&end_gen_date'
    ORDER BY  gen_date;
    SPOOL  OFFThere are security considerations. Substitution variables give devious users the power to issue any SQL command, such as DROP TABLE. Users that have SQL*Plus access already have that power, anyway.

  • Help with FIXED LENGTH columns - using spool command

    Hi guys,
    I have a view I am trying to spool using fixed length columns, and the spacing is off. Ive tried numerous things such as specifiying the column width before running the query, using the rpad command, but nothing seems to work. I have to spool it to a text file in order for the users to import this file into another system. I would welcome any and all suggestions. Thanks so much. The following is the view:
    SELECT "EMPLOYEE_ID","FIRST NAME","INITIAL","LAST NAME","SUFFIX","TRAINING DATE","Course ID","Class ID", "We", "Make / Model", "Cali", "Barrell", "Serial Number", "Qualification", "Application", "SCORE", "Status", "Add Time", "Record Add ID","Record Add Date","Record Change ID","Record Change Date","RN" FROM
    (SELECT
    UPPER(RPAD(tbl.ssn,10)) AS "EMPLOYEE_ID",
    UPPER(RPAD('',12)) AS "FIRST NAME",
    UPPER(RPAD('',1)) AS "INITIAL",
    UPPER(RPAD('',20)) AS "LAST NAME",
    UPPER(RPAD('',5)) AS "SUFFIX",
    UPPER(RPAD(to_char(QUALDATE, 'mmddyyyy'),8)) AS "TRAINING DATE",
    UPPER(RPAD('P123',8)) AS "Course ID",
    UPPER(RPAD('',6)) AS "Class ID",
    UPPER(RPAD('P',4)) AS "We",
    UPPER(RPAD('',4)) AS "Make / Model",
    UPPER(RPAD('',4)) AS "Cali",
    UPPER(RPAD('',7)) AS "Barrell",
    UPPER(RPAD('',15)) AS "Serial Number",
    UPPER(RPAD('A',4)) AS "Qualification",
    UPPER(RPAD('D',4)) AS "Application",
    to_char((RAWSCORE/250)*100, 'fm000.00') AS "SCORE",
    UPPER(RPAD('PASS',4)) AS "Status",
    UPPER(RPAD('',8)) AS "Add Time",
    UPPER(RPAD('',8)) AS "Record Add ID",
    UPPER(RPAD('',8)) AS "Record Add Date",
    UPPER(RPAD('',8)) AS "Record Change ID",
    UPPER(RPAD('',8)) AS "Record Change Date",
    row_number()over(partition by firearms_scores.ID_NUMBER order by QUALDATE desc ) rn
    FROM FIREARMS_scores, TBL
    where scores.id_number=tbl.id_number
    and qualyear='2010' and coursecode='SA'
    order by employee_id)
    where rn =1

    Hi,
    You RPAD doesn't do anything, since they are same as:
    SQL> SELECT NULL AS "Record Add ID",
      2         NULL AS "Record Add Date",
      3         NULL AS "Record Change ID",
      4         NULL AS "Record Change Date" FROM DUAL;
    R R R R
    SQL>Can't see why COLUMN command shouldn't do what you want. Maybe you forgot the double quotes?
    SQL> COL "Record Add ID" FOR a18
    SQL> COL "Record Add Date" FOR a18
    SQL>
    SQL> SELECT NULL AS "Record Add ID",
      2         NULL AS "Record Add Date",
      3         NULL AS "Record Change ID",
      4         NULL AS "Record Change Date" FROM DUAL;
    Record Add ID      Record Add Date    R R
    SQL>P.S: You probably shouldn't set a column width which is smaller than the header length
    Regards
    Peter

  • Trying to use setInterval command

    does anyone have any idea what I am doing wrong, Im trying to
    load random swfs and have them change on the current screen after a
    given duration (im still learning and this happens to be in as2)
    filename = ["countdown.swf", "snow.swf", "chimneysweep.swf",
    "shanghaiedtochina.swf", "ashleydowns.swf"];
    path = "
    http://testwebsite/flash/swf/";
    i = filename.length;
    k = Math.floor(Math.random()*i);
    loadMovie(path+filename[k], movieTarget);
    var setInterval(loadMovie, 1000);

    splotter,
    > filename = ["countdown.swf", "snow.swf",
    "chimneysweep.swf",
    > "shanghaiedtochina.swf", "ashleydowns.swf"];
    This line creates a variable named filename and sets it an
    an instance
    of the Array class. So you have an array with five elements
    in it. For
    what it's worth, I recommend that you use the var keyword to
    formally declar
    your variable: Since you're using AS2, you may as well type
    your variable,
    while you're at it. These extra small steps are good habits
    to get into,
    because they can be helpful in complex projets.
    var filename:Array = ["countdown.swf", "snow.swf",
    "chimneysweep.swf",
    "shanghaiedtochina.swf", "ashleydowns.swf"];
    > path = "
    http://testwebsite/flash/swf/";
    This line creates another variable, this time a string, and
    sets it to a
    value. Again, I recommend you declare and type your variable:
    var path:String = "
    http://testwebsite/flash/swf/";
    > i = filename.length;
    Here, you're creating yet another variable, this time a
    number, based on
    the length of the array. In this context, i equals 5.
    var i:Number = filename.length;
    > k = Math.floor(Math.random()*i);
    Here, you're creating another number variable, whose value
    is some
    number between 0 and 4. For grins, let's say it happens to be
    3.
    var k:Number = Math.floor(Math.random()*i);
    > loadMovie(path+filename[k], movieTarget);
    Here, you're invoking the loadMovie() function with a
    concatenated first
    parameter. Assuming k is 3, then you're actually saying the
    following:
    loadMovie("
    http://testwebsite/flash/swf/shanghaiedtochina.swf",
    movieTarget);
    ... because path plus the third element from the filename
    array is the
    string shown.
    > var setInterval(loadMovie, 1000);
    Now you're setting up a timed loop that repeats every second
    (every
    1,000 milliseconds). The function you're repeatedly
    triggering is the
    loadMovie() function, but you aren't specifying any
    parameters this time.
    My hunch is that you want to load a random movie every
    second, but I'm
    not sure. If I'm right, then you're going to have to
    re-generate your
    random number every time the function is triggered. I'd wrap
    the operative
    part in a custom function and trigger that function instead.
    var filename:Array = ["countdown.swf", "snow.swf",
    "chimneysweep.swf",
    "shanghaiedtochina.swf", "ashleydowns.swf"];
    var path:String = "
    http://testwebsite/flash/swf/";
    var i:Number = filename.length;
    function loadRandomMovie():Void {
    var k:Number = Math.floor(Math.random()*i);
    loadMovie(path+filename[k], movieTarget);
    setInterval(loadRandomMovie, 1000);
    Now, keep in mind, you don't need the var keyword in front
    of the
    setInterval() call. setInterval() isn't a variable. The
    function does
    return a value, so you can store *that*, if you want, but you
    don't need to
    unless you want to use clearInterval() later to stop the
    looping. That
    might look like this ...
    var interval:Number = setInterval(loadRandomMovie, 1000);
    ... which means later you could use clearInterval(interval)
    to stop the
    loop.
    David Stiller
    Co-author, Foundation Flash CS3 for Designers
    http://tinyurl.com/2k29mj
    "Luck is the residue of good design."

  • How to use Filter commands in WAD?

    Hello community,
    I am desperately trying to use the command wizzard in order to set a Filter to a chrarcateristic in an 7.0 web template:
    I have been trying these commands so far but it simply doesnt work:
    SET_SELECTION_STATE_SIMPLE
    SET_SELECTION_STATE
    My problem is: When I select the charcateristic which I want to Filter, I get always the Error message, that the characteristic is not a valied characteristic or structure of the Query. But this is not true, the Characteristic is in the query. I have tried for hours now but no success.
    Thanks for any help or advice.
    Carl

    Hi Carl,
    I had the same situation. All you have to do is to update your support package. After that it will work properly.
    I have - Support Package 7, Revision 571
    Regards
    Erwin
    Edited by: Erwin  Buda on Dec 5, 2008 9:47 PM

  • Problem while using SPOOL

    I m using Spool command in SQL Plus to extract output to an excel file.
    Even if i gave set echo off in the beginning its showing my entire query in the xls.
    Cn someone guide me...???
    Thanks

    Hi,
    Put your query in a .sql script and run your sql as a SCRIPT.
    SQL> spool myspool.txt
    SQL> @ my_script.sql -- < -- file contains your query
    SQL> spool off
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:1317802337341#54080753002556

  • Help Reqd Using SPOOL

    Hi,
    I am using SPOOL command to save result returned by the SQL command to a file.
    1. In the select statement I have 10 fields being retrieved, how do I separate them by comma when the result in written to the file.
    2. The result for one record in not stored in one line in the file. It is distributed in 2-3 lines. How do I a make sure that each record retrieved corresponds to one line in the file saved.
    My ultimate is to generate a CSV file from the result retrieved by the SQL statement.
    Thanks in advance,
    Raja

    I guess the answers to your questions do not need a master degree in IT, but for once...
    1. In the select statement I have 10 fields being
    retrieved, how do I separate them by comma when the
    result in written to the file.Either use SELECT col1, ',', col2... or, if using SQL*PLUS, do set the COLSEP to fit your needs.
    >
    2. The result for one record in not stored in one
    line in the file. It is distributed in 2-3 lines. How
    do I a make sure that each record retrieved
    corresponds to one line in the file saved.Try SET LINESIZE. It's amazing what a bit of curiosity can do... ;)

  • Error while trying to export my database using this command

    Hi,
    I am trying to export my database using this command :
    expdp system/manager@db1 full=n schemas=kul4231 dumpfile=kul4231_20091122.dmp logfile=kul4231_20091122.log directory=dump_dir1
    Error:
    Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    ORA-31626: job does not exist
    ORA-31637: cannot create job SYS_EXPORT_SCHEMA_05 for user SYSTEM
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 95
    ORA-06512: at "SYS.KUPV$FT_INT", line 600
    ORA-39080: failed to create queues "KUPC$C_1_20091122101110" and "" for Data Pump job
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 95
    ORA-06512: at "SYS.KUPC$QUE_INT", line 1606
    ORA-01008: not all variables bound
    DB version : Release 10.2.0.4.0
    all ideas are welcomed!!!!!!!!!!!! let me know where am i going wrong!!!!!!!
    thanks in advance..!!!!!!!!
    venkat.

    What is your SGA settings? (especially streams_pool_size).
    You can try to bump streams_pool_size to 100M if your current setting is below that.
    Regards
    Tomasz K.

  • Crystal Reports shuts down when trying to use the Add Command feature

    I am using Crystal Reports 9 with and Oracle database.  I go to new report, as a blank report, new connection to oracle, double click add command, paste the sql and click ok and crystal shuts down at that point.  Any one have this happen before?? Please help??

    Hi Allison,
    Have you tried with  basic syntax at command level.
    If you face any problem using Add command in crystal designer, just try to reinstall the product.
    Regards,
    Naveen.

  • HT203180 I purchased a video from iTunes but it will not sync to my iPod.  I get a message stating that the video "was not loaded to the iPod because iyt cannot be played on this iPod."  I tried to use the "create an iPod version" but the command is graye

    I purchased a video from iTunes but it will not sync to my iPod.  I get a message stating that the video "was not loaded to the iPod because iyt cannot be played on this iPod."  I tried to use the "create an iPod version" but the command is grayed out

    I was refering to the "sample rate", normally 44.1 KHz, the iPod might not be able to play tracks with a non-standard rate. Otherwise I'm not sure what the issue might be.
    tt2

  • Ok i get this error when hooking my dvd drive up and tring to use my windows 7 cdNo Bootable device. Insert boot disk and press any key. i have tried to use command key i see the cd icon and hit that and i get the error

    ok i get this error when hooking my dvd drive up and tring to use my windows 7 cdNo Bootable device. Insert boot disk and press any key. i have tried to use command key i see the cd icon and hit that and i get the error

    Wiley207 wrote:
    Believe it or not, it was the FireWire drive that was the problem! I managed to successfully install Windows 7 using an external USB DVD drive!
    Well I am truly staggered, I have tried this on two different MacBook Pros, with three different external USB optical drives. Don't know if you googled as I suggested but you would find hundreds of others who have found same thing. The exception is MacBook Air which works with the Apple writer, but I don't know much about this.
    Were you doing any of the special workarounds with refedit etc?
    What model USB DVD drive?

Maybe you are looking for

  • What do i have to do if in my ipod i have locked restrictions and i want to unlocke it but i dont know the password.

    what do i have to do if in my ipod i have locked restrictions and i want to unlocke it but i dont know the password.

  • Problems after upgrading to 10.5.2

    iv had some problems even since iv upgraded to 10.5.2 yesterday, everything seems to be wrong permissions, like when i need to move something or delete it, even when i have costume access i have to change "all" to "read and right" to get access. And

  • ** Transferring from External FW LaCie to new Aluminum iMac **

    Is it possible to transfer a CCC external FW HD to a new Intel Aluminum iMac? What I am trying to do is transfer my entire HD to my new iMac but its more economical for me to sell my G5 in New York and buy my iMac in Portland, OR + save taxes. If I b

  • Use of the object

    Hi, According to the sample app from http://tompeez.wordpress.com/2011/12/16/jdev11-1-2-1-0-handling-imagesfiles-in-adf-part-3/ within ImageServlet.java, can you tell me what the need is for defining the object "ULDLAppModuleImpl" inside that?

  • Copying Folder Structure

    I have a folder structure of Months (01-January, 02-February, etc.) setup under each year folder. Is there a way in Aperture to create a folder structure template and copy that structure to a new folder, as the new years need to be setup?