Viewing 3 posts - 1 through 4 (of 4 total)
...Hey, I knew a Michael Weiss in college...
Well, I created my view from my existing data where the unique ID is included in the view and since each final DID...
September 13, 2002 at 11:43 am
sorry about the dupe..
I have done something similar, but instead of using separate table information, I create a view of the data. For instance:
create view dim_numbers
select
left(variable,3),
substring(variable,4,3),
right(variable,4),
variable,
from datasource
NPA->NXX->DID
You can use...
September 12, 2002 at 4:12 pm
quote:
I am planning a data mart that will have three dimensions I want to combine into a single dimension (ideally without using...
September 12, 2002 at 3:53 pm
Viewing 3 posts - 1 through 4 (of 4 total)