Viewing 15 posts - 46 through 60 (of 700 total)
1 – How can I not use self-sign cert in the TDE encryption. If I am following the below steps/ commands, then I will be using self-sign cert with my...
February 23, 2022 at 9:49 pm
SQL1 and SQL2 are presently identities in your domain. They have machine accounts and DNS entries. Creating a Listener with the same network name as another server on the network...
February 23, 2022 at 8:00 pm
First, you're using full paths to the nodes, even though you've shredded them with the .nodes method:
SELECT xed.event_data.value('(/RingBufferTarget/event/data/value)[1]', 'nvarchar(500)') AS value1,
xed.event_data.value('(/RingBufferTarget/event/data/value)[4]', 'nvarchar(500)') AS value4
FROM #capture_tls_data
CROSS APPLY targetdata.nodes('//RingBufferTarget/event/data') AS xed (event_data);
The...
February 17, 2022 at 11:27 pm
By default, what you're doing is not possible, because the way SQL Server performs encryption work changed in SQL Server 2017. You can work around this with a trace flag....
January 31, 2022 at 4:21 am
"My clients are web apps, and native mobile apps, goes via an APP server that talk to the DB"
You seem to understand it. The key point is that the value...
January 27, 2022 at 9:30 pm
The difference between Developer Edition and Enterprise Edition is basically limited to licensing and what words display with SELECT @@VERSION. Anything you can do with Developer Edition will work in...
January 27, 2022 at 7:02 pm
'19 Nov 2022' is converts to the datetime value of '19 Nov 2022 00:00:00.000', which is earlier (less than) '19 Nov 2022 15:19:12.000'.
Try:
WHERE [...]
AND CONVERT(date, TransferredDate) BETWEEN...
January 27, 2022 at 5:54 pm
This is known as a "Data Islands" problem - you're looking for groups of records in an ordered set.
You have a identity value on the table, so this gets easy....
January 19, 2022 at 4:45 pm
Certificates used for TDE and Certificates used to encrypt a database backup will be in the master database. They are not included in the user database backup.
Certificates that have been...
January 11, 2022 at 8:20 pm
Is there any way besides the Configuration Manager GUI to find out what SSL certificate is bound to the MSSQLSERVER network protocols?
Check the registry for what is configured. Fire up...
December 17, 2021 at 7:16 pm
An SSL certificate is for communication between two different endpoints. The worst that could happen is the Primary won't connect to the Secondary, and things will look like they do...
December 16, 2021 at 10:31 pm
A backup stripe set is a database backup taken to multiple backup files. The above 200GB block blob max size is your guide - use enough files to keep each...
December 7, 2021 at 10:24 pm
Go to where the backups were created and look to see if you're grabbing the right certificate:
SELECT * FROM master.sys.certificates WHERE thumbprint = 0x477BB40D3618B2E162F70B62693D11F6FA3A360F
November 29, 2021 at 7:11 pm
When you split a partition with data in it, the engine must scan the partition's rows to determine which rows will go into the new partition. Even in cases such...
November 16, 2021 at 4:08 am
The gold nugget in that error message is the \KB3045321\ in the path. 'KB' and a bunch of numbers means 'Knowledge Base article ######'.
November 11, 2021 at 8:22 am
Viewing 15 posts - 46 through 60 (of 700 total)