September 17, 2003 at 2:02 pm
Hi,
running a exec xp_cmdshell 'md c:\mydb'
produces this error:
Cannot find the function xp_cmdshell in the library xpstar.dll. Reason 127
The XP was dropped and then added using addextende...
Has anyone seen this before?
Thanks
September 17, 2003 at 3:04 pm
I guess I am responding to myself. I just realized that despite what I had seen in several articles, the correct dll to map to that XP is actually xplog70.dll and not xpstar.dll. That resolved my problem.
Question, does anyone know of a list that could be used as a reference to corresponding dlls? (apart from looking at at the proprity of each XP).
A.
September 17, 2003 at 6:13 pm
Haven't seen one, but it would be useful. Hopefully another reader has it!
Andy
September 18, 2003 at 1:34 am
quote:
Haven't seen one, but it would be useful. Hopefully another reader has it!
Try this:
select SPName = o.name, DLLName = c.text
FROM syscomments c (NOLOCK) LEFT JOIN sysobjects o (NOLOCK) ON c.id = o.id
WHERE o.type = 'X' and c.text like '%.dll'
order by SPName
Thomas Rushton
blog: https://thelonedba.wordpress.com
Viewing 4 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply