Click here to Skip to main content
15,885,985 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more: , +
Hi everyone,

I need to storage a set of transactional records in a global temp table for a particular process, the total of records is near 2 millions and growing slowly.

The space of tempdb in my sql server is big (like 2TB) but the question is: what is recomended working with temporary tables for storage transactional tables.

What is it recomended for tempdb for this goal.


What I have tried:

I try to working with temporary tables in my ETL proyect with SSIS.
in all of my task.
Posted
Updated 22-Mar-19 8:24am

1 solution

Use temporary tables if you need them during your session; and don't need to keep them once your session is finished.

Quick Overview: Temporary Tables in SQL Server 2005[^]
 
Share this answer
 
Comments
leocode7 22-Mar-19 17:29pm    
Thanks Gerry, just let me ask you a last question:
So is allow to working with tempdb for a lot of transaction records, I dont have any kind of problem working with a tempdb if it is configured with a properly disk size.

Thanks in advance..

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900