Forgot your password?
typodupeerror

Comment Re:Bring a database down? (Score 2, Informative) 156

Depends on your database. I know I have been able to bring SQL server down with a query.

Try this...

begin transaction

update rows set a=b where x=y

commit transaction.

On your workstation this could run really fast because you only have ten records. On the production database server this could crush the server if you had a few million records effected.

Slashdot Top Deals

... when fits of creativity run strong, more than one programmer or writer has been known to abandon the desktop for the more spacious floor. -- Fred Brooks

Working...