Temporary tables in SQL Server
Hi friends , Yesterday I thought about temp. tables in database . After searching over same query , I got through some links regarding "Temp Table " , "global temporary table ", "Local Temp Table", "#" etc. Temporary table created on tempdb of SQL Server. This is a separate database. So, this is an additional overhead and can causes performance issues. Number of rows and columns need to be as minimum as needed. Tables need to be deleted when they are done with their work. Till the date I am using simple method to do so . But this concept will save my time and don't confuse between oracle and sql server. Its different. Concept : Temporary tables in Database Concept of temporary table which helps the developer in a great way. These tables can be created at runtime and can do the all kinds of operations that one normal table can do. But, based on the table types, the scope is limited. These tables are created inside system da...