Forum Replies Created

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

  • RE: creating a Copy of database for testing

    Agreed...for SQL 7 and 2000, the second way is better and faster. What about 6.5, any idea?? Haaha...

     


    Kindest Regards,

    eiddie dredd

    No Pain No Gain

  • RE: Creating Delete Trigger

    Sorry.... your insert is not enough values

    the getdate do not return any value ...are you using 6.5? the solution applied to SQL7 or 2000

     

    try add @ed datetime

    Declare @RecordNo Int, @UserName Varchar...


    Kindest Regards,

    eiddie dredd

    No Pain No Gain

  • RE: Creating Delete Trigger

     

    SIMPLE Trigger to DELETE and add the deleted to the different tables two or more

     

    Create trigger trgDeltblA

    On tblA

    For Delete

    As 

    Declare @UserName Varchar(500), @Title   Varchar(50),

     @ID int

     

     

    Select @UserName =User,@ID = BiodataID From Deleted

    Begin

    insert into...


    Kindest Regards,

    eiddie dredd

    No Pain No Gain

  • RE: modifying fields on SQL 6.5

    Thanks to all of you guys... your info(s) make me happy. Now i get the idea to move from 6.5 to 7 or 2000.

    But still sad bcoz i have to...


    Kindest Regards,

    eiddie dredd

    No Pain No Gain

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