Viewing 15 posts - 31 through 45 (of 1,418 total)
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
Our infrastructure team now has a CA server which is recognised as such by every machine on our network. All I have to do is ask for a certificate with...
June 20, 2024 at 9:01 pm
Here are my notes about forcing encryption on a local instance. I presume EC2 will be much the same.
1. Check the DoD is a valid CA on the EC2 instance...
June 20, 2024 at 8:39 pm
The customer does not want to spend money on code changes really.... so I have to keep everything basically the same but get rid of filestream and move to...
June 20, 2024 at 7:19 am
You shold
(though I'd recommend at least considering storing files w/ operating system and just storing paths in the database)
You may also want to look at object storage. eg...
June 19, 2024 at 7:19 pm
You shold
(though I'd recommend at least considering storing files w/ operating system and just storing paths in the database)
You may also want to look at object storage. eg...
June 19, 2024 at 7:18 pm
Your question is too open-ended.
You need to provide details of the process, versions of SQL Server etc.
June 18, 2024 at 3:23 pm
You can get a large file very quickly. In SSMS I would go Management | Extended Events | Sessions and right click on Track_Login and start it. Let it run...
June 13, 2024 at 3:47 pm
No, but it will tell you if the SQL Server SPNs are configured correctly. It also allows you to generate a script, to give to your domain admins, if they...
June 11, 2024 at 7:41 pm
It might be a Kerberos double hop problem where it falls back to, and manages to connect with, NT AUTHORITY\ANONYMOUS LOGON.
You could try checking the SPNs with the Kerberos...
June 11, 2024 at 7:29 pm
bridgeid [bigint] NOT NULL,
bridgeid is pk , and hardly four to 5 rows are there.
If there are only a few rows, why is bridgeid a bigint?
June 11, 2024 at 9:09 am
2) sequence i can not use , becasue the id is generated based on contatication of siteoffices id + running id, which is kept in bridge table's idpool.
You can...
June 11, 2024 at 9:02 am
Scripts that give index reccomendations are often a good starting point but you need to understand what is going on behind the scenes. I generally deal with OLTP dbs so...
June 6, 2024 at 4:10 pm
The following will reset the Total variables on the code boundary:
SELECT ISNULL(CODE, '') AS CODE, ISNULL(ID, 0) AS ID, TIP, AMOUNT, PRICE
,PRICE -...
June 1, 2024 at 8:36 am
Viewing 15 posts - 31 through 45 (of 1,418 total)