Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
heze
Posting Yak Master
192 Posts |
Posted - 2006-09-21 : 14:39:29
|
| In a previous post, the theme of cursors and concurrency was touched as a secondary subject. I have a specific question about it as the primary one:if we have-------- create proc myProcasdeclare cursor forselect * from mytablego----------if two or more clients(webpages for example)execute myProc concurrently will the cursor be safe ? or would I have to make special arrangements, there are a couple of procs (that use cursors)that somebody else did and would not like to modify but we want to make the procs web available,thank you |
|
|
snSQL
Master Smack Fu Yak Hacker
1837 Posts |
|
|
TG
Master Smack Fu Yak Hacker
6065 Posts |
Posted - 2006-09-21 : 16:11:22
|
| >>the theme of cursors and concurrency There is a lot of info in Books Online as well (including this topic: Cursor Concurrency)Be One with the OptimizerTG |
 |
|
|
|
|
|