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