Viewing 15 posts - 496 through 510 (of 6,400 total)
You need to check in your application how you do your read connections and write connections.
If you want to offload reads you need to ensure you use two connection strings...
September 22, 2022 at 7:00 am
You must use a domain based account to register SPNs in the domain.
Once you have done that you can grant the needed permissions to the domain account so that it...
September 21, 2022 at 10:33 am
What mode do you have the AG set in SYNC or ASYNC?
If SYNC I would expect there to be some delay as your fighting with HADR_SYNC_COMMIT waits, however if it...
September 17, 2022 at 8:36 pm
Are the ones you cannot connect to default instances using a non standard port?
If so you need to specify the port number in the connection. SQL browser won’t help you...
September 17, 2022 at 8:32 pm
Sounds like a double-hop problem.
Can you post the connection string obfuscated of course just to ensure
Server=myServerAddress;Database=myDataBase;User Id=myUsername;Password=myPassword;
Server=myServerAddress;Database=myDataBase;Trusted_Connection=True;
If it is the double-hop issue, make sure you have the correct SPN's created...
September 16, 2022 at 3:39 pm
The table is being published in an replication publication or subscription.
You need to remove the article from the publication before you can modify the PK or drop that table on...
September 16, 2022 at 9:00 am
Can you share your powershell code?
It may be a simple thing as needing to expand out the distinguisedName as that isn't an array.
get-aduser .... | select-object -expand distinguishedName
September 14, 2022 at 1:49 pm
Check the SQL Server error log for 18456 errors and verify the state and severity then lookup that compared to the common 18456 errors.
Use the user ID and password in...
September 13, 2022 at 6:56 pm
AD queries in SQL are quite annoying to do properly and then you get limited to the number of objects it can return before you need to then start looping...
September 10, 2022 at 5:55 pm
What’s happening with ASK SSC at the moment, I keep reporting a lot of spam topics but no one is removing them.
Is that site dead now or is Redgate phasing...
September 9, 2022 at 6:28 pm
SQLOLEDB does not support TLS1.2.
so you need to ensure there is a common protocol on both client and server which can be used is you must use that driver (TLS1.0).
Secondly...
September 9, 2022 at 6:19 pm
Firstly, why are you using out of date technology?
You should be running supported versions of the products, to which Server 2008R2 and SQL 2008R2 are now massively out of support.
I...
September 8, 2022 at 3:37 pm
Do you mean errors which are reported via DBCC CHECKDB?
If so the official line from Microsoft is to restore to your last known good backup.
You may attempt the repair_rebuild and/or...
September 8, 2022 at 12:37 pm
You would have to code it into the job step using a try catch block, and inside the catch block you would send the email to say that the step...
September 8, 2022 at 8:50 am
Have you set the parameter “RegisterAllProvidersIP” to 0?
This will tell the cluster to only register the primary IP for the listener.
Either that or you must go and change your connection...
September 2, 2022 at 9:41 am
Viewing 15 posts - 496 through 510 (of 6,400 total)