| |
|
Post Made Community Wiki by Community♦
|
occurred Oct 2 '08 at 18:54
|
|
|
|
|
|
7
|
|
edited Oct 2 '08 at 18:54
|
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
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)
|
|
|
|
6
|
|
edited Oct 2 '08 at 18:39
|
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
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)
|
|
|
|
5
|
|
edited Oct 2 '08 at 17:13
|
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
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)
END
IF (@Indicator2ARunAtLastCyclePoint = 1)
BEGIN
INSERT @tblPrimeFactors
SELECT
TaskId = 2
,PrimeFactor
FROM dbo.tvfGetPrimeFactors(@constCycleTimeJob2A)
END
IF (@Indicator3ARunAtLastCyclePoint = 1)
BEGIN
INSERT @tblPrimeFactors
SELECT
TaskId = 3
,PrimeFactor
FROM dbo.tvfGetPrimeFactors(@constCycleTimeJob3A)
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
)
)
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
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)
|
|
|
|
4
|
|
edited Oct 2 '08 at 17:00
|
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
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
)
IF (@Indicator1ARunAtLastCyclePoint = 1)
BEGIN
INSERT @tblPrimeFactors
SELECT
TaskId = 1
,PrimeFactor
FROM dbo.tvfGetPrimeFactors(@constCycleTimeJob1A)
END
IF (@Indicator2ARunAtLastCyclePoint = 1)
BEGIN
INSERT @tblPrimeFactors
SELECT
TaskId = 2
,PrimeFactor
FROM dbo.tvfGetPrimeFactors(@constCycleTimeJob2A)
END
IF (@Indicator3ARunAtLastCyclePoint = 1)
BEGIN
INSERT @tblPrimeFactors
SELECT
TaskId = 3
,PrimeFactor
FROM dbo.tvfGetPrimeFactors(@constCycleTimeJob3A)
END
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
)
)
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
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)
|
|
|
|
3
|
|
edited Oct 2 '08 at 16:53
|
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
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
)
IF (@Indicator1ARunAtLastCyclePoint = 1)
BEGIN
INSERT @tblPrimeFactors
SELECT
TaskId = 1
,PrimeFactor
FROM dbo.tvfGetPrimeFactors(@constCycleTimeJob1A)
END
IF (@Indicator2ARunAtLastCyclePoint = 1)
BEGIN
INSERT @tblPrimeFactors
SELECT
TaskId = 1
2
,PrimeFactor
FROM dbo.tvfGetPrimeFactors(@constCycleTimeJob2A)
END
IF (@Indicator3ARunAtLastCyclePoint = 1)
BEGIN
INSERT @tblPrimeFactors
SELECT
TaskId = 1
3
,PrimeFactor
FROM dbo.tvfGetPrimeFactors(@constCycleTimeJob3A)
END
DECLARE @LCM int
SELECT
@LCM = Power(sum(log10(power(PrimeFactor,Frequency)),10Power(sum(log10(power(PrimeFactor,Frequency))),10)
FROM
(
SELECT
PrimeFactor
,Frequency = max(Frequency)
FROM
(
SELECT
PrimeFactor
,Frequency = count(*)
FROM @tblPrimeFactors
GROUP BY
TaskId
,PrimeFactor
)
)
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
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)
|
|
|
|
2
|
|
edited Oct 2 '08 at 16:45
|
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 DECLARE @constEvaluationPeriodLength intDECLARE @constCycleTimeJob1A intDECLARE @constCycleTimeJob2A intDECLARE @constCycleTimeJob3A intSET @constEvaluationPeriodLength = 500SET @constCycleTimeJob1A = 500SET @constCycleTimeJob2A = 1000SET @constCycleTimeJob3A = 1500DECLARE @Indicator1ARunAtLastCyclePoint intDECLARE @Indicator2ARunAtLastCyclePoint intDECLARE @Indicator3ARunAtLastCyclePoint intSET @Indicator1ARunAtLastCyclePoint = 1SET @Indicator2ARunAtLastCyclePoint = 0SET @Indicator3ARunAtLastCyclePoint = 1DECLARE @tblPrimeFactors TABLE( TaskId int CycleTimePrimeFactor intIF (@Indicator1ARunAtLastCyclePoint = 1) INSERT @tblPrimeFactors SELECT TaskId = 1 ,PrimeFactor FROM dbo.tvfGetPrimeFactors(@constCycleTimeJob1A)IF (@Indicator2ARunAtLastCyclePoint = 1) INSERT @tblPrimeFactors SELECT TaskId = 1 ,PrimeFactor FROM dbo.tvfGetPrimeFactors(@constCycleTimeJob2A)IF (@Indicator3ARunAtLastCyclePoint = 1) INSERT @tblPrimeFactors SELECT TaskId = 1 ,PrimeFactor FROM dbo.tvfGetPrimeFactors(@constCycleTimeJob3A)DECLARE @LCM int @LCM = Power(sum(log10(power(PrimeFactor,Frequency)),10) ,Frequency = max(Frequency) ,Frequency = count(*) FROM @tblPrimeFactors GROUP BY ,PrimeFactorDECLARE @TimeLastJob intDECLARE @TimeNextJob intSET @TimeLastJob = @LCMSET @TimeNextJob = @TimeLastJob + @constEvaluationPeriodLength Indicator1A = 1 - SIGN(@TimeNextJob % @constCycleTimeJob1A) ,Indicator2A = 1 - SIGN(@TimeNextJob % @constCycleTimeJob2A) ,Indicator3A = 1 - SIGN(@TimeNextJob % @constCycleTimeJob3A)Original:
|
|
|
|
1
|
|
answered Oct 2 '08 at 15:16
|
The modulus operataor % should do the trick
If I'm reading this correctly, you do have the time of the last task
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)
|
|
|