SSIS: import MAX(filename) from folder
问题 I need to pick one .csv file from \\\Share\Folder\ with max filename for further import to SQL. File name is alphanumerical, e.g. ABC_DE_FGHIJKL_MNO_PQRST_U-1234567.csv , where numerical part will vary, but I need the only max one each time the package runs. Constraints: no write access on that SQL server, I use ##Temp table for import and this is the least desirable method for filename processing (no for each loops on this server). Ideally it will be function/expr-based variable (combined