Viewing 15 posts - 16 through 30 (of 966 total)
Run:
EXEC sp_msforeachdb
'USE [?];
SELECT
TABLE_SCHEMA,
TABLE_NAME,
DB_NAME() AS "DATABASE_NAME"
FROM INFORMATION_SCHEMA.TABLES
WHERE TABLE_TYPE = 'Base Table';';
against...
Joie Andrew
"Since 1982"
March 5, 2020 at 5:24 pm
We use gMSAs quite a bit in my environment. While they are good for generic SQL Server stuff, I wish the MS Docs documentation was a little more clear on...
Joie Andrew
"Since 1982"
March 5, 2020 at 5:06 pm
Jrb2971, my testing has shown that they cannot be used as data sources, neither defined in the report or shared. I also could not get them to work as SQL...
Joie Andrew
"Since 1982"
June 21, 2019 at 6:44 pm
You know you can provide a comma separated list to the -computername parameter, right?
Type the NETBIOS name, IP address, or fully qualified domain name of one or more computers in...
Joie Andrew
"Since 1982"
June 16, 2019 at 8:16 pm
Is the application hosted on machines on different subnets than the AG nodes? I ask because I had an issue in our environment where app servers would lose communication for...
Joie Andrew
"Since 1982"
May 16, 2019 at 8:36 pm
How many rows in your tables? That cross join is most likely killing you, as it is multiplying every row in the first table with every row in the second...
Joie Andrew
"Since 1982"
May 12, 2019 at 8:46 pm
Do you have any security software doing on access scanning? If SQL db files are not excluded I could see this type of issue popping up, especially after a system...
Joie Andrew
"Since 1982"
May 12, 2019 at 8:21 pm
Joie Andrew
"Since 1982"
March 3, 2019 at 4:25 am
Why would you not want Kerberos connections? If I were you I would suggest either setting SQL on the instances to use either virtual accounts or if you want a...
Joie Andrew
"Since 1982"
March 2, 2019 at 3:39 am
Looks like you can set how SQL listens on TCP/IP using mssql-conf.
Joie Andrew
"Since 1982"
February 19, 2019 at 3:34 pm
Did you ever figure this out? Looks like the errors are coming from the loopback address. Curious, did shared memory get turned off as a connection protocol?
Joie Andrew
"Since 1982"
February 19, 2019 at 3:27 pm
Short of removing the dll from servers I think your options might be limited. You could try e-mailing DISA STIG support. If you have to have the dll in place...
Joie Andrew
"Since 1982"
October 23, 2018 at 1:18 pm
Glad to see your problem is fixed.
I hate that dll.
FYI if it is on other servers you might get similar symptoms with other actions, like setting/resetting...
Joie Andrew
"Since 1982"
October 23, 2018 at 12:22 pm
Would this server happen to be in a government environment? I have had the same experience due to a bug in the EnPasFltV2x64.dll/EnPasFltV2.dll password policy libraries. Thing is if this...
Joie Andrew
"Since 1982"
October 23, 2018 at 9:45 am
The master key you are seeing that is showing as being encrypted by the server key, is that on the BanditDEMO database? If so it would appear that key is...
Joie Andrew
"Since 1982"
October 22, 2018 at 7:48 pm
Viewing 15 posts - 16 through 30 (of 966 total)