Viewing 15 posts - 151 through 165 (of 198 total)
How did you get your result?
I used the following query and get other numbers:WITH myBeers (<see CTE in the question> )
SELECT ISNULL(bt.OwedTo, bb.OwedBy) who, SUM(bt.Beer)...
God is real, unless declared integer.
September 18, 2017 at 3:45 am
To be honest, I did not even understand the question and felt like a newbie...
God is real, unless declared integer.
September 12, 2017 at 6:34 am
I'd prefer to useFIRST_VALUE(pts) OVER (Partition by Team ORDER BY Year ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW)
since this performs better (does not spill to...
God is real, unless declared integer.
July 27, 2017 at 1:58 am
I guess they needed the 29 days to remove those silly clause, that everybody needs a vacuum cleaner in the basement, which was added by me in my youth while...
God is real, unless declared integer.
July 19, 2017 at 5:55 am
I doubt, that this will be fast. It does not use an explicit cursor, but practically does the same (or something worser) with its while loop.
If someone really...
God is real, unless declared integer.
June 28, 2017 at 2:58 am
Wouldn't the minimal privileges be the NTFS permissions to delete the ERRORLOG.? files? Sure - you can't replace / modify the current ERRORLOG file (SQL Server holds its tumbs on...
God is real, unless declared integer.
May 22, 2017 at 6:35 am
I wonder, that the only connect item I found for a column based MIN/MAX (similar to Oracle's LEAST()/GREATEST()) got only 4 quotes since last year (https://connect.microsoft.com/SQLServer/Feedback/Details/3085573).
Maybe someone...
God is real, unless declared integer.
May 22, 2017 at 6:21 am
Why do you not use the build in ROUND function?
It takes three parameters:
- the value
- the rounding length (use negative numbers to round to a power...
God is real, unless declared integer.
May 16, 2017 at 2:56 am
my apology for the confusion - I tested it only on SQL 2014 (since I was to lazy to set up a new 2016 server just for testing and did...
God is real, unless declared integer.
May 8, 2017 at 5:55 am
On which version did you run your test? On SQL 2014 SP2 Dev. the query will only return one row (and I stumbled over a few scripts which failed, since...
God is real, unless declared integer.
May 8, 2017 at 2:31 am
Another question.
If I understood it correct, it has to read all segments / pages for the city column, when I execute a SELECT COUNT(*) from customers...
God is real, unless declared integer.
May 8, 2017 at 12:34 am
Thank you very much for the quick answer. I always wondered, how exactly SQL Server does this stuff and your article (plus the answer) makes it a lot more clear...
God is real, unless declared integer.
April 24, 2017 at 10:02 am
any idea, if (and if yes then how) small datatypes as TINYINT (= 1 byte) could be compressed in columnstored indexes?
Its clear, that I will save space...
God is real, unless declared integer.
April 24, 2017 at 8:21 am
You should use an INLINE TABLE VALUE fuction instead of a scalar function - this would save a lot of time when you import many datasets
CREATE...
God is real, unless declared integer.
April 13, 2017 at 4:10 am
Short remark: a FILLFACTOR = 90 on a Identity Column (= auto increment) in a read-only-table (at least no space-growing varchars) makes no sense and wastes 10 % space. Even...
God is real, unless declared integer.
April 5, 2017 at 1:48 am
Viewing 15 posts - 151 through 165 (of 198 total)