Viewing 15 posts - 241 through 255 (of 325 total)
I try to be open about options, if there is a better solution to a problem than "just put it in SQL Server" then it is worth exploring. You do...
August 5, 2018 at 3:09 am
August 5, 2018 at 1:40 am
I think he's planning on using hashing as a way of check-summing data, not as some sort of budget encryption, which is an entirely apt use. You're right about MD5...
August 4, 2018 at 2:21 pm
August 4, 2018 at 12:49 pm
Declare @log varchar(max) ='{ "Name": "David", "Gender": "Male", "Address": "125 Gambler Lane" }August 4, 2018 at 8:53 am
Do you have the max memory setting configured in SQL Server and leaving a reasonable portion of the RAM for processes other than SQL Server? One possibility is that your...
August 4, 2018 at 1:55 am
August 3, 2018 at 10:30 pm
I'm currently in the middle of a migration for 2005 to 2017 and the difference in what can be achieved in a shorter timescale is night and day. Not having...
August 3, 2018 at 4:57 am
If object_id('tempdb..#DLT') IS NOT NULL DROP TABLE #DLT;August 2, 2018 at 8:23 pm
Drop Table If Exists #TempAugust 2, 2018 at 7:42 pm
Drop Table If Exists #TempAugust 2, 2018 at 7:32 pm
In #1 you are hashing the NVarChar string "<foo name="hello"/>"
In #2 you are hashing the NVarChar string "hello"
In #3 you are hashing the VarChar string "hello"
These...
August 2, 2018 at 12:49 pm
I'd do it with bitwise arithmetic:
August 2, 2018 at 12:16 pm
Make sure you're in the right database first, by putting:
Use MyDatabaseName
Go
At the top of the file (replacing MyDatabaseName with the name of...
August 2, 2018 at 11:56 am
"Unused" space will be reused again as new data is added and the datafile won't grow until that space has been used up, so unless disk space becomes an enormous...
August 2, 2018 at 11:50 am
Viewing 15 posts - 241 through 255 (of 325 total)