vote up 45 vote down star
19

For my customer I occasionally do work in their live database in order to fix a problem they have created for themselves, or in order to fix bad data that my product's bugs created. Much like Unix root access, it's just dangerous. What lessons should I learn ahead of time?

What is the #1 thing you do to be careful about operating on live data?

flag

51 Answers

prev 1 2
vote up 10 vote down

As an example, I create SQL like this

--Update P Set
--Select ID, Name as OldName, 
    Name='Jones'
From Person P
Where ID = 1000

I highlight the text from the end up to the Select and run that SQL. Once I verify that it is pulling the record I want to update, I hit shift-up to hightlight the Update statement and run that.

Note that I used an alias. I never update a table name explicity. I always use an alias.

If I do this in conjunction with transactions and rollback/commits, I am really, really safe.

link|flag
show 3 more comments
vote up 0 vote down

Turn off AutoCommit in Database IDE if it supports it. I have it turned off in Oracle SQL Developer all the time.

link|flag
vote up 4 vote down
  • Nobody wants backup but everyone cries for recovery
  • Create your DB with foreign key references, because you should:
  • make it as hard as possible for yourself to update/delete data and destroying the structural integrity / something else with that
  • If possible, run on a system where you have to commit the changes before you permanently store them (i.e. deactivate autocommit while repairing the db)
  • Try to identify your problem's classes so that you get an understanding how to fix without trouble
  • Get a routine in playing backups into a database, always have a second database on a test server at hand so you can just work on that
  • Because remember: If something fails totally, you need to be up and running again as fast as any possible

Well, that's about all I can think of now. Take the bold passages and you see whats #1 for me. ;-)

link|flag
show 1 more comment
vote up 0 vote down

Do the exact same update in a Development environment first to make sure it works properly.

link|flag
vote up 6 vote down
  1. Check, recheck, and check again any statment that is doing updates. Even if you think you're just doing a simple, single column update, sooner or later you will not have enough coffee and forget a 'where' clause, nuking a whole table.

A couple other things I've found helpful:

  • if using MySQL, enable Safe updates

  • If you have a DBA, ask them to do it.

I 've found these 3 things have kept me from doing any serious harm.

link|flag
vote up 17 vote down

Often before I do an UPDATE or DELETE, I write the equivalent SELECT.

link|flag
show 1 more comment
vote up 0 vote down

Make sure your query has a WHERE parameter specified

I was once mid-way through a complex update, got distracted, and finished the query early, forgetting the "where" clause. Then I got that sinking feeling, watching a half-second query rumble on for 3.. The several hours afterwards spent cleaning up customer data was quite the lesson!

A result of which is now when I work on the live db, I structure my queries like:

UPDATE my_table WHERE condition = true;

then go back and put in the columns etc to update. Takes a bit longer to write, but massively reduces my chance of making the same mistake again!

link|flag
vote up 15 vote down

NEVER do an update unless you are in a BEGIN TRAN t1--not in a dev database, not in production, not anywhere. NEVER run a COMMIT TRAN t1 outside a comment--always type

--COMMIT TRAN t1

and then select the statement in order to run it. (Obviously, this only applies to GUI query clients.) If you do these things, it will become second nature to do them and you won't lose hardly any time.

I actually have a "update" macro that types this. I always paste this in to set up my updates. You can make a similar one for deletes and inserts.

begin tran t1
update 
set 
where 
rollback tran t1
--commit tran t1
link|flag
show 3 more comments
vote up 10 vote down

To answer my own question:

When writing an update statement, write it out of order.

  1. Write UPDATE [table-name]
  2. Write WHERE [conditions]
  3. Go back and write SET [columns-and-values]

Choosing the rows you want to update before you say what values you want to change is much safer than doing it in the other order. It makes it impossible for update person set email = 'bob@bob.com' to be sitting in your query window, ready to be run by a misplaced keystroke, ready to mess up every row in the table.

Edit: As others have said, write the WHERE clause for your deletes before you write DELETE.

link|flag
vote up 77 vote down
BEGIN TRANSACTION;

That way you can rollback after a mistake.

link|flag
4  
@Graeme, you shouldn't be doing DDL on production databases. You should write a script, run it on your test database, and after your test database passes QA, then you run it on the production server. – Paul Tomblin Oct 3 '08 at 21:47
1  
@Paul: absolutely. But it could be argued that you should be doing the same with any kind of modifications to your production database, whether DDL or DML, in which case this whole question is meaningless. – Graeme Perrow Oct 4 '08 at 1:17
show 10 more comments
vote up 3 vote down

If you're using Oracle or another database that supports it, verify your changes before doing a COMMIT.

link|flag
show 2 more comments
vote up 1 vote down

Always add a using clause.

link|flag
vote up 3 vote down

Maybe consider not using any deletes or drops at all. Or maybe reduce the user permissions so that only a special DB user can delete/drop things.

link|flag
vote up 1 vote down

BACK UP YOUR DATA. Learned that one the hard way working with customer databases on a regular basis.

link|flag
vote up 42 vote down

Do a backup first: it should be the number 1 law of sysadmining anyways

EDIT: incorporating what others have said, make sure your UPDATES have appropriate WHERE clauses.

Ideally, changing a live database should never happen (beyond INSERTs and basic maintenance). Changing the live DB's structure is especially fraught with potential bad karma.

link|flag
vote up 2 vote down

To add on to what @Wayne said, write your WHERE before the table name in a DELETE or UPDATE statement.

link|flag
vote up 1 vote down

Backup or dump the database before starting.

link|flag
vote up 1 vote down

always test any queries beyond select on development data first to ensure it has the correct impact.

link|flag
vote up 1 vote down

Make sure you specify a where clause when deleting records.

link|flag
vote up 13 vote down

Always make sure your UPDATEs and DELETEs have the proper WHERE clause.

link|flag
show 3 more comments
vote up 21 vote down

Make your changes to a copy, and when you're satisfied, then apply the fix to live.

link|flag
show 2 more comments
prev 1 2

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.