Ver Mensaje Individual
  #9 (permalink)  
Antiguo 20/02/2013, 13:34
ragde23fer
 
Fecha de Ingreso: octubre-2008
Mensajes: 268
Antigüedad: 16 años, 1 mes
Puntos: 3
Respuesta: Error Variables en Store Procedure

Mi estimado, algun libro que me puedas recomendar para estudiar de forma sencilla lo referente a Store Procedure, Functions, Triggers?

Cita:
Iniciado por Libras Ver Mensaje
Código SQL:
Ver original
  1. CREATE PROCEDURE [dbo].[Produccion_1]
  2. AS
  3. DECLARE @tmpType VARCHAR(15), @Trans_type VARCHAR(30)
  4.  
  5.  
  6. BEGIN
  7.  
  8. IF(@Trans_type = 'subscr_signup')
  9.     BEGIN
  10.     SET @tmpType = 'premium'
  11.     END
  12. ELSE
  13. BEGIN
  14. IF (@Trans_type = 'subscr_cancel')
  15.     BEGIN
  16.     SET @tmpType = 'basic'
  17.     END
  18. END
  19.  
  20. INSERT INTO ENSABLAJE_BASICO
  21. SELECT * FROM PRODUCCION WHERE TIPO_MAQ = @tmpType
  22. END

P.D: El plz plz plz esta de mas ¬¬