Forum Replies Created

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

  • RE: Open up VBA modules in VB

    For this purpose, i have made the following steps :

    1. open the vba project in Access

    2. print it in a pdf document, save it

    3.open the pdf doc, copy and paste...

  • RE: Problem on a Job submitted by an alert

    hello,

    I've Checked the "Delay between responses..." option on the "Response" tab of the Alert properties dialog. It was set on the value of 1 minute, so i put it at 25...

  • RE: Problem on a Job submitted by an alert

    A user , Bill for exemple, makes an insert in table mytable1. The trigger is fired for the first time, and the sqlserver job starts.

    Another user, Georges II for exemple,...

  • RE: Problem on a Job submitted by an alert

    Here's the ddl text for my trigger

    TRIGGER mytrigger ON dbo.mytable1 FOR  INSERT

    AS

    declare @numcourant  integer

    declare @dat  datetime

    BEGIN

    set @numcourant=(select numdem from inserted)

    set @dat = getdate()

    insert into dbo.mytable2 (NUDEM , DTCRA) values  (@numcourant...

  • RE: Identify tables dependencies ?

    If you want to see the relations between tables, you can use a free tool called dbvisualizer, from minq software .

    They have a good graphical way of representing the referential integrity,...

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