• Hi

    Imho you can add a Script Task between and check your object variable,

    public void Main()

    {

    OleDbDataAdapter oda = new OleDbDataAdapter();

    DataTable dtb = new DataTable();

    // read object variable

    oda.Fill(dtb, Dts.Variables["YourObjVar"].Value);

    //count rows

    Dts.Variables["RowChk"].Value = (int)(dtb.Rows.Count);

    Dts.TaskResult = (int)ScriptResults.Success;

    }

    and set a Precedence Constraint where expression @[User::RowChk] > 0 ,

    of course, there are some other ways to do that.

    Best regards

    Mike