I am facing a wierd problem with SQL Server standard edition SP2.
I have a statement like
SELECT A,B,C, ....,
dbo.TEST_GETATT ENDEEDETAILS(CI .SI_ID) AS SI_ATTENDEENAME ,
X,Y,Z
from .....
The function emits a CSV string. When I run the above command, I get
an error that says:
A transport-level error has occurred when receiving results from the
server. (provider: Shared Memory Provider, error: 0 - The system
cannot open the file.)
The client loses contact with the DB server. From the logs I can see
that SQL server gets autostared.
If I comment out the function call, the statement runs fine. If I
uncomment the function call then, it works fine and gives the expected
result.
What could be the reason?
Thanks,
Yash
I have a statement like
SELECT A,B,C, ....,
dbo.TEST_GETATT ENDEEDETAILS(CI .SI_ID) AS SI_ATTENDEENAME ,
X,Y,Z
from .....
The function emits a CSV string. When I run the above command, I get
an error that says:
A transport-level error has occurred when receiving results from the
server. (provider: Shared Memory Provider, error: 0 - The system
cannot open the file.)
The client loses contact with the DB server. From the logs I can see
that SQL server gets autostared.
If I comment out the function call, the statement runs fine. If I
uncomment the function call then, it works fine and gives the expected
result.
What could be the reason?
Thanks,
Yash
Comment