I need to import a csv file to a table that already exists on SQL Server7.0 on a regular basis.<br><br>I have tried using the import wizard but had no luck. How do I specify the table on SQL Server that will store the data held in the csv file?<br><br>I tried reading the csv file from Excel and copying the data to clipboard but, when you try to paste the contents of the clipboard into your table, there are no paste options and ctrl+v does not work.<br><br>My fix at the moment is to use the import wizard to import the csv file to a new database, then open the newly created database, open the table with the data, select all the records and copying it to clipboard. Now I can paste the records held in clipboard to the table in SQL Server.<br><br>Seems a bit long winded, can anyone suggest a better way of doing this.<br><br>Help!