Hi,
I have 2 sql server. A stored procedure on each. Stored procedure on server 1 needs to pass an ntext variable to sp on server 2 (this ntext parameter is basically an XML string).
The problem is that since I can't declare a local varaible as ntext inside a stored procedure, I can't pass it to the second server. If I use varchar (8000) it will cut some of my text. What is the best way to do this in SQL Server 2000?
Thanks
I have 2 sql server. A stored procedure on each. Stored procedure on server 1 needs to pass an ntext variable to sp on server 2 (this ntext parameter is basically an XML string).
The problem is that since I can't declare a local varaible as ntext inside a stored procedure, I can't pass it to the second server. If I use varchar (8000) it will cut some of my text. What is the best way to do this in SQL Server 2000?
Thanks