Other News

Community

Keeping Pace with Changes in DB2

(Troy Coleman) If you’ve been in IT for any length of time you know that change is constant. You must regularly make improvements to the systems you develop and support. On top of that, the tools you use are also changing. As a DB2 for z/OS specialist, it’s very important for me to stay up on the la

Community

DB2_MEMORY_PROTECT and DB2 9.5

(Martin Hubel) In DB2 9.5, the database engine has switched from a process-based model to a threaded model. This means that the entire database engine is under one address space (any piece of code can access any global variable). This, naturally, has both pros and cons. One advantage is that threads

Community

DB2 and System p virtualization

(Punit Shah, Basker Shanmugam and Sunil Kamath) Learn best practices for deploying IBM DB2 9 with the IBM System p virtualization technologies. System p virtualization technologies offer a richer set of platform-deployment features. These features range from simple resource isolation to an array of

Community

Caching in ASP.NET 2.0

(Raj Beniwal) Caching is a technique of storing a copy of data in memory. For example, you may cache the a page or the results of a query. The advantage of caching is to build better performance into your application. Accessing cached data in memory is much faster than re-building a page or re-query

Community

An Experiment in Optimization

(Jim Mischel) When I needed a method to reverse a string, the first thing I did was check the .NET String class to see if it has such a thing. I was surprised to learn that there is no Reverse method for strings. At least, up until .NET 3.5, there wasn’t. In .NET 3.5, Reverse is an extension method-