I am going through a linked server from my desktop to a AS400 using an ODBC connection To properly connect to a AS400 table with a single member I must use the following
SELECT *
FROM AS400_A.S1018328.NMLIB.NMPTSPL
I need to access a table with multiple members.
Several sources suggested the following to get to the proper member. Member in ()
SELECT *
FROM AS400_A.S1018328.NMLIB.NMPTSPL(STPICK)
However, I get this error
Msg 4122, Level 16, State 1, Line 5
Remote table-valued function calls are not allowed.
SELECT *
FROM AS400_A.S1018328.NMLIB.NMPTSPL
I need to access a table with multiple members.
Several sources suggested the following to get to the proper member. Member in ()
SELECT *
FROM AS400_A.S1018328.NMLIB.NMPTSPL(STPICK)
However, I get this error
Msg 4122, Level 16, State 1, Line 5
Remote table-valued function calls are not allowed.