Viewing 15 posts - 151 through 165 (of 11,677 total)
Other noteworthy remarks:
when mixing the money datatype with other datatypes, precision issues can occur.
However, using the money data type can lead to faster SSAS processing performance.
September 19, 2016 at 4:23 am
I'm quite sure that SQL Server is much more secure than MS Access.
If your data is really sensitive, I'd avoid Access.
September 19, 2016 at 3:34 am
How did you move the 3 million records?
Check out this white paper:
The Data Loading Performance Guide
If you're worried about transaction logs, you might want to switch to bulk-logged recovery mode...
September 19, 2016 at 2:18 am
The error message is quite clear:
exceeded simultaneous SESSIONS_PER_USER limit
If you're the only user, try setting the RetainSameConnection property on the connection manager to true.
September 19, 2016 at 2:15 am
Btw, if you would like to use the REPLACE function, it should be something like this:
REPLACE([Description],[Description],City + ' - ' + [Zip-Code])
September 19, 2016 at 2:14 am
Does this work?
UPDATE c
SET [Description] = City + ' - ' + [Zip-Code]
FROM Client c
JOIN cityTable t ON c.[Description] = t.[Zip-Code]
September 19, 2016 at 2:13 am
What about the Attunity Teradata connector?
https://www.microsoft.com/en-us/download/details.aspx?id=44582
(you need Enterprise Edition though)
September 19, 2016 at 2:08 am
Great question. Never even realized EOMONTH had an optional second parameter. Good to know.
September 19, 2016 at 2:05 am
Nice question. Quite tricky with computed columns, since they have restrictions as well.
September 19, 2016 at 1:58 am
RonKyle (9/13/2016)
What's the benefit of using integers in that context versus just using dates? For example, is there performance gains? Isn't date datatypes less bytes than int for one good...
September 13, 2016 at 7:51 am
As a side note: I found the following book (aside from the Kimball books) an immensily good reference:
Star Schema - The Complete Reference
I did a review a while back:
September 13, 2016 at 6:52 am
Certainly agree on not updating large, fast changing transactional fact tables.
Regarding the OP's question: I think the grain of the fact table is one order (which can contain many items),...
September 13, 2016 at 4:10 am
Viewing 15 posts - 151 through 165 (of 11,677 total)