I'm drawing a blank and need some help. I need to populate the t_custom_ask_amounts table with data from a spreadsheet. I think there is a much easier way besides an insert script one row at a time. I just can't remember what I did last season to populate the table. Can someone give me a quick and easy way to get my spreadsheet data into the table???
Teresa
Hi Teresa
What I would do is:
INSERT INTO impresario.dbo. t_custom_ask_amounts ([customer_no],[season_no],[type],[amount]) SELECT [customer_no],[season_no],[type],[amount]) FROM staging.dbo.LT_teresas _import_table
or something like that
Ken