How to update rows in table, suppose i have lacks of rows in
table how to update total table with update statement.
Can u please any one answer this question with update
statement.
Answers were Sorted based on User's Feedback
Answer / kt
If you go for a direct update statement, it will hang (as u
have indicated that ur table has lakhs of records).
So its better to analyze the table or go for dbms_stats.
After that fire ur update statement
update <table_name> set <column_name> = .......
where ...........
Is This Answer Correct ? | 3 Yes | 3 No |
Answer / anil
write on anonyms block...
create one cursor and update the rows in a table with the
help of cursor...bcs ur table size is very large.
Is This Answer Correct ? | 0 Yes | 0 No |
What is the difference difference between $ORACLE_HOME and $ORACLE_BASE.
What happens to the indexes if a table is recovered?
How to put more than 1000 values into an oracle in clause?
Do View contain Data ?
Explain the characteristics of oracle dba?
How do I spool to a csv formatted file using sqlplus?
Explain oracle instance.
what is host string in sql plus? how does it related to database?
What privilege is needed for a user to create views in oracle?
When can Hash Cluster used ?
What is open database communication (odbc) in oracle?
1.how to extract the second highest salary from emp table having sal as a column which contains the salary of all employee of an organisation.