Ver Mensaje Individual
  #1 (permalink)  
Antiguo 24/04/2008, 13:56
alegna_13
 
Fecha de Ingreso: abril-2008
Ubicación: MEXICO D.F.
Mensajes: 22
Antigüedad: 16 años, 7 meses
Puntos: 0
Exclamación Problemas Con Parametros En El Stored Procedure!!!!!!!!!!!

hola espero que alguien me pueda ayudar con esto:

Resulta que estoy haciendo un stored en donde declaro lo siguiente:

@accion int,

y las acciones que hace dentro del stored son estas 2:
----------------------------------------------------------------------------
if @accion=1
Begin
delete from TempRServiciosProgramados
where UsuarioActivo=@UsuarioActivo
end
-----------------------------------------------------------------------------
if @accion=2
begin
Select A.Estatus
from AsignacionServicio as AB,Actividad A
where AB.IDUsuario=@IDUsuario
and AB.IDSoporteServicio=@NSoporte
and AB.IDSoporteServicio=A.IDSoporteServicio
and AB.IDAsignacionServicio=A.IDAsignacionServicio
and AB.IDServicio is null
order by A.Estatus
end
--------------------------------------------------------------------------------

EL PROBLEMA ES QUE SI ME GUARDA EL STORED BIEN PERO A LA HORA DE MANDARLO LLAMAR ME MARCA ESTE ERROR:

Servidor: mensaje 201, nivel 16, estado 4, procedimiento sp_RServiciosProgramados, línea 0
El procedimiento 'sp_RServiciosProgramados' precisa el parámetro '@accion', que no se ha especificado.

Porfavor si alguien sabe AYUDENMEEEEEEE!!!!