Viewing 15 posts - 46 through 60 (of 431 total)
What Scott suggested is the way I would do it.
"Intelligent" numeric keys derived directly from other data (without any lookups) can only work in very limited circumstances I think -...
November 25, 2013 at 2:46 pm
adams.squared (11/25/2013)
The question is:Is there a way to get a single value for the four columns, aside from concatenation and not using identity?
Sorry but if you care about what the...
November 25, 2013 at 12:31 pm
Use ROW_NUMBER() for surrogate key assignment and order on the natural key. As long as you receive the same data set each time the surrogates will be the same.
Better still,...
November 25, 2013 at 10:16 am
seshu67 (8/7/2012)
Can a table have two primary keys
In principle, yes. In practice it depends on what special functions or properties you want to assign to a primary key.
In the relational...
August 12, 2013 at 6:39 am
Golfer22 (8/11/2013)
"A relation R is in 3NF if and only if (i) it is in 2NF and (ii) whenever X is a set of attributes...
August 12, 2013 at 2:30 am
Golfer22 (8/10/2013)
"In order to be in Second Normal Form, a relation must first fulfill the requirements to be in First Normal Form. Additionally, each nonkey attribute in...
August 11, 2013 at 7:22 am
Golfer22 (6/8/2013)
If a non-key attribute is dependent on one of 1,000 columns (when the primary key is composed of 1,000 columns), the table is in 1NF or...
June 9, 2013 at 2:15 pm
rka,
Your strategist is quite right that a dimensional model is not a requirement or a complete solution for a data warehouse. Dimensional models are designed very specifically for data marts...
April 17, 2013 at 5:24 am
In logical terms there is absolutely no difference. A key (i.e. a candidate key) is a set of attributes which is required to be minimally unique and does not permit...
February 1, 2013 at 3:27 am
Seems like a very unwieldy approach. Why can't you just store the starting and ending dates for each price point?
October 9, 2012 at 2:30 pm
mirde (8/22/2012)
August 23, 2012 at 2:21 pm
Ankur Bajaj (8/22/2012)
Cheers!
SELECT 'CREATE VIEW ' + TABLE_SCHEMA + '.vw_' + TABLE_NAME + '...
August 22, 2012 at 2:11 pm
david.hao (8/7/2012)
I agree with the power brought by SSAS but just wondering the low marketshare by SSAS.
Low market share? That's a difficult thing to quantify in a useful way. Gartner...
August 7, 2012 at 11:58 pm
akirajt (7/7/2012)
July 27, 2012 at 11:21 pm
htiteuf (5/23/2012)
Hope it's the right forum!
With PDW AU3, I know stored procedures are supported but some functions in the SMP SQL Server product have not been implemented in SQL Server...
May 27, 2012 at 12:54 pm
Viewing 15 posts - 46 through 60 (of 431 total)