Ver Mensaje Individual
  #30 (permalink)  
Antiguo 18/12/2009, 15:57
Avatar de iislas
iislas
Colaborador
 
Fecha de Ingreso: julio-2007
Ubicación: Mexico, D.F.
Mensajes: 6.482
Antigüedad: 17 años, 5 meses
Puntos: 180
Respuesta: cantidad de registros de un cursor??

/*
DECLARE @CampoIndice INT
DECLARE @Cliente INT
DECLARE @Saldo INT

SELECT * INTO #TEMPORAL FROM CLIENTE WHERE SALDO > 1000
WHILE EXISTS (SELECT IDReg FROM #TEMPORAL)
BEGIN
SELECT TOP 1 @CampoIndice = IDReg, @Cliente = ClienteID, @Saldo = Saldo FROM #TEMPORAL
EXEC usp_NotificaSaldo @Cliente, @Saldo

DELETE #TEMPORAL WHERE IDReg = @CampoIndice
CONTINUE
END
*/