Author: SSWUG Research

Community

C++ Introspection

(Diego Dagum) C++ programmers, unlike Java and .NET developers, don’t get the benefit of runtime introspection — the ability to learn about a class’s features. However, C++ offers some limited introspection at both compile time and runtime that are worth examining.

Community

Export to XML Using SSIS

(Divya Agrawal Shah) Recently I was given a task to export data in XML format using SSIS. I initially thought it should be straight forward – just dump it in a flat file and give it a name xml type, however SSIS has no XML destination just an XML source. I had no luck dumping the XML in flat file. […]