Viewing 11 posts - 1 through 11 (of 11 total)
as you state your table is partitioned maybe you can switch out each partition onto a staging table, convert the table (repeat for all partitions, one table per partition)...
January 5, 2022 at 7:48 pm
So you're not using ROW compression?
Because that would shrink the decimal values to the actual size needed anyway.
I don't think you could use Row Compression on a ColumnStore...
It's already...
January 5, 2022 at 7:46 pm
Thanks for the answer,
We already have views on top of our tables, so it would be easy to do.
But that would serve no purpose.
The main goal would have been to...
January 5, 2022 at 1:10 pm
Thanks for the suggestions...
I don't really need to implement a new mechanic here though.
I already have a mechanic that reruns what needs to be.
But I have multi thread packages that...
June 17, 2019 at 2:39 pm
I need my child packages to run in parallel (multi-threading)...
They're loading lots of data and I can't wait for one to finish before starting the other.
I've tried that and the...
June 14, 2019 at 3:07 pm
Here is some SQL that illustrates my problem :
DECLARE @FactAlpha TABLE (
FactAlphaID INT NOT NULL IDENTITY(1, 1) PRIMARY KEY CLUSTERED,
DimTimeID INT NOT NULL,
DimInstrumentID...
September 25, 2017 at 10:26 am
Thanks very much Alan,
This is very useful and explains a lot.
I now have eveything I need to convince the DBAs.
Of course we will also make more tests in that direction.
Thanks...
August 4, 2016 at 9:14 am
That said, I would consider adding a surrogate key (e.g. an identity column) and use the date and surrogate key as your clustered index keys. (Date first, surrogate key second)....
July 28, 2016 at 7:57 am
Thanks for the fast answers !!
The temp table would work but I want to prevent DDL as much as I can.
The ROW_NUMBER() OVER (order by (SELECT NULL)) is awesome !!
Thanks...
August 8, 2014 at 11:22 am
Jeff Moden (1/6/2014)
Vincent_Poirier (1/6/2014)
Jeff Moden (1/6/2014)
January 9, 2014 at 2:50 pm
Jeff Moden (1/6/2014)
January 6, 2014 at 1:54 pm
Viewing 11 posts - 1 through 11 (of 11 total)