Developing and Deploying SQL Sever Apps on Windows Integrity
38 of 39
11. Some of the 64-bit runtime dlls must be copied to the IA-64 machine for VC++
application execution on IA-64. Those files are msvcp80.dll, msvcr80.dll, msvcm80.dll
and Microsoft.VC80.CRT.manifest. To install these dlls and the Itanium compiler, select
the "Itanium Compilers and Tools" check box during a Custom installation. Copy these
dlls to the target machine.
12. Write your VC++ code and compile using the Itanium compiler. A sample HelloWorld
program is shown below.
#include <iostream>
using namespace std;
void main() {cout << "Hello World!" << endl; }
13. Copy the files to the location in the Integrity Server. And run the following T-SQL code
from the Integrity Server management studio.
Create procedure ……………..
14. Execute the application by typing the following. This will display Hello World on the
Query Result screen.
dbo.HelloWorld();
15. For run time issues in executables on Integrity Server, use the Remote debugging
Monitor as described in Section 2.3.
Additional Resources
1) Anti virus running on SQL Server
http://support.microsoft.com/?kbid=309422
2) SQL Server Books Online July 2006
http://www.microsoft.com/downloads/details.aspx?familyid=BE6A2C5D-00DF-4220-
B133-29C1E0B6585F&displaylang=en
3) ADO.NET CTP August 2006
http://www.microsoft.com/downloads/details.aspx?familyid=b68f6f53-ec87-4122-
b1c8-ee24a043bf72&displaylang=en
4) .NET Framework 3.0 Pre Release
http://www.microsoft.com/downloads/details.aspx?FamilyId=19E21845-F5E3-4387-
95FF-66788825C1AF&displaylang=en
5) SSIS API Programming