Viewing 15 posts - 42,601 through 42,615 (of 49,566 total)
Simon Smith (12/4/2008)
December 4, 2008 at 9:47 am
Skull Killer (12/4/2008)
Because it has to "reserve" and then destroy the structure in the temp database and it does the COMMITs.
Same with a table variable. Main difference is that...
December 4, 2008 at 9:41 am
The only way you can backup a single table is if that table is in a filegroup by itself. Then you can back up the filegroup.
You can backup at the...
December 4, 2008 at 9:33 am
and no [] inside the IF, because you're trying to do a string match there, not refer to the DB itself.
December 4, 2008 at 9:31 am
What's the code you're trying to run inside sp_MSforeachdb?
December 4, 2008 at 9:19 am
Full backups do not break the LSN chain.
Easy to demonstrate
Create database TestingLogs
Go
use TestingLogs
go
Create Table Test (id int)
insert into Test values (1)
go
backup database TestingLogs to disk = 'D:\Develop\TestingFull1.bak' -- full backup...
December 4, 2008 at 9:13 am
Three steps backwards....
When data is changed in SQL, the changes are made to the data pages in memory. The record of the change is then written to the transaction log...
December 4, 2008 at 9:05 am
Skull Killer (12/4/2008)
That's true. But creating a temp table, even with no data, costs more than a table variable.
Why?
December 4, 2008 at 8:02 am
Phil Auer (12/4/2008)
I'm still not clear on the issue. This video talks specifically about only full backups and transaction log backups.
I'll download the video later, watch it and see...
December 4, 2008 at 8:00 am
srawant (12/2/2008)
I have a same database in one of my pre-prod server which is currently dead. I can work on this server to fix the database. So, can you...
December 4, 2008 at 1:33 am
Bristolred (12/3/2008)
December 4, 2008 at 1:30 am
If the triggers are on the same event, why not just have one trigger that does the work of both?
December 4, 2008 at 1:22 am
Just check the version of that management studio, make sure that the patch did successfully patch the client tools.
December 4, 2008 at 12:59 am
Steve Jones - Editor (12/3/2008)
Corruption errors are most often hardware related, so be sure that your drivers and hardware is not causing issues.
This particular one's usually the result of...
December 4, 2008 at 12:54 am
So where did you set the maintenance plan up from?
December 4, 2008 at 12:54 am
Viewing 15 posts - 42,601 through 42,615 (of 49,566 total)