I have a big table with some NULLs in it. What is the easiest possible way to select from the table with 0\'s instead of NULLs.
Or if there is no easy way to do that
Despite your reluctance to do so,
ISNULL(FieldName,0) AS FieldName
for each column is the correct way to handle this.