Say I have an SQL statement like this (executed in SQL Studio manager):
UPDATE Person SET Flag=1
Say there are 10 million persons and you stop the query running before it finishes. Then will it rollback or just stop at the point you clicked stop e.g. five million rows updated and five million rows not updated.
I know you can wrap the update in a transaction. I guess I am asking if sql studio manager has its own transaction.