The information in this article applies to:
SUMMARY
When calling extended stored procedures from SQL Server, the main DLL and
all the DLLs which are being called from the extended store procedure need
to be on the path during the startup of SQL Server. Otherwise, when an
attempt is made to execute the extended stored procedure, you will get a
message saying,
where mydll is the name of the extended stored proc DLL. MORE INFORMATION
This problem commonly occurs when using dynamically linked C runtime
libraries. The file name for Win32 SDK dynamic C runtime library was
CRTDLL.DLL (import library CRTDLL.LIB), which comes with the Windows NT
operating system. The file name for Visual C++ for Windows NT dynamic C
runtime library is MSVCRT10.DLL (import library MSVCRT.LIB), which does NOT
come with the operating system. (Therefore, the Independent Software
Vendors (ISVs) would have to distribute it with their extended stored
procedures.)
Additional query words: 4.20 Windows NT
Keywords : kbother kbtshoot SSrvTran_SQL |
Last Reviewed: March 18, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |