Viewing 15 posts - 976 through 990 (of 7,504 total)
That info is to be found in msdb!
/*
Backup overview for current database
*/
Declare @BU_DbName sysname
Set @BU_DbName = db_name()
select ...
September 8, 2017 at 2:56 am
No input parameters have been defined for the itvf because of dynamic "where clauses needs" by the dev team
(otherwise I would have transformed it into a stored procedure in...
September 8, 2017 at 2:36 am
September 7, 2017 at 1:16 am
ChrisM@Work - Wednesday, September 6, 2017 9:05 AM
The results:
SQL Server parse and compile time:
CPU time = 0 ms, elapsed time =...
September 7, 2017 at 1:14 am
Can you also post the DDL...
September 6, 2017 at 7:22 am
sit and wait. I guess it has to rewrite the whole table and its indexes. i.e. +190GB
(I/O bound operation)
It all depends on the original datatype and length...
September 6, 2017 at 2:26 am
This will work when performing piecemeal restores (after primary FG has been restored):
Select ...
from sys.data_spaces DS
inner join sys.database_files F
on F.data_space_id...
September 4, 2017 at 2:25 am
Already great work by Mark 🙂
I only came to this starting point:
Select PlanXML.xmlnode.value('@FieldName', 'varchar(255)') AS FieldName
, PlanXML.xmlnode.value('@FieldValue', 'varchar(255)') AS...
May 26, 2017 at 5:27 am
May 22, 2017 at 1:37 am
there seem to be a couple more parallel operations in the 58 plan vs the 3:45plan
Do you also monitor blocking operations in your system ?
Do these...
May 5, 2017 at 7:05 am
Viewing 15 posts - 976 through 990 (of 7,504 total)