Forum Replies Created

Viewing 11 posts - 1 through 11 (of 11 total)

  • RE: Transfering from Access to SQL server

    Ok the problem I have now is that I have the date I want as my global variable, but the query that imports from access at some point sees it...

  • RE: DTS Date Format issues

    Yes both dateclocking fields are datetimes.

    Forgot to mention that I am moving the data from a table in an access 97 database called clockings which gets updated. The new...

  • RE: Transfering from Access to SQL server

    Excellent thank you, all sorted now. Knew I needed to use a global variable but wasnt quite sure how, cheers

  • RE: Access functions now working

    I have solved the problem now, it was my access referneces one was missed so I cleared its box and it all worked fine.

  • RE: Trigger help: instead of trigger multiple row updates

    Thanks Noel worked fine. Although I only read it after I had written out code for computed columns which was getting on for 1000 lines lol. ONe last problem though...

  • RE: Trigger help: instead of trigger multiple row updates

    I feared that was the case when i first started writing the query hence tried to use a trigger instead. I have 12 calculations derived one after the other so...

  • RE: Reusing calculated columns

    Can't use computed columns as you can compute one column but then you can't derive another computed column from another computed column.

    Wrote a trigger which if it worked would be...

  • RE: Reusing calculated columns

    Can't use computed columns as you can compute one column but then you can't derive another computed column from another computed column.

    Wrote a trigger which if it worked would be...

  • RE: Trigger help: instead of trigger multiple row updates

    why would the insert run for each row updated but the calculations not?

  • RE: Trigger help: instead of trigger multiple row updates

    CREATE TRIGGER trigOrderDetail ON [dbo].[Order Detail]

    instead of insert,update

    AS

    declare @ProdWeekend datetime,

    @Day varchar(20),

    @ProdWeek datetime,

    @ProdDay varchar(20),

    @prog datetime,

    @ProgDay varchar(20),

    @CalWeekend datetime,

    @CalDay varchar(20),

    @Cal datetime,

    @PresAssemWeekend datetime,

    @AssemDay varchar(20),

    @PresAssem datetime,

    @StockWeekend datetime,

    @StockDay varchar(20),

    @Stock datetime

    declare @OrderID...

  • RE: Reusing calculated columns

    I have a string of 12 columns, each derived using the expression calculated in the last. Decided a trigger on insert will be the best way forward????

Viewing 11 posts - 1 through 11 (of 11 total)