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 |
|
AskSQLTeam
Ask SQLTeam Question
0 Posts |
Posted - 2006-01-24 : 08:38:53
|
| Todd writes "I am running SQL on a server and notice a sever slow down in performance. At the times this has happened I see SP-OACREATE. I can't find what it is or where it comes from. I just know it is causing me huge issues any help you can give would be appreciated" |
|
|
Kristen
Test
22859 Posts |
Posted - 2006-01-24 : 08:51:12
|
| sp_OACreate is creating an instance of an OLE object - probably a COM object or somesuch.The likelihood is that this OLE object is then being used to process data. Its quite a slow process, particularly if it is going to be used (in a loop, or cursor) to process many rows (i.e. as this will be a linear operation, rather than a set-based one which is what SQL Server is good at!)Kristen |
 |
|
|
|
|
|