Using SQL 2000 and SQL 2005
I have created a function on a SQL 2005 machine that parses XML data in a table that has an xml data type.
I need to call this function from a SQL 2000 machine.
I created a linked server using the following connection string:
Provider=SQLNCLI10;Server=<ServerName\Instance>;Database=<DatabaseName>;Trusted_Connection=yes;
I am able to connect to the SQL 2005 machine though the linked server but, I only have access to tables and views.
I need to be able to call my UDF and pass in a parameter and get data back.
What am I missing here?
Thanks in advance.
GF