Click here to Skip to main content
16,019,149 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,
I'm trying to create an rdlc report using oracle 11g. But in rdlc report datasource generation only tables and views are shown, stored procedures are not shown. But I want to use procedures. How can I do that. Please anybody help me out. Thanks in advance.
Posted

1 solution

But in rdlc report datasource generation only tables and views are shown, stored procedures are not shown.
StoredProcedure does not store data information and thus they are not shown along with Tables and Views. SP's are queries on a high level and thus, you can use SP's as a query to fetch data in your report.

Further, SP's will fetch specific data based on certain conditions where as Tables/Views are to store/collate all the data irrespective of specific criteria.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900