Couldn't export schema because of invalid argument value and other errors.

Hello, All.
I am using an oracle 10g database, which is running on a Redhat9 linux server, to manage our lab information.
I plan to export a schema (only tables, not the real data) into a file.
First, I used the Enterprise Manager to export. I went through and complete the export job. After submitting, the system says:
There is a problem writing to the export files: ORA-39094: Parallel execution not supported in this database edition..
So I just copy the PL/SQL code which would be send to the source database and comment the set_parallel procedure.
The code is listed here:
declare
h1 NUMBER;
begin
begin
h1 := dbms_datapump.open (operation => 'EXPORT', job_mode => 'SCHEMA', job_name => 'EXPORT000468', version => 'COMPATIBLE');
end;
--begin
--dbms_datapump.set_parallel(handle => h1, degree => 1);
--end;
begin
dbms_datapump.add_file(handle => h1, filename => 'EXPDAT.LOG', directory => 'DATA_FILE_DIR', filetype => 3);
end;
begin
dbms_datapump.set_parameter(handle => h1, name => 'KEEP_MASTER', value => 0);
end;
begin
dbms_datapump.metadata_filter(handle => h1, name => 'SCHEMA_EXPR', value => 'IN(''FLOWLIMS'')');
end;
begin
dbms_datapump.set_parameter(handle => h1, name => 'ESTIMATE', value => 'BLOCKS');
end;
begin
dbms_datapump.add_file(handle => h1, filename => 'EXPDAT%U.DMP', directory => 'DATA_FILE_DIR', filetype => 1);
end;
begin
dbms_datapump.set_parameter(handle => h1, name => 'INCLUDE_METADATA', value => 1);
end;
begin
dbms_datapump.data_filter(handle => h1, name => 'INCLUDE_ROWS', value => 0);
end;
begin
dbms_datapump.set_parameter(handle => h1, name => 'DATA_ACCESS_METHOD', value => 'AUTOMATIC');
end;
begin
dbms_datapump.start_job(handle => h1, skip_current => 0, abort_step => 0);
end;
begin
dbms_datapump.detach(handle => h1);
end;
end;
I paste the code in an SQL*Plus session and execute it. The system says:
declare
ERROR at line 1:
ORA-39001: invalid argument value
ORA-06512: at "SYS.DBMS_SYS_ERROR", line 79
ORA-06512: at "SYS.DBMS_DATAPUMP", line 2486
ORA-06512: at "SYS.DBMS_DATAPUMP", line 2718
ORA-06512: at line 23
I am not very sure which part is wrong for I have exported another schema successfully using this method just now.
Any advice is highly appreciated!
Qian

Well, I will list more details about how to complete the job here.
1) Go to the Enterprise Manager, log in as FLOWLIMS (I just want to export the schema FLOWLIMS)
2)Go to the "Maitenance"
3)Under the "Utilities", select the "Export to files"
4)in the next page: Export: Export Type, select "Schemas"
5) in the next page, select the schema "FLOWLIMS"
6) in the next page, select these parameters:
Maximam Number of Threads in Export job: 1
Estimate Disk Space: Blockes
7) when I click the "Estimate Disk Space Now", it says :
Export Estimate Failed
There is a problem writing to the export files: ORA-39094: Parallel execution not supported in this database edition..
8) So I give up extimating
9) Other options:
I select "Generate Log file"
The Directory Object is the default value "DATA_FILE_DIR"
The Log File is the default value "EXPDAT.LOG"
10) the advanced options are like these:
Content: What to export from the Source Database: "Metadata only"
Export content: "include all objects"
Flashback: select "As the specified System Change Number (SCN)
SCN: just accept the default number 28901412
Query: select nothing. I need all fields of all tables.
11) in the next page, I accept the default directory object "DATA_FILE_DIR" and the default File Name "EXPDAT%U.DMP". The Maximam File Size is blank, I just leave it blank.
12) in the next page "Schedule" , I select to start the job immediatly.
13) in the next page "Review", it shows:
Export Type          Schemas
Statistics type          Estimate optimizer statistics when data is imported
Parallelism          1
Files to Export          DATA_FILE_DIR EXPDAT%U.DMP
Log File          DATA_FILE_DIR EXPDAT.LOG
and the PL/SQL is like that:
declare
h1 NUMBER;
begin
begin
h1 := dbms_datapump.open (operation => 'EXPORT', job_mode => 'SCHEMA', job_name => 'EXPORT000487', version => 'COMPATIBLE');
end;
begin
dbms_datapump.set_parallel(handle => h1, degree => 1);
end;
begin
dbms_datapump.add_file(handle => h1, filename => 'EXPDAT.LOG', directory => 'DATA_FILE_DIR', filetype => 3);
end;
begin
dbms_datapump.set_parameter(handle => h1, name => 'KEEP_MASTER', value => 0);
end;
begin
dbms_datapump.metadata_filter(handle => h1, name => 'SCHEMA_EXPR', value => 'IN(''FLOWLIMS'')');
end;
begin
dbms_datapump.set_parameter(handle => h1, name => 'ESTIMATE', value => 'BLOCKS');
end;
begin
dbms_datapump.add_file(handle => h1, filename => 'EXPDAT%U.DMP', directory => 'DATA_FILE_DIR', filetype => 1);
end;
begin
dbms_datapump.set_parameter(handle => h1, name => 'INCLUDE_METADATA', value => 1);
end;
begin
dbms_datapump.data_filter(handle => h1, name => 'INCLUDE_ROWS', value => 0);
end;
begin
dbms_datapump.set_parameter(handle => h1, name => 'DATA_ACCESS_METHOD', value => 'AUTOMATIC');
end;
begin
dbms_datapump.start_job(handle => h1, skip_current => 0, abort_step => 0);
end;
begin
dbms_datapump.detach(handle => h1);
end;
end;
14) after I click the "submit" , it shows:
Export Submit Failed
There is a problem writing to the export files: ORA-39094: Parallel execution not supported in this database edition..
15) I copy the PL/SQL, comment this part:
--begin
--dbms_datapump.set_parallel(handle => h1, degree => 1);
--end;
I run it in an iSQL*Plus Release 10.1.0.2,
It shows:
declare
ERROR at line 1:
ORA-39001: invalid argument value
ORA-06512: at "SYS.DBMS_SYS_ERROR", line 79
ORA-06512: at "SYS.DBMS_DATAPUMP", line 2486
ORA-06512: at "SYS.DBMS_DATAPUMP", line 2718
ORA-06512: at line 23
Could anybody help? Thanks a lot!
Qian

Similar Messages

  • ORA-39001: invalid argument value dbms_datapump.open

    Hello,
    I'm trying to import objects in a tablespace from a remote database.
    The link source.de is working, but the dbms_datapump.open statements fails with below errors
    SQL> var h number;
    SQL> exec :h := dbms_datapump.open (operation => 'IMPORT',job_mode => 'TABLESPACE', remote_link => 'source.de');
    BEGIN :h := dbms_datapump.open (operation => 'IMPORT',job_mode => 'TABLESPACE', remote_link => 'source.de'); END;
    ERROR at line 1:
    ORA-39001: invalid argument value
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 79
    ORA-06512: at "SYS.DBMS_DATAPUMP", line 2953
    ORA-06512: at "SYS.DBMS_DATAPUMP", line 4603
    ORA-06512: at line 1
    When I describe dbms_datapump.open:
    FUNCTION OPEN RETURNS NUMBER
    Argument Name Type In/Out Default?
    OPERATION VARCHAR2 IN
    JOB_MODE VARCHAR2 IN
    REMOTE_LINK VARCHAR2 IN DEFAULT
    JOB_NAME VARCHAR2 IN DEFAULT
    VERSION VARCHAR2 IN DEFAULT
    COMPRESSION NUMBER IN DEFAULT
    Anyone familier with this problem?
    Regards,
    Tim

    ORA-39001: invalid argument value, could be because of the db_link (is not seen by the owner of the code, by the schema which has the rights to run the code).
    You can take a look at:
    <p>
    http://www.oracle-home.ro/Oracle_Database/10g_New_Features/Schema_refresh_DP.html</p>

  • When installing mountain lion on my computer, why does it say "OSX Mountain Lion couldn't be installed, because the disk \ is damaged and can't be repaired."

    I'm unable install mountain lion on my computer. Every time it says "OSX Mountain Lion couldn't be installed, because the disk \ is damaged and can't be repaired. Click restart to restart your computer and try installing again." So I press the only button listed as an option, it restarts, and the same screen comes up again. I can't make mountain lion go away...I've tried many times. What is wrong with my computer? It's stuck like this and I can't even get snow leopard back on there if I wanted to because I can't get away from the same screen. Please help : (

    Insert your OS installer disk in the optical drive. Power the Mac down by holding down the power button. Then power back up and hold down the 'c' key so the MBP boots to the installer disk. From Disk Utility you should do a Repair Disk. If DU successfully repairs the disk quit the installer and reboot your Mac. You should update to 10.6.8 prior to upgrading to ML.
    http://support.apple.com/kb/DL1399
    Then do your ML upgrade install.

  • Months ago I tried to uninstall itunes from Windows 7 after an update failed. I couldn't do it because two files, ShellStreams.resources and ShellStreams.dll were in use. Any suggestions, please?

    Months ago I tried to uninstall itunes from Windows 7 after an update failed. I couldn't complete it because two files (ShellStreams.resources and ShellStreams.dll ) were in use. I'm ready to try again. Any Suggestions, please.

    See Troubleshooting issues with iTunes for Windows updates for tips on repairing the iTunes installation. One of the tools mentioned there, Unlocker, should be able to force delete the files that you are having trouble removing.
    tt2

  • My project is finish with final cut 4 when i  export on quick time a window open and says (error 34 ) is anyone knows what is the problem tanks DENIS

    my project is finish with final cut 4 when i export via quick time a window open and says (error  34 ) what is the problem .
    i've made many transfers before and every time it was excellent thanks   denis

    Is the external formatted tmac OS Extended?
    It should be.
    Al

  • Upgrading from snow leapord to mavericks, i couldn't opened app store, messenger, ibook,FaceTime, maps and other. please help

    upgrading from snow leapord to mavericks, i couldn't opened app store, messenger, ibook,FaceTime, maps and other. please help

    Try booting into the Safe Mode using your normal account.  Disconnect all peripherals except those needed for the test. Shut down the computer and then power it back up after waiting 10 seconds. Immediately after hearing the startup chime, hold down the shift key and continue to hold it until the gray Apple icon and a progress bar appear. The boot up is significantly slower than normal. This will reset some caches, forces a directory check, and disables all startup and login items, among other things. When you reboot normally, the initial reboot may be slower than normal. If the system operates normally, there may be 3rd party applications which are causing a problem. Try deleting/disabling the third party applications after a restart by using the application un-installer. For each disable/delete, you will need to restart if you don't do them all at once.
    Safe Mode
    Safe Mode - About
    If that doesn't work, do a backup. Boot to the Recovery Volume (command - R on a restart or hold down the option key during a restart and select Recovery Volume). Run Disk Utility Verify/Repair and Repair Permissions until you get no errors. Then reinstall the OS.
    OS X Recovery
    OS X Recovery (2)

  • Report fails with " Invalid argument for database." error.

    Hi All,
    Several of my reports deployed on Crystal Reports Server 2008 server fails everyday with the following error.
    Error in File ~tmp121c5dc747685036.rpt: Invalid argument for database.
    The error is not consistent, if report A fails today, it is Report B the next day. When I reschedule the reports, they run just fine. They fail only when the daily schedules run at 2:00 AM in the morning. 100 + reports are run at this time and some of the reports that fail run many times with different parameters. Is this error due to scheduling reports many times or is it something else? Appreciate any help with this.
    Thanks
    Bin

    Hi,
    can you please check under <BOBJ installation directory>\BusinessObjects Enterprise 12.0\logging in the log files created by the crystal reports job server for additionaly error messages?
    Regards,
    Stratos
    PS: Do you run CRS 2008 V0 or V1?

  • The OSX upgrade couldn't be started because the disk is damaged and can't be repaired.

    I'm getting the above error message after trying many different "fixes" described on message boards.  Here's the issue: I have a Macbook Pro that developed a problem with an endless boot cycle.  The solution ended up being to wipe the drive using Disk Utility.  I then reinstalled OSX from a Snow Leopard disk, and the computer appeared to be working normally.  Then, when I attempted to upgrade to Mavericks from the App Store, I get this message when the computer tries to reboot and install the OS.  I have tried verifying and repairing the disk, resetting NVRAM/PRAM, resetting the SMC...but always I get the following error message:
    Install Failed
    OSX could not be installed on your computer
    The OSX upgrade couldn't be started because the dis Macintosh HD is damaged and can't be repaired
    Curious if anyone has experienced this problem or has a possible fix.  Thanks for your help

    I did not verify/repair from Snow Leopard...simply reinstalled then attempted to download/install Mavericks from the App Store.  Having seen this suggestion, I've now rebooted into recovery mode, and when I try to verify/repair, it aborts both processes and I get the respective errors:  "The volume couldnot be verified completely" and "Error: Disk Utility can't repair this disk. Back up as many of your files as possible, reformat the disk, and restore your backed-up files."

  • Export Audio to QT Movie -- Expected Behavior and Other Questions

    In the past I've reported that the Export Audio to QT Movie function didn't work correctly in LP 7.1.1. Well, it still doesn't seem to work correctly, but this time around I'm at least getting some kind of result. It would be kinda cool if I could get it to work according to play.
    I'd like to get comments on this procedure, i.e., what kind of behavior should I expect; am I doing something wrong, etc.
    • The movie (25 minutes long) starts with a 19-second slug (no timecode burn) followed by first picture with timecode burn starting at 00:00:19:00
    • Movie Start Time = 00:00:00:00.01 (the extra bit is to work around a bug)
    • SMPTE time for bar 1 1 1 1 = 00:00:19:00
    • L & R locators set to the position & length of audio I want to export to the movie (L = bar 1 and R = bar 14)
    • Cycle = ON
    • Selected a single region of audio (track 1, outputs 1/2)
    When I invoked the export function, I was presented with a dialog:
    Immediately I notice that there is no 24-bit option (comments?)
    Then I encountered this message:
    The file listed there is the dialog track for the movie. No problem there. Now, keeping in mind that my file is only 13 measures long (at a fairly fast tempo),
    Logic then performed a very long "bounce" procedure, followed by a long "converting" procedure, followed by a "saving" procedure (in which it was writing the new QT movie file).
    In the resulting movie (which BTW was the full length of the film) the audio was waaaaaaay out of sync. But aside from that, is it normal to expect that the full-length of the film will be exported? I was expecting that perhaps only the first 13-measures-worth of movie would be exported. (comments?)
    So I tried again. This time I moved the song end marker to bar 14 and invoked the export function. I got all of the same dialogs as above, but the "bounce" procedure took no time at all. Neither did the "converting" procedure. I expected this, as now Logic was set to think that the song was only 14 measures long. But the "saving" procedure took as long as last time.
    In the resulting movie (which was again the full length of the film), the audio was again out of sync, though not by much. Still unusable tho. Again, should I expect that only a short clip of the movie would be exported? Or, should I expect the full length movie to be saved? (comments?)
    -=iS=-
    P.S. BTW, the reason my movie start time is set to 00 and not 19 seconds is because... well, that's the subject of another thread, but save to say that the above settings were the only way I could get first picture to line up with bar 1 of my song.

    Thanks for your reply George.
    I normally use QT Pro to embed audio into picture also. Thought I'd try this route one more time tho.
    Regarding my movie start time, I'm finding that if I set my movie start time to 19 seconds (where the burn-in first becomes visible, and which is indeed 19 seconds into the film), my SMPTE offset has to be 38 seconds. This means that Logic's t/c counter doesn't jibe with the film. So to make it so I have to enable the SMPTE view offset in the synchronization pane. But enabling it there doesn't automatically switch it on for the Giant SMPTE counter transport display.
    Anyway, back to the subject at hand. I'll try the settings you suggested and see if that makes a difference.
    Bouncing a chunk of movie always works perfectly here <<</div>
    Can you clarify something? I know you said that you end up with a null file when you try the export thing, but in your above statement, did you mean that when you've tried this that it did in fact export a chunk of the movie, but without audio?
    Cheers!
    -=iS=-

  • I am getting an error [Microsoft][ODBC Driver Manager] invalid argument val

    My code is :
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.util.Hashtable.*;
    import java.sql.*;
    public class LoginServlet extends HttpServlet
         Connection con;
         PreparedStatement ps;
         HttpSession session;
    public void init(ServletConfig sc) throws ServletException
    try
         super.init(sc);
         Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
         }catch(ClassNotFoundException e)
    {System.out.println("SQLException"+e.getMessage());}
    try
         con=DriverManager.getConnection("jdbc:odbc:aaa","scott","tiger");
    }catch(SQLException e)
         System.out.println("SQLException caught" +e.getMessage());
    public void service(HttpServletRequest req, HttpServletResponse res)
         res.setContentType("text/html");
         try
         String ulogin=req.getParameter("login").trim();
         String upass=req.getParameter("pass").trim();
         ps=con.prepareStatement("select pass from Userdetails where login='"+ulogin+"'");
         session=req.getSession(true);
         session.putValue("n1",ulogin);
         ps.setString(1,upass);
         ResultSet rs=ps.executeQuery();
         if(rs.next())
              if(upass.equals(rs.getString(1)))
              res.sendRedirect("http://localhost:8080/Welcome.html");
              session.putValue("login",ulogin);
              else
              PrintWriter pw=res.getWriter();
              pw.println("Sorry your password is incorrect,Reenter your password
    <html><center>");
              pw.println(" <form input type=password name=pass>");
              pw.println("<input type=hidden name=login value="+ulogin+">");
              pw.println("<input type=submit value=submit>");
              pw.println("</form></center></html>");
         else
         System.out.println("your are not a registered user,please register");
         res.sendRedirect("http://localhost:8080/Register.html");
         rs.close();
         catch(Exception e)
              System.out.println(e);
    When i compile, it is well but when i run through displaying my html and passing the data to test,then i am getting an error [Microsoft][ODBC Driver Manager]invalid argument value,
    I was set all my DSN correctly,the same pieve of code worked in another program but now i am getting an error.can any one clear this.
    Thanks in advance

    You have created a PreparedStatement with zero parameters in this statement:
    ps=con.prepareStatement("select pass from Userdetails where login='"+ulogin+"'");so "ps.setString(1, ulogin)" fails because there is no place to put parameter 1. Try this instead:
    ps=con.prepareStatement("select pass from Userdetails where login=?");and your program will work better. Better still, create the PreparedStatement in your init() method, there's no reason for creating it more than once.

  • Oracle.jms.AQjmsException: invalid arguments in call

    Hi
    Has anyone seen this error before?
    Environment Configuration:
    APP SERVER 9.0.4 (OUT 0F BOX CONFIG)
    JDK 1.4
    RED HAT ENTERPRISE SERVER 3.0
    COMPAC DL380
    ON VM SOFTWARE
    DB 9.2.0.4
    HP-UX 11i
    SUPERDOME
    Error logs:
    [18-06-04 10:27:20] [AJPRequestHandler-ApplicationServerThread-137] - [bcc.sde.common.jms.pool.QueueConnectionPool]
    [getQueueConnection] :Using pooled queue connection for factory:
    java:comp/resource/SDEJMS/QueueConnectionFactories/SDEQUEUETAB
    [18-06-04 10:27:20] [AJPRequestHandler-ApplicationServerThread-137] - [bcc.sde.common.jms.pool.QueueSessionPool]
    [createQueueSession] :Failed to create queue session: oracle.jms.AQjmsException: invalid arguments in call
    [18-06-04 10:27:20] [AJPRequestHandler-ApplicationServerThread-137] - [bcc.sde.common.jms.BytesMessageWriter]
    [writeBytesMessage] :Failed to write message onto queue: java:comp/resource/SDEJMS/Queues/SDEDEV_LOGQUEUE using queue
    factory: java:comp/resource/SDEJMS/QueueConnectionFactories/SDEQUEUETAB - bcc.sde.common.jms.pool.JMSPoolException:
    QueueSessionPool.createQueueSession() failed to create queue session - oracle.jms.AQjmsException: invalid arguments in call
    [18-06-04 10:27:20] [AJPRequestHandler-ApplicationServerThread-137] - [bcc.sde.sil.common.log.silInteractionLogger] [log]
    :silInteractionLogger.log() Exception writing ServiceExecutionRecord to JMS queue: bcc.sde.common.exception.SDEException:
    Failed to write message onto queue: java:comp/resource/SDEJMS/Queues/SDEDEV_LOGQUEUE using queue factory:
    java:comp/resource/SDEJMS/QueueConnectionFactories/SDEQUEUETAB - bcc.sde.common.jms.pool.JMSPoolException:
    QueueSessionPool.createQueueSession() failed to create queue session - oracle.jms.AQjmsException: invalid arguments in
    call: QueueSessionPool.createQueueSession() failed to create queue session - oracle.jms.AQjmsException: invalid arguments
    in call;
    ---> nested: bcc.sde.common.jms.pool.JMSPoolException: QueueSessionPool.createQueueSession() failed to create queue
    session - oracle.jms.AQjmsException: invalid arguments in call
    [18-06-04 10:27:20] [AJPRequestHandler-ApplicationServerThread-137] - [bcc.sde.sil.bids.api.sql.BidsSQLInterface]
    [logInteractionRecord] :Failed to log interaction record: bcc.sde.common.exception.SDEException: silInteractionLogger.log()
    Exception writing ServiceExecutionRecord to JMS queue: bcc.sde.common.exception.SDEException: Failed to write message onto
    queue: java:comp/resource/SDEJMS/Queues/SDEDEV_LOGQUEUE using queue factory:
    java:comp/resource/SDEJMS/QueueConnectionFactories/SDEQUEUETAB - bcc.sde.common.jms.pool.JMSPoolException:
    QueueSessionPool.createQueueSession() failed to create queue session - oracle.jms.AQjmsException: invalid arguments in
    call: QueueSessionPool.createQueueSession() failed to create queue session - oracle.jms.AQjmsException: invalid arguments
    in call;
    ---> nested: bcc.sde.common.jms.pool.JMSPoolException: QueueSessionPool.createQueueSession() failed to create queue
    session - oracle.jms.AQjmsException: invalid arguments in call
    Database error with same error message:
    ORA-17433 - invalid arguments in call
    http://www.doc.gold.ac.uk/oracle/doc/java.817/a83724/ermesap3.htm
    Code causing problem:
    queueConnection = queueConnectionPool.getQueueConnection(queueConnectionFactoryName, runningExternal);
    queueSession = queueConnection.createQueueSession(TRANSACTIONAL, AUTO_ACK_MODE);

    I am facing the same problem. Have you figured out what the cause was? Thanks,

  • Is it possible to export schema from one HANA server to other

    Hi,
    Is it possible to export schema from one HANA DB server and import it on another HANA Server?
    Thanks & Regards,
    Kumar

    Hi Gaurav,
    Yes you can Export Schema and Import Eported Schema in New Schema if you have HANA Rev 69.
    Please check below links.
    Backup particular database on B1H HANA
    SAP HANA restore and backup single schema
    SAP Business One 9.0, version for SAP HANA PL04 available
    SAP Business One 9.0, version for SAP HANA PL03 available now
    Hope this helps
    Regards::::
    Atul Chakraborty

  • AD RMS setup failed because of invalid configuraion setting

    HI,
    when I configure AD RMS configuration it gives me error that "one or more  ADRMS role services could not be configured: AD RMS setup failed because of invalid configuraion setting". The user which I try to install is an administrator of DC and
    also the service account is a member of enterprise domain group. When I tried this on test environment it works perfectly but on production environment it didn't. pls help me with this....
    I am using windows 2012 standard Server.. 
    Thanks......

    same question as in http://social.technet.microsoft.com/Forums/security/en-US/f57eb0b9-4079-47d6-b59b-f404d646cde8/one-or-more-adrms-role-services-could-not-be-configured-ad-rms-setup-failed-because-of-invalid?forum=rms

  • Standard XML schema for Vendor data exchange between SAP and other system

    Is there a SAP standard way of XML schema that we exchange between SAP and other system? Please let me know.
    Thanks.

    See SAP Interface Repository (http://ifr.sap.com).
    My proposal is to leave old SAP connectors staff and use SAP Exchange Infrastructure. There is a support of industry XML standards in XI 3.0 like xCBL.

  • The item couldn't be saved because the file name "Movies" is invalid.

    When opening Quicktime Player OSX10.6.8  and clicking File-New Audio Recording or New Video Recording the audio or video recording window pops up.
    However, when I click on record in that window I the following error message pops up:
    "The item couldn’t be saved because the file name “Movies” is invalid."
    Any tips how to fix this?
    Thanks.

    The only legit source for ios 6 is from itunes.
    Open itunes, connect iphone.
    Does it prompt you to update?
    How did you update to 5.1.1 three days ago? There is no legit way to do this at all.  You can ONLY update to the latest available which was ios 6 three days ago.

Maybe you are looking for

  • Item not compied from Quotation to Contract

    Hello all, I configured a transaction Z1 as a quotation and control copying a Z2 as a contract, I performed all the transaction configuration, item category, pricing, etc.  to perform all the quotation with correspondant pricing procedure. I create t

  • Export file formats from flash?

    Hi, I have an issue concearning existing file formats for export in Flash CS4. According to the user's manual in Italian I have found, http://help.adobe.com/it_IT/Flash/10.0_UsingFlash/WS0E26E472-1533-4297-A904-59476E8E1935.h tml available formts inc

  • Recruitment - automatic mail - text in the body of the e-mail

    Hi Experts, I'm facing an issue in the Recruitment! I managed to send e-mail attachment through transaction PBA5. However, the e-mails I send are "empty" and the standard text linked to the activitiy is attached (in a pdf format). Does anyone know ho

  • Java API: IFS Document Versions

    Hello, I'm trying to list all versions of a document in an web page, and provide a link to each document version (I'm currently using JSP and IFS Java API Classes as interface from Web to the IFS system). To download a specific document version I nee

  • Fluid grid problem design view

    Need Help, Dreamweaver CC, operating on Windows 7 64 bit My design view panel is set to 480 x 800 From the CSS Designer Panel, I select my fluid_grid.css from the sources section I select GLOBAL from the @Media section For some odd reason, my mobile