0

everyone, i have a question, how can run the same stored procedure Simultaneously ? Tanks you for your help devs.

for example:

this Stored procedure, I run in different windows of sqldbx

execute dbo.Usp_Uno_RsegPerfCartera_Obt
    @Fecha_Corte = '20220101'
  , @Vramos = '1-4'
  , @Tipo_Cambio = 20
go


execute dbo.Usp_Uno_RsegPerfCartera_Obt
    @Fecha_Corte = '20220101'
  , @Vramos = '1-0'
  , @Tipo_Cambio = 20
go


execute dbo.Usp_Uno_RsegPerfCartera_Obt
    @Fecha_Corte = '20220101'
  , @Vramos = '1-9'
  , @Tipo_Cambio = 20
go
  • Sybase (ASE) does not have the ability to spawn user queries in the background; you'll need to look at a client-side solution (eg, shell script that spawns multiple db connections/queries in the backround) – markp-fuso Nov 23 '22 at 15:57

0 Answers0