Viewing 15 posts - 1 through 15 (of 582 total)
another way would be to look for agent startup in eventlog. here is a way to parse the log with powershell.get-eventlog -logname system -source "service control...
May 12, 2017 at 7:44 am
You can also checkout dbatools powershell module. It includes a command, start-sqlmigration, that will migrate everything for you. Or run individual command to migrate objects piecemeal...
May 11, 2017 at 2:26 pm
1. Is it possible just to update the SQL Server without updating MS Dynamics to 2016 version.
2. I know SQL Server 2016 EE comes with clustering capabilities, but what happens...
January 10, 2017 at 12:38 pm
nikhil.desai1 (9/23/2016)
Hi ,This two disk are dependent on SQL Services i.e disk is added in the dependent of SQL Server Services of Fail-over Management Cluster.
Unless I misunderstood you, I would...
September 26, 2016 at 12:29 pm
deepti.khatuja (5/4/2016)
didnt understand examples
My example does make the assumption that server collation is not Latin1_general_BIN
you can check server collation with select SERVERPROPERTY('Collation')
If this returns Latin1_general_BIN then change the collation...
May 4, 2016 at 8:01 am
One way to do it(not pretty) would be to suppress the column headers with the @query_result_header then add a rows with headers as part of your query. you will have...
April 19, 2016 at 8:22 am
I do have to point out that if using the SQL Server license that comes with SCOM, that SQL Server instance cannot be used for anything else.
April 19, 2016 at 8:03 am
By AlwaysOn, do you mean availability groups? Alwayson includes both failover clusters and availability groups.
Since system center comes with SQL Server Standard license and that is the license you...
April 18, 2016 at 10:49 am
John1.5.nlt (2/4/2016)
February 4, 2016 at 8:35 am
you could use msdb.dbo.sp_help_job @execution_status = 1 to identify job step. you would have to do some parsing of the output.
my suggestion would be to checkout the msdb.dbo.sysjobhistory table....
January 15, 2016 at 7:39 am
the reason your job continues to the next step after sending an email is because the step completes successfully (ie proc runs, error caught, email sent). the try-catch shelters the...
January 14, 2016 at 3:02 pm
database snapshots would not solve your problem as you would run into the same blocking issue when creating new snapshot.
the way I deal with this exact situation is...
January 14, 2016 at 2:43 pm
IMO, the best bet would be to create the 2014 cluster on new hardware and then migrate database(s),logins, jobs,etc to new instance. your databases will get upgraded when restoring them...
December 24, 2015 at 9:00 am
A virtual account is basically a local manged service account. IMO, a better option than "local system" if SQL Server does not need access to any network resources.
December 23, 2015 at 3:05 pm
these days I use managed service accounts instead of regular domain accounts for sql server services.
As for local system account, it has a lot more privileges than are needed...
December 23, 2015 at 2:33 pm
Viewing 15 posts - 1 through 15 (of 582 total)