August 22, 2015 at 11:50 am
Comments posted to this topic are about the item Detaching and Updating Databases
August 23, 2015 at 12:47 am
Never used this parameter b4 while detaching a DB, though it`s arguable as it will take some considerable time 4 huge database.
Thanks & Best Regards,
Hany Helmy
SQL Server Database Consultant
August 24, 2015 at 12:18 am
This was removed by the editor as SPAM
August 24, 2015 at 1:11 am
Nice one, thanks.
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
August 24, 2015 at 1:21 am
Nice warm-up question at the beginning of Week. Thanks.
August 24, 2015 at 5:02 am
A pretty easy way to start the week, but I'm sure some of us are still a bit tired from the weekend.
August 24, 2015 at 7:16 am
Hany Helmy (8/23/2015)
Never used this parameter b4 while detaching a DB, though it`s arguable as it will take some considerable time 4 huge database.
If you have never used it, how can you give any information on how long it will take? 😛
August 24, 2015 at 7:17 am
Thank you for the easy Monday morning question Steve.
August 24, 2015 at 9:05 am
Seems a bit obvious - if you want eveything to work cleanly then (a) don't use a non-existent parameter (although a third or people who've answered so far appear to think that's agood idea :woot:) and (b) don't tell it to skip checks (badly named parameter, as updating statistics isn't actually a check, but it's still something you ought to want to do).
Tom
August 24, 2015 at 10:05 am
Good question. Learned something already this week -- and it's only Monday!
Rob Schripsema
Propack, Inc.
August 25, 2015 at 6:35 am
Never used this parameter before while detaching a Database.
Learnt something new. Thanks for the question.
August 25, 2015 at 6:42 am
pmadhavapeddi22 (8/25/2015)
Never used this parameter before while detaching a Database. Learnt something new.
Me too
August 25, 2015 at 7:29 am
Pulled from the referenced article:
[font="Times New Roman"][ @skipchecks = ] 'skipchecks'
Specifies whether to skip or run UPDATE STATISTIC. skipchecks is a nvarchar(10) value, with a default value of NULL. To skip UPDATE STATISTICS, specify true. To explicitly run UPDATE STATISTICS, specify false.
By default, UPDATE STATISTICS is performed to update information about the data in the tables and indexes. Performing UPDATE STATISTICS is useful for databases that are to be moved to read-only media.[/font]
It seems to me running the base command is the same as adding the skipchecks=false option.
Comments?
Viewing 13 posts - 1 through 12 (of 12 total)
You must be logged in to reply to this topic. Login to reply