Viewing 15 posts - 991 through 1,005 (of 7,489 total)
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
I steped away from tsql scripting for this purpose.
I use a powershell script/module to assemble and restore databases from whatever sqlserver source to a given sql server target.
You can find...
July 6, 2016 at 12:57 am
I chocked and was shocked seeing this:
import-module sqlserver
Get-SqlPort -sqlserver myserver\myinstance
result
Get-SqlPort : SQLDMO is not installed.
At line:1 char:1
SQLDMO ????????
Oh, wait, maybe that's the one coming from the "old" SQLPSx installation
July 4, 2016 at 12:55 am
Thank you for the feedback.
Glad to read to got it fixed.
July 3, 2016 at 11:56 pm
first make a tail log backup
then you can use 'restore filegroup ' starting from your latest full backup
then restore diff backup if available
then restore logs as needed ending with...
July 1, 2016 at 7:59 am
David O (6/8/2016)
...turn this into a guest editorial ...
or even better, submit it as an SSC article !
Marketing only highlights the fancy stuff !
Users want it to work
DBA want...
June 9, 2016 at 12:46 am
is your name column Nullable and are there rows where it is null ?
ref: Something About Nothing: NULL By Kathi Kellenberger[/url]
May 30, 2016 at 7:46 am
Viewing 15 posts - 991 through 1,005 (of 7,489 total)