Getting SQL stored procedure results into data.frame format using RODBC

后端 未结 3 1964
感情败类
感情败类 2021-01-20 00:33

I am using the RODBC package to query for results in my SQL server. I have a certain stored procedure written that, when executed in my SQL Server Mgmt. studio (for example)

3条回答
  •  挽巷
    挽巷 (楼主)
    2021-01-20 00:45

    I had the same problem.

    You can try using:

    set nocount on
    

    in the MS SQL Server stored procedure so it will return just a dataset.

    Regards,

提交回复
热议问题