Viewing 15 posts - 961 through 975 (of 7,467 total)
you do realize that your view is to be materialized due to all the functions you are performing in it to determin the content for colum C_Date, right ?
April 13, 2017 at 3:06 am
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
Viewing 15 posts - 961 through 975 (of 7,467 total)