Viewing 15 posts - 16 through 30 (of 135 total)
dependent on asymmetric key security
- I doubt it. I scripted them and they...
September 11, 2018 at 2:58 pm
I was pretty hesitant to do in-place upgrades based on my experiences with older versions, but I've done about 8 in-place upgrades from 2012 to 2016 this year and, fortunately,...
September 11, 2018 at 2:18 pm
At the bottom of this page there's a script posted by shahmm that will give you your IF NOT EXISTS...CREATE scripts for all of the indexes. You can...
September 11, 2018 at 1:18 pm
What was wrong with mirroring that you chose not to use it?
The big question is how you define "synchronize" - how much of the data do you need, how...
September 11, 2018 at 9:59 am
September 11, 2018 at 9:28 am
Why some of my records are rounded to two decimal places and others not when...
September 11, 2018 at 8:43 am
It's in 8KB pages, so multiply the number in the Size column by 8 and you'll have the size in KB.
See the documentation for that info and more:
August 23, 2018 at 7:22 am
Just to tack onto Sue's advice, you should also look at the account that's running the scripts.
Running Get-Module -ListAvailable from Powershell running under the context of the account...
August 21, 2018 at 3:59 pm
I realize this was a week ago, but have you taken a look at the CommandLog table in your master database?
You should be able to see the information (including...
August 14, 2018 at 10:23 am
Another option using the temp table provided by Steve, because it was a fun distraction:
SELECT final.MaxDate, final.Max FROM
(
SELECT TOP 1 WITH TIES
May 30, 2018 at 8:14 am
Try
install-packageprovider NuGet -Force
get-packagesource
Install-Package Microsoft.SqlServer.SqlManagementObjects -source https://www.nuget.org/api/v2
The source in the last line should be listed as a location...
April 20, 2018 at 1:29 pm
I have the SQL Service on Automatic restart on a machine and the agent is...
April 19, 2018 at 1:42 pm
April 5, 2018 at 2:18 pm
The first and most frequent thing I check is emails. Locally we get emails for job failures, deadlocks, long running processes, tempdb growth, and a few other health checks. The...
March 14, 2018 at 10:21 am
Viewing 15 posts - 16 through 30 (of 135 total)