Viewing 8 posts - 31 through 38 (of 38 total)
Sean Lange (8/25/2016)
August 25, 2016 at 10:14 am
CREATE TABLE DELAYSECONDS(
ProgramID INT, ID INT, ContractHeaderID INT, ContractStartTime TIME, ProgramStartTime TIME ,ContractDetailFirstDay INT ,ProgramFirstDay INT, DelaySeconds INT)
INSERT INTO DELAYSECONDS
VALUES (625, 625, 115278, '18:00:00', '18:00:00', 2, 2, 0),
...
August 25, 2016 at 10:08 am
Thanks Guys for your imputs, see attached sample data in excel below, this data is is populated in the Temp tables
#updateprogramtables
#updatecontractdetailtable
My purpose is to get the difference in...
August 24, 2016 at 2:39 pm
Luis Cazares (8/23/2016)
Otherwise, you could...
August 24, 2016 at 8:03 am
SEE MY SCRIPT BELOW,
IM POPULATING A TEMP TABLE
IF EXISTS ( SELECT * FROM tempdb..sysobjects
WHERE id...
August 23, 2016 at 3:00 pm
Luis Cazares (8/23/2016)
SELECT CASE WHEN Monday = 1 THEN 'Monday'
WHEN Tuesday = 1...
August 23, 2016 at 2:12 pm
Luis Cazares (8/23/2016)
JALLYKAMOZE (8/23/2016)
THESE TABLES HAVE VALUES BETWEEN 0 AND 1 EG,
MONDAY : 0, TUESDAY :1,WEDNESDAY : 0,THURSDAY:1,FRIDAY:1. SATURDAY:1 SUNDAY:1
HOW CAN I...
August 23, 2016 at 2:06 pm
the days are columns
August 23, 2016 at 2:04 pm
Viewing 8 posts - 31 through 38 (of 38 total)