As a newcomer to SQL-server topics, here is my first question on Stackoverflow.
I am importing one .txt flat file into local SQL server 2012 by SQL Data import and export wizard for further data process. This datasource .txt file is kept with new data in, no changes on the data columns only with new data set generated on every day. I would like to make these new coming data sync/imported to SQL datatable then.
After bulk importing to SQL server, how to make the data continously updating from the .txt file? Could it realized by SQL server software itself?
.flat data strcutrure like this format:
1;25.12.17;09:21:10; 8034; 1;IBC; 850.0; 1; 1; 57.0; 850.000; ;
1;25.12.17;09:25:17; 8035; 1;IBC; 850.0; 1; 2; 57.0; 850.000; ;
1;25.12.17;09:29:39; 8036; 1;IBC; 850.0; 1; 3; 56.8; 850.000;;
1;25.12.17;09:33:40; 8037; 1;IBC; 850.0; 1; 4; 57.2; 850.000; ;
...
...
...