Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Does anybody know what this is?

Status
Not open for further replies.

jsql12

Technical User
Mar 27, 2007
28
US
Hi all,

I always see an entry in the error log like this:

using 'xplog70.dll' version '2000.80.760' to execute extended stored procedure 'xp_cmdshell'

Does anybody know what it is? what's the purpose?

Thank you!
 
Look up xp_cmdshell in SQL Server Books Online. Helloooo.

[COLOR=#aa88aa black]Cum catapultae proscriptae erunt tum soli proscript catapultas habebunt.[/color]
 
Hi Esquared,

I know what it does. What I'm more interested in is what would cause this entry in the error log.
spidXX using 'xplog70.dll' version '2000.80.760' to execute extended stored procedure 'xp_cmdshell'

Thanks!
 
Sounds like you're actually looking at the the event viewer?

Is there an Event number (like 1755) associated with what you're seeing? If so, Event 1755s are informational messages.

It may be simply letting you know that SQL Server launched an extended stored procedure called 'XP_CMDSHELL'



< M!ke >
I am not a hamster and life is not a wheel.
 
LNBruno the message is from sql server error log and it is not associated with any number. What is worrying me is that the source of this message is a spid. So I'm wondering if somebody is trying to do something he/she is not supposed to be doing.

Thanks!
 
Can you identify using the spid?

Code:
SELECT 
   SYSTEM_USER AS 'Login Name'
   , USER AS 'User Name'
WHERE @@SPID = nn

< M!ke >
I am not a hamster and life is not a wheel.
 
you would get a spid for an application doing this task as tell. Many DTS packages use active x components. While it is running, you will see the spid for DTS if you run sp_who2. It would probably also put this message into the log.

"NOTHING is more important in a database than integrity." ESquared
 
that query doesn't return anything. I already did the following:

select loginame from sysprocesses
where spid = xx
--xx is the spid that is apparently using the dll
and it didn't return anything. So for some reason it wasn't logged in the sysprocesses table.

Thank you for the effort guys.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top