08/01/2007, 14:54
|
| Colaborador | | Fecha de Ingreso: diciembre-2004
Mensajes: 1.802
Antigüedad: 20 años, 1 mes Puntos: 38 | |
Re: Mi store Procedure no funciona Que tal asi??
Código:
CREATE PROC dbo.sp_FSopTec_generar_codsol
@codsol varchar(10)OUTPUT
AS
Declare @maxsol as int
Select @MaxSol = 0
SELECT @maxsol=MAX(CAST(SUBSTRING(fst_cod,2,4) AS integer))
FROM FSopTec (nolock)
Select @MaxSol = isnull(@Maxsol, 0) + 1
Select @codsol = right('0000' + convert(varchar(10),@maxsol) + '-', 5) + convert(varchar(20),year(getdate()),100)
Select @codsol = isnull(@codsol, '')
RETURN
GO
__________________ La sencillez y naturalidad son el supremo y último fin de la cultura...
--
MCTS : SQL Server 2008, .NET Framework 3.5, ASP.NET Applications. |