Author: SSWUG Research

Community

Having Fun with Code Snippets

(Deborah Kurata) There are some pieces of code that you write over and over again. Some of these pieces make sense as standard components or standard methods, such as logging or validation. Other pieces are more unique and cannot easily be made into standard methods, like Property procedures, For lo

Community

Get off to a fast start with DB2 Viper

(C. M. Saracco) You’ve probably heard the buzz about DB2’s new Viper release — IBM’s first database management system to support both tabular (SQL-based) and hierarchical (XML-based) data structures. If you’re curious about DB2’s new “native” support for XML and want to get off to a fast start, you

Community

XML Schema 1.1 Part 2: Datatypes

XML Schema: Datatypes is part 2 of the specification of the XML Schema language. It defines facilities for defining datatypes to be used in XML Schemas as well as other XML specifications. The datatype language, which is itself represented in XML, provides a superset of the capabilities found in XML

Community

Data Joins

When studying relationships, we reviewed techniques of making data from one table available to the records of another table. This demonstrated to reduce data duplication and mistakes. Another issue that involves the combination of tables consists of creating records from more than one table and maki

Community

Try/Catch Block in SQL Server 2005

(Gregory A. Larsen) Server 2005 now supports a more programmable error trapping convention in T-SQL code. This error handling is known as the TRY/CATCH block. The TRY/CATCH block allows T-SQL to handling errors like other programming languages, such as Microsoft Visual C# and C++. In addition to the