Michael Hotek
Which schema is dnn_Forum_AA_StatisticsSiteUpdate defined in
Which schema is dnn_Forum_Statistics_Site defined in
The behavior of SQL Server 2005 is the same as SQL Server 2000 with respect to resolution. If you do not specific a schema, it will first look for the object in the default schema of the user. If it does not find the object in the default schema of the user, it will fall through and look in the dbo schema. If it is not found in the dbo schema, it will fail.
It should be noted that not fully qualifying the name of an object in SQL Server is just as bad of a practice as not fully qualifying an object in any programming language. It leads to issues and the default resolution order is not guaranteed to be preserved from one version to another.