Post Made Community Wiki by Community
show/hide this revision's text 7 Added comments

Edit:

Ah, you have to go the other way. In that case, as someone mentioned, you can calculate an effective @TimeLastJob using the least common multiple of the three

--Note: uses some SQL Server 2005 SQL extentions,
--      but can still serve as a psuedocode specification of the algorithm
DECLARE @constEvaluationPeriodLength int
DECLARE @constCycleTimeJob1A int
DECLARE @constCycleTimeJob2A int
DECLARE @constCycleTimeJob3A int

SET @constEvaluationPeriodLength = 500
SET @constCycleTimeJob1A = 500
SET @constCycleTimeJob2A = 1000
SET @constCycleTimeJob3A = 1500

DECLARE @Indicator1ARunAtLastCyclePoint int
DECLARE @Indicator2ARunAtLastCyclePoint int
DECLARE @Indicator3ARunAtLastCyclePoint int

SET @Indicator1ARunAtLastCyclePoint = 1
SET @Indicator2ARunAtLastCyclePoint = 0
SET @Indicator3ARunAtLastCyclePoint = 1

DECLARE @tblPrimeFactors TABLE(
    TaskId int
    CycleTimePrimeFactor int
)

--Capture the prime factors for each TaskId
IF (@Indicator1ARunAtLastCyclePoint = 1)
  BEGIN
  INSERT @tblPrimeFactors
  SELECT
      TaskId = 1
     ,PrimeFactor
  FROM dbo.tvfGetPrimeFactors(@constCycleTimeJob1A) --Table-valued function left for the reader
  END
IF (@Indicator2ARunAtLastCyclePoint = 1)
  BEGIN
  INSERT @tblPrimeFactors
  SELECT
      TaskId = 2
     ,PrimeFactor
  FROM dbo.tvfGetPrimeFactors(@constCycleTimeJob2A) --Table-valued function left for the reader
  END
IF (@Indicator3ARunAtLastCyclePoint = 1)
  BEGIN
  INSERT @tblPrimeFactors
  SELECT
      TaskId = 3
     ,PrimeFactor
  FROM dbo.tvfGetPrimeFactors(@constCycleTimeJob3A) --Table-valued function left for the reader
  END


--Calculate the LCM, which can serve as an effective time
--Utilizes SQL Server dynamic table capability
--(Inner select statements w/in parenthesis and given the alias names t0 & t1 below)
DECLARE @LCM int

SELECT
    --Fun w/ logs/powers to effect a product aggregate function
    @LCM = Power(sum(log10(power(PrimeFactor,Frequency))),10)
FROM
    (
        SELECT
            PrimeFactor
           ,Frequency = max(Frequency)
        FROM
            (
                SELECT
                    PrimeFactor
                   ,Frequency = count(*)
                FROM @tblPrimeFactors
                GROUP BY
                    TaskId
                   ,PrimeFactor
            ) t0
    ) t1

DECLARE @TimeLastJob int
DECLARE @TimeNextJob int
SET @TimeLastJob = @LCM
SET @TimeNextJob = @TimeLastJob + @constEvaluationPeriodLength

SELECT
    Indicator1A = 1 - SIGN(@TimeNextJob % @constCycleTimeJob1A)
   ,Indicator2A = 1 - SIGN(@TimeNextJob % @constCycleTimeJob2A)
   ,Indicator3A = 1 - SIGN(@TimeNextJob % @constCycleTimeJob3A)


Original:

The modulus operataor % should do the trick

If I'm reading this correctly, you do have the time of the last task

  • t=1000 or
  • t=5000

and frequency of task selection evaluation is every 500 hours.

Try varying @TimeLastJob to see if the script below provides you w/ what you need

DECLARE @constEvaluationPeriodLength int
DECLARE @constCycleTimeJob1A int
DECLARE @constCycleTimeJob2A int
DECLARE @constCycleTimeJob3A int

SET @constEvaluationPeriodLength = 500
SET @constCycleTimeJob1A = 500
SET @constCycleTimeJob2A = 1000
SET @constCycleTimeJob3A = 1500

DECLARE @TimeLastJob int
DECLARE @TimeNextJob int
--SET @TimeLastJob = 1000
SET @TimeLastJob =5000
SET @TimeNextJob = @TimeLastJob + @constEvaluationPeriodLength

SELECT
    Indicator1A = 1 - SIGN(@TimeNextJob % @constCycleTimeJob1A)
   ,Indicator2A = 1 - SIGN(@TimeNextJob % @constCycleTimeJob2A)
   ,Indicator3A = 1 - SIGN(@TimeNextJob % @constCycleTimeJob3A)
show/hide this revision's text 6 Added comments

Edit:

Ah, you have to go the other way. In that case, as someone mentioned, you can calculate an effective @TimeLastJob using the least common multiple of the three

--Note: uses some SQL Server 2005 SQL extentions,
--      but can still serve as a psuedocode specification of the algorithm
DECLARE @constEvaluationPeriodLength int
DECLARE @constCycleTimeJob1A int
DECLARE @constCycleTimeJob2A int
DECLARE @constCycleTimeJob3A int

SET @constEvaluationPeriodLength = 500
SET @constCycleTimeJob1A = 500
SET @constCycleTimeJob2A = 1000
SET @constCycleTimeJob3A = 1500

DECLARE @Indicator1ARunAtLastCyclePoint int
DECLARE @Indicator2ARunAtLastCyclePoint int
DECLARE @Indicator3ARunAtLastCyclePoint int

SET @Indicator1ARunAtLastCyclePoint = 1
SET @Indicator2ARunAtLastCyclePoint = 0
SET @Indicator3ARunAtLastCyclePoint = 1

DECLARE @tblPrimeFactors TABLE(
    TaskId int
    CycleTimePrimeFactor int
)

--Capture the prime factors for each TaskId
IF (@Indicator1ARunAtLastCyclePoint = 1)
  BEGIN
  INSERT @tblPrimeFactors
  SELECT
      TaskId = 1
     ,PrimeFactor
  FROM dbo.tvfGetPrimeFactors(@constCycleTimeJob1A) --Table-valued function left for the reader
  END
IF (@Indicator2ARunAtLastCyclePoint = 1)
  BEGIN
  INSERT @tblPrimeFactors
  SELECT
      TaskId = 2
     ,PrimeFactor
  FROM dbo.tvfGetPrimeFactors(@constCycleTimeJob2A) --Table-valued function left for the reader
  END
IF (@Indicator3ARunAtLastCyclePoint = 1)
  BEGIN
  INSERT @tblPrimeFactors
  SELECT
      TaskId = 3
     ,PrimeFactor
  FROM dbo.tvfGetPrimeFactors(@constCycleTimeJob3A) --Table-valued function left for the reader
  END


--Calculate the LCM, which can serve as an effective time
DECLARE @LCM int

SELECT
    --Fun w/ logs/powers to effect a product aggregate function
    @LCM = Power(sum(log10(power(PrimeFactor,Frequency))),10)
FROM
    (
        SELECT
            PrimeFactor
           ,Frequency = max(Frequency)
        FROM
            (
                SELECT
                    PrimeFactor
                   ,Frequency = count(*)
                FROM @tblPrimeFactors
                GROUP BY
                    TaskId
                   ,PrimeFactor
            ) t0
    ) t1

DECLARE @TimeLastJob int
DECLARE @TimeNextJob int
SET @TimeLastJob = @LCM
SET @TimeNextJob = @TimeLastJob + @constEvaluationPeriodLength

SELECT
    Indicator1A = 1 - SIGN(@TimeNextJob % @constCycleTimeJob1A)
   ,Indicator2A = 1 - SIGN(@TimeNextJob % @constCycleTimeJob2A)
   ,Indicator3A = 1 - SIGN(@TimeNextJob % @constCycleTimeJob3A)


Original:

The modulus operataor % should do the trick

If I'm reading this correctly, you do have the time of the last task

  • t=1000 or
  • t=5000

and frequency of task selection evaluation is every 500 hours.

Try varying @TimeLastJob to see if the script below provides you w/ what you need

DECLARE @constEvaluationPeriodLength int
DECLARE @constCycleTimeJob1A int
DECLARE @constCycleTimeJob2A int
DECLARE @constCycleTimeJob3A int

SET @constEvaluationPeriodLength = 500
SET @constCycleTimeJob1A = 500
SET @constCycleTimeJob2A = 1000
SET @constCycleTimeJob3A = 1500

DECLARE @TimeLastJob int
DECLARE @TimeNextJob int
--SET @TimeLastJob = 1000
SET @TimeLastJob =5000
SET @TimeNextJob = @TimeLastJob + @constEvaluationPeriodLength

SELECT
    Indicator1A = 1 - SIGN(@TimeNextJob % @constCycleTimeJob1A)
   ,Indicator2A = 1 - SIGN(@TimeNextJob % @constCycleTimeJob2A)
   ,Indicator3A = 1 - SIGN(@TimeNextJob % @constCycleTimeJob3A)
show/hide this revision's text 5 Added comments
show/hide this revision's text 4 Comment added
show/hide this revision's text 3 typo correction
show/hide this revision's text 2 Addresses revised understanding of problem
show/hide this revision's text 1