Forum Replies Created

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

  • RE: scheduling a SSIS package

    hi,

    TO schedule SSIS package,first you have to copy the package to Sql server by selecting copy option in File menu of SSIS Package Designer. Then it is available when you...

  • RE: DATE TIME Issue

    hi,

    this will work

    select 1 where getdate() <= '01/01/2008'

    select 1 where getdate() <= convert(varchar(10),'01/01/2008',103)

    since u are comparing strings

    ravi

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