Problem in SPACE_USAGE Procedure

1 begin
2 dbms_space.space_usage('LIVE', 'OE_PAYMENTS','OE_PAYMENTS_7', 'TABLE PARTITION',
3 :unf, :unfb,
4 :fs1, :fs1b,
5 :fs2, :fs2b,
6 :fs3, :fs3b,
7 :fs4, :fs4b,
8 :full, :fullb);
9* end;
dbms_space.space_usage('LIVE', 'OE_PAYMENTS','OE_PAYMENTS_7', 'TABLE PARTITION',
ERROR at line 2:
ORA-06550: line 2, column 61:
PLS-00363: expression 'TABLE PARTITION' cannot be used as an assignment target
ORA-06550: line 2, column 1:
PL/SQL: Statement ignored
OWNER SEGMENT_NAME PARTITION_NAME SEGMENT_TYPE
LIVE OE_PAYMENTS OE_PAYMENTS_P7 TABLE PARTITION
Ref Doc
http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14258/d_space.htm#ARPLS056
Any Help?
Adith

I think the parameters have got messed up.
First three parameters for SPACE_USAGE are
segment_owner IN VARCHAR2,
segment_name IN VARCHAR2,
segment_type IN VARCHAR2,
and last parameter is
partition_name IN VARCHAR2 DEFAULT NULL
Whereas the table documenting the parameters for space_usage as combined IN parameters and OUT parameters.
You might want to scope out the input parameters using =>.
F.Ex. Partition_name=>'OE_PAYMENTS_7'

Similar Messages

  • Problems with a Procedure

    People,
    I'm having a problem with a procedure in the moment I'm trying to execute it, could someone help.
    CREATE OR REPLACE PROCEDURE CARREGA IS
    begin
         declare
              strSQL VARCHAR2(250);
              NCham     number(9);
              cursor n_chamados is
              SELECT NumeroChamado, Planta, Instalacao, Defeito,
              DescricaoDefeito, Servico, DataChamado,Horas, Minutos
              FROM DEFEITOS_AUX;
    begin
         For reg_chamado in n_chamados
         Loop
              begin
                   NCham := reg_chamado.numerochamado;
                   strSQL := 'SELECT numerochamado FROM Defeitos';
                   strSQL := strSQL || ' WHERE numerochamado =';
                   strSQL := strSQL || NCham || ' GROUP BY numerochamado';
                   EXECUTE IMMEDIATE strSQL;
              exception
                   when no_data_found then
                   strSQL := 'INSERT INTO Defeitos (';
                   strSQL := strSQL || 'NumeroChamado, ';
    strSQL := strSQL || 'Planta, ';
                   strSQL := strSQL || 'Instalacao, ';
                   strSQL := strSQL || 'Defeito, ';
                   strSQL := strSQL || 'DescricaoDefeito, ';
                   strSQL := strSQL || 'Servico, ';
                   strSQL := strSQL || 'DataChamado, ';
                   strSQL := strSQL || 'Horas, ';
                   strSQL := strSQL || 'Minutos) ';
              strSQL := strSQL || 'VALUES ( ';
              strSQL := strSQL || reg_chamado.NumeroChamado || ', ';
              strSQL := strSQL || reg_chamado.Planta || ', ';
              strSQL := strSQL || reg_chamado.Instalacao || ', ';
              strSQL := strSQL || reg_chamado.Defeito || ', ';
              strSQL := strSQL || reg_chamado.DescricaoDefeito || ', ';
              strSQL := strSQL || reg_chamado.Servico || ', ';
              strSQL := strSQL || reg_chamado.DataChamado || ', ';
              strSQL := strSQL || reg_chamado.Horas || ', ';
              strSQL := strSQL || reg_chamado.Minutos || ')';
                   EXECUTE Immediate strSQL;
              end;
              strSQL := 'UPDATE Defeitos SET ';
              strSQL := strSQL || 'Planta = ' || reg_chamado.Planta;
              strSQL := strSQL || ', Instalacao = ' || reg_chamado.Instalacao;
              strSQL := strSQL || ', Defeito = ' || reg_chamado.Defeito;
              strSQL := strSQL || ', DescricaoDefeito = ' || reg_chamado.DescricaoDefeito;
              strSQL := strSQL || ', Servico = ' || reg_chamado.Servico;
              strSQL := strSQL || ', DataChamado = ' || reg_chamado.DataChamado;
              strSQL := strSQL || ', Horas = ' || reg_chamado.Horas;
              strSQL := strSQL || ', Minutos = ' || reg_chamado.Minutos;
              strSQL := strSQL || ' WHERE NumeroChamado = ' || NCham;
              EXECUTE Immediate strSQL;
         end loop;
    end;
    end;

    Hi Erika,
    there is no need for dynamic SQL.
    I suppose the NumeroChamado is your primary key and has an unique index on it.
    Just insert the rows and if there is already an existing row, catch the exception and update the row.
    CREATE OR REPLACE PROCEDURE CARREGA IS
      CURSOR n_chamados IS
        SELECT NumeroChamado,
               Planta,
               Instalacao,
               Defeito,
               DescricaoDefeito,
               Servico,
               DataChamado,
               Horas,
               Minutos
        FROM   DEFEITOS_AUX;
    BEGIN
      FOR reg_chamado IN n_chamados LOOP
      BEGIN
        INSERT INTO Defeitos (;
          NumeroChamado, ';
          Planta,
          Instalacao,
          Defeito,
          DescricaoDefeito,
          Servico,
          DataChamado,
          Horas,
          Minutos
        ) VALUES (
          reg_chamado.NumeroChamado,
          reg_chamado.Planta,
          reg_chamado.Instalacao,
          reg_chamado.Defeito,
          reg_chamado.DescricaoDefeito, 
          reg_chamado.Servico,
          reg_chamado.DataChamado,
          reg_chamado.Horas,
          reg_chamado.Minutos
      EXCEPTIONS
      WHEN DUP_VAL_ON_INDEX THEN
        UPDATE Defeitos SET
          Planta = reg_chamado.Planta,
          Instalacao = reg_chamado.Instalacao,
          Defeito = reg_chamado.Defeito,
          DescricaoDefeito = reg_chamado.DescricaoDefeito,
          Servico = reg_chamado.Servico,
          DataChamado = reg_chamado.DataChamado,
          Horas = reg_chamado.Horas,
          Minutos = reg_chamado.Minutos
        WHERE NumeroChamado = reg_chamado.NumeroChamado;
      END;
      END LOOP;
    END;

  • Weird Problem calling Stored Procedure using JDBC

    Scenario is..
    I have J2EE application and calling stored procedure using JDBC.
    My application connects to instance "A" of testDB.
    Schema "A" does NOT own any packages/procedure but granted execute on oracle packages/procedures that reside in schema "B" of testDB.
    In java code I call procedure(proc1) in package(pac1) which internally calls procedure(proc2) in package(pac2).
    The problem occurs when procedure pac2.proc2 is modified. After the modification, my java code fails and throws an exception "User-Defined Exception" and I am also getting "ORA-06508: PL/SQL: could not find program unit being called". This clears up only if I bounce the web container. (This doesn't happen if I modify pac1.proc1 and run my application)
    Has any one faced this problem? Please suggest if any thing can be changed in jdbc code to fix this problem.
    Thanks

    Hi,
    I assume these are PL/SQL packages and that the changes are made at the package specification level?
    If so, it looks like you are hitting the PL/SQL dependencies rules. In other words, if the spec of proc2 is changed, then proc1 is invalidated, since proc1 still depends on the old version of proc2's spec. As a result, if you try to run proc1, its spec must either be explicitly rewritten before it could run again or implicitly recompiled first, if the (implicit) recompilation fails, it won’t run.
    Kuassi http://db360.blogspot.com

  • Good day. I have a problem is a procedure to change the firmware? I have 5,0,1 but with our SIM only works 5,0,0

    good day. I have a problem is a procedure to change the firmware? I have 5,0,1 but with our SIM only works 5,0,0

    onix_76 wrote:
    how come? Documents also have on hand to buy as photo and check the box
    So what?  The second-hand shop you bought it from didn't follow the right procedures.  You also didn't follow the right procedures to make sure that iPhone was not in Activation Lock.  It's like buying a car for cash but not getting the title signed over to you.  It's not your car if you don' have the title.  And that's not legally your iPhone if the previous owner's Apple ID is still registered to the device for Find My iPhone/Activation Lock.
    Only a proof of purchase from the ORIGINAL retail store would do any good at all.  Return the device to where you bought it and demand your money back.  If they refuse, either get a lawyer and/or turn in the device to local police.  If you're in possession of stolen property, then the cops won't care about where you got it from.

  • Problem with store procedures and Hibernate

    I got some problem when I am trying to override INSERT, and UPDATE operations in Hibernate. My delete functions works fine, and everything works when i´m not override with my stored procedure, and I have no idea why. When I am trying to make an INSERT, everything seems to be fine but no data is being insert and no excpetion throws.
    When I am trying to make an UPDATE following excpetion throws:
    Could not synchronize database state with session
    org.hibernate.exception.GenericJDBCException: could not update: [labb6Hibernate.bil#18]
    Here is my hbm.xml file:
    <hibernate-mapping>
    <class catalog="Cars" name="labb6Hibernate.bil" table="Bil">
    <id name="idNum" type="java.lang.Integer">
    <column name="idNum"/>
    <generator class="identity"/>
    </id>
    <property name="marke" type="string">
    <column length="10" name="Marke" not-null="true"/>
    </property>
    <property name="modell" type="string">
    <column length="10" name="Modell" not-null="true"/>
    </property>
    <property name="arsmodell" type="string">
    <column length="4" name="Arsmodell" not-null="true"/>
    </property>
    <sql-insert callable="true"> { call insertCars(?,?,?) } </sql-insert>
    <sql-update callable="true"> { call updateCars(?,?,?) </sql-update>
    <sql-delete callable="true"> { call deleteCars(?) } </sql-delete>
    </class>
    Here is my UPDATE code:
    Session session = MyHibernateUtil.getSessionFactory().openSession();
    session.beginTransaction();
    int s = Integer.parseInt(idTxt.getText());
    bil Bil = (bil) session.get(bil.class, s);
    Bil.setIdNum(s);
    Bil.setMarke(markeTxt.getText());
    Bil.setModell(modellTxt.getText());
    Bil.setArsmodell(arsmodellTxt.getText());
    session.update(Bil);
    session.getTransaction().commit();
    session.close();
    Here is my INSERT code:
    Session session = MyHibernateUtil.getSessionFactory().openSession();
    session.beginTransaction();
    bil Bil = new bil();
    Bil.setMarke(markeTxt.getText());
    Bil.setModell(modellTxt.getText());
    Bil.setArsmodell(arsmodellTxt.getText());
    session.save(Bil);
    session.getTransaction().commit();
    session.close();
    Does anyone have an idea what is wrong in my code?

    I got some problem when I am trying to override INSERT, and UPDATE operations in Hibernate. My delete functions works fine, and everything works when i´m not override with my stored procedure, and I have no idea why. When I am trying to make an INSERT, everything seems to be fine but no data is being insert and no excpetion throws.
    When I am trying to make an UPDATE following excpetion throws:
    Could not synchronize database state with session
    org.hibernate.exception.GenericJDBCException: could not update: [labb6Hibernate.bil#18]
    Here is my hbm.xml file:
    <hibernate-mapping>
    <class catalog="Cars" name="labb6Hibernate.bil" table="Bil">
    <id name="idNum" type="java.lang.Integer">
    <column name="idNum"/>
    <generator class="identity"/>
    </id>
    <property name="marke" type="string">
    <column length="10" name="Marke" not-null="true"/>
    </property>
    <property name="modell" type="string">
    <column length="10" name="Modell" not-null="true"/>
    </property>
    <property name="arsmodell" type="string">
    <column length="4" name="Arsmodell" not-null="true"/>
    </property>
    <sql-insert callable="true"> { call insertCars(?,?,?) } </sql-insert>
    <sql-update callable="true"> { call updateCars(?,?,?) </sql-update>
    <sql-delete callable="true"> { call deleteCars(?) } </sql-delete>
    </class>
    Here is my UPDATE code:
    Session session = MyHibernateUtil.getSessionFactory().openSession();
    session.beginTransaction();
    int s = Integer.parseInt(idTxt.getText());
    bil Bil = (bil) session.get(bil.class, s);
    Bil.setIdNum(s);
    Bil.setMarke(markeTxt.getText());
    Bil.setModell(modellTxt.getText());
    Bil.setArsmodell(arsmodellTxt.getText());
    session.update(Bil);
    session.getTransaction().commit();
    session.close();
    Here is my INSERT code:
    Session session = MyHibernateUtil.getSessionFactory().openSession();
    session.beginTransaction();
    bil Bil = new bil();
    Bil.setMarke(markeTxt.getText());
    Bil.setModell(modellTxt.getText());
    Bil.setArsmodell(arsmodellTxt.getText());
    session.save(Bil);
    session.getTransaction().commit();
    session.close();
    Does anyone have an idea what is wrong in my code?

  • Crystal report ReportPageViewer problem using Stored Procedure

    Hi,
    I'm using the ReportPageViewer component in my jsf page, to visualize cystal reports on my web application.
    Everything is working fine when my crystal report queries a table. But, for performances issues, we've changed this to use a stored procedure.
    However, when trying to run the report from my jsf pages, I obtained the following error:
    The QE parameter ''{0}'' could not be found.
    The parameters are exactly the same as before. I can see in the Reportsource that I'm passing to the ReportPageviewer that all the parameters are set with the proper values.
    When running the report from crystal report, I obatin the results, using the same database login/password than my web application.
    Any help would be really appreciated!
    Thanks,
    M�lanie

    Hi Andy Hendrickson,
    Let me understand your problem correctly.
    1) When you run the procedure from command prompt the table gets populated. It is clear.
    2)When you run the procedure in before report trigger you get nothing. Let us analyze why but for now it is clear.
    3) What you mean by "I run the procedure from the command line and leave the data, then run the report I get updated data in the table, but nothing returned to the report."
    Can you please explain a bit more and also update code snippets of what you are using ?
    Thanks,
    Vinod
    Oracle Reports Team

  • Problem with Stored Procedure exection in Sender and Receiver side of JDBC

    Hi All,
    I am facing problem while executing Stored Procedures using sender and receiver sides of JDBC adapter.
    Here is my SP in Oracle DB :
    PROCEDURE EMP                           
    ( ID IN VARCHAR2,NAME IN VARCHAR2,PROCESSED IN VARCHAR2  ) AS                                                          
    BEGIN                                                         
       INSERT INTO EMPLOYEE VALUES (ID, NAME, PROCESSED);COMMIT;END EMP;
    Now I want to execute this SP using sender JDBC channel and receiver JDBC channel.
    Can anyone please help me executing this SP?
    Regards,
    Soorya

    Hi Soorya,
    The receiver Data type should be like this:
    <StatementName>
    <storedProcedureName action=u201D EXECUTEu201D>
        <table>realStoredProcedureeName</table>
    <param1 [isInput=u201Dtrueu201D] [isOutput=true] type=SQLDatatype>val1</param1>
    </storedProcedureName >
      </StatementName>
    Check the link http://help.sap.com/saphelp_nw04/helpdata/en/64/ce4e886334ec4ea7c2712e11cc567c/frameset.htm
    Which DB  are you using?? The sender structure will be like
    <resultset>
    <row>
    <field1></field1>
    <field2></field2>
    <field3></ field3>
    </row>
    </resultset>
    Search SDN you will get lot of examples
    Regards
    Suraj

  • Problem in executing procedure in 8.1.7

    Hi,
    I have created the below mentioned procedure. It got compiled successfully. But when i try to execute it is giving error
    "PLS-00306: wrong number or types of arguments in call to 'P1' ORA-06550: line2, column3: PL/SQL".
    But if i hardcode the projectId to any number value & execute the procedure, it is getting executed successfully.
    CREATE OR REPLACE PROCEDURE p1 (projectid NUMBER)
    IS
    CURSOR c1
    IS
    SELECT sl_no, col1, col2, col3
    FROM (SELECT ROWNUM sl_no, LEVEL col2,
    col3, col4, col5
    FROM (SELECT col2, col3, col4, col5
    FROM tabl1 tab_level
    WHERE tab_level.project_id = projectid
    AND tab_level.active_in = 'Y'
    AND tab_level.delete_in = 'N') tab1
    CONNECT BY PRIOR tab1.col3 = tab1.col4
    START WITH (col3, col5) IN (SELECT col3, MAX (col5)
    FROM tabl1 tab_parent
    WHERE tab_parent.project_id =
    projectid
    AND NVL (tab_parent.col4, 0) =
    0
    AND tab_parent.active_in = 'Y'
    AND tab_parent.delete_in = 'N'
    GROUP BY col3)) table1,
    table2,
    tabl33
    WHERE table1.col2 = table2.col2 AND tabl1.col1 = table3.col1;
    BEGIN
    FOR i IN c1
    LOOP
    DBMS_OUTPUT.put_line ('Success');
    END LOOP;
    END;
    Basically here i am selecting some columns from third level SELECT. If i change it to second level SELECT it works fine without hardcoding. Can you help me in finding the problem in the code.
    Thanks for the help,
    Sunil.

    Sunil,
    Hierarchical query ie CONNECT BY PRIOR clause doesnt work on views or inline views in Oracle 8.1.7. So your procedure is failing. Upto 8.1.7, the hierarchical queries work only on tables.
    If you try the same in 9i, it will work.
    Hope this helps
    Regards
    Dinesh

  • Problem in Stored Procedure with DBMS_OUTPUT statement

    Hi All,
    I am facing a problem in the stored procedure.
    In the stored procedure I am picking records from the table and displaying them in the screen using dbms_output.put_line statement. This works fine if my query fetches few records but in case of many records(84000 records) then the oracle application gets hanged.

    1) How (if at all) does this relate to SQLJ/JDBC? I assume there is some relationship because of the forum you're posting to, so I'm trying to understand whether that relationship is germane to the problem you are having.
    2) Why are you writing 86,000 rows of output to the dbms_output buffer? Why wouldn't your stored procedure return a REF CURSOR to your Java application and just have the Java application iterate through those rows?
    Justin

  • Problem in excecuting procedure

    Hi All,
    I am facing problem in executing one simple procedure.
    i am excecuting by writing the following code in the SQL editor.
    execute test_procedure
    the procedure am using is given below
    CREATE OR REPLACE procedure test_procedure(para out number )
    is
    --cursor cur_get_emp_table is  select * from emp;
    begin
    select count(*) into para2 from emp;
    end;
    when i try excecuting it is giving the following error
    ORA-06550: line 1, column 7:
    PLS-00306: wrong number or types of arguments in call to
    Can anybody help me out?
    Thanks in advance,
    Vinay TJ
    Edited by: user12281717 on Nov 27, 2009 4:20 AM

    Hi,
    Although Hoek is correct in pointing out a issue in your procedure
    the error
    ORA-06550: line 1, column 7:
    PLS-00306: wrong number or types of arguments in call to tells you that the procedure is expecting a parameter to be passed and you are not passing it.
    Hence, you will have to combine the above 2 solutions by HOEK and MASSIMO :)
    Regards,
    Bhushan

  • Discount problem in Pricing procedure

    Hi experts,
              Vendor offers % discount on Basic price, however tax is calculated on BASIC price (not considering discount).
              I am facing following problems
    1.    I tried to configure pricing procedure , but discount gets deducted while calculating TAX. 
    2.      If I make discount condition STASTICAL , TAX calculation is proper, But in MIRO in vendor payment Discount is not considered.
    Pricing procedure requirement is as follows
    1.  Basic Price    (A)
    2.  Tax %           (B)          - calculated on A
    3.  Discount%     (C)         -  calculated on A
    Vendor payment = A+B-C
    How to configure pricing procedure for this requirement?
    please help me out.
    thanks in advance
    rgds
    Jay

    Dear Sir,
    Pl let me know if you get the solution as my client also want the same kind of pricing structure.
    i.e.Discount should get calculated after Taxes .
    Pl revert back .
    Thanks & Regards ,
    Ganesh

  • Re:Problem in Pricing Procedure Determination

    Dear All,
    I have a problem in Define Pricing Procedure Determination.
    I am getting an error message " Condition Type BP04 is not in procedure ZBP04A A V".
    The condition type has been copied from K007.
    Access Sequence is BP04.
    In Maintain Pricing Procedure, I have selected RVAA01 and copied it as ZBP04A.
    Please let me know how to rectify this error.
    Thanks,
    Amba Prasanna

    hi Prasanna,
    am getting an error message " Condition Type BP04 is not in procedure ZBP04A A V".
    It means in the pricing procedure ZBP04A  the condition type BP04 has not been maintained. So go to V/08, select conrtol data on the left side, click new entries and maintain this conditino type.
    The condition type has been copied from K007.
    You might have copied K007 but forgot to put it in the above mentioned pricing procedure.
    Access Sequence is BP04.
    Also make sure that for your condition type BP04, you have maintained the access also as BP04 in V/06, since you wanted it.
    In Maintain Pricing Procedure, I have selected RVAA01 and copied it as ZBP04A.
    This is fine, in OVKK- no error.
    regards
    sadhu kishore

  • Associative Array problem in Oracle Procedure

    Hi,
    I've searched through the internet and this forum and haven't been able to resolve a problem using associative array values within an IN clause. Everything I've read states that I can't use the associative array directly in the SQL statement. I have to convert it to a table and then I can use it. Unfortunately, I'm receiving an "ORA-21700: object does not exist or is marked for delete" error when trying to access the table I've populated from the array. Please note that I have verified the table is actually being populated during the loop. I'm catching the error when referencing it in the SELECT statement.
    I've declared the following in the ARCHIVE package specification:
    TYPE RSType IS REF CURSOR;
    TYPE integer_aat IS TABLE OF INTEGER INDEX BY PLS_INTEGER;
    TYPE integer_table IS TABLE OF INTEGER;
    The procedure is as follows:
    PROCEDURE SEL_SEARCH_RESULTS (v_term IN VARCHAR2,
    v_categories IN ARCHIVE.integer_aat,
    rs OUT RSType)
    AS
    /* PURPOSE: Return Search Results for the Category and Keyword Provided
    VARIABLES:
    v_categories = Document Categories array
    v_term = Keyword entered
    rs = Result Set
    tbl_cat ARCHIVE.integer_table := ARCHIVE.integer_table();
    BEGIN
    FOR i IN 1 .. v_categories.COUNT
    LOOP
    tbl_cat.EXTEND(1);
    tbl_cat(i) := v_categories(i);
    END LOOP;
    OPEN rs FOR
    SELECT A.ID,
    B.CATEGORY,
    A.FILENAME,
    A.DISPLAY_NAME,
    A.COMMENTS
    FROM TBL_ARCHIVE_DOCUMENTS A,
    TBL_ARCHIVE_DOC_CAT B,
    TBL_ARCHIVE_DOC_KEYWORDS C
    WHERE A.ID = B.ID
    AND A.ID = C.ID
    AND B.CATEGORY IN (SELECT * FROM TABLE(tbl_cat))
    AND C.KEYWORD = v_term
    ORDER BY A.ID;
    END SEL_SEARCH_RESULTS;
    Any help would be greatly appreciated and thanks in advance,
    Matt

    Thank you for the quick response. I looked at the example you suggested and made the following changes. Now I'm receiving an "Invalid datatype" error on the "SELECT column_value FROM TABLE(CAST(tbl_cat AS tbl_integer))" statement. I must be missing something simple and I just can't put my finger on it.
    PROCEDURE SEL_SEARCH_RESULTS (v_term IN VARCHAR2,
    v_categories IN ARCHIVE.integer_aat,
    rs OUT RSType)
    AS
    /* PURPOSE: Return Search Results for the Category and Keyword Provided
    VARIABLES:
    v_categories = Document Categories array entered
    v_term = Keyword entered
    rs = Result Set
    TYPE tbl_integer IS TABLE OF INTEGER;
    tbl_cat tbl_integer;
    BEGIN
    FOR i IN 1 .. v_categories.COUNT
    LOOP
    tbl_cat.EXTEND(1);
    tbl_cat(i) := v_categories(i);
    END LOOP;
    OPEN rs FOR
    SELECT A.ID,
    B.CATEGORY,
    A.FILENAME,
    A.DISPLAY_NAME,
    A.COMMENTS
    FROM TBL_ARCHIVE_DOCUMENTS A,
    TBL_ARCHIVE_DOC_CAT B,
    TBL_ARCHIVE_DOC_KEYWORDS C
    WHERE A.ID = B.ID
    AND A.ID = C.ID
    AND B.CATEGORY IN (SELECT column_value FROM TABLE(CAST(tbl_cat AS tbl_integer)))
    AND C.KEYWORD = v_term
    ORDER BY A.ID;
    END SEL_SEARCH_RESULTS;

  • Problem with luactivate procedure in Solaris 10 Update 5

    We are having some issues with Live Upgrade procedures with Solaris 10 Update 5 on SUN Enterprise T5240 servers.
    We have successfully performed those procedures earlier on SUN Fire v240 using Solaris 10 Update 3.
    Here is the problem statement:
    1. Created a Flar image successfully
    2. Installed on a 5240 machine from InstallServer and using jumpstart profile using a sysidcfg and flash_prof
    3. The first installation is successful and system picks up configuration information from sysidcfg file on the install server.
    4. Now we use lucreate to create another BE (Boot Environment) BE_2.
    5. BE_2 is upgraded with luupgrade using the same flar as used in step 2.
    6. Issuing command:
    luactivate -s BE_2
    7. After a init 6, system tries to boot from BE_2. This time instead of copying system files from BE_1 due to -s options specified, it instead runs the sysconfig command that asks for all the configuration options again.
    8. When we were using these steps in Solaris 10 update 3 on Sun Fire v240, everything was working fine. The system config was available in BE_2 without any issue.
    ***************************************************************************************************************************************************

    iMovie10 only works in and exports 16:9 aspect ratio.
    The resolution is set by that of the first video clip put in a project timeline.  To change your project to 1080p do the following:
    Create a new project
    Put any known 1080p video clip in the project (it can be removed later)
    Select the old project and then Edit - Select All then Edit - Copy
    Select the new project and then Edit - Copy
    The new project should now be 1080p.  You can remove the first clip if you want.
    Geoff.

  • Qosmio G30 - system problem after recovery procedure

    I have Qosmio G30 - 148 which have Windows XP MCE, when trying to download some programs system crashed and make automatic restart.
    I then used a RECOVERY CD to recover my all system and followed the instructions on the CD but when finished and rebooting the system a famous blue screen displayed tell me there's a problem in my system and windows must be restarted.
    When reboot in safe mode there is a message tell me that the system is not fully installed. Please run setup again.
    Could any body help me in that problem because it's a strange problem?
    Note: I tried to install Windows XP from external CD but system did not know the hard disk.

    Hi Ahmed
    I would try to provide some useful hints;
    First of all you can install the XP Pro on the Qosmio G30 this is no problem.
    I assume you couldnt install the XP on the G30 because your have not installed the RAID driver firstly. As far as I know the XP would not recognize the HDD without the RAID driver.
    The RAID driver installation is not very difficult. During the XP Setup procedure you have to press the F6 to include the driver from the external USB FDD drive.
    If you dont have a USB diskette drive, then you could use a nLite to create a new XP CD with the RAID driver.
    However despite everything Im not sure if this will help.
    There could be really a hardware issue with your G30.

Maybe you are looking for

  • Create Word Document with OLE2.

    Hi, Is it possible to create a word docuent as an attachment? I want to create an attachment for opportunity when its status changes. Is it possible to create word document in Actions and can we attach it to opportunity? Any suggestions on how to app

  • Error in REST Web Service with Output Format as Text

    Hi All, I am referencing a REST web service, and can successfully connect to it and retrieve results with the Output Format set to XML. I don't need the individual node values, I just want to capture the entire XML as a string, and populate a table c

  • Diffrent trial balances in diffrent user ID

    Hi Gurus I have faced with a strange issue. Need your suggestion. My issue is, when i am viewing Trial balance report in User id AAA, i am getting one balance report lets say rs 10000, if i view the same report using User id BBB i am getting another

  • Upload legacy data into SAP

    Hi experts,        I have to upload legacy data into SAP by using eCATT recording Transaction. For doing this I have completed  ‘Test script’ in tcode SECATT. After this what I have to do.. How can I attach my legacy file.. Can anyone help me. ..Its

  • Compressor 2 compression issues

    I just bought the studio. Everything works well, except compressor 2. When it comes to encoding, it seems to have a problem with transitions, particularly if I use slow motion and several filters. The transitions always looks digitized. I have used a