How to handle U-SQL error (E_CSC_USER_DDLENTITYOFNEITHERTYPEEXISTS) if the table not exists.
How to use IF object_id('table1') Is not null in U-SQL?
T-SQL example: if object_id('table1') Is not null Select empName, empStoreNum, empSales, 'East' As SalesDistrict FROM store1 UNION ALL if object_id('table2') is not null Select empName, empStoreNum, empSales, 'East' As SalesDistrict FROM store2 UNION ALL if object_id('table3') is not null Select empName, empStoreNum, empSales, 'East' As SalesDistrict FROM store3