Database Research & Development

  • Home
  • NoSQL
    • NoSQL
    • Cassandra
  • Databases
    • Database Theory
    • Database Designing
    • SQL Server Coding Standards
    • SQL Server
    • PostgreSQL
    • MySQL
    • Greenplum
    • Linux
  • Interviews
    • SQL Server Interviews
    • MySQL Interviews
    • SQL Puzzles
  • DBA Scripts
    • SQL Server DBA Scripts
    • PostgreSQL DBA Scripts
    • MySQL DBA Scripts
    • Greenplum DBA Scripts
  • Home
  • Blog Archives !
  • (: Laugh@dbrnd :)
  • Contact Me !
sqlserverinterviews
Home 2017 February SQL Server: Create index on large Temp Tables

SQL Server: Create index on large Temp Tables

This article is half-done without your Comment! *** Please share your thoughts via Comment ***

I have given one assignment to a database developer team for preparing general database development practices.
I have found one point in that document: “Do not create Indexes on Temp Tables”.

The use of Temp Tables is very common in SQL Server. Most of the SQL database developers are storing their data into temp tables.
Let me, explore something about, the best practices of Temp Tables.

In general advice, we should avoid the use of temp tables because it requires more CPU/IO while accessing the TempDB.
When you are storing data into temp tables, it stores in TempDB files means the physical disk operation is involved.

Like any other regular table, temp table also requires disk space to store temporary data and other resources for manipulation.

I have seen that many developers are saving a significant number of records in Temp Tables and they are not thinking even for Indexing on Temp Tables.

If you don’t know, please note: You can create a Clustered and Non-Clustered Indexes on Temp Tables which improves your query performance.

Again, more indexes will create more problems because it needs space and manipulation.
First, you should analyze the volume of data, execution plan and accordingly you should apply indexes on Temp tables.

Personally, I have checked the performance of Temp Tables with Clustered Index, which is much better than Temp Table without an Indexes.

I am rejecting all comments and points which say that ” we should not apply Indexes on Temp Tables. “

SQL Server: Difference between Temporary Table and Table Variable

Feb 26, 2017Anvesh Patel
SQL Server: Script to find bad Sessions or ProcessesSQL Server: Execute CHECKPOINT and SHUTDOWN your Database Server immediately
Anvesh Patel
Anvesh Patel

Database Engineer

February 26, 2017 SQL Server InterviewAnvesh Patel, database, database research and development, dbrnd, index, SQL Query, SQL Server, SQL Server Administrator, SQL Server Monitoring, SQL Server Performance Tuning, SQL Server Tips and Tricks, Temp db Performance, Temp Table, TempDB, TSQL
About Me!

I'm Anvesh Patel, a Database Engineer certified by Oracle and IBM. I'm working as a Database Architect, Database Optimizer, Database Administrator, Database Developer. Providing the best articles and solutions for different problems in the best manner through my blogs is my passion. I have more than six years of experience with various RDBMS products like MSSQL Server, PostgreSQL, MySQL, Greenplum and currently learning and doing research on BIGData and NoSQL technology. -- Hyderabad, India.

About DBRND !

dbrnd

This is a personal blog (www.dbrnd.com).

Any views or opinions represented in this blog are personal and belong solely to the blog owner and do not represent those of people, institutions or organizations that the owner may or may not be associated with in professional or personal capacity, unless explicitly stated.

Feel free to challenge me, disagree with me, or tell me I’m completely nuts in the comments section of each blog entry, but I reserve the right to delete any comment for any reason whatsoever (abusive, profane, rude, or anonymous comments) - so keep it polite.

The content of this website is protected by copyright. No portion of this website may be copied or replicated in any form without the written consent of the website owner.

Recent Comments !
  • Anvesh Patel { Sure will do... } – May 27, 12:43 PM
  • Anvesh Patel { Great... } – May 27, 12:41 PM
  • Anvesh Patel { Great... } – May 27, 12:39 PM
  • Anvesh Patel { Great... } – May 27, 12:36 PM
  • Anvesh Patel { Great... } – May 27, 12:28 PM
  • Anvesh Patel { Great... } – May 27, 12:27 PM
  • Anvesh Patel { Great... } – May 27, 12:16 PM
  • Older »
Follow Me !
  • facebook
  • linkedin
  • twitter
  • youtube
  • google
  • flickr
© 2015 – 2019 All rights reserved. Database Research & Development (dbrnd.com)
Posting....