The stored procedure was not found 'execute sp_liquidacion_nomina @Periodo, @IdEntidadNomina, @IdVIgencia
Text query:
execute sp_liquidacion_nomina @Periodo, @IdEntidadNomina, @IdVIgencia
Store procedure Stimulsoft
-
- Posts: 2
- Joined: Sat Feb 18, 2017 4:50 pm
Re: Store procedure Stimulsoft
hello
try with "execute sp_liquidacion_nomina (@Periodo, @IdEntidadNomina, @IdVIgencia)"
try with "execute sp_liquidacion_nomina (@Periodo, @IdEntidadNomina, @IdVIgencia)"
Re: Store procedure Stimulsoft
Hello,
Please clarify which product, component and which database are you use?
Thank you.
Please clarify which product, component and which database are you use?
Thank you.
-
- Posts: 2
- Joined: Sat Feb 18, 2017 4:50 pm
Re: Store procedure Stimulsoft
In the management studio I execute it soAleksey wrote:Hello,
Please clarify which product, component and which database are you use?
Thank you.
EXECUTE sp_liquidacion_nomina 1, 1, 47
GO
And everything is going well
USE Nómina;
-- Drop stored procedure if it already exists
IF EXISTS (
SELECT *
FROM INFORMATION_SCHEMA.ROUTINES
WHERE SPECIFIC_NAME = 'sp_liquidacion_nomina'
)
DROP PROCEDURE sp_liquidacion_nomina
GO
CREATE PROCEDURE sp_liquidacion_nomina
@Periodo int,
@IdEntidadNomina int,
@IdVigencia int
AS
Re: Store procedure Stimulsoft
Hello,
Please clarify which product, component and which database are you use?
Thank you.
Please clarify which product, component and which database are you use?
Thank you.