When you don't have db_owner rights, all SysObjects tables need the dbo owner prefix instead of {databaseOwner}. There is an error in one of the scripts that was preventing the "GetSurvey" stored procedure from being updated to the new version.
I am aware of the issue, which will be fixed in version 04.00.30
1) Log in as Host
2) Click on the Host tab them SQL
3) Paste the following script in the box and click the " Run as Script" box and click the Execute link
if exists (select * from dbo.sysobjects where id = object_id(N'{databaseOwner}[{objectQualifier}GetSurvey]') and OBJECTPROPERTY(id, N'IsProcedure') = 1)
drop procedure {databaseOwner}{objectQualifier}GetSurvey
GO
create procedure {databaseOwner}{objectQualifier}GetSurvey
@SurveyID int,
@ModuleID int
as
select SurveyID,
ModuleID,
Question,
ViewOrder,
OptionType,
CreatedByUser,
CreatedDate,
'Votes' = ( select sum(Votes) from {objectQualifier}SurveyOptions where {objectQualifier}SurveyOptions.SurveyID = {objectQualifier}Surveys.SurveyID )
from {objectQualifier}Surveys
where SurveyID = @SurveyID
and ModuleID = @ModuleID