Other News

Community

What is the Future of DB2?

(Sean McCown) I often wonder who will ultimatly take the lion’s share of the database market. Oracle and Microsoft seem to have a strong lead while IBM and Sybase seem to be lagging behind. And for some reason Sybase seems to be almost not even on the same course as the others.

Community

FIX: The result set contains data for the whole relational source when you execute a query to retrieve a drillthrough result set in SQL Server 2000 Analysis Services

When you execute a query in SQL Server 2000 Analysis Services to retrieve a drillthrough result set, the result set contains data for the whole relational source. This problem occurs when the following conditions are true: • A cube role was defined for the relational source with the following set

Community

Fundamentals of Recursion in PHP

(Alejandro Gervasio) Iteration is a straightforward concept. Recursion is a bit more complicated; it can be defined as a regular function that calls itself. PHP supports recursive functions. This article, the first of three parts, will explain recursive functions and help you see why they are useful