Forum Post: RE: What can cause an out of scope temp-table instances to remain on the appserver?

  • Thread starter Thread starter Peter Judge
  • Start date Start date
Status
Not open for further replies.
P

Peter Judge

Guest
You can explicitly delete a table- or dataset-handle on the APpServer and be sure that the contents will survive the trip back to the client - there's code that defers the delete until it's been handed back to the client. You can see that in the debugger and the log-mnanager (I believe) where the table is marked as "DELETE PENDING" . Note that this behaviour is only for returning data across an AppServer boundary and it only works in the .P that was called (ie not further down the stack). For the rest of the time (ie all other intra-client or intra-server calls) you should be passing references to temp-tables or dataset (to avoid deep copies).

Continue reading...
 
Status
Not open for further replies.
Back
Top