Forum Replies Created

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

  • RE: DTS Query Designer Error

    I have used it in all forms

    Set ansi null on

    update employees

    set name = ''

    and

    set @name = 'max'

    It should work

  • RE: Validation on Counts

    IN SQL

    IF EXISTS(select 1 from table1

    having count(*) = (

    select count(*) from table2 ))

    --whatever

    else

    --error

    end

  • RE: Validation on Counts

    select 1 from table1

    having count(*) = (

    select count(*) from table2 )

    Use an activex task after query read result from global variable then decide what to do

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