Viewing 15 posts - 46 through 60 (of 76 total)
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...
March 11, 2019 at 6:01 pm
March 11, 2019 at 5:55 pm
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
March 10, 2019 at 11:03 pm
March 10, 2019 at 10:56 pm
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
March 10, 2019 at 10:46 pm
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...
March 10, 2019 at 6:19 pm
If you're performing in-place upgrades, you should be upgrading your secondary...
March 5, 2019 at 9:54 pm
February 27, 2019 at 9:58 pm
tinausa - Monday, February 25, 2019 10:49 AMI have basicauth turned on with impersonation enabled. No anonymous login.
Impersonation in IIS and Integrated...
February 26, 2019 at 5:21 pm
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...
February 25, 2019 at 5:25 pm
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...
February 24, 2019 at 10:56 pm
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...
February 24, 2019 at 10:38 pm
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...
February 24, 2019 at 9:31 pm
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...
February 24, 2019 at 9:22 pm
Viewing 15 posts - 46 through 60 (of 76 total)