Browse by Tags

How to find which version of Analysis Services you are running?
Published 5 November 7 11:54 PM | SSQA.net
Using SELECT @@VERSION statement you can get simply get information of SQL Server you are running , when connected to that SQL Server instance. What if to know same for the Analysis Services components, we don't have such an easy way to find out!...
How to get rowcount efficiently within a SSIS package?
Published 5 September 7 3:50 AM | SSQA.net
I would like to call this as how efficiently you can obtain counting rows in SSIS package. Usual thought would come is @@rowcount or COUNT_BIG functions, but this is not that efficient way to obtain the results. SSIS provides the snippet within its components...