Can any one help to solve creating reports of rdlc using Oracle stored procedure.
RDLC accepts object (POCO, StrongTyped DataSet, ...) as data source. So it doesn't matter where data source comes from.
Related
I'm trying to clean up my SQL database and find out which fields are not being used. Is it possible to find all fields from SQL that are being used in Crystal Reports without manually looking in each query?
Thank you!
I am currently attempting to create a local RDLC report that contains a map within visual studio 2012.
This report will fetch its data from a SQL dataset that contains a spatial data column. This dataset is generated from stored procedure and contains a field with the geography data type.
The problem I am having is that as soon as I attempt to create the dataset I receive the error within the screen shot below.
Could someone please explain how I can create a dataset with the geography data type if I cannot use the wizard?. I apologies in advance if I have missed something incredibly obvious...
Ive managed to get around the issue.
I used the guide below to assist me with creating a manual dataset.
http://msdn.microsoft.com/en-us/library/hh272532(v=vs.110).aspx
I am new to SSRS, I am creating a report which will take ID's as parameter e.g. 1,2,6,7,8,9 and so on. This parameter will be used for multiple reports. As a good practice I am thinking the user should not enter the ID for each report. Once entered/selected the ID parameter should be persistent for all the reports.
I am using Visual Studio 2008 to create the report and SQL Server 2008 R2 for backend scripting.
This can be done in an elegant way, but requires some work on the back end database.
If your reports are executing stored procedures, you can have the stored procedure for each report write the user's choice of a parameter to a table. Then the next report can check that table for a value. You could design this to be user specific, time-dependent, etc., depending on the effort you put in. It might be cleaner to set the parameter in a separate dataset. That is, in each report, you have multiple datasets. One grabs the parameter value, and your report parameters will default to that result. The other report data set can display the "main data."
so I have a template in Crystal reports using vb.net, I changed my data source location and that source still contains the needed tables for my report, the problem is this... My original template displays the exact report but when I changed its data source it duplicates the data in the details section(e.g I made a query that will show 1 item only,but instead I get 4).
Here is a screenshot of my problem:
(original at http://tinypic.com/r/5by6ih/5)
I want to alter the template rather than to make another one
This is normally down to an issue with the underlying SQL query. If you open the the report in Crystal (or visual studio) you should be able to "Show SQL Query". Run the query in Query Analyser or SQL Server Management Studio and look at the result.
If the underlying reason isn't then immediately apparent please paste the resulting output.
I have to make a new report using crystal report8.5 .
I have created a stored procedure in SQL Server 2005. The stored procedure has one input parameter.
Now I wanna to know that how I can add that stored procedure and show its result in my report
while designing that report?
thank you
First go to File > Options > Database (going from memory) and make sure the checkbox for Stored Procedures is ticked. Then, when you setup your connection to SQL Server, as well as a Tables section you'll see a Stored Procedures one beneath it. Find your stored procedure in the list, add it as the data source for your report, and you'll be able to use it as a normal source.