Performance tips for SSAS | James Serra's Blog: "Over the past few years I have developed a list of ways to improve performance in SSAS and in two of the tools that use it: ProClarity and PerformancePoint. Below are those performance tips along with other important items to be aware of:"
The one that really helped us was to move parameters from the where clause to a subquery. This can improve performance drastically.
'via Blog this'
Thursday, November 29, 2012
Ranting about Cumulative Updates
Don't get me wrong. Fix it fast and fix it often is a good motto to have when addressing software bugs. However, trying to decode what was changed between versions isn't so easy. Especially with products like Microsoft Sharepoint.
Sharepoint has had umpteen patches since Service Pack 1. Each one is outlined in separate KB articles by install file. This works out to about 100 tabs open in the browser to figure out what is in each cumulative update.
Is there not a database that has this stuff?
On another note, SQL 2012 SP1 is released, which doesn't include the fixes contained in CU3 & CU4, so download SQL 2012 SP1 and SQL 2012 SP1 CU1.
Sharepoint has had umpteen patches since Service Pack 1. Each one is outlined in separate KB articles by install file. This works out to about 100 tabs open in the browser to figure out what is in each cumulative update.
Is there not a database that has this stuff?
On another note, SQL 2012 SP1 is released, which doesn't include the fixes contained in CU3 & CU4, so download SQL 2012 SP1 and SQL 2012 SP1 CU1.
Monday, November 12, 2012
Big Data Vendor Landscape
A very comprehensive post on the current (well, June anyway) picture of Big Data Vendors along with plenty of contact information.
http://www.rosebt.com/1/post/2012/06/big-data-vendor-landscape.html
Vertica is really eating everyone else's pie. They partner with many of the traditional front-end BI app developers, including Cognos, Microstrategy and Tableau.
http://www.vertica.com/partners/business-intelligence/
http://www.rosebt.com/1/post/2012/06/big-data-vendor-landscape.html
Vertica is really eating everyone else's pie. They partner with many of the traditional front-end BI app developers, including Cognos, Microstrategy and Tableau.
http://www.vertica.com/partners/business-intelligence/
Friday, November 02, 2012
sql server 2008 - Table Driven WHERE Clause Using LIKE - Stack Overflow
sql server 2008 - Table Driven WHERE Clause Using LIKE - Stack Overflow:
A new one for me. Joining on another table that contains LIKE clauses.
'via Blog this'
A new one for me. Joining on another table that contains LIKE clauses.
SELECT * FROM dbo
JOIN PatterTable ON dbo.Field LIKE PatterTable.pattern
'via Blog this'
Subscribe to:
Posts (Atom)