Forum Replies Created

Viewing 15 posts - 1 through 15 (of 582 total)

  • RE: SQL Agent Start Time

    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...

  • RE: Sql 2012 Migration to 2016

    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...

  • RE: Upgrade from 2012 SE to 2016 EE questions

    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...

  • RE: SQL Services affects or not -- Cluster disk offline

    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...

  • RE: SQL Server 2012 Server Collation vs. Database Collation

    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...

  • RE: email query results as csv - How to avoid the dashes after the header row.

    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...

  • RE: SQL Server for SCOM

    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.

  • RE: SQL Server for SCOM

    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...

  • RE: reporting database snapshot, locks

    John1.5.nlt (2/4/2016)


    So is this the best way to manage this with minimal downtime? I mean this in relation to creating a transaction, truncating and loading the data and then closing...

  • RE: Sql Job Output

    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....

  • RE: Sql Job Output

    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...

  • RE: reporting database snapshot, locks

    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...

  • RE: Migrating to 2014

    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...

  • RE: A question about SQL service account

    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.

  • RE: A question about SQL service account

    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...

Viewing 15 posts - 1 through 15 (of 582 total)