SSRS Reports With Oracle DB--some One Plz Help Me.

Nov 21, 2007



Hi Guys,
I am creating SSRS report using Oracle DB. When i run this query in TOAD, it's giving output but when i run this in SSRS to create new dataset then it is giving me ORA -01008:not all variables bound(Microsoft OLE DB provider for Oracle).

This is the query iam running.

SELECT ts.transaction_status_desc, COUNT (ut.transaction_id) AS transcount
FROM dsc_transaction_status_vl ts,
dsc_user_transaction ut,
billing_markets bm,
retail_location rl,
cash_register cr
WHERE ts.transaction_status = ut.transaction_status
AND ut.cr_number = cr.cr_number
AND cr.rl_number = rl.rl_number
AND ut.RL_NUMBER = rl.RL_NUMBER
AND rl.bm_code = bm.bm_code
AND (ut.creation_date BETWEEN tartDate AND :EndDate)
AND bm.bm_name IN
(CASE (:Market)
WHEN 'OKC' THEN ('OKLAHOMA CITY' || 'TULSA')
WHEN 'NFL' THEN ( 'DAYTONA'|| 'JACKSONVILL' || 'MELBOURNE'|| 'NORTH FLORIDA'|| 'ORLANDO' || 'WEST FLORIDA' )
WHEN 'LA' THEN ('PAC Los Angeles')
WHEN 'CAR' THEN ('Carolinas')
END
)

I am passing 3 parameters: StartDate, EndDate and Market.
we have 3 markets and each market includes some cities. Cities are in BM_NAME column.
My Question is that
1) How to pass parameters for Oracle using SSRS
2) How to resolve this error: ORA -01008:not all variables bound(Microsoft OLE DB provider for Oracle)
3)How can i write Stored Procedure for this query & How to execute SP in SSRS.

Please reply me. Thanks in advance.

Thanks
Santosh

View 11 Replies


ADVERTISEMENT

Issues Using Parameterised Reports Connecting To Oracle Using ODBC And Microsoft OLE DB Provider For Oracle

Sep 12, 2007

I have an issue using parameterised reports connecting to Oracle using "ODBC" and "Microsoft OLE DB Provider for Oracle" using parameteried reports. The following error is generated "ORA-01008 not all variables bound (Microsoft OLE DB Provider for Oracle)" and a similiar one for ODBC. It works fine for simple reports. Do these 2 drivers have issues passing parameters for a remote Oracle query?
Thanks.

View 4 Replies View Related

Reports Usage Frequency For All The Existing Reports On SSRS 2000

Mar 18, 2008

I have an already published application running several MS SQL Server 2000 Reporting Services report.
I need a way to find from either the reporting services log or the application server (IIS) logs or windows log
to know the frequency of each report being used.

Based on this info, the business needs to know which reports are being used and to what extend?
How can I acheive this?

I have already got the IIS logs and it did not give the required info.
I have looked into the Reporting Services logs but it does not provide the info either.

Any help is appreciated

View 2 Replies View Related

Reports Usage Frequency For All The Existing Reports On SSRS 2000

Mar 18, 2008

I have an already published application running several MS SQL Server 2000 Reporting Services report.
I need a way to find from either the reporting services log or the application server (IIS) logs or windows log
to know the frequency of each report being used.

Based on this info, the business needs to know which reports are being used and to what extend?
How can I acheive this?

I have already got the IIS logs and it did not give the required info.
I have looked into the Reporting Services logs but it does not provide the info either.

Any help is appreciated

View 1 Replies View Related

Converting Crystal Reports To SSRS Reports

Mar 27, 2008


My issue is with converting multi-value parameters:

In Crystal Reports, you can set a parameter to accept multiple vales (Discrete, Range or Discrete and Range).

As an example:

I have a database table with a column called ID.
I can create a parameter called param_id and set the options of the parameter to "Allow multiple range values".

With this setup, I can limit the result set of the report by comparing the param_id parameter to the ID column in the database. Because param_id is a multi-value range parameter, I can pass it the following data:
1 - 50
60 - 80
150 - 127

This will only return results within those ranges.


Does anyone know if SSRS provides this kind of functionality?

Thanks,

Patrick Conway

View 9 Replies View Related

Can I Write SSRS 2008 Reports To Run On SQL 2005 SSRS?

Sep 12, 2007

Is it possible to write SSRS 2008 reports to run on an existing SSRS 2005 server?

If yes, what do I need to do to be able to write SSRS 2008 reports on my developer PC that will run on the SQL 2005 Server (which also has SSRS 2005 installed on it)?

I installed Visual Studio 2008 beta on the development PC and it appears that it needs SSRS installed on it too. So I installed SQL 2008 SSRS (SQL Server Reporting Services) and SQL 2008 Workstation Components onto the developer PC. Next I run the SQL 2008 "Reporting Services Configuration" tool. When I click on the "Web Service URL" section it hangs indefinitely and I have to force it closed.

The developer PC is Windows Vista Business.

Any suggestions on making this work, or any other information that you can think of that would allow me to use Visual Studio 2008 and the SQL 2008 "Report Designer Preview" tool to develop SSRS reports that will run on the SQL 2005 SSRS server?

Thanks!
-ErikR

View 4 Replies View Related

REPORTS IN ORACLE 10G

Feb 22, 2008

HI FRIENDS
I HAVE SOME PROBLEM IN ORACLE 10G. I HAD TRY TO CREATE A REPORT IN 10G BUT SOME HOW I DONT KNOW THERE IS COMPILATION ERROR , WHICH I DONT UNDERSTAND ,IF THERE IS ANYBODY TO SOLVE IT
I POST MY PROBLEM WITH ERROR MESSAGE.

CREATE OR REPLACE FORCE VIEW "RES" ("ROLLNO", "ANAPHYNO", "ANAPHYSIOIA", "NUTRIBIONO", "NUTRIBIOIA", "TOTAL1", "TOTAL2", "RESANA") AS
select "BARCODEDETAIL"."ROLLNO" as "ROLLNO",
"THEORY"."ANAPHYNO" as "ANAPHYNO",
"INTERNALASSESSMENT"."ANAPHYSIOIA" as "ANAPHYSIOIA",
"THEORY"."NUTRIBIONO" as "NUTRIBIONO",
"INTERNALASSESSMENT"."NUTRIBIOIA" as "NUTRIBIOIA",
"THEORY"."ANAPHYNO" + "INTERNALASSESSMENT"."ANAPHYSIOIA" as Total1,
"THEORY"."NUTRIBIONO" + "INTERNALASSESSMENT"."NUTRIBIOIA" as Total2,
CASE WHEN ("THEORY"."ANAPHYNO">=.5*"THEORY"."ANAPHYNO") THEN "PASSED" ELSE "fail" END as RESANA
from "THEORY" "THEORY",
"INTERNALASSESSMENT" "INTERNALASSESSMENT",
"BARCODEDETAIL" "BARCODEDETAIL"
where "BARCODEDETAIL"."ROLLNO"="INTERNALASSESSMENT"."ROLLNO"
and "BARCODEDETAIL"."ANAPHYBC"="THEORY"."ANAPHYBC"
and "THEORY"."NUTRIBIOBC"="BARCODEDETAIL"."NUTRIBIOBC"
/

ERROR MESSAGE
COMPILATION FAILED,LINE(0(00:03:08)
ORA-00904: "FAIL":INVALID IDENTIFIER

View 1 Replies View Related

Reports And Oracle Error

Nov 29, 2007



Hi,

I am using a Oracle database to connect to and generate reports from it. Intermittently, the report after running for sometime raises the oracle error

ORA-12842: Cursor invalidated during parallel execution, which I read could possibly be due to DDL on a schema object and shared pool being flushed. Rerunning again, the report runs fine.

How can this be resolved. Any suggestions/tips are appreciated.

Thanks,
Swami

View 3 Replies View Related

Cannot Connect To Oracle Using SSIS Or Crystal Reports

Oct 9, 2007

I am working with the IT department at a client site trying to hook into Oracle. We are using Windows Server 2003 64-bit, SQL Server 2005 Standard 64-bit, Oracle 10-g 64-bit and Linux Red Hat 64-bit. All service packs are current.

We are working on a data warehouse project where we need to import Oracle information periodically throughout the day and integrate it in a central location with data already residing in SQL Server. This is the first time I have tried to pull data from Oracle. The databases in Oracle and SQL Server that we are pulling data from are third party application databases.

My client cannot connect to Oracle using Crystal ODBC connections. When we use either the .NETor OLEDB connections, we get the "client tools need to be installed" message. We do have the client tools installed on the WIndows Server that SQL Server is installed on. We can connect to Oracle from this locattion using Aqua Data Studio and SQL *PLUS. I checked and there is only one tnsnames.ora file on the server. I used the name from there to try to connect using SSIS. Still no luck.

I did see somewhere that there is a possible issue with 64-bit installations. We really need to get this connection working.

Thanks!

Jeanne :-)

View 2 Replies View Related

Migrate Oracle Discoverer Reports To SqlServer 2005

Mar 12, 2008



Hello everybody.

Recently my boss decide migrate reports in Oracle Discoverer to SqlServer 2005 using Reporting Services..because SqlServer is less expensive than Oracle. ..
Well I don't know exactly How do I began? because it's new for me.
Any has experienced? Can you give any recomendations to migration?


Thanks.

View 1 Replies View Related

Oracle 7.3 And SSRS

Oct 31, 2007

I am wokring on HP9000 system which uses Oracle 7.3 version on it. I am creating a Procedure to get the results as a REF cursor as suugested by this articale http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=382454&SiteID=1.

If I select Oracle as a datasource unfortunately I am getting this message " System.Data.OracleClient requires Oracle client software version 8.1.7 or greater" and if I select ODBC as a datasource and trying to connect I am getting this message " ERROR [42000][Oracle][ODBC][Ora]Ora-00900: invalid SQL Statement (SQLORA32.DLL)".

I created this procedure in side a package and I am calling it as Package.ProcedureName

example: "UnAllocatedSSN.UnAllocatedMembersList "


Please help. Deepak

View 4 Replies View Related

SSRS && Oracle

Apr 2, 2008



Is it possible to use SSRS if my backend database server is Oracle server. If possible what will be the settings for data source.

View 1 Replies View Related

SSRS Or Crystal Reports

Feb 19, 2008

Hello all ...

I want to know which would be the best for reporting in either of the above two. I am working on with SSRS but don't have any idea about crystal reports. So you all please suggest the best one would be for me espcially for web based reporting.

Regards,

View 7 Replies View Related

How To Fax Reports From SSRS 2005

Nov 17, 2006



How do I fax out reports from SQL Server Reporting Services (SSRS) 2005? I tried RightFax 6.0 but it didn't work.

View 4 Replies View Related

SSRS Vs. Crystal Reports

Jul 13, 2007

Hi, all. Does Microsoft provide a document comparing SSRS against Crystal Reports? Thanks.

View 1 Replies View Related

Access Reports To SSRS

May 8, 2008

Hi All,
I have a project that is already in MS Access that has many reports and I must develop the same project in .NET with SSRS for the reports. By seeing the same scenario in these forums I imported by right clicking on the project name, all the reports from Access have been imported..
My question is, that will the imported reports from MS ACCESS will be the same as that of the reports we will generate in SSRS? and can I use them as final reports. And call these reports in my .Net code..Is there any article regarding this please provide so that I can read and learn how to use that.. And for each .rdl files the data set si coming as dataset1...can we change the dataset name?..Please repond..ASAP.

Thanks
dotnetdev1

View 4 Replies View Related

SSRS Oracle Connection

Apr 18, 2007

Hi,



We are trying to change our current SSRS reports to point to an Oracle 10g database. I can connect to the Oracle db from the report server via the ODBC Administrator and also through the BI 2005 studio. The connections work fine. However, when I publish the reports and try to run them from the web I always get a connection error. When I use the oracle connection it acts as if it doesn't see the oracle client and when I use ODBC it throws a werid 114 error.



Is there anything I am missing? I just don't understand why the report will work in BI Studio, but not when it is published (on the same machine)?



Any thoughts?



S

View 1 Replies View Related

Dynamic Columns In SSRS Reports

May 29, 2012

I have 100+ columns and I want to create a SSRS report which has to have dynamic columns and data. The source tables looks as below:

(First row has column names)

Formula1 Formula1_Amount Formula2 Formula2_Amount .........
Pen 1001 Pencil 100

View 1 Replies View Related

Accessing Registery Key In SSRS Reports

Feb 29, 2008



I am not able to access registery key in report when report is deployed on reporting server. But when that report (.rdl) is opened in a Business Intelligence project it is able to access registry key.
So, my question is what need to be done to get value of registery key in reports deployed on reporting server.

View 3 Replies View Related

How To Create Dashboard Reports Using SSRS?

Mar 24, 2008

Hi Folks,

I have SSRS and Asp.net2.0. i have been asked to create the dashboard reports for our organization. please give me some tips, how to develop the dashboard reports using this technology?

Is there anyother resources avilable to develop this dashboard reports? thanks in advance..


Thanks,
Senthil

View 11 Replies View Related

How To Stop SSRS Reports Subscriptions

Mar 11, 2008



We have 7 SSRS reports subscription which execute every night at various time intervals.



Some times, due to database unavailability subscriptions can not access the source database, so these subscriptions continuously try to connect the database. (Even after setting connection time out.)



When the database is up again, all these subscriptions create bottleneck for the database and the whole system crashes.



So we want to stop subscriptions after some time interval (lets say 2 hours after it starts),

After that time interval what ever may be the status of the subscription (processing, done or fail) it should stop.



Please let me know the solution, Thanks in advance.

View 1 Replies View Related

Deploying Reports From SSRS Project

May 19, 2008



I have created some reports in BIDS and saved them to a folder in my m/c (without deploying them) . i want to deploy that to the report server through C# code.

i can deploy that onto any Report Server. For that I will have to change the datasource connection string.

Is there a way to achieve this. Please let me know if it is there.


Regards...
Girija Shankar

View 5 Replies View Related

Converting Crystal Reports To SSRS

Apr 3, 2007

I came across a website that claimed "There are approximately 116 functions in Crystal Reports that do not have a direct equivalent in VB.NET or Reporting Services (SSRS)." Does anyone know what these functions are?

View 3 Replies View Related

SSRS Reports On Blackberry Device...

May 23, 2007

Hi all,



I m new the the SQL Server Reporting Service and Blackberry Device...I want to view my SSRS ReportServer on Blackberry Device...



Is anyone know how is it possible???



Thanking you in advance...



Regards,



Balwant Patel.

View 3 Replies View Related

Migrate SSRS 2005 Reports

Jul 23, 2007

Hi,

I need to move few folders from our DEV SSRS 2005 environment to another
server. Folders will be moved to new parent folders.
Is there any tool that I can use fot this purpose?
I used RSScripter from SQLdbatips.com. Although the tool works great but it
can't script multiple folder reports. I have to script one by one and it is
a big problem.

Thanks
Alex

View 1 Replies View Related

Reporting Services :: KPI In SSRS Reports

Apr 29, 2015

I have a Manager dashbord  report.In this report 1st page contains some tables and 2nd,3rd page contains line charts with tables.Actually what we need is in 1st page tables are pretty simple,we need to add kpi's and shown these tables in kpi. kpi in ssrs and how to add kpi in ssrs reports?

View 2 Replies View Related

How To Make Drill Through Reports In SSRS

May 20, 2008



Hi All,

I want to know How to make Drill Through Reports in SSRS ?

Please Suggest.

Ritesh Kumar

View 5 Replies View Related

E-mail In SSRS Reports With Attachment

Mar 13, 2007

Hi All,

In my SSRS report there is a column with email field, when the user clicks on it -- it should open the outlook and in the attachment field there should be a screenshot of that report

i think anything i could do is only in the jump to url in the navigation tab......Please suggest me the solution or any other alternatives.

Thanks in advance for help

Warm Regards,

Chanduu.

View 1 Replies View Related

Reports Deployment And Ssrs Installation

Apr 7, 2008

i'm a new developer and working with ssrs , any one can provide me by the steps of Reports Deployment and ssrs installation . i'm using sql server 2005 with asp.net ,vb.net ....

thanks

View 1 Replies View Related

SSRS 2005 Link Reports

May 23, 2007

In SSRS 2005, Is it possible to have a link in one report (i.e. report A) to be directed to report B.
Can you show me guidance on where to start please?

View 3 Replies View Related

How To Deploy The Reports Automatically In SSRS?

Feb 3, 2007

Hi,

I am creating a application to show reports for daily based information.

I have created the reports and i am changing the data source at run time.In order to view the updated reports, i have to deploy.

So i need to deploy the reports automatically.

can any one gave a idea to do this.

thanks

View 6 Replies View Related

SSRS:User Defined Reports

Oct 12, 2007

Hi Experts,

I'm using SSR5 2005. I have a set of Cubes. Any idea as how to created customized reports using SSRS. The end user should be able to create reports by himself. Please help or send me some links where I can get help in this regard.

Thanks & Regards,
Naveen J V

View 4 Replies View Related

Comparision Of SSRS With Crystal Reports

Apr 23, 2008


1) Crystal Reports provides extensive parameter support. The types of parameters supported are: single value, multi-value, and range value (e.g. Start date to End date), or a combination of all three.
2) SSRS parameters only support entry of a single value. It doesn't support multi-value parameters or range parameters. For example, the user can't be presented with a list of Employees and select more than one for reporting on. Doing so requires writing custom code and writing more complex SQL queries

View 5 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved