Viewing 15 posts - 1 through 15 (of 964 total)
Haven't used SSMA for Sybase but have for Oracle to SQL Server. I think it's worth a look into, especially given SQL Server's shared history with Sybase and they both...
January 9, 2022 at 10:09 am
Is this still happening? This happens quite a lot in my environment and if accounts/SPNs are setup correctly it is usually the result of browser policies not trusting the site...
January 9, 2022 at 9:49 am
Like others I never had the opportunity to attend the PASS Summit but I did attend a couple of SQL Saturdays and a few local PASS chapter events (the early...
December 28, 2020 at 4:01 pm
Yep, in addition to what was already mentioned in the article the SQL agent jobs related to a subscription will also need to be kept in sync between replicas. I...
November 17, 2020 at 7:17 pm
Haven't really used TNSPing but looking at descriptions of it the utility just seems to verify connectivity to the Oracle db on the IP and port that Oracle is listening...
August 28, 2020 at 7:21 am
You cannot do an in-place downgrade, you'll have to:
March 18, 2020 at 8:47 am
For question #1 another thing to keep in mind is that expiration date is a property that SQL Server does not honor. So even if the certificate is expired TDE...
March 18, 2020 at 8:24 am
Did you ever figure this out? Just curious because I did not see it, but what are your min/max server settings set to on the instance where the restore is...
March 18, 2020 at 8:18 am
How are the symmetric keys encrypted? Is it with a certificate?
March 18, 2020 at 8:09 am
Is this an SSRS instance or a PBIRS instance? Seems like this is a known issue with PBIRS that is probably not going to change.
March 18, 2020 at 8:04 am
Is this an upgrade or a migration? If it is a migration and cost is your limiting factor have you looked into installing SQL Server on Linux?
March 12, 2020 at 3:47 pm
I second Terminals if you can get it at your place of work. It works great.
March 12, 2020 at 3:43 pm
What happens if you try the install from a config file or command prompt switches, specifying Latin1_General_CI_AS as your collation?
March 12, 2020 at 3:36 pm
I'm not so sure about that. gMSAs can be used for things like scheduled tasks and IIS app pools. I think it more depends on if a particular app is...
March 5, 2020 at 8:36 pm
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...
March 5, 2020 at 5:24 pm
Viewing 15 posts - 1 through 15 (of 964 total)