Click here to Skip to main content
15,916,600 members
Home / Discussions / Database
   

Database

 
AnswerRe: Connection Strings & App.config with class libaries Pin
Not Active20-Jun-07 10:02
mentorNot Active20-Jun-07 10:02 
GeneralRe: Connection Strings & App.config with class libaries Pin
g18c20-Jun-07 10:22
g18c20-Jun-07 10:22 
GeneralRe: Connection Strings & App.config with class libaries Pin
Not Active20-Jun-07 11:47
mentorNot Active20-Jun-07 11:47 
GeneralRe: Connection Strings & App.config with class libaries Pin
g18c20-Jun-07 20:17
g18c20-Jun-07 20:17 
QuestionSQL Server Question: How do I view the database log? [modified] Pin
Xiangyang Liu 刘向阳20-Jun-07 8:12
Xiangyang Liu 刘向阳20-Jun-07 8:12 
AnswerRe: SQL Server Question: How do I view the database log? Pin
Sathesh Sakthivel20-Jun-07 8:42
Sathesh Sakthivel20-Jun-07 8:42 
GeneralRe: SQL Server Question: How do I view the database log? Pin
Xiangyang Liu 刘向阳20-Jun-07 12:26
Xiangyang Liu 刘向阳20-Jun-07 12:26 
AnswerRe: SQL Server Question: How do I view the database log? Pin
Mike Dimmick21-Jun-07 5:25
Mike Dimmick21-Jun-07 5:25 
You don't.

The log contains all the information required to roll forward or back to a point in time. If you want to see what the state of the database was at a particular point in time, back up the transaction log (WITH NO_TRUNCATE to keep the current log data, so you don't affect your regular backup sequence), then restore the last full backup under a different name WITH NORECOVERY, and restore the log backup WITH RECOVERY, STOPAT and the time you want to recover up to.

The log contains binary log records indicating the operations that were performed, plus the data of any rows deleted, the new data for any rows added, and both the before and after versions of rows updated. For information on the log format used by SQL Server 2000, see the book "Inside SQL Server 2000". There's an updated set of books for SQL Server 2005 - presumably you want the Storage Engine one.

Stability. What an interesting concept. -- Chris Maunder

GeneralRe: SQL Server Question: How do I view the database log? Pin
Xiangyang Liu 刘向阳21-Jun-07 13:25
Xiangyang Liu 刘向阳21-Jun-07 13:25 
QuestionHow to backup a database Pin
lune1220-Jun-07 6:27
lune1220-Jun-07 6:27 
AnswerRe: How to backup a database Pin
Sathesh Sakthivel20-Jun-07 8:39
Sathesh Sakthivel20-Jun-07 8:39 
Questionembedding a sql DB in a win32 app Pin
TintinV3ck20-Jun-07 6:26
TintinV3ck20-Jun-07 6:26 
AnswerRe: embedding a sql DB in a win32 app Pin
originSH20-Jun-07 21:52
originSH20-Jun-07 21:52 
GeneralRe: embedding a sql DB in a win32 app Pin
TintinV3ck21-Jun-07 5:32
TintinV3ck21-Jun-07 5:32 
AnswerRe: embedding a sql DB in a win32 app Pin
Mike Dimmick21-Jun-07 5:33
Mike Dimmick21-Jun-07 5:33 
Questionblob with sql server Pin
WhiteGirl2320-Jun-07 3:09
WhiteGirl2320-Jun-07 3:09 
AnswerRe: blob with sql server Pin
Giorgi Dalakishvili20-Jun-07 4:00
mentorGiorgi Dalakishvili20-Jun-07 4:00 
Questionproblem connecting to SQL database Pin
NewYork20-Jun-07 1:48
NewYork20-Jun-07 1:48 
AnswerRe: problem connecting to SQL database Pin
Hulicat20-Jun-07 2:19
Hulicat20-Jun-07 2:19 
GeneralRe: problem connecting to SQL database Pin
NewYork20-Jun-07 4:19
NewYork20-Jun-07 4:19 
GeneralRe: problem connecting to SQL database Pin
Hulicat20-Jun-07 4:58
Hulicat20-Jun-07 4:58 
AnswerRe: problem connecting to SQL database Pin
WhiteGirl2320-Jun-07 19:22
WhiteGirl2320-Jun-07 19:22 
QuestionIndexes Pin
gauthee20-Jun-07 0:14
gauthee20-Jun-07 0:14 
AnswerRe: Indexes Pin
Sylvester george20-Jun-07 0:49
Sylvester george20-Jun-07 0:49 
GeneralRe: Indexes Pin
gauthee20-Jun-07 1:03
gauthee20-Jun-07 1:03 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.