Category Archives: Uncategorized

SQL Server 2008 CTP 4 is Out

And you can download it from here. It looks like there are a few new improvements in Reporting Services, and some new data types in SSIS (to complement the new data types in the relational engine), but nothing too major. … Continue reading

Posted in Uncategorized | Comments Off on SQL Server 2008 CTP 4 is Out

PerformancePoint Plan and Time

I’ve recently gotten started on a project using Microsoft’s new PerformancePoint Server (PPS) Plan software. I’m actually writing this on a flight back from Seattle after meeting with the PPS team. It was a valuable trip, and I learned a … Continue reading

Posted in Uncategorized | Comments Off on PerformancePoint Plan and Time

Iterative Development In BI

One of the staples in agile (and many other methodologies) development is the idea of iterative development. That’s the idea that, rather than doing an entire project in one big pass, it is broken up into smaller iterations. Each iteration ideally consists … Continue reading

Posted in Uncategorized | Comments Off on Iterative Development In BI

x64 Development and Visual Studio Assembly References

This is a Random Bits post – not on my normal BI related topics, but something I found useful and wanted to record somewhere in case it could help someone else. I recently upgraded to a new laptop running Vista 64-bit. … Continue reading

Posted in Uncategorized | Comments Off on x64 Development and Visual Studio Assembly References

Unit Testing In SSIS

I’d put in a request for additional support for unit testing in Integration Services on Connect (https://connect.microsoft.com/SQLServer/feedback/ViewFeedback.aspx?FeedbackID=276292). Unfortunately, it doesn’t look like it will make the cut for SQL Server 2008. I used automated unit testing extensively when I was more … Continue reading

Posted in Uncategorized | Comments Off on Unit Testing In SSIS

Processing a Flat File with Header and Detail Rows

It’s been tough finding time to write any content recently, but this was a scenario that came up recently both at work and on the forums, so I decided to write it up. It’s another variation on processing flat files … Continue reading

Posted in Uncategorized | Comments Off on Processing a Flat File with Header and Detail Rows

SQL Server 2008 – Using Merge From SSIS

In my last post, I talked about using the new MERGE statement in SQL Server 2008. It allows you to merge the data in a result set with a table, based on a join condition that you specify. This is … Continue reading

Posted in Uncategorized | Comments Off on SQL Server 2008 – Using Merge From SSIS

Using the Merge Statement in SQL Server 2008

It’s been a busy couple of weeks, but I’ve finally found some time to play around with the June CTP of SQL Server 2008. One of the items that caught my interest was the MERGE statement. This is a new … Continue reading

Posted in Uncategorized | Comments Off on Using the Merge Statement in SQL Server 2008

XML Transformations Part 2

Previously, I posted about using a script destination component to output an XML file. A post on the MSDN forums got me thinking about a slight tweak to the previous post that would result in a little more flexibility. The … Continue reading

Posted in Uncategorized | Comments Off on XML Transformations Part 2

Multi-File Outputs Part 2

In my previous post, I discussed how to use a script destination to output multiple flat files from a single source. In it, I mentioned that I would post an alternate approach, that didn’t require any scripting. So, here it … Continue reading

Posted in Uncategorized | Comments Off on Multi-File Outputs Part 2