Viewing 15 posts - 16 through 30 (of 1,416 total)
the SSN field which character length 9 is omitting leading zeros after the data load
What do you meant 'after the data load'?
How are you looking at the csv file?
I...
September 6, 2024 at 8:41 pm
September 5, 2024 at 7:48 am
Only negative of side by side upgrade is all application connections strings have to be modified
Get your network people to create a load balancer with a separate connection...
September 5, 2024 at 7:03 am
SELECT ColumnA
FROM YourTable
GROUP BY ColumnA
HAVING COUNT(DISTINCT ColumnB) > 1;
July 25, 2024 at 12:05 pm
The following give some details on using Let's Encrypt with SQL Server. My understanding is the SQL Server service account only requires READ access to the private key; not FULL...
July 22, 2024 at 9:39 am
I think the problem might be it is looking for the user, not the group, in DatabaseB.
I am not anywhere I can test this.
July 3, 2024 at 3:54 pm
It could be a bug. I doubt if many people use maintenance plans. You may want to look at Ola Hallengren's Solution.
July 3, 2024 at 3:38 pm
If they are using a SP, I would be inclined to remove MyDom\MyGroupName from DatabaseB and use Module signing. In outline;
USE DatabaseA;
GO
SET ANSI_NULLS, QUOTED_IDENTIFIER ON;
GO
CREATE OR ALTER...
July 3, 2024 at 3:26 pm
If I impersonate the service account with EXECUTE AS LOGIN, everything works fine.
This makes sense. EXECUTE AS LOGIN allows instance wide permissions.
If I impersonate the service account with...
July 3, 2024 at 3:08 pm
If you are dealing with large amounts of transactional data you may also want to look at table partitioning or partitioned views.
July 2, 2024 at 7:16 pm
(a self-signed certificate is insufficient)
You might be able to get a self-signed certificate to work by importing it into the client as well as the server.
June 29, 2024 at 2:08 pm
Have you tried connecting to the IP address instead of localhost or the server name?
June 27, 2024 at 11:09 am
The following is a .NET reporting solution:
.NET and JS Reporting Solutions | Design Custom Reports in Code | ActiveReports (mescius.com)
June 27, 2024 at 8:40 am
TDE seems to be a tick box to lower insurance premiums, meet regulatory compliance etc. Personally I would concentrate on encrypting sensitive columns, with something like Always Encrypted, before getting...
June 25, 2024 at 7:34 pm
Our servers force encryption so the following works for me.
USE [master];
GO
EXEC dbo.sp_addlinkedserver
@server = N'<FQDN of Linked Server>'
,@srvproduct=N'SQL Server';
GO
June 21, 2024 at 3:21 pm
Viewing 15 posts - 16 through 30 (of 1,416 total)