Tagged Questions
The type-2-dimension tag has no wiki summary.
1
vote
1answer
162 views
t-sql test data warehouse type 2 changes
I need to look at a data warehouse and check that a type 2 change works correctly
I need to check that the vaild to date on a row is the same as the vaild from date on the next row.
This check is to ...
1
vote
1answer
229 views
“Dimension Lookup/Update”: type-2 SCD date_from value?
I'm trying to use Pentaho Data Integration / Pan to make a type-2 (SCD) table.
After I ran my data through a DimensionLookup step a first time, I got a type-2 table that looks like:
PKID version ...
1
vote
1answer
259 views
Tracking what the MERGE command and its OUTPUT did
I am modifying a Type 2 dimension using the following (long) SQL statement:
INSERT INTO AtlasDataWarehouseReports.District
(
Col01,
Col02,
Col03,
Col04,
Col05,
Col06,
...
1
vote
3answers
312 views
Type II dimension joins
I have the following table lookup table in OLTP
CREATE TABLE TransactionState
(
TransactionStateId INT IDENTITY (1, 1) NOT NULL,
TransactionStateName VarChar (100)
)
When this comes into my ...
0
votes
1answer
131 views
Find deleted records from a type-2 table, efficiently
I've got a database table of type-2 data, and I want to find records that were deleted since I last synced with it. It's got date_from and date_to columns, and the raw data has an ID column ...
0
votes
1answer
773 views
Looping through a two-dimensional array in a asp.net MVC View
My problem is as follows:
I'm making a ranking board for my team. I've managed to get the data out of the database and I put it into a two-dimensional array. I sent it as model data to the view.
Now ...