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 |
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_MSgetversionxp_dirtreexp_enum_oledb_providersxp_enumcodepagesxp_enumdsnxp_enumerrorlogsxp_enumgroupsxp_fileexistxp_fixeddrivesxp_getnetnamexp_readerrorlogxp_regdeletekeyxp_regdeletevaluexp_regreadxp_regwritexp_subdirsMore 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) |
 |
|
|
|
|