Reporting Service General Inquiry
Sep 13, 2007
Hi there
If you are working on enbvironment which the report development was done through local machine then you deployed the report to remote server, once you deployed the report to the reportserver does the .rdl file (source code) exist in deployment server?
So if I loose the solution on the local machine, can get this back from the reportserver or not?
I'm appreciated your feedback, that will be execellent.
Thanks
View 1 Replies
ADVERTISEMENT
May 16, 2008
i have a list report
some values of this are blank or null
i want to avoid that spacing if it is null
like
name:jjj
lastname kkk
firstname
address uuuu
i want it should be
name jjj
lastname kkk
address uuuu
View 3 Replies
View Related
Apr 11, 2006
Hello,
I'm very new to SQL Reporting services, and I am attempting to find out the following information. These are just high-level, yes or no questions:
1. Does Reporting Services contain the ability to give friendly names to database fields?
2. Does Reporting Services provide a way to create calculation fields that you can add to an ad-hoc report?
3. If #1 is yes, can you localize those friendly names?
4. Can you customize the ad-hoc reporting interface?
Thank you SOOO much for your help,
Crystal
View 1 Replies
View Related
Mar 14, 2008
A couple questions about SQL Server Reporting Services:
1. Can it be used for other data sources besides SQL Server (Oracle db, XML files, via APIs, etc.)?
2. Can it do ad hoc reporting? I like the "universes" that the SAP Business Objects product allows. Does Reporting Services have something like this, to provide a simplified view that non-technical business users can use to create their own reports? Or is Reporting Services just the equivalent to Crystal Reports?
(I wanted to post this in the general MSDN forum for SQL Server, but I can never log in there for some reason.)
View 3 Replies
View Related
Aug 9, 2006
I just have a basic inquiry about sql server mngt studio.
I have create about 50 tables under the Master database. i no longer want them there and would like to place all 50 of my tables into another database. The only way I can seem to go about doing it, is to go into the code and change "Use [Master]" to "Use [Quickwire]", where quickwire is my new database name. however, since there are so many tables this is a very tedious process. Is there an easier way...like a copy and paste concept?
Please let me know if there is..
View 2 Replies
View Related
Feb 15, 2008
Hello,
My question is more related to the process because I'm new to sql server 2005 (or 2008).
Here is the scenario:
I set up a company's application database at DATE1. As time goes by, I have created custom tables, views, stored procedures...
Now, for whatever reason, the server needs to be restore back to DATE1. Now my question is how can I keep and restored the custom tables, views and other entities that I have set up before?
I'm looking if there's an utility somewhere to let me compare the actual state of my database and the original one and let me know the differences and ask me if I want to save the differences.
I hope you understand my question.
Thank you
View 1 Replies
View Related
Mar 27, 2006
We are using the whole BI-package from Microsoft - from SQL, DTS-package,Raporting Service and Analyze Service.
It should be very helpful to be able to create a metadata databases where you could find all releations between different objects (tables,views,reports,cubes,DTS-package,Databases.
Just to get answer for: 'where is view xxx used', 'what are Report xxx depending upon'.
While everything exists in different SQL databases it should possible to do.
Has anyone any comments or the same needs ?
View 1 Replies
View Related
Jul 2, 2007
Hi to all,
I have asked this kind of question from another forum, which is the xtremevbtalk, but with little luck, only one has replied to my inquiry. I hope any of you can give me ideas. My question is this:
Do stored procedures execute exclusively on the calling program/thread (whatever you call that to the process that called the stored procedure)?
I mean if I have a stored procedure that adds a record in a certain table, and then it retrieves the autonumber of that newly inserted record (like the @@IDENTITY in SQL SERVER), and then use that retrieved ID for use in another table, will it work correctly? (Assuming that the stored proc is bug free.)
Is that good to implement in a multi-user environment? What happens if another user called that stored procedure too? User A called the stored procedure, and in a split second, User B called it too? Is it possible that User B will abe able to retrieve the ID of the newly inserted record that was made by User A?
Is stored procedures a good way to resolve concurrency issues? If not, maybe anyone could give me some ideas or clues how to approach solving concurrency and multi-user issues in database programming.
Thanks and god bless!
View 14 Replies
View Related
Oct 11, 2007
I have used this stored procedure for a project
ALTER PROCEDURE DeleteRecord
AS
Begin
Delete from TestEvents
where TestDate <= DATEADD(year, -2, GETDATE())
End
This stored procedure deletes test event data older than 2 years and when i right click and execute the stored the procedure from the server explorer, the stored procedure executes and deletes the relevant records from the database. Therefore i used this stored procedure in a click event as follows,
Dim myConnection As SqlConnection
Dim MyCommand As New SqlCommand
Dim i As Strin
i = MsgBox("Are you sure to delete Old Test Events?", MsgBoxStyle.YesNo, )
If i = vbYes Then
Try
myConnection = New SqlConnection("Data Source=.SQLEXPRESS;Integrated Security=SSPI;AttachDBfilename= '" & strPath & "'; ")
myConnection.Open()
MyCommand.Connection = myConnection 'Active Connection
MyCommand.CommandText = "DeleteRecord" ' Stored Procedure to Call
MyCommand.CommandType = CommandType.StoredProcedure 'Setup Command Type
MyCommand.ExecuteScalar()
myConnection.Close()
Catch Excep As Exception
MessageBox.Show(Excep.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error)
End Try
End If
End Sub
I checked the connection string and the code and it does not contain any build errors but when the button is clicked the relevant records on the database are not deleted..
Could some one please provide me with a solution..
Thanking you..
Chris
View 4 Replies
View Related
Mar 31, 2006
Hello,
In our project, we would like to use the same data source for our analysis service database cubes and for our reporting service reports.
I created the analysis service project first, deployed successfully. When trying to setting up the data source in the report model project, I selected the "create a data source based on another object", and then selected the "create a data source based on an analysis service project". However, there is no analysis service project to select, and no browse button to see where the reporting service is looking for analysis service project either.
I have tried creating a new analysis service project with data source views, cubes, dimensions and all the stuff, but still cannot see the analysis service project in the drop down box to be selected for my reporting model project data source.
As I am fairly new to the reporting service, I'm sure I'm missing something, but couldn't find much information in the help or on the web. Any suggestion would be much appreciated.
Thank you very much,
Annie
View 5 Replies
View Related
May 14, 2008
Hi all,
I have some problem about reporting service add-in.
After I install reporting service add-in for SharePoint, reporting service menu does not appear in Application Management Tab in SharePoint Central Administration.
I try to uninstall and re-install again, it remain not work.
How can I solve this problem?
Thank you very much.
View 4 Replies
View Related
Sep 4, 2007
Hi,
Can we pass the Database name/Catalog name for the datasouce that will be used for report,
as a report parameter . Is yes can any one help me on how to achieve that .
Thanks in Advance
View 1 Replies
View Related
Sep 16, 2015
One of my report has different data types like decimal,percentage and integer values.
When I exported the report to excel , all the values are showing as "general" data type.
How to get excel data type same as ssrs report data type by default when exported to excel?
View 2 Replies
View Related
Mar 28, 2007
Hi,
I am using SQL Server 2005 Reporting Services. I want to make it secure. I am also using WCF services and made them secure using Claim based System.Identity Model.
I want to apply same claim based model to Reporting Services.
How can I do that?
Amit
View 2 Replies
View Related
Sep 3, 2007
Hello sir
I am using SQL Reporting Service in SQL Server 2005
There I am creating a Report from Parameterised Stored Procedure
Its show the report after clicking on Button View
but it not sort a data according to parameter
Please help me out in this
Thanks
Ever Smiling
Ashish
You Have to Loss Many Times to Win Single Time
View 2 Replies
View Related
Nov 23, 2005
let's work together
View 1 Replies
View Related
Feb 8, 2008
How to deploy the newly created report on the Reprt Server
View 3 Replies
View Related
Feb 9, 2006
Hi all,
I am new to reporting services.
I have to call the reporting service(some else did this) from the web application that I have created using VB.NET . Not sure how to do it .. was reading few articles on the web .
Any good atricles out there ?
I have created web reference to http://server/ReportServer/ReportService.asmx in my web app. The report expects one parameter .
Below is the code I was starting to write to call the reporting service
Dim rs As New RSWebReference.ReportingService
rs.Credentials = System.Net.CredentialCache.DefaultCredentials
Dim result As Byte
Dim encoding As String
Dim mimetype As String
Dim parameters(2) As Parametervalue()
For some reason I cannot do ParameterValue() it says undefined. I am using Microsoft .NET Framework 1.1 . do I have to use ASP.net2.0 for using reporting services?
ANy way i can get this working
Thanks in advance.
View 2 Replies
View Related
Apr 17, 2008
I have already Installed SQL Server management studio express edition in my computer. Now I want to install SQL reporting service.
Can anyone please guide me to how to do that.
Thanks
Kalloo
View 1 Replies
View Related
May 14, 2004
Hi all
When I'm installing sql reporting service I get an error that says "ASP.NET is not installed or is not registered with your web server."
I have iis installed, all of .net, and just installed .NET Framework Redist version 1.1
Can anyone tell me what I need to do to register ASP.NET or what I've done wrong.
Thanks for your help
Jerry
View 3 Replies
View Related
Apr 5, 2008
CAN ANYONE HELP ME OUT.
I have Generated a report using Tamil in reporting services in sql server 2005... i can able to generate and preview the report in local system,
But when i deployed in report manager server, the generated report
statement font's overlapping with others, even after alignment..
hope am clear...
pls gve the solution....
View 1 Replies
View Related
Jun 11, 2008
I want to make a table with dataset such as
employee
and in the header of the table i want to put
another table which has another dataset such as
empdata
Could you please help me
View 1 Replies
View Related
Jun 28, 2007
Hello all experts!
I have a problem I would be very happy if someone could help me out with;
I have a windows 2003 server with SQLExpress and Reporting Services.
I have developed a report in visual studio and successfully deployed that report to the server. I can browse http://localhost/reports to access the report and view them (Via terminal server). But when I browse the page from outside I recieve the following error;
"The attempt to connect to the report server failed. Check your connection information and that the report server is a compatible version."
If I run from VisualStudio 2005 and try to access the page I get this message;
"The request failed with HTTP status 401"
What is Wrong??
Thanks in advance for any good suggestion.
best regards
Nroblex from sweden
View 3 Replies
View Related
Sep 17, 2007
Hi there
I've created Report Parameter called AssetCode. In quiry for database, I've created like this:
SELECT a.id1, a.deliverydate, a.retirementdate, b.organisationname, c.costcentre,a.id4,mm.hierarchydescription
FROM Asset as a (NOLOCK)
LEFT JOIN makemodel as mm (NOLOCK) ON a.makemodelid = mm.makemodelid
LEFT JOIN OrganisationTree as b (NOLOCK) ON a.physicalLocationOrgID = b.orgid
LEFT JOIN AssetChargeSplit as c (NOLOCK) ON a.assetid = c.assetid
WHERE a.status = '2'
AND a.id1 LIKE @AssetCode
AND (mm.assettype = 1 or mm.assettype = 6)
ORDER BY a.id1 ASC,
c.costcentre DESC
But when you run a report, if you put for instance "NA196" as keyword, it doesn't return the data for "NA1961", "NA19602", "NA1965", etc etc. But if you put in textfield such as "NA196%", it get the data. ?!?! So how do replace this behaviour?
Thanks
View 3 Replies
View Related
Oct 1, 2007
hello there,
i am trying to using SSRS with Excel. in the BI Design(Visual Studio) wehn i preview the report i can see the report.but when i deploy it on the localhost and try to view the report in there.i get this error.please help
An error has occurred during report processing.
Cannot create a connection to data source 'DataSource1'.
ERROR [IM006] [Microsoft][ODBC Driver Manager] Driver's SQLSetConnectAttr failed ERROR [01S00] [Microsoft][ODBC Microsoft Access Driver]Invalid connection string attribute Trusted_Connection ERROR [01S00] [Microsoft][ODBC Microsoft Access Driver]Invalid connection string attribute Trusted_Connection ERROR [01S00] [Microsoft][ODBC Microsoft Access Driver]Invalid connection string attribute Trusted_Connection ERROR [01S00] [Microsoft][ODBC Microsoft Access Driver]Invalid connection string attribute Trusted_Connection
View 1 Replies
View Related
Feb 25, 2008
Hello, All!
It`s the first time with Reporting Services and would like to know if there
are any performance problems when installed on the same server with a SQL
Server.
I`m a Database Administrator and I have a SQL Server into a DMZ with almost
200GB of data and nowadays the company is demanding a Reporting Service into
a DMZ and we don`t have a dedicated server to use with. Otherwise, we buy a
SQL Server license just for this request don`t worth.
So, we decide to install Reporting Service on this server, but I have no idea
about how much recource is needed to handle it and if this installation could
cause any issues.
Anybody knows how Reporting Service works? Are there any best practices when
installing Reporting Services on a OLTP SQL Server ?
Thanks
Juliano Horta
View 3 Replies
View Related
Aug 19, 2005
Does anyone know if reporting services in sql server 2005 will supportquerying against the native xml datatype?
View 1 Replies
View Related
Jul 20, 2005
I have the following Question:Is it possible to install a Reporting Service at IIS Webserver withoutSQL Server 2000 on the same machine.We have a Enterprise SQL Server at another machine and i don't want toinstall another SQL Server at a IIS.Thank you for all responsesFlecki
View 1 Replies
View Related
Sep 30, 2006
Hi,
I'm new to SQL Reporting Service. Now only I've started studying that. My question is,
I wanna list out my product sales for each month for each keywords. For example, I have 4 products, some 15 keywords (its an ecommerce site. Visitor coming from a particluar keyword and buying some products. Wanna list out sales for each keywords and product for Every month. To know the quarter sales wanna see the sales and product name for particular keyword). I'm having reports for each month sales. like,
Keywords
Product A
Product B
Product C
Product D
Keyword 1
125
24
275
12
Keyword 2
456
245
67
1223
For quarter sales, I want to see the sales and keywords list for each month and for each products in the same report. I don't want to create one another report for each and every product and month. If I want to see the sales and keywords for a particular product I want a report like,For Product 1
Keywords
Month1
Month2
Month3
Month4
Keyword 1
125
24
275
12
Keyword 2
456
245
67
1223
and For Month 1
Keywords
Product A
Product B
Product C
Product D
Keyword 1
125
24
275
12
Keyword 2
456
245
67
1223
Just by using drilldown I want this report. If any other method is possible, please tell me. It's very urgent. Please Help me. I'm very new to SQL Reporting Service. Started studying before 2 days. Thanks.............
View 6 Replies
View Related
Apr 26, 2007
i use VS 2005 to develop.
And my DB is oracle
i use the SQL 2005 report service to crate the report .When i deploy to one server is ok .but when i deploy to another server (the server has install the sql 2005 & Oracle client is 10.1.0). when i try to view the report in this server : there will have some error message
An error has occurred during report processing. (rsProcessingAborted)
Cannot create a connection to data source 'CmtDataSoucre'. (rsErrorOpeningConnection)
System.Data.OracleClient requires Oracle client software version 8.1.7 or greater.
Hope some one can help.
Thanks
Lizzy
View 1 Replies
View Related
Sep 17, 2007
Hello Techies
i have SSRS 2005 report the source data from oracle views i simply select * from the view and display data for a particular entity say empID using filter in the reports which is passed as parameter
the question is whether SSRS will cahe the data and for subsquent request it will take from Cache instead of going back to database even if i change the parameter say empID 1,2,3,
please help me on this
thanks in advance
View 19 Replies
View Related
Dec 3, 2007
Hi Friends,
I have some problem in passing null value parameters in the URL to the Report Server.
Eg.http://localhost/ReportServer?/DTSPhase1/GetSearchResults&locationId=3&distributorId=1002&fromDate=30Oct2007&toDate=29Nov2007&orderTypeId=1&FromOrderValue=100&ToOrderValue=100000&OrderStatusId=1,2,3&TaxAuthority=1000&TaxStampType=1000&orderId=0&PurchaseOrder=null&OrderedBy=9c1a8a1c-f70b-4ef6-b990-3cf166dc4260,37b51693-bfa6-46e6-8c8e-5788774f90f8,c41d9617-7869-4c22-8816-5d2c879f130d,b160077d-8ede-4784-9cd7-6451c36be3ad&DorAdminId=1000,1001,1091,1089&rs:Format=HTML4.0&rs:Command=Render
if the Value of the 'FromOrderValue' parameter in the URL, it is showing the error like " Parameter 'From Order Value' is missing a value ".
So, i tried to hide the parameter 'From Order Value' at the report Server.Then, i got the same above error.
I can't able to assign default value for the parameter 'From Order Value'.
So, i need the solution for passing null values to the URL.
Thanks & Regards,
Rakshi
View 1 Replies
View Related
Jan 14, 2008
Hi,
Currently I'm trying to execute my reports but I'm getting this eror message:
Report Execution error
The report might not be valid or the server could not process the data.
when I click the "Details" buttom it shows me this information:
Para obtener más información acerca de este error, vaya al servidor de informes en el equipo del servidor local o habilite los errores remotos
----------------------------
No se puede crear una conexión al origen de datos 'dataSource1'.
----------------------------
Error al procesar el informe.
But another user can run the reports without any problem.
Can someone helps me with this please.
View 5 Replies
View Related