|
I believe, if I read your message correctly, that you stated "Its not hanging" ... and your simply asking "what is this" ...
Regardless of your DBMS, "copying to tmp table" processes usually mean that another query is 'staging' data ... for example, when performing join queries ... some DBMS's will place the results in a TEMP table prior to returning them ... or toss a large set of data into a TEMP table so that it can then query the larger set to retrieve a smaller set ... almost always having to deal with joins or sub-queries where more then one 'table' is being accessed ...
"Copying to tmp tables" is usually not something you need concern yourself with, however, if it's slowing you down... then perhaps you need to re-evaluate some of your queries and determine if they can be 'fine tuned' ... performance tuning usually weeds out a lot of unnecessary operations ...
|