Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hello Our Main Database Table(s) and child Tables(s) are in the 500 million plus count as Data is processed daily we get inbound sets of data ranging from 1 Row to 20000 rows per batch. these batches of data (1 to many tables) are processed before we output results to the customer

here is the question there are 10-30 stored procs ran against this data , worked on by different programmers over the years..but all procs work off a single set of data..

select p.f1,pf3 ,c.f1,c.f2, etc from maindata (nolock) p
   join childtable c (nolock) on c.mainkey=p.mainkey
   where c.mainkey=somevalue ...and a bunch of nonindexd other fields

procs have some bad where clauses not alignd with indexs (thats another issue)

what i want to do is make a Permant Temp table so my service will be in charge of filling the table and removing rows when this process is complete,
Temp table will hold identitiy keys for the record set(s)

so all procs will work off these identities selecting data from main data via join or idkey in (select key...) or (join (select)

this seems a better approach ..then the 1000plus hits on the database where we have where clauses looking at data not indexed

thanks for any advice DaveP

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.