SQL Server 2000General discussion of Microsoft SQL Server -- for topics that don't fit in one of the more specific SQL Server forums. version 2000 only. There's a new forum for SQL Server 2005.
Welcome to the p2p.wrox.com Forums.
You are currently viewing the SQL Server 2000 section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
i am trying to put data into a table from a query...
i can use a the select/into method...which works...however i need to continually delete/recreate the table...which is not efficient given that i want to do this every ten seconds..(a trading application)
(select into only works if creating the destination table..)
i have been trying to do this with insert/nested select query..however insert only allows scalar values...
ideally i would like to just erase the table every 10 seconds and use insert or something similar....