Quote Originally Posted by banswidthjunkie View Post
When I installed this the SQL patch refused to install, I had to turn all of the
Code:
VALUES(''
into
Code:
VALUES(NULL
because it (correctly) claimed that '' isnt an integer. I am using mysql 5.2 on windows.

Anyone else have this issue?
Good point to make to everyone here. MySQL 5+ doesn't like "blank" values in areas. It prefers "NULL". If anyone is using MySQL 5x and has this problem, you'll want to add the "NULL" in place of any "blank" spot in the SQL query.

In the next release of Google Analytics, I'll update the SQL query to include the "5x" compatible code.