Viewing 15 posts - 391 through 405 (of 6,036 total)
<quote>From the Last Sentence of the Conclusion in the Article...
To maintain the best precision of the final result all intermediate calculations must be performed on numbers in floating point...
June 15, 2020 at 1:33 pm
Also, if you do the research you will also find the banker's round, also called round to even is used in signal processing as well.
There are numerous articles on...
June 15, 2020 at 9:05 am
Really... I suggest you go back and lookup what approximate numbers are. Simply do not use these when dealing with fiscal data. problem solved.
dont know what to say here.
Ok....
June 15, 2020 at 8:09 am
If you are going to use my name, please make sure you spell correctly.
sorry about that. Supposed to be copy-paste, something went wrong.
Corrected the article. Should be updated soon.
June 15, 2020 at 8:05 am
If it happens on weekend only, then it's most likely an index maintenance job.
or a massive update on a "main" table.
June 8, 2020 at 1:22 am
I've got a shorter version of that procedure. No update required.
USE [tempdb];
GO
--==== Remove existing objects
IF (OBJECT_ID('tempdb..#LOANS','u') IS NOT NULL)
BEGIN
DROP TABLE #LOANS;
END;
IF (OBJECT_ID('tempdb..#LOAN_CUSTOMERS','u') IS NOT NULL)
BEGIN
DROP TABLE #LOAN_CUSTOMERS;
END;
IF...
June 5, 2020 at 10:05 am
I prefer not to depend on DATEFIRST settings in my code.
There are several pretty simple techniques to make your code independent of it.
For example, using system variable @@DATEFIRST in your...
May 30, 2020 at 4:13 am
ExEvents is the future and the future is right now! WHOOP!
Yeah.
Still the future...
April 9, 2020 at 11:55 am
No need to pile on for the following but, because of things like this, security breeches in the world just don't surprise me anymore.
How do these people get...
April 9, 2020 at 11:48 am
OK, a couple things.
In here: https://www.brentozar.com/archive/2012/06/sql-server-poor-performance-checklist/, #3
Also, more here on file cache bloat - https://www.red-gate.com/simple-talk/sql/database-administration/six-scary-sql-surprises/
It's funny, the most obvious option of not using lousy Windows interface on...
January 12, 2020 at 5:17 am
/shrug I think that the fact that dictionaries are maintained transparently in the internal guts of column store indexes vs having to maintain and join a lookup table by hand...
December 27, 2019 at 7:52 am
Columnstore would work by tokenizing and limiting the repetition of values. A simple example is gender. Say we have 3 values (M, F, Other). If we had these...
December 27, 2019 at 2:25 am
Frederico, do you have any test case to support your speculations?
I (and I guess Jeff Moden too) would be particularly interested in a test script which demonstrates advantages of splitting...
December 26, 2019 at 10:43 pm
They can play tricks in the engine to use less space in a way you cannot with row storage. The index itself can be smaller than a rowstore index.
Steven,...
December 26, 2019 at 10:31 pm
Viewing 15 posts - 391 through 405 (of 6,036 total)