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.

 All Forums
 SQL Server 2005 Forums
 SQL Server Administration (2005)
 Undocumented Extended Stored Procedures

Author  Topic 

MGouders
Starting Member

30 Posts

Posted - 2009-09-10 : 11:19:51
Greetings,

Coming across a list of undocumented extended stored procedures I wonder, where the actual T-SQL code of them can be looked up?

Here is the xp list:
sp_MSgetversion
xp_dirtree
xp_enum_oledb_providers
xp_enumcodepages
xp_enumdsn
xp_enumerrorlogs
xp_enumgroups
xp_fileexist
xp_fixeddrives
xp_getnetname
xp_readerrorlog
xp_regdeletekey
xp_regdeletevalue
xp_regread
xp_regwrite
xp_subdirs

More info about them can be found at [url]http://www.mssqlcity.com/Articles/Undoc/UndocExtSP.htm[/url]

robvolk
Most Valuable Yak

15732 Posts

Posted - 2009-09-10 : 11:55:37
quote:
where the actual T-SQL code of them can be looked up
Extended procedures are not written in T-SQL. They are typically written in C++. The compiled DLLs are registered for use so the source code is not available (especially Microsoft, especially for undocumented code)
Go to Top of Page
   

- Advertisement -