I need to insert metadata into temp table. It was working fine in 2008 R2. Below is my query.
Insert INTO #Temp (SELECT * FROM OPENROWSET('SQLNCLI','Server=.;Trusted_Connection=YES;', 'set fmtonly off; EXEC msdb.dbo.sp_help_job') )
Getting this error and unable to resolve.
Msg 11520, Level 16, State 1, Procedure sp_describe_first_result_set, Line 1 The metadata could not be determined because statement 'EXECUTE master.dbo.xp_sqlagent_is_starting @retval OUTPUT' in procedure invokes an extended stored procedure.
1 Answer 1
Try using WITH RESULTSETS as indicated by this connect item
-
Let me try and i will updatePuskar– Puskar2016年08月16日 18:50:22 +00:00Commented Aug 16, 2016 at 18:50