admin管理员组文章数量:1345016
Azure SQL SELECT
of columns INTO #Temp
table is executing very slowly. If I remove the INTO
clause, it executes in 20 seconds instead on 10 minutes.
Kindly suggest, how do I optimize this query? Tempdb already has 4 data files. I also tried OPTION MAXDOP(2)
but no luck. In the SELECT
's I am already using WITH (NOLOCK)
.
Azure SQL SELECT
of columns INTO #Temp
table is executing very slowly. If I remove the INTO
clause, it executes in 20 seconds instead on 10 minutes.
Kindly suggest, how do I optimize this query? Tempdb already has 4 data files. I also tried OPTION MAXDOP(2)
but no luck. In the SELECT
's I am already using WITH (NOLOCK)
.
1 Answer
Reset to default 0Glad to see that you fixed your issue, posting this as your answer which will help other community members who will face similar type of issue.
SELECT INTO statement creates temporary table with default setting without any schema defined for Original table. It will be easier syntax wise. select_into
But INSERT_INTO #temptable , will be more performant because here we are creating the temporary table with explicitly mentioning specific schema requirements, constraints, or indexes that are required for original table. Insert_into
Below here is the sample process which involves two steps to execute:
Create temporary table with similar schema and constraint as main table
CREATE TABLE #TempEmp (ID INT PRIMARY KEY, Name VARCHAR(10), Age INT, Department VARCHAR(50), Salary DECIMAL(10, 2) );
Insert data from main table to temporary table.
INSERT INTO #TempEmp SELECT * FROM [dbo].[Employees];
Resouces for your reference:
Temporary Table Performance
本文标签: query optimizationAzure SQL SELECT columns INTO Temp table very slowStack Overflow
版权声明:本文标题:query optimization - Azure SQL SELECT columns INTO #Temp table very slow - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743768638a2535710.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
NOLOCK
is not a go-faster switch, it has serious data integrity implications. – Charlieface Commented 21 hours agoINSERT INTO #Temp SELECT ...
? See sqlshack/select-into-temp-table-statement-in-sql-server it has a section on performance. – Barmar Commented 20 hours ago