Viewing 15 posts - 3,766 through 3,780 (of 6,679 total)
When Gail stated that you should back up to individual files, one of the things this does is makes sure you don't do this:
-- Back up the AdventureWorksDW transaction log
BACKUP...
May 31, 2010 at 9:40 am
How often are you backing up the transaction log?
Review the article I link to in my signature about maintaining transaction logs - it will help you understand what you need...
May 31, 2010 at 9:31 am
Paul is correct - I get lazy and don't specify the object type all the time.
May 29, 2010 at 12:29 pm
Neither - use MERGE instead which will do the insert/update in one command.
May 28, 2010 at 8:48 pm
Glad I could help - thanks for the feedback.
May 28, 2010 at 5:51 pm
Gary7512 (5/28/2010)
May 28, 2010 at 5:49 pm
I am just guessing here, but it would seem to me that DB-B's transactions that were in process at the same time that you have specified would be rolled back....
May 28, 2010 at 5:39 pm
To check for a temp table, you can do the following:
IF object_id('tempdb..#DeleteUserID') IS NULL
BEGIN
-- your code here
...
May 28, 2010 at 4:53 pm
hester84 (5/28/2010)
What is the source of that number? ...
May 28, 2010 at 4:08 pm
Steve Jones - Editor (5/28/2010)
The reasons you give are pretty good ones for not using their tool, especially...
May 28, 2010 at 3:57 pm
Gary7512 (5/28/2010)
May 28, 2010 at 3:51 pm
Steve Jones - Editor (5/28/2010)
May 28, 2010 at 3:00 pm
Gary7512 (5/28/2010)
May 28, 2010 at 2:15 pm
Gary7512 (5/28/2010)
May 28, 2010 at 11:33 am
Kevin Landry (5/28/2010)
I have also considered the Bulk-Logged option, but I do not see how switching to Simple is any more dangerous than using the Bulk-Logged option?
Switching to ANY...
May 28, 2010 at 8:48 am
Viewing 15 posts - 3,766 through 3,780 (of 6,679 total)