Forum Replies Created

Viewing 15 posts - 46 through 60 (of 76 total)

  • RE: SQL Files Won't Open Outside of SSMS

    I was able to break SSMS and cause the behaviour you're seeing but only by altering the HKEY_CLASSES_ROOT\ssms.sql.14.0\Shell\Open\DdeExec registry key. I couldn't trigger this by changing the OpenWith preference in...

  • RE: sql job taking more time

    Jeff Moden - Monday, March 11, 2019 6:39 AM

    Personally, I'd go back to the old ways of starting to troubleshoot.  First, you...

  • Reply To: Transactional replication latency issue

    Are you seeing any errors in Replication?

    USE [distribution]
    GO
    SELECT [time],[error_text]
    FROM MSrepl_errors
    WHERE CAST([error_text] AS VARCHAR(MAX)) <> '' AND [error_text] IS NOT NULL
    ORDER BY [time] DESC

    • This reply was modified 5 years, 7 months ago by  HandyD.
    • This reply was modified 5 years, 3 months ago by  Dave Convery.
  • RE: sql job taking more time

    You need to capture and analyse all of the differences between a good vs bad execution that you can to determine the root cause. You need to capture at...
  • RE: SQL Files Won't Open Outside of SSMS

    Do you have any entries like this:

    HKEY_CLASSES_ROOT\ssms.sql.**.*

    with the * being a version number? If so, what do you see under these keys:

    HKEY_CLASSES_ROOT\ssms.sql.14.0\Shell\Open\Command
    HKEY_CLASSES_ROOT\ssms.sql.14.0\Shell\Open\DdeExec

  • RE: Always On

    So DTC is part of windows operating system right? Distributed transaction has nothing to do with SQL Server right?
    What version of SQL Server did you configure Always on Availability...

  • RE: Upgrading ~250 databases to SQL 2017.

    Can you outline your upgrade process a bit more? Why do you need to failover 3 times?

    If you're performing in-place upgrades, you should be upgrading your secondary...

  • RE: VM Snapshot before SQL Server upgrade

    garryha - Friday, March 1, 2019 1:50 AM

    12 of the Instance need to be upgraded to 2014 as they are...

  • RE: Always On

    Admingod - Wednesday, February 27, 2019 11:14 AM

    Thanks. Another question.So i am looking to setup always on high availability for DR...

  • RE: Login Failed for user Domain\User

    tinausa - Monday, February 25, 2019 10:49 AM

    I have basicauth turned on with impersonation enabled. No anonymous login. 

    Impersonation in IIS and Integrated...

  • RE: Login Failed for user Domain\User

    That error means the user doesn't have a corresponding login in SQL Server. If you log in to the SQL Server as an administrator and run the below command, does...

  • RE: Connection String to Connect to SQL Server using a service account ( Windows authenticated ID ) from a Unix machine.

    Integrated Authentication does not work like this in SQL Server. You cannot pass a Windows login and password in the connection string to authenticate in SQL Server.

    Integrated Authentication...

  • RE: Login Failed for user Domain\User

    You need to extract more information on the login failures. SQL Server records a severity and state for every error in SQL, and with login failures this is key to...

  • RE: Read Only Routing on QlikSense Application

    Do you have read only routing configured for your AG? You need to have a secondary replica configured for read-intent access, and ideally have your routing urls and routing list...

  • RE: Always On

    Depending on your version and edition of SQL Server, you can have up to 8 AlwaysOn Availability Replicas (up to 3 synchronous), and between 1 and N databases in each...

Viewing 15 posts - 46 through 60 (of 76 total)