Need to dump the required source data into SQL table

Hi,
I have a comma separated data file (csv). I have to load this file to a SQL table using Data Flow task in SSIS. Below is the sample data from the source file.
Id, name, city
1, A, NY
2, B, LA
3, C, NY
4, D, NY
5, E, LA
I want the data where the city is equal to “NY” only to be inserted. Like this,
Id, name, city
1, A, NY
3, C, NY
4, D, NY
I have tried writing a SQL query, but I can’t. One way is dumping all the data into one table and again inserting into a new table using conditions. But the data size is around 20 GB. So it takes more time and large space. Is there any alternate way?
Thanks.
