Viewing 15 posts - 976 through 990 (of 7,481 total)
just a little caution:
If you have an alert activating a job, and you disable the job without disabling the alert, your SQLAGENT.OUT file will explode because it still...
April 13, 2017 at 1:45 am
Avoid the trace flag. (as it is no longer a tweek) Use the configuration setting.
April 5, 2017 at 8:07 am
FYI, we recently discovered a heap table, with no indexes at all, consuming 56GB having only +/-40000 rows of 64bytes.
(SQL2014 SP2CU3)
After 'alter table x REBUILD', consumption got back...
April 4, 2017 at 5:40 am
A couple of years ago I started pistol target shooting, because that needs a focussed mind. It worked very well.
Nowadays, I find my best relaxation doing mantrailing...
March 31, 2017 at 12:52 am
..
UPDATE ED
SET ED.ID = ET.SID,
ED.Code = ET.TCode,
FROM dbo.Emp ED
INNER JOIN dbo.EXt ET
ON...
March 30, 2017 at 1:01 am
There's the main difference between log shipping and db mirroring !
see = "... A log shipping process is always unidirectional ....."
Also have a...
March 27, 2017 at 1:36 am
If you have your files set to Autogrow: Check your default traces, they contain info on automatic file growth !
/*
* read SQL default trace...
March 27, 2017 at 1:22 am
ALTER COLUMN: https://msdn.microsoft.com/en-us/library/ms190273.aspx
"Modify columns" https://msdn.microsoft.com/en-us/library/ms190259.aspx
implicit conversions https://msdn.microsoft.com/en-us/library/ms187928.aspx
March 17, 2017 at 12:52 am
it depends, for some data type changes it has to rewrite the whole table to get all internal stuff in order. ( e.g. from char to varchar, varchar to nvarchar, float to...
March 15, 2017 at 7:30 am
This is the sequence I use:
-- 0 = db file info
-- 1 = backup log
-- 2 = Shrink log file
-- 3 = extend...
March 3, 2017 at 12:52 am
"The null value check is performed every time the table is touched, not on...
February 20, 2017 at 7:56 am
February 20, 2017 at 6:54 am
My guidelines for FK-indexes: Always put an index on the FK columns, unless that hurts the performance of that particular system. ( i.e. your milage may vary ! )
January 3, 2017 at 6:36 am
FYI
...Adds a stored procedure for the manual cleanup of the change tracking side table in SQL Server 2014 SP2 ...
sp_flush_CT_internal_table_on_demand [ @TableToClean= ] 'TableName'
July 12, 2016 at 1:16 am
Viewing 15 posts - 976 through 990 (of 7,481 total)