I suggest you check the permissions on your stored procedure. Also, is dbo the owner of the stored procedure. If all this is correct, check the database role for the user trying to execute the stored procedure.
I am having the same problem with vss. But I've leaned this only occurs when I try to check in a report. The report has two seperate files with different extensions. One has an extension of .dsx and it appears to have been checked out and checked back in, but the file with extension .dsr...
Your select statement should look like this:
Select c.case_id as 'CASE_ID',
case when c.reaction_id_eyes is null then
'(none)'
else
(select reactions.reaction_name_eyes from reactions
where reactions.reaction_id = c.reaction_id_eyes)
end as...
I have to populate tables monthly for a printing job. Each table is populated using the same code. Is there a way to pass the table name into a stored procedure and have it populated. When I try to just pass it into the stored procedure I get an error, because the code does not recognize the...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.