Viewing 15 posts - 1,066 through 1,080 (of 7,501 total)
Roust_m (1/12/2015)
ALZDBA (1/9/2015)
Never, and I mean NEVER , add fk constraints using the NOCHECK option !!!ref: http://www.scarydba.com/2010/11/22/do-foreign-key-constraints-help-performance/ ( read the comments ! )
This is a replicated database with NOT ALL...
January 12, 2015 at 11:49 pm
simple: total db size = data file size + log file size ;
20GB + 8GB = 28GB
January 12, 2015 at 11:45 pm
You can easily get an overview of all completed backup commands and their generated backup sizes, as they are registered in msdb !
declare @DbNameLike sysname
declare @OnlyLastBUset bit
Select ...
January 12, 2015 at 7:56 am
any other files ( besides the log file, as Gail suggested ) ?
January 12, 2015 at 7:49 am
burfos (1/9/2015)
ALZDBA (1/8/2015)
FWIW I hope you enabled Instant File Initialization as it also works for restore operations !
I haven't on this particular server as the...
January 9, 2015 at 2:43 am
Roust_m (1/8/2015)
The goal is to drop the FKs, truncate some tables and re-create the FKs with nocheck option (this is to keep the database schema almost the same.
Could you spare...
January 9, 2015 at 2:34 am
FWIW I hope you enabled Instant File Initialization as it also works for restore operations !
January 8, 2015 at 11:58 pm
What's the goal of your action ?
The use of temp objects is fearsome, because - I assume, you'll be dropping and re-creating the DRI in the process. If that fails,...
January 8, 2015 at 1:50 am
since this is occasionally, I would suspect the restore process not being the 'single user'.
Can you double check there isn't anything between the 'set single user' and the 'restore database'.
That's...
January 8, 2015 at 1:42 am
the deadlock resource is dbid = "10" objectname = "F1SB.dbo.LiveMatches" indexname = "PK_LiveMatches"
that is the object involved in the merge operation as receiving object !
I've seen trancount =3 mentioned ...
December 29, 2014 at 3:53 am
you'll have to investigate the object referred by waitresource.
e.g. "KEY: 27:72057594095534080 (989126c604a2)"
and interpret how that resource is being used by the conflicting threads
December 29, 2014 at 2:37 am
Ray Herring (12/9/2014)
is there a...
December 10, 2014 at 12:56 am
Brandon Forest (12/8/2014)
December 9, 2014 at 12:32 am
MG-148046 (12/8/2014)
December 8, 2014 at 7:20 am
Viewing 15 posts - 1,066 through 1,080 (of 7,501 total)