First of all I want you to know that I'm not an engineer, I'm just a web designer working within the constraints of my job. We have a bunch of applications made in ASP classic running in a Windows server 2003 / SQL 2000 environment. The company buy a new server with Windows server 2008R2 and SQL 2012 and they give me the task of migrate the applications to the new server. I read and read a lot of manuals and docs about this for weeks and I fulfilled my task except for one of the apps. The app produces and creates and interface to answer surveys. It is quite strange because the login page works: you put your user name and pass and you enter to the admin area and the options stored in the database shows without problem but when I try to enter to a survey to answer it the browser gives me this:
Microsoft OLE DB Provider for ODBC Drivers error '80040e14'
[Microsoft][ODBC SQL Server Driver][SQL Server]Incorrect syntax near '@errno'.
/SEL/Encuesta/preguntatodo_nuevo.asp, línea 108
Well here is what i found in /SEL/Encuesta/preguntatodo_nuevo.asp, línea 108:
sSQL = "Update UsuariosClima set NumCuestContestados = NumCuestContestados+1 Where IDUsuario = " & IDUsuario
conn.Execute(sSQL)
I know it's difficult to help me with just this information, so if you need more data please tell me. I don't want you to do my work, if some one can just lead me to the right direction I'll continue by myself. Thank you very very much.
Please remember: I am not an egineer, explain it to me like I was a child.
UPDATE - Triggers in UsuariosClima:
tD_Usuarios:
ALTER trigger tD_Usuarios on dbo.UsuariosClima for DELETE as
begin
declare @errno int,
@errmsg varchar(255)
if exists (
select * from deleted,AccesoCuestionarioClima
where
AccesoCuestionarioClima.IDUsuario = deleted.IDUsuario
)
begin
select @errno = 30001,
@errmsg = 'Cannot DELETE "Usuarios" because "AccesoCuestionario" exists.'
goto error
end
if exists (
select * from deleted,AccesoClienteClima
where
AccesoClienteClima.IDUsuario = deleted.IDUsuario
)
begin
select @errno = 30001,
@errmsg = 'Cannot DELETE "Usuarios" because "AccesoCliente" exists.'
goto error
end
if exists (
select * from deleted,PertenenciaClima
where
PertenenciaClima.IDUsuario = deleted.IDUsuario
)
begin
select @errno = 30001,
@errmsg = 'Cannot DELETE "Usuarios" because "Pertenencia" exists.'
goto error
end
update RespuestaCuestionariosClima
set
RespuestaCuestionariosClima.IDUsuario = NULL
from RespuestaCuestionariosClima,deleted
where
RespuestaCuestionariosClima.IDUsuario = deleted.IDUsuario
return
error:
raiserror @errno @errmsg
rollback transaction
end
tU_Usuarios:
ALTER trigger tU_Usuarios on dbo.UsuariosClima for UPDATE as
begin
declare @numrows int,
@nullcnt int,
@validcnt int,
@insIDUsuario int,
@errno int,
@errmsg varchar(255)
select @numrows = @@rowcount
if
update(IDUsuario)
begin
if exists (
select * from deleted,AccesoCuestionarioClima
where
AccesoCuestionarioClima.IDUsuario = deleted.IDUsuario
)
begin
select @errno = 30005,
@errmsg = 'Cannot UPDATE "UsuariosClima" because "AccesoCuestionarioClima" exists.'
goto error
end
end
if
update(IDUsuario)
begin
if exists (
select * from deleted,AccesoClienteClima
where
AccesoClienteClima.IDUsuario = deleted.IDUsuario
)
begin
select @errno = 30005,
@errmsg = 'Cannot UPDATE "UsuariosClima" because "AccesoClienteClima" exists.'
goto error
end
end
if
update(IDUsuario)
begin
if exists (
select * from deleted,PertenenciaClima
where
PertenenciaClima.IDUsuario = deleted.IDUsuario
)
begin
select @errno = 30005,
@errmsg = 'Cannot UPDATE "UsuariosClima" because "PertenenciaClima" exists.'
goto error
end
end
if
update(IDUsuario)
begin
update RespuestaCuestionariosClima
set
RespuestaCuestionariosClima.IDUsuario = NULL
from RespuestaCuestionariosClima,deleted
where
RespuestaCuestionariosClima.IDUsuario = deleted.IDUsuario
end
return
error:
raiserror @errno @errmsg
rollback transaction
end