Hi,
I have a command sequence like this:-
dt = Data Table("Input Copy");
dt1 = Data Table("Matrix Splits Table");
dt << Join(
With(dt1),
By Matching Columns(lot_id == dt1:Waferlot),
By Matching Columns(wafer == dt1:Wafer),
Drop Multiples(False,True),
Include NonMatches(False,False),
Output Table Name("Joined Input Table")
);
// SBIN summary by SITE and split
Data Table("Joined Input Table") << Summary(Group(:tst_temp, :test_cod, :SBIN_NUM, :SBIN_NAM, :SITE_NUM), N, Subgroup(:Split), output table name("SBIN by Split"));
Now for really large data sets, the Join takes about 1-2 mins. In the meanwhile the following summary command starts to execute and shows no output.
Can I put a sequence that waits for the Join to execute and once it finishes then only start with the Summary command.