Skip to content
Advertisement

Tag: stored-procedures

How to create SSRS report that use different aggregation algorithms on the same column? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 2 years ago. Improve this question I’d like to create a report that has columns like Year, Month, Earnings. From Month Jan. to Sept, the report

How to print the cursor values in oracle?

I am new to oracle and I am learning cursors.My table City has two columns city_id,city_name.So,this is what I tried: i am trying to assign the data of cursor to the newly declared value v_list SYS_REFCURSOR;.But the output is coming as error at v_list := city_list;.How can I assign all the values of cursors to the another cursor directly or

Invalid object name of stored procedure error

I have a stored procedure such as below : when I execute this procedure, I get an error: Invalid object name ‘dbo.sp_InsertPumpsStatus’ What is problem? Answer In your script, It can be clearly seen that, You are giving same name to the stored procedure as the table in statement. Make sure the defined table on Insert statement is correct. If

Advertisement