Viewing 15 posts - 31 through 45 (of 562 total)
Snapshot isolation is not serializable. Although Oracle had (and has ?) a serializable isolation level, according to the ISO standard it was (is) not serializable. See :
Hello, I am from a different culture, so my view might not be applicable.
A Junior, might expect some guidance from a Senior within the workforce. If the Junior encounters a...
November 4, 2019 at 1:25 pm
If the information of the Geometry flat euclidean coordinate system is of a limited area this information can be converted fairly accurate. (The curvature of the earth does not play...
October 24, 2019 at 2:05 pm
In General:
Keep the original data and add the modifications in another column. (Sequence hold the sequence number, status on Hold means that the sequence should only processed after sequence numbers...
September 30, 2019 at 9:44 am
--
-- Money is exact to 4 decimal places.
--
Declare @geld money = 12.3456
SELECT @geld
SET @geld = @geld*0.1
SELECT @geld
The mony type is exact to 4 decimal places, it...
September 30, 2019 at 7:22 am
Additional:
Long time ago with did intensive research into one specific deadlock. On line and during conferences I was often told that this could not occur within SQL-server. But with did...
September 27, 2019 at 12:24 pm
I was thinking to separate the transactions adding BEGIN TRANSACTION and COMMIT TRANSACTION on both of the update statements. Will it help in avoiding the deadlock? Can anyone help me in suggesting most efficient...
September 27, 2019 at 9:59 am
--
-- Float compare.
-- Compare two numbers which are 'almost' equal.
--
DECLARE @A FLOAT = 1./3
DECLARE @B FLOAT =...
September 27, 2019 at 9:02 am
The hope was for a simple solution, without the FOR XML construction. Also I would like to avoid the CTE with a 'recursion' construction. Only 'a list of a few...
August 6, 2019 at 8:17 am
Hello jcelko212 32090 and others,
You want to be using some tool other than SQL for this.
Luckily it's me who determines what I want, it's perfectly ok that you want to...
August 5, 2019 at 9:26 pm
The usefull function :
DelimitedSplit8K
Has the advantage of numbered items above the STRING_SPLIT function. The DelimitedSplit8k gives the item number and the item value, so you have them ordered. Also it...
May 31, 2019 at 9:59 am
Using an auxilary date table can solve a huge number of date related questions.
Questions like:
What is the number of days between two days?
What is the number of working days between...
May 31, 2019 at 9:17 am
See the Thread :
https://www.sqlservercentral.com/forums/topic/sp_generate_inserts
Sp_generate_inserts can still be found. It does generate inserts scripts and has a lot of options. It can be called from a script or a stored...
May 31, 2019 at 8:54 am
When cleaning data, one of the first things to do is have a 'model' in your head how the data is working. A logical model which data is present and...
May 29, 2019 at 10:23 am
Viewing 15 posts - 31 through 45 (of 562 total)