Forum Replies Created

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

  • Reply To: RunRate , Forecast using Recursive CTE or UNION ALL

    Create table

    Forecast_Test

    (

    int_period integer,

    Division VARCHAR(10),

    Cost_Centre integer,

    im_actual integer

    );

    INSERT INTO Forecast_Test values (1 , 'A and M', 12345, 1000)

    INSERT INTO Forecast_Test values (2 , 'A and M', 12345, 800)

    INSERT INTO Forecast_Test values (3...

  • RE: Execute SQL stored procedure in Access

    Hi i've got similar problem

    The procedure called from SQL database and would like to run through Ms Access

    In Ms Access I already running Queries using following function

    Private Function ExecuteQuery(sQueryName...

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