what is the difference between rollback & commit?
can a foreign key has null value?
Answers were Sorted based on User's Feedback
Answer / ven
Commit made changes permenant to the database.
Rollback made undo the changes.
Yes, FK has null values.
| Is This Answer Correct ? | 23 Yes | 2 No |
With commit, all the changes, which are made using insert,
update or delete SQL statments, are save permanently in the
table(ie DB).Whereas, if one want to undo the changes made
by DML statments, then before issuing commit, one can use
rollback statment.Rollback statment has no effect, if used
after commit.
Yes foreign key can have null value.
| Is This Answer Correct ? | 9 Yes | 1 No |
Answer / anjani kumar
Commits and Rollback both complete our transaction cycle.
we use commit to store the DML changes into DB but Rollback
performs undo to our DML transaction
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / komal
Roll back Undoes whatever add, delete update transactions
we do.
Commit saves the add,delete update transactions
permanenetly in the database.
However a DML statement if fired in between a transaction
commits the complete list of add, delete update statements
above.
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / aditi
commit save the transactions done after the last commit and rollback undo all transactions after last commit
Yes foreign key can have null value
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / ashu_deepu
rollback is used to revert back the changes which we have made in the databases.when we do the rollback we return back to the last commit point which we have made.
commit is use to make the changes in the databases permanently. the values of the variables are written to the databases or disk.
FK can have null value but primary key can't have null value.
| Is This Answer Correct ? | 1 Yes | 1 No |
After using set unused can we enable the column again to use? Please give me some answers....
11. Display the client number and name and the client number and name of the person who referred that client.
How to update values in a table in oracle?
I have a table that log salary-increase-process have fields: autoid, old_salary, acctno and table EMP: acctno, name, salary I want to list count increase-salary of employees, each have old_salary, new_salary. Help me with SELECT statement, please!
What are synonyms used for ?
what is the difference between oracle enterprise edition and oracle express edition?
How to get maxsal , minsal, ename department wise in single query
Do View contain Data ?
Explain the use of inctype option in exp command.
How to get execution path reports on query statements?
What is oracle data type?
what are corelated subqueries