On Tue, May 15, 2012 at 2:53 PM, Kurt Wendt <[email protected]> wrote: > Gotcha - understood & thanks for the explaination. Very much > appreciated! > > Its always fun being a Newbie... > > -K- > > -----Original Message----- > From: [email protected] [mailto:[email protected]] > On Behalf Of M Jarvis > Sent: Tuesday, May 15, 2012 3:52 PM > > On Tue, May 15, 2012 at 12:37 PM, Kurt Wendt <[email protected]> > wrote: >> Stephen - when you mentioned this Logging thing (which, I'm assuming >> that SQL write a Log record for each record inserted - which we really >> don't need to do when we are just converting data) - you are referring >> only to the conversion process that I attempted to do. Right? > > Just FYI since you said this is your first time around w/ SQL Server... > > Data files are stored in TWO files, the Data file itself and the > Transaction log. It isn't a log file in the sense of "I created a > record at this time" or "I updated a record at this time". It's part > of the backup/restore strategy that SQL uses. ------------
LOL. Even with a SQL Log viewer finding what you need to reverse it is pretty tough! Yes you can go back and restore deletions done by a person from a .trn file. Other thing. Delete table will have a trasnsaction for all of those rows. Truncate table will not. :) Truncate table will reset the auto key generator for you as well. Delete will not. -- Stephen Russell Sr. Analyst Ring Container Technology Oakland TN 901.246-0159 cell _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech Searchable Archive: http://leafe.com/archives/search/profox This message: http://leafe.com/archives/byMID/profox/cajidmylohsmph808fx2z_cwjngtci1tphfkus74zl5xjzy_...@mail.gmail.com ** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.

