Syntax error in update statement

Oracle 10 g database version

Hi all

I'm number one update command but I get the error message. I appreciate if someone help out me. Thank you

Examples of data

UPDATE of res rest, vic vict

SET rest.paid_amt = 0,

Rest.accumulated_amt = 0

RES WHERE. V_ID = vic. V_ID

AND vic.case_id = 111;

Error

SQL error: ORA-00971: lack of SET keyword

00971 00000 - "lack the SET keyword.

* Cause:

* Action:

You can also use join update, if the join is key to keeping on the table whose columns are updated, which in your case, remains. V_ID must be a foreign key pointing to vict. V_ID, because the rest columns is updated.

UPDATE (select res.paid_amt, res.accumulated_amt, res.V_ID, vic.V_ID, vic.case_id
          from rest res, vict vic
         where res.V_ID=vic.V_ID
       )
   SET paid_amt = 0,
       accumulated_amt = 0
 WHERE case_id = 111;

Tags: Database

Similar Questions

  • Error in update statement

    Hello

    I wrote an update statement as below:

    Update (select a.col1, a.col2 from table1, table2 b
    where a.pk1 = b.pk1 and
    a.PK2 = b.pk2 and
    a.PK3 = b.pk3 and
    a.PK4 in)
    Select a.pk4 from table1, table2 b
    where a.pk1 = b.pk1 and
    a.PK2 = b.pk2 and
    a.PK3 = b.pk3
    less
    Select pk4 from table2
    )
    ) s
    Set s.col1 = 'I ',.
    s.col2 = null;

    Table1 is a base table and the primary key for this table is made of CP1, CP2, pk3, pk4.
    Table 2 is a temporary table with no primary key column.
    My goal is to update the columns of table 1.
    I'm using the code above in a procedure and this error:
    ORA-01779: cannot modify a column that is mapped to a table not preserved key
    I'm sure that the error has to with the foregoing update statement.

    I have read a few articles and realize that Oracle can understand what table to update in this scenario. But I am at a loss to rewrite this query.
    Please advice, how I can rewrite this query.

    Thank you!

    Hello

    Instead of updating a view online, update your actual table, like this:

    UPDATE   table1
    SET      col1     = 'I'
    ,      col2     = NULL
    WHERE      (col1, col2, col3, col4) IN
          (
              SELECT  ...
              FROM    table1
              JOIN    table2  ...
          )
    ;
    

    I hope that answers your question.
    If not, post a small example data (CREATE TABLE and only relevant columns, INSERT statements) for all of the tables involved and also publish outcomes from these data.
    If you ask on a DML statement, such as UPDATE, the sample data will be the content of the or the tables before the DML, and the results will be the State of the or the tables changed when it's all over.
    Explain, using specific examples, how you get these results from these data.
    Always tell what version of Oracle you are using.
    See the FAQ forum {message identifier: = 9360002}

  • Logging of DML errors for Update statement

    Hello

    I am facing a problem regarding recording with instructions to update DML errors.

    Oracle: 10.2

    I am running after update DML:
    BEGIN 
    
    UPDATE 
    table_1  a
    SET a.Exp_DATE =a.EFF_DATE 
    WHERE  a.col_a1 != (SELECT b.colb1
                         FROM table_2  b
                         WHERE  a.msisdn =b.msisdn )
    LOG ERRORS INTO table_1_ERR REJECT LIMIT UNLIMITED;                         
                             
                             
                             
    END ;    
    I expect that "ORA-01427: einreihig subquery returns several lines" would be entered in the table of error LOG "table_1_err".
    but instead, I got error lance and entire dml has been restored.

    Please let me know if this exception is not captured by the logging of DML errors.

    Thank you
    Abhishek

    Abhi.k wrote:
    I expect that "ORA-01427: einreihig subquery returns several lines" would be entered in the table of error LOG "table_1_err".
    but instead, I got error lance and entire dml has been restored.

    Logging error tables are there to capture violations of constraints. What you have is a coding error. So no, he will not be captured.

  • DIAG [37000] [Microsoft] [ODBC Microsoft Access driver] syntax error in the statement CREATE TABLE

    Dear Experts,
    We work with software that uses the database (excel / access / SQL / Oracle) via the windows ODBC drivers. He can't go to the database. here below you can see the ODBC log:

    LFM 1178-1204 OUT SQLAllocHandle with code 0 (SQL_SUCCESS) back
    SQLSMALLINT 2
    SQLHANDLE 0X06CC1F48
    SQLHANDLE * 0X0C460BCC (0X05D3AC30)

    LFM 1178-1204 ENTER SQLDriverConnectW
    HDBC 0X05D3AC30
    HWND 0X00000000
    WCHAR * 0X64CD8B34-[3] "*-0.
    SWORD                       -3
    WCHAR * 0X64CD8B34
    SWORD                       -3
    SWORD * 0X00000000
    UWORD                        0

    LFM 1178-1204 DATED SQLDriverConnectW code 0 (SQL_SUCCESS) back
    HDBC 0X05D3AC30
    HWND 0X00000000
    WCHAR * 0X64CD8B34-[3] "*-0.
    SWORD                       -3
    WCHAR * 0x64CD8B34 -[3]
    SWORD                       -3
    SWORD * 0X00000000
    UWORD                        0

    Understand that if someone can help?
    Thank you
    Hassan

    Hassan

    This issue is beyond the scope of this site and should be asked on Technet or MSDN

    http://social.technet.Microsoft.com/forums/en-us/home

    http://social.msdn.Microsoft.com/forums/en-us/home

  • Why a syntax error?

    Well, it's stupid time. Why what follows gives me a syntax error in UPDATE statement?

    < CFQUERY NAME = 'updateInfo' DATASOURCE ' gal/h' = >
    UPDATE eventpics set
    EventName = ' #form.eventname # ',.
    pictext = ' #form.pictext # ',.
    WHERE picpath = ' #form.picpath # '.
    < / CFQUERY >


    remove the 2nd comma

  • MySQL stored procedure syntax errors

    I have a request online, I want to use transactions either commit all updates of db or anything. The code I created is as follows, not only am I getting an error of syntax on lines 5 and 16, but frankly I do not know that the code is really going to do what I want. Please let me know if you see syntax errors and explain them.

    CREATE PROCEDURE increase_maint_priority
        (maint_item INT, new_priority INT, cur_priority INT, center_id INT)
     
    BEGIN
        START TRANSACTION; -- line 5 syntax error
        -- start updates
        UPDATE maintitem SET priority = (priority+1) 
            WHERE priority > cur_priority
            AND priority <= new_priority
            AND centerID = center_id;
            
        UPDATE maintitem SET priority = new_priority
            WHERE id = maint_item;
        
        COMMIT;
    END; -- line 16 syntax error
    

    Thank you in advance for helping a newb to stored procedures.

    If you want to help me to know if this code will actually work for what I want, that the following describes the situation.

    Main idea: business location apply for maintenance at their Center. Applications can be added anywhere in the list of priority (1 = highest priority). They can also change the priority of an application at any time.

    Previously I was using php to control a loop of update mysql queries (ouch, I know now, 2 sql statements could do the trick) and we live lately priorities in double, and other problems which seem to be very likely related to the update of the priorities of several elements.

    Ex: moving priority 6 to priority 1 requires 1 update query because the current priority of the 6th point, but a second query (or loop of several others since I am very new to the drafting 2 years ago sql statements) to update the other priorities.

    Thus, the desire for transaction method.

    Once again, thanks in advance for any help on this matter.

    PS - I use MySQL workbench to write this and it's where to find errors.

    I do not use MySQL and its syntax is slightly different from the other DBMS stored procedures. In all cases, once you eliminate the warning, you also add a handler to ensure that updates roll back in case of error:

    http://khanrahim.WordPress.com/2010/05/16/transaction-with-stored-procedure-in-MySQL-serve r.

  • write an update statement in oracle forms 9i

    Hello

    I have a problematic situation in which

    I get values of a slider and a record group in the drop-down list and text elements block box area two data respectively.
    Both data are read in different tables.

    Now based on the selection of the drop-down list box, I need to update the value selected in another table by writing a statemet update.

    I created a button and the triggering event of when you press the button, I wrote a simple update statement, but it doesn't work like that.

    Kindly help me how to write manual update instructions in oracle forms 9i

    I can't used the buil update in forms that I want to date in a table that is not mentioned in the ownership of the block of data palette

    Help, please

    There is a syntax error in your statement.

    You must write:

    PROCEDURE update_current IS

    BEGIN

    update abc set xculumn= :block_name.item_name2 where ycolumn = :block_name.item_name1 ;

    commit;

    Hope it helps you,

    Fabrizio

    If this answer is useful or appropriate, please mark. Thank you.

    Published by: Fabrizio Delli Priscoli on 23 / ott/2008 14:30

  • Update/Insert Record Wizard syntax error

    Try using the Wizard update of records, I get the following error when you click the update button:

    You have an error in your SQL syntax; consult the manual for your version of the MySQL server for the right syntax to use near 'Condition 'Very good' =, system = "related" ', Desc "=" Art and decoration July thru' at line 1
    I get to the page for editing a page that displays all dbase, passing the index parameter to the update page when I click on a bound column index number. The update page appears full on the appropriate folder. It won't just accept the update button is clicked without generating the error, even if I make any changes at all to the record.

    An almost identical error pops up just trying to open the page to insert a form created with the wizard insert a Record for this same table/dbase.

    You have an error in your SQL syntax; consult the manual for your version of the MySQL server for the right syntax to use near 'State system 'Desc', price, weight, ThumbPic, library LargePic' at line 1

    The mysql database update etc directly through php admin, but not through these pages of the wizard due to the error message. I have not modified any coding, just followed the instructions. I've done several of these pages Update and Insert before for other dbases and tables, so I have an idea of what I'm doing, but never confronted to this. This can be a problem with the syntax of one of my titles of rank or something to do with the structure of the dbase? Any ideas would be greatly appreciated? Thank you

    I got it. Condition, one of my domain names and the first field mentioned in the error message is a reserved word in MySQL 5... Shortcut to the top name, cleaned the server behaviors for the new name of field and Update and Insert work very well.

  • Gears update statement syntax

    I obviously have something messed up with the syntax of the following statement but I can't figure it out... anyone know what im doing wrong?

    _db.execute('UPDATE sbItems SET sbs1 = ? WHERE thedate = ?', [td,db]);
    
            sql = 'select * from sbItems where thedate = ?';
        rs = _db.execute(sql,[thedate]);
        if (rs.isValidRow()) {
            sql = 'UPDATE sbItems SET sbs1 = ? WHERE thedate = ?';
            _db.execute(sql, [sbs1,thedate]);
    
        } else {
            alert("Row not Found");
    
        }
    

    Turns out I had a problem with my formatting to survive that was causing the problem, the above code work if someone else happens to search for this...  FYI "subsist" is in fact a string and not a date in my table...

  • Comment of "Syntax error in INSERT INTO statement." validation error.

    I had this working perfectly on MySQL. Then I was told that I had to do with a mdb database in Access, now the errors pop up like crazy. I fixed all of them except this one, I get a "syntax error in INSERT INTO statement." When I try to post a comment on a post in my mini-blog site.

    The thing is, I use almost the same code for the comments I make blog themselves. The positions work fine, the comments are not.

    He said that the error is on my page addcomment_process as 119. It is the following (line 119 is underlined, bold line is also bolded in the error message):

    < name cfquery = "input_comments."

    DataSource = "" #DSN # ""

    username = "" #DSNUSER # ""

    password = "#DSNPASS #" >

    INSERT INTO (comments)

    speaker,

    Comment,

    DateTime,

    post_id

    )

    VALUES)

    "#form.commenter #"

    "#form.comment #"

    "#form.datetime #"

    "#form.post_id #".

    )

    < / cfquery >

    It is all fine data, by simply inserting not, because it says:

    "INSERT INTO comments (speaker, comment, datetime, post_id) VALUES ('Anonymous', 'test commentary.', 25 April 12 22:55 ', ' 2').

    It worked perfectly, when it was a MySQL database, now I keep getting errors present a part of the site now that it is MDB. Anyone know what is happening?

    DateTime is a reserved word in Access.

    --

    Adam

  • Syntax error in the loop statement For

    Hello

    Normally my staements FOR were not a problem as only the access one table. I have the example below, I'm to access the three table and that's why I get a syntax error.

    I want only to select the 'product' recored but need the other table to select it the good results.

    FOR product_rec IN (SELECT * from PRODUCT, PRODUCT_GROUP, PROD_PROD_GROUP)
    where PRODUCT_GROUP. PRODUCT_GROUP_KEY = PROD_PROD_GROUP. PRODUCT_GROUP_KEY
    and PROD_PROD_GROUP. PRODUCT_KEY = PRODUCT. PRODUCT_KEY
    and product.supplier_key = company_no
    and PROD_PROD_GROUP. MULTI_WEB_DIS = 1
    order of PROD_PROD_GROUP. MULTI_WEB_SEQ)

    Can someone make the correct syntx for this statement.

    Thank you

    Pete

    As Dom says:

    FOR product_rec IN (SELECT PRODUCT.* from PRODUCT, PRODUCT_GROUP,PROD_PROD_GROUP
    where PRODUCT_GROUP.PRODUCT_GROUP_KEY = PROD_PROD_GROUP.PRODUCT_GROUP_KEY
    and PROD_PROD_GROUP.PRODUCT_KEY = PRODUCT.PRODUCT_KEY
    and product.supplier_key = company_no
    and PROD_PROD_GROUP.MULTI_WEB_DIS = 1
    order by PROD_PROD_GROUP.MULTI_WEB_SEQ) 
    

    Or what he meant by "nice to have", use aliases:

    select p.*
    from
      product p,
      product_group pg,
      prod_prod_group ppg
    where
      pg.product_group_key = ppg.product_group_key
      and ppg.product_key = p.product_key
      and p.supplier_key = company_no
      and ppg.multi_web_dis = 1
    order by
      ppg.multi_web_seq
    

    Also note that company_no is not an alias in the above query. If there is a column, it should be an alias also (although with the full table name or alias if you switch to their use). If it is a PL/SQL variable, it is fine as it is.

    Published by: cmartin2 on February 2, 2011 13:56

  • Help! It drives me crazy. Report CASE (missing operator) statement syntax error

    Hello

    Can anyone help with this SQL statement please. It uses a CASE statement but again I get a syntax error (missing operator) error message. The SQL statement runs without the CASE statement, so everything else is fine - it's just when I put the CASE back statement in.

    Here is the SQL statement:-

    SELECT transactions.ourRef, transactions.transDate, CASE WHEN transactions.transTypeID = 2 THEN transactionDetails.goodsVatable *-1 ELSE transactionDetails.goodsVatable END, transactionDetails.goodsNonVat, transactionDetails.VAT, transactionDetails.grandTotal, clients.clientCode, transTypes.transTypeDesc
    Operations, customers, transactionDetails, transTypes
    WHERE transactions.transID = transactionDetails.transID
    AND transactions.clientID = clients.clientID
    AND transactions.transTypeID = transTypes.transTypeID

    TransID = 2 means that it is a credit not instead of a Bill, that's why I want the goods vatable returned as a negative number.

    Thanks in advance.

    Wez

    Quote:
    .. .the customer wish for me to use a MS Access db

    Too bad that you said that in a first time. I think you can consider using IIF() with access.

    Syntax: IIf (expr, truepart, falsepart)

    SELECT transactions.ourRef,
    transactions.transDate,
    IIf (transactions.transTypeID = 2, transactionDetails.goodsVatable *-1, transactionDetails.goodsVatable).
    transactionDetails.goodsNonVat,
    transactionDetails.VAT,
    transactionDetails.grandTotal,
    clients.clientCode,
    transTypes.transTypeDesc
    Operations, customers, transactionDetails, transTypes
    WHERE transactions.transID = transactionDetails.transID
    AND transactions.clientID = clients.clientID
    AND transactions.transTypeID = transTypes.transTypeID

    Phil

  • ERRORS in the LOG of the capture of 2291 on UPDATE statement errors

    We are running Oracle Database 10 g Enterprise Edition Release 10.2.0.4.0 - Production 64 - bit with the options of partitioning, OLAP, Data Mining and Real Application Testing

    We used often successfully the clause of the logging of errors during the execution of the batch to the database inserts. However, we now have a situation where an UPDATE statement is default and make back up when it encounters a referential constraint foreign key [ORA-02291]. It registers with success of coercion errors [ORA-02290] Check. Foreign keys are not carried over, and they have nothing to do with unique constraints or indexes on the table that is the target of the UPDATE statement. The logging of errors table was created using the DBMS_ERRLOG package. We have created to make sure that we introduced column format errors. The same problem occurs. The UPDATE statement tries to update about 12000 lines. Any help in understanding this problem would be appreciated.

    Here's the error statement
    ORA-02291: integrity constraint (OIFS. FRAME_FK07) violated - key parent not found

    Here is the statement of the problem and its PLSQL block surrounding:

    BEGIN < < update_records > >
    UPDATE image f
    SET (company_name,
    address1_line,
    address2_line,
    address1_city,
    address1_state,
    address1_zip,
    contact1_name,
    contact1_phone_number,
    update_date,
    update_user,
    -Comments,
    facility_name,
    facility_type,
    doing_business_as,
    contact1_phone_ext,
    contact1_fax,
    contact1_email,
    contact2_name,
    contact2_phone_number,
    contact2_phone_ext,
    contact2_fax,
    contact2_email,
    source_survey,
    source_status,
    address2_city,
    address2_state,
    address2_zip,
    facility_location_number,
    attention_line,
    company_official,
    facility_irs_code
    ) =
    (SELECT company_name,
    address1_line,
    address2_line,
    address1_city,
    address1_state,
    address1_zip,
    contact1_name,
    contact1_phone_number,
    SYSDATE,
    user_in,
    facility_name,
    facility_type,
    doing_business_as,
    contact1_phone_ext,
    contact1_fax,
    contact1_email,
    contact2_name,
    contact2_phone_number,
    contact2_phone_ext,
    contact2_fax,
    contact2_email,
    source_survey,
    source_status,
    address2_city,
    address2_state,
    address2_zip,
    facility_location_number,
    attention_line,
    company_official,
    facility_irs_code
    Oifs.respondent r
    WHERE r.cin = f.cin
    )
    WHERE f.cin IN
    (SELECT cin
    Of
    (SELECT cin,
    company_name,
    address1_line,
    address2_line,
    address1_city,
    address1_state,
    address1_zip,
    contact1_name,
    contact1_phone_number,
    facility_name,
    facility_type,
    doing_business_as,
    contact1_phone_ext,
    contact1_fax,
    contact1_email,
    contact2_name,
    contact2_phone_number,
    contact2_phone_ext,
    contact2_fax,
    contact2_email,
    source_survey,
    source_status,
    address2_city,
    address2_state,
    address2_zip,
    facility_location_number,
    attention_line,
    company_official,
    facility_irs_code
    OF oifs.respondent
    LESS
    SELECT cin,
    company_name,
    address1_line,
    address2_line,
    address1_city,
    address1_state,
    address1_zip,
    contact1_name,
    contact1_phone_number,
    facility_name,
    facility_type,
    doing_business_as,
    contact1_phone_ext,
    contact1_fax,
    contact1_email,
    contact2_name,
    contact2_phone_number,
    contact2_phone_ext,
    contact2_fax,
    contact2_email,
    source_survey,
    source_status,
    address2_city,
    address2_state,
    address2_zip,
    facility_location_number,
    attention_line,
    company_official,
    facility_irs_code
    OF oifs.frame
    )
    )
    ERROR IN oifs.frame_load_errors LOG
    (job_num |) ' ' || TO_CHAR (SYSDATE, 'YYYYMMDD HH24:MI:SS'). 'update')
    REJECT LIMIT UNLIMITED;
    EXCEPTION
    WHILE OTHERS THEN
    ohub.err_pkg.record_and_continue (' msg_in = > ' problem to update the lines of FIELD ');
    LIFT;
    END update_records;

    I think and that's just a wild guess, is that your table has a trigger... or an associated view has a relaxing place.

  • Handful of division by zero error in the update statement

    My dear welcom

    How and I overcame this problem in my update statement
    for exwmple, it comes to the table
    CREATE TABLE TEST4
    (
    A1 NUMBER,
    A2 NUMBER OF,
    A3 NUMBER
    )

    Insert into TEST4 a1, a2, values (15.3);
    Insert into TEST4 a1, a2, values (9.3);
    Insert into TEST4 a1, a2, values (12.0);

    commit;


    now, I'm trying to update the column a3 in Division a1/12

    Start
    update set of test4
    A3 = a1/a2;
    exception
    WHEN ZERO_DIVIDE THEN
    update set of test4
    A3 = 0;
    end;
    After you validate THE VALUE of A3 = 0;

    Can any onle help me


    I use oracle 10g R2
    Thanks in advance
    SQL> select  *
      2    from  test4
      3  /
    
            A1         A2         A3
    ---------- ---------- ----------
            15          3
             9          3
            12          0
    
    SQL> update  test4
      2     set  a3 = case a2 when 0 then 0 else a1 / a2 end
      3  /
    
    3 rows updated.
    
    SQL> select  *
      2    from  test4
      3  /
    
            A1         A2         A3
    ---------- ---------- ----------
            15          3          5
             9          3          3
            12          0          0
    
    SQL> 
    

    SY.

  • Decode function in the Update statement

    Hi all

    I'm writing a query where I can update a pastdue_fees column in a table of book_trans based on a difference between the return_dte and due_dte columns.

    I use Oracle SQL. That's what I have so far for my decoding function:

    SQL > SELECT
    2 DECODE (SIGN ((return_dte-due_dte) * 2),)
    3 '-1 ', ' 0',
    4 '1', '12', 'Null')
    5 FROM book_trans;

    DECO
    ----
    Null value
    12
    Null value
    0

    If the logic is that, if the sign is - 1, the value in the return_dte column must be 0; If it is + 1, then it has 12 and everything else is Null.

    So now, I have to conclude my function of decoding of the update statement to update the columns. However, I get the error messages.

    The logic should be:
    UPDATE book_trans SET PastDue_fees = decode (expression)

    I gave him a few different tests with the following results:

    SQL > UPDATE book_trans
    2 SET pastdue_fees = SELECT
    3 DECODE (SIGN ((return_dte-due_dte) * 2),)
    4 '-1 ', ' 0',
    5 '1', '12', 'Null')
    6 FROM book_trans.
    SET pastdue_fees = SELECT
    *
    ERROR on line 2:
    ORA-00936: lack of expression


    SQL > UPDATE book_trans
    2 SET pastdue_fees =
    3 DECODE (SIGN ((return_dte-due_dte) * 2),)
    4 '-1 ', ' 0',
    5 '1', '12', 'Null')
    6 FROM book_trans.
    OF book_trans
    *
    ERROR on line 6:
    ORA-00933: SQL not correctly completed command.

    Any help or advice would be greatly appreciated I got SQL for about six weeks and not very competent!

    Thank you!

    882300 wrote:
    Hi all

    I'm writing a query where I can update a pastdue_fees column in a table of book_trans based on a difference between the return_dte and due_dte columns.

    I use Oracle SQL. That's what I have so far for my decoding function:

    SQL > SELECT
    2 DECODE (SIGN ((return_dte-due_dte) * 2),)
    3 '-1 ', ' 0',
    4 '1', '12', 'Null')
    5 FROM book_trans;

    DECO
    ----
    Null value
    12
    Null value
    0

    If the logic is that, if the sign is - 1, the value in the return_dte column must be 0; If it is + 1, then it has 12 and everything else is Null.

    So now, I have to conclude my function of decoding of the update statement to update the columns. However, I get the error messages.

    The logic should be:
    UPDATE book_trans SET PastDue_fees = decode (expression)

    I gave him a few different tests with the following results:

    SQL > UPDATE book_trans
    2 SET pastdue_fees = SELECT
    3 DECODE (SIGN ((return_dte-due_dte) * 2),)
    4 '-1 ', ' 0',
    5 '1', '12', 'Null')
    6 FROM book_trans.
    SET pastdue_fees = SELECT
    *
    ERROR on line 2:
    ORA-00936: lack of expression

    SQL > UPDATE book_trans
    2 SET pastdue_fees =
    3 DECODE (SIGN ((return_dte-due_dte) * 2),)
    4 '-1 ', ' 0',
    5 '1', '12', 'Null')
    6 FROM book_trans.
    OF book_trans
    *
    ERROR on line 6:
    ORA-00933: SQL not correctly completed command.

    Any help or advice would be greatly appreciated I got SQL for about six weeks and not very competent!

    Thank you!

    If you really really really want to update the entire table, the syntax would be...

    UPDATE book_trans
       SET
          pastdue_fees  = DECODE(SIGN((return_dte - due_dte)*2), -1, 0, 1, 12, Null);
    

    I took out all the single quotes. If you actually have a string column and store all numbers in there so it must be reported as a NUMBER column and not a column of type character (varchar2).

    ALWAYS use the appropriate data type, it will save you a ton of headaches in the future.

    Also, since you are new to the forum, please read the FAQ to learn etiquette and what not.

    http://wikis.Sun.com/display/Forums/Forums+FAQ

Maybe you are looking for

  • How can I cancle a purchase in itunes

    a charge was made using my account, I do not wish to buy the subscription how candle

  • Pavilion p7 - 1436 s: send more video memory dedicated RAM?

    Hello! I have a Pavilion p7 - 1436, and a game I want to play requires a minimum of 1 GB of video RAM dedicated. My graphic card/adapter is an AMD Radeon HD 7540D. I have 8 GB of total RAM, and when I check my profile, this happens: Total available g

  • end of 2015 MB Pro left the fan noise

    Especially when I use my Mac Book Pro end 2015 on an irregular surface, the left fan makes noise. Sometimes it's even when it is on the desktop. Someone else? How you solve the problem? Thank you

  • does'nt activation code accept 1 5 and 0

    When I try to enter my product key the keyboard does'nt recognize 1, 5, or 0 I'm stuck. Help, please.

  • T60 stolen

    Guys, what can I do if my T60 is stolen? It was stolen in the trunk of my car in the Czech Rep, it comes with a Hungarian keyboard, it should be fairly easy to recognize, if taken at the service. Is it possible to alert the Lenovo Services on this fl