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
Ken,
Thanks so much for this….once I figured out that I needed to remove the few manual entries I had already done, this worked perfectly. This was a huge time saver!!!
From: Tessitura Technical Forum [mailto:forums-technical@tessituranetwork.com] On Behalf Of Ken McSwainSent: Wednesday, December 01, 2010 6:41 PMTo: Teresa DeanSubject: Re: [Tessitura Technical Forum] Insert data into table
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
From: Teresa Dean <bounce-teresadean9276@tessituranetwork.com>Sent: 12/1/2010 6:13:40 PM
This message was sent automatically to you by www.tessituranetwork.com because you subscribed to the Tessitura Technical Forum. You may reply to this message to post to the Technical forum or visit the site to search, read and post to the forums. In the interest of keeping the forum posts from becoming cluttered, we encourage you to delete previous message text from your reply before sending. Thank you!