Forum Replies Created

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

  • RE: Removing Duplicates

    Since I have worked with Oracle I have removed duplicates using the rowid column. SQL Server has something similar but its an undocumented feature (might be changed without notice).

    delete

    from ...

  • RE: Starting SSIS jobs from BMC Control-M

    Thank you, a good information about how it works. I hoped there would be some way to run it in another mood so that the SSIS would wait to return...

  • RE: NOT IN vs NOT EXISTS

    I found out that this statement

    select *

    from Job_Queue

    where JobQueueID not in

    (SELECT JobQueueID

    from Payment

    where JobQueueID is not null)

    will get...

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