What's your #1 way to be careful with a live database? - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T02:02:57Zhttp://stackoverflow.com/feeds/question/168486http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database45What's your #1 way to be careful with a live database?Kevin Conner2008-10-03T19:27:51Z2009-10-18T05:04:10Z
<p>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?</p>
<p>What is the #1 thing you do to be careful about operating on live data?</p>
http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database/168494#16849421Answer by Bob King for What's your #1 way to be careful with a live database?Bob King2008-10-03T19:29:55Z2008-10-03T19:29:55Z<p>Make your changes to a copy, and when you're satisfied, then apply the fix to live.</p>
http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database/168496#16849613Answer by Wayne for What's your #1 way to be careful with a live database?Wayne2008-10-03T19:30:06Z2008-10-03T19:30:06Z<p>Always make sure your UPDATEs and DELETEs have the proper WHERE clause.</p>
http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database/168498#1684981Answer by Bill the Lizard for What's your #1 way to be careful with a live database?Bill the Lizard2008-10-03T19:30:12Z2008-10-03T19:30:12Z<p>Make sure you specify a where clause when deleting records.</p>
http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database/168503#1685031Answer by Carlton Jenke for What's your #1 way to be careful with a live database?Carlton Jenke2008-10-03T19:30:52Z2008-10-03T19:30:52Z<p>always test any queries beyond select on development data first to ensure it has the correct impact.</p>
http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database/168507#1685071Answer by Lou Franco for What's your #1 way to be careful with a live database?Lou Franco2008-10-03T19:31:11Z2008-10-03T19:31:11Z<p>Backup or dump the database before starting.</p>
http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database/168508#1685082Answer by bdukes for What's your #1 way to be careful with a live database?bdukes2008-10-03T19:31:22Z2008-10-03T19:31:22Z<p>To add on to what @<a href="http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database#168496">Wayne</a> said, write your <code>WHERE</code> before the table name in a <code>DELETE</code> or <code>UPDATE</code> statement.</p>
http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database/168511#16851142Answer by warren for What's your #1 way to be careful with a live database?warren2008-10-03T19:31:27Z2008-10-03T19:37:01Z<p>Do a backup first: it should be the number 1 law of sysadmining anyways</p>
<p><strong>EDIT</strong>: incorporating what others have said, make sure your UPDATES have appropriate WHERE clauses.</p>
<p>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.</p>
http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database/168513#1685131Answer by Jay for What's your #1 way to be careful with a live database?Jay2008-10-03T19:31:41Z2008-10-03T19:31:41Z<p>BACK UP YOUR DATA. Learned that one the hard way working with customer databases on a regular basis.</p>
http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database/168519#1685193Answer by Gilles for What's your #1 way to be careful with a live database?Gilles2008-10-03T19:32:43Z2008-10-03T19:32:43Z<p>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.</p>
http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database/168520#1685201Answer by cciotti for What's your #1 way to be careful with a live database?cciotti2008-10-03T19:32:55Z2008-10-03T19:32:55Z<p>Always add a using clause.</p>
http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database/168526#1685263Answer by Wayne for What's your #1 way to be careful with a live database?Wayne2008-10-03T19:33:43Z2008-10-03T19:33:43Z<p>If you're using Oracle or another database that supports it, verify your changes before doing a COMMIT.</p>
http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database/168529#16852977Answer by Paul Tomblin for What's your #1 way to be careful with a live database?Paul Tomblin2008-10-03T19:34:15Z2008-10-03T19:34:15Z<pre><code>BEGIN TRANSACTION;
</code></pre>
<p>That way you can rollback after a mistake.</p>
http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database/168532#16853210Answer by Kevin Conner for What's your #1 way to be careful with a live database?Kevin Conner2008-10-03T19:34:35Z2008-10-03T19:41:20Z<p>To answer my own question:</p>
<p>When writing an update statement, write it out of order.</p>
<ol>
<li>Write <code>UPDATE [table-name]</code></li>
<li>Write <code>WHERE [conditions]</code></li>
<li>Go back and write <code>SET [columns-and-values]</code></li>
</ol>
<p>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 <code>update person set email = 'bob@bob.com'</code> to be sitting in your query window, ready to be run by a misplaced keystroke, ready to mess up every row in the table.</p>
<p>Edit: As others have said, write the <code>WHERE</code> clause for your deletes before you write <code>DELETE</code>.</p>
http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database/168535#16853515Answer by Patrick Szalapski for What's your #1 way to be careful with a live database?Patrick Szalapski2008-10-03T19:35:05Z2008-10-03T19:35:05Z<p>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</p>
<pre><code>--COMMIT TRAN t1
</code></pre>
<p>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.</p>
<p>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.</p>
<pre><code>begin tran t1
update
set
where
rollback tran t1
--commit tran t1
</code></pre>
http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database/168536#1685360Answer by ConroyP for What's your #1 way to be careful with a live database?ConroyP2008-10-03T19:35:13Z2008-10-03T19:35:13Z<p><strong>Make sure your query has a <code>WHERE</code> parameter specified</strong></p>
<p>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!</p>
<p>A result of which is now when I work on the live db, I structure my queries like:</p>
<pre><code>UPDATE my_table WHERE condition = true;
</code></pre>
<p>then go back and put in the columns etc to update. Takes a bit longer to write, but <em>massively</em> reduces my chance of making the same mistake again!</p>
http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database/168537#16853717Answer by Patrick McElhaney for What's your #1 way to be careful with a live database?Patrick McElhaney2008-10-03T19:35:18Z2008-10-03T19:50:41Z<p>Often before I do an UPDATE or DELETE, I write the equivalent SELECT. </p>
http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database/168538#1685386Answer by dmercer for What's your #1 way to be careful with a live database?dmercer2008-10-03T19:35:31Z2008-10-03T19:35:31Z<ol>
<li>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.</li>
</ol>
<p>A couple other things I've found helpful:</p>
<ul>
<li><p>if using MySQL, enable <a href="http://dev.mysql.com/doc/refman/5.0/en/mysql-tips.html#safe-updates" rel="nofollow">Safe updates</a> </p></li>
<li><p>If you have a DBA, ask them to do it.</p></li>
</ul>
<p>I 've found these 3 things have kept me from doing any serious harm.</p>
http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database/168541#1685410Answer by Derek for What's your #1 way to be careful with a live database?Derek2008-10-03T19:36:39Z2008-10-03T19:36:39Z<p>Do the exact same update in a Development environment first to make sure it works properly.</p>
http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database/168546#16854662Answer by Dylan Beattie for What's your #1 way to be careful with a live database?Dylan Beattie2008-10-03T19:38:03Z2008-10-04T19:34:32Z<p>Three things I've learned the hard way over the years...</p>
<p>First, if you're doing updates or deletes on live data, first write a SELECT query with the WHERE clause you'll be using. Make sure it works. Make sure it's correct. Then prepend the UPDATE/DELETE statement to the known working WHERE clause.</p>
<p>You never want to have </p>
<pre><code>DELETE FROM Customers
</code></pre>
<p>sitting in your query analyzer waiting for you to write the WHERE clause... accidentally hit "execute" and you've just killed your Customer table. Oops.</p>
<p>Also, depending on your platform, find out how to take a quick'n'dirty backup of a table. In SQL Server 2005,</p>
<pre><code>SELECT *
INTO CustomerBackup200810032034
FROM Customer
</code></pre>
<p>will copy every row from the entire Customer table into a new table called CustomerBackup200810032034, which you can then delete once you've done your updates and made sure everything's OK. If the worst happens, it's a lot easier to restore missing data from this table than to try and restore last night's backup from disk or tape.</p>
<p>Finally, be wary of cascade deletes getting rid of stuff you didn't intend to delete - check your tables' relationships and key constraints before modifying anything.</p>
http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database/168554#1685544Answer by Georgi for What's your #1 way to be careful with a live database?Georgi2008-10-03T19:39:37Z2009-10-18T05:04:10Z<ul>
<li><strong>Nobody wants backup but everyone cries for recovery</strong></li>
<li>Create your DB with foreign key references, because you should:</li>
<li>make it as hard as possible for yourself to update/delete data and destroying the structural integrity / something else with that</li>
<li>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)</li>
<li>Try to identify your problem's classes so that you get an understanding how to fix without trouble</li>
<li>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</li>
<li>Because remember: <strong>If something fails totally, you need to be up and running again as fast as any possible</strong></li>
</ul>
<p>Well, that's about all I can think of now. Take the bold passages and you see whats #1 for me. ;-)</p>
http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database/168600#1686000Answer by Ted Elliott for What's your #1 way to be careful with a live database?Ted Elliott2008-10-03T19:51:22Z2008-10-03T19:51:22Z<p>Turn off AutoCommit in Database IDE if it supports it. I have it turned off in Oracle SQL Developer all the time.</p>
http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database/168607#16860710Answer by wcm for What's your #1 way to be careful with a live database?wcm2008-10-03T19:52:25Z2008-10-03T19:52:25Z<p>As an example, I create SQL like this</p>
<pre><code>--Update P Set
--Select ID, Name as OldName,
Name='Jones'
From Person P
Where ID = 1000
</code></pre>
<p>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. </p>
<p>Note that I used an alias. I never update a table name explicity. I always use an alias.</p>
<p>If I do this in conjunction with transactions and rollback/commits, I am really, really safe.</p>
http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database/168632#1686320Answer by Peter for What's your #1 way to be careful with a live database?Peter2008-10-03T19:57:58Z2008-10-03T19:57:58Z<p>One quick extra I have not seen but that I do often is: backup the table your are updating. I do this by having a database to hold these backups. I can then write:</p>
<pre><code>select *
into MyBackupDb..PeterTableName2008_09_28BeforeABigUpdate
</code></pre>
<p>This makes recovery from mistakes much faster down the road (when a full restore is not practical).</p>
http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database/168734#1687343Answer by Haoest for What's your #1 way to be careful with a live database?Haoest2008-10-03T20:24:29Z2008-10-03T20:24:29Z<p>Data should always be deployed to live via scripts, which can be rehearsed as many times as it is required to get it right on dev. When there's dependent data for the script to run correctly on dev, stage it appropriately -- you can not get away with this step if you truly want to be careful. </p>
http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database/168778#1687781Answer by Michael Easter for What's your #1 way to be careful with a live database?Michael Easter2008-10-03T20:34:19Z2008-10-03T20:34:19Z<ol>
<li>if possible, ask to pair with someone</li>
<li>always count to 3 before pressing Enter (if alone, as this will infuriate your pair partner!)</li>
</ol>
http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database/168792#16879210Answer by Gabriel Isenberg for What's your #1 way to be careful with a live database?Gabriel Isenberg2008-10-03T20:37:34Z2008-10-03T20:37:34Z<p>My #1 way to be careful with a live database? Don't touch it. :) </p>
<p>Backups can undo damage that you inflict on the database, but you're still likely to introduce negative side effects during that span of time.</p>
<p>No matter how solid you think the script you're working with is, run it through a test cycle. Even if a "test cycle" means running the script against your own instance of the database, make sure you do it. It's much better to introduce defects on your local box than a production environment.</p>
http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database/168793#1687932Answer by Herms for What's your #1 way to be careful with a live database?Herms2008-10-03T20:38:59Z2008-10-03T20:38:59Z<p>My rule (as an app developer): Don't touch it! That's what the trained DBAs are for. Heck, I don't even want permission to touch it. :)</p>
http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database/168917#1689173Answer by PaulH for What's your #1 way to be careful with a live database?PaulH2008-10-03T21:07:39Z2008-10-03T21:07:39Z<p>Check twice, commit once!</p>
http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database/168968#1689681Answer by Brian Vander Plaats for What's your #1 way to be careful with a live database?Brian Vander Plaats2008-10-03T21:25:06Z2008-10-03T21:25:06Z<p>If I'm updating a database with a script, I always make sure I put a breakpoint or two at the start of my script, just in case I hit the run/execute by accident. </p>
http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database/169230#1692300Answer by Declan Shanaghy for What's your #1 way to be careful with a live database?Declan Shanaghy2008-10-03T23:04:01Z2008-10-03T23:04:01Z<p>1 - Always create a backup before opening a connection when you know you will need to update or insert records.</p>
<p>2 - When writing an update statement ALWAYS write the WHERE clause first then cursor back to the beginning of the line and write the field update portion.</p>
<p>3 - the where statement for #2 should be checked with a select statement.</p>
http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database/169271#1692710Answer by SqlACID for What's your #1 way to be careful with a live database?SqlACID2008-10-03T23:15:30Z2008-10-03T23:15:30Z<p>I'll add to recommendations of doing BEGIN TRAN before your UPDATE, just don't forget to actually do the COMMIT; you can do just as much damage if you leave your uncommitted transaction open. Don't get distracted by phones, co-workers, lunch etc when in the middle of updates or you'll find everyone else is locked up until you COMMIT or ROLLBACK.</p>
http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database/169431#1694310Answer by Darrel Miller for What's your #1 way to be careful with a live database?Darrel Miller2008-10-04T00:33:28Z2008-10-04T00:33:28Z<p>Go buy <a href="http://www.apexsql.com/sql_tools_log.asp" rel="nofollow">Apex SQL Log</a>. If you realize that you really screwed up, or even if it was someone else, you can use the log to reverse the changes.</p>
http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database/169496#1694961Answer by Kibbee for What's your #1 way to be careful with a live database?Kibbee2008-10-04T01:28:58Z2008-10-04T01:28:58Z<p>I always comment out any destructive queries (insert, update, delete, drop, alter) when writing out adhoc queries in Query Analyzer. That way, the only way to run them, is to highlight them, without selecting the commented part, and press F5.</p>
<p>I also think it's a good idea, as already mentioned, to write your where statement first, with a select, and ensure that you are altering the right data. </p>
http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database/169956#1699561Answer by martinatbom for What's your #1 way to be careful with a live database?martinatbom2008-10-04T08:08:56Z2008-10-04T08:08:56Z<ol>
<li>Always back up before changing.</li>
<li>Always make mods (eg. ALTER TABLE) via a script.</li>
<li>Always modify data (eg. DELETE) via a stored procedure.</li>
</ol>
http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database/170210#1702100Answer by MikeJ for What's your #1 way to be careful with a live database?MikeJ2008-10-04T12:03:09Z2008-10-04T12:03:09Z<p>dev against a backup - make sure the changes/fixes you want to apply come from a script. fat, clumsy fingers have no place when working with live data. If you can, wait for a maintenance window to apply and roll back if you can. </p>
<p>If you can't wait to apply right after a snapshot,backup, Make sure eveyrone understands how much work might be invovled in rolling forward the changes between the last snapshot and the time whne you applied the "fix" should it not work out. </p>
http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database/170538#1705381Answer by Richard Nienaber for What's your #1 way to be careful with a live database?Richard Nienaber2008-10-04T15:42:42Z2008-10-04T15:42:42Z<p>Create a read only user (or get the DBA to do it) and only use that user to look at the DB. Add the appropriate permissions to schema so that you can view the content of stored procedures/views/triggers/etc. but not have the ability to change them.</p>
http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database/170560#1705601Answer by Hitchhiker for What's your #1 way to be careful with a live database?Hitchhiker2008-10-04T15:58:21Z2008-10-04T15:58:21Z<p>Different colors per environment: We've setup our PL\SQL developer (IDE for Oracle) so that when you logon to the production DB all the windows are in bright red. Some have gone as far as assigning a different color for dev and test as well.</p>
http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database/170561#1705610Answer by MarkR for What's your #1 way to be careful with a live database?MarkR2008-10-04T15:59:41Z2008-10-04T15:59:41Z<p>Use the same process to QA even a simple SQL data fix as you would a code change of any kind. Ours includes being committed into CVS, Having and having executed a documented test plan, having a code review and having a change control process (where various members of management and the senior operations engineer review and sign off a change).</p>
<p>We do this for all normal SQL data fixes, even simple ones- the only exception being when something is required to fix a major issue with production RIGHT NOW (e.g. blocking all customers from logging in) - in which case we ensure that there are as many pairs of eyes on the job as possible (typically 3-4 people around one workstation, all of whom can veto any action).</p>
http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database/170644#1706440Answer by mmacaulay for What's your #1 way to be careful with a live database?mmacaulay2008-10-04T16:56:02Z2008-10-04T16:56:02Z<p>Besides making a backup of the database before making any destructive changes, another trick I find useful sometimes is if I know the exact number of records I expect to be changed by whatever I'm doing, then add a limit clause:</p>
<p>delete from customers where id = 5 limit 1;</p>
<p>"id" might be a unique index and I know there's only row that's going to match my where clause, but the limit is additional layer of prevention against accidentally nuking the wrong data. I've gotten in the habit of typing this part first, in hopes of further prevention against accidental keystrokes. I start out with "delete limit 1", then go back and add the other stuff.</p>
http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database/170895#1708950Answer by Almond for What's your #1 way to be careful with a live database?Almond2008-10-04T19:29:10Z2008-10-04T19:29:10Z<p>If your using SQL Server 2005 and above you can create a database snapshot that will allow you to roll back any changes made to the snapshot point in time.</p>
http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database/175560#1755600Answer by phytovor for What's your #1 way to be careful with a live database?phytovor2008-10-06T18:25:11Z2008-10-06T18:25:11Z<p>When updating/deleting only one record mysql lets you put "LIMIT 1" at the end so only one record gets damaged even when WHEN clause is wrong.</p>
http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database/175729#1757290Answer by HLGEM for What's your #1 way to be careful with a live database?HLGEM2008-10-06T19:10:43Z2008-10-06T19:10:43Z<p>I often have to insert,update or delete data on the live production site (As a data analyst that is probably 40% of my job). Most of the time it is through automated DTS or SSIS packages. However, we are also the people who have to fix problem records or update production when a major client driven change occurs (such as a re-organization of the sales force). Sometimes the issues are due to bugs in the code, but usually they are as a result of strange things the client did to their file or things the users managed to mess up to save us time fixing a problem or because they wanted to circumvent the normal process for just this one quick easy change!(Note to users -Please don't try to fix things manually that are normally done thorugh an automated process, you do not know what else the process may be doing!!!!!) So sometimes we don't have the luxury of testing a script on dev first as what is in need of fixing is not on dev. </p>
<p>My rules: Never insert data directly from a file to a production table. Always bring it into a work table so you can view it first. Have checks in place so that if there is bad data in the file, the process will fail before you get to the final step of inserting into production data. Clean up the data first.</p>
<p>If you must delete a large number of records, it can save you if you select those records first into a work table. Then do the delete. That way if things go wrong it is much easier to recover. If you have audit tables, know how to recover data from them quickly. Again if something goes wrong it is much faster to recover from the audit tables than from the tape backup.</p>
<p>I write a delete statement like this:</p>
<p>begin tran</p>
<p>delete a </p>
<p>--select (list important fields to see here)</p>
<p>from table1 a where field1 = 'x'</p>
<p>--rollback tran</p>
<p>--commit tran</p>
<p>Note several things about this. First by using the alias I can't accidentally delete the whole table by only highlighting one line and running the code. By starting the where clause on the same line as the table I am much less likely to miss highlighting it. If I had joins I would make sure each line ends in a place where the code won't work unless it goes to the next line. Again, this ensures you get an error instead of an oopsie. Always run the select first and note the number of records affected (and look at the data to make sure it looks like the right records!) Then do not commit unless the number of records is correct when you run the actual delete. Yeah, it's prettier to start the where on a separate line, it is safer to end each line of a delete so that it will not run unless the whole query is highlighted.</p>
<p>Updates follow simliar rules.</p>
http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database/240563#2405631Answer by TrickyNixon for What's your #1 way to be careful with a live database?TrickyNixon2008-10-27T16:43:26Z2008-10-27T16:43:26Z<p>The danger of running unintentional Deletes (or inserts, or updates) is always on my mind.</p>
<p>I always add "where 1=2" after them until I'm ready to pull the trigger.</p>
http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database/251330#2513300Answer by Patrick for What's your #1 way to be careful with a live database?Patrick2008-10-30T19:01:48Z2008-10-30T19:01:48Z<p>if you are using oracle 10/11g... Flashback</p>
<p><a href="http://www.oracle.com/technology/deploy/availability/htdocs/Flashback_Overview.htm" rel="nofollow">http://www.oracle.com/technology/deploy/availability/htdocs/Flashback_Overview.htm</a></p>
<p>It basically maintains a sliding window of undo logs that can be referenced by time or a named marker. It makes dead simple to undo days worth of changes in a couple minutes. without bringing the database down.</p>
http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database/357230#3572300Answer by joseph.ferris for What's your #1 way to be careful with a live database?joseph.ferris2008-12-10T19:17:21Z2008-12-10T19:17:21Z<p>To let the DBAs do the work. Coming from a development background, I don't want/need/should have access to anyone's live database. To me, it is the equivalent of letting a DBA fix coding issue in the DAL, just because it has "database" in the title. :-)</p>
http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database/710618#7106180Answer by Fabricio for What's your #1 way to be careful with a live database?Fabricio2009-04-02T16:55:17Z2009-04-02T16:55:17Z<p>If you are using SQL Server 2005+ Management Studio, you can turn Implicit Transactions ON.</p>
http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database/766814#7668140Answer by Nathan Feger for What's your #1 way to be careful with a live database?Nathan Feger2009-04-20T03:45:05Z2009-04-20T03:45:05Z<ol>
<li><p>I always like to have someone look over my shoulder whenever I connect to a live database.</p></li>
<li><p>Have a recent copy of the production database stored somewhere. This will often preclude your need to query the production db.</p></li>
<li><p>If you ever have to do anything to a running db. Document it, and add a fix in as a coded feature available to admins. This way you have one less excuse to point a query tool at your db.</p></li>
</ol>
http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database/890697#8906970Answer by Aaron for What's your #1 way to be careful with a live database?Aaron2009-05-20T23:13:30Z2009-05-20T23:13:30Z<p>I learned this in an interview and thought it was a great idea.</p>
<pre><code>Begin Transaction
Delete from foo where FooID = 100
IF @@RowCount <> 1 Begin
Rollback Transaction
End
</code></pre>
http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database/994608#9946080Answer by tsilb for What's your #1 way to be careful with a live database?tsilb2009-06-15T05:37:57Z2009-06-15T05:37:57Z<p>Whenever I open a connection to PROD, or switch to a PROD data context, the first thing I always do is add this comment before and after my active working code block:</p>
<pre><code>-- PROD -- PROD -- PROD -- PROD -- PROD -- PROD --
</code></pre>
<p>There have been times when I noticed this while my thumb was on the Alt key and my middle finger was halfway to the 'X' key. Whew!</p>
http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database/1174212#11742120Answer by Cesar Reyes for What's your #1 way to be careful with a live database?Cesar Reyes2009-07-23T20:15:00Z2009-07-23T20:15:00Z<p>If you are using Microsoft SQL Server Management Studio <strong>2008</strong> you can specify which color to be used in the info window while executing querys (at the bottom of the Sql Query Editor)</p>
<p>On the Connection Promt choose Options > Use Custom Color and select RED for production.</p>
http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database/1397186#13971860Answer by Billy Boy for What's your #1 way to be careful with a live database?Billy Boy2009-09-09T01:48:09Z2009-09-09T01:48:09Z<p>Never design any databases with cascading deletes. They're evil. If you do have cascading deletes on FKs, you never know how many rows in other referenced tables will be deleted when you delete a row with a delete statement.</p>
<p>That said, you can't assume anything about what other people do. I always do this:
1. Copy database to locally installed db (use dumps). Simply tell management you refuse to work if you cannot have a copy of the full DB on you local computer.
2. Make your script work on your local db, import the dump over and over until the script works perfectly on a cleanly imported dump. Then save the script to a file on disk.
3. Run script on production server.
4. Import script into SCM.</p>