Click here to Skip to main content
15,904,024 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I have created a temporary table inside store Procedure.

The Problem is as such.

I want to know that
If 1000 user click a SEARCH button on aspx page which Fires the underline store Procedure.

Will it work fine.

Please
Posted

1 solution

yes this is still works as long as your temporary table is not in public. Here is what im talking about.

There are 3 ways of creating tables
1. Create Table ##tempTable --- This is Public and can be access in to different Query
2. Create Table #tempTable --- Can be access only in the current Query
3. Declare @Table as Table --- Can be access only in the current Query. The difference of this 2 are the speed.
 
Share this answer
 

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