Search

SQL Azure - Add support for Select Into for temporary tables by Dave Williamson2

Closed
as Duplicate Help for as Duplicate

2
0
Sign in
to vote
Type: Suggestion
ID: 774356
Opened: 12/14/2012 5:17:13 AM
Access Restriction: Public
0
Workaround(s)
In SQL Azure there are cases where the use of Select Into is needed when used with temporary tables. Many times it is more performant to Select Into #temptable, then Truncate sourcetable, then insert into sourcetable from #temptable. Additionally by allowing Select Into #temptable developers avoid coding in the create table structure of the temp table to match the sourcetable. This way when the sourcetable structure changes the #temptable follows suit without the need to go revisit create table #temptable code.
Details (expand)

Product Language

English

Category

SQL Azure Database

Proposed Solution

Allow Select Into use for temporary tables.

Primary Benefit

Improved Performance

Other Benefits

Removes an area from code that might be missed in the future if the sourcetable changes structure.

Virtualization

 
File Attachments
0 attachments
Sign in to post a comment.
Posted by Microsoft on 4/25/2013 at 10:00 AM
Hello Dave,
I am resolving this as duplicate of below:

http://connect.microsoft.com/SQLServer/feedback/details/776409/add-select-into-to-sql-azure

--
Umachandar, SQL Programmability Team
Posted by Microsoft on 2/27/2013 at 4:25 PM
Hello Dave,

Thanks for your feedback. We are aware of the T-SQL feature disparity between SQL Azure & SQL Server (2005 and upwards). We are tracking all of these features internally. But right now, we have no plans to address the feature difference.

--
Umachandar, SQL Programmability Team
Sign in to post a workaround.