reporting-services

Does Visual Studio 2008 can produce/edit local reports(RDLC) for SQL Reporting Services 2008?

人走茶凉 提交于 2020-01-17 07:37:08
问题 Is there way to edit local reports (RDLC) from Reporting Services 2008 with Visual Studio 2008? Now it says that Report element was not found (this is due different schemas). For me this question is actual, because I want provide my customer with ability to design or customize reports with Report Builder 2.0. 回答1: Yes. The SQL server BI studio is actually visual studio. Once I installed VS Pro, the BI studio simply "merged" into it. UPDATE From SQL server books online: Upgrade will not delete

SSRS Expression #Error - Calculate variable shows error when dividing by zero

删除回忆录丶 提交于 2020-01-17 06:51:24
问题 I am currently using a formula to calculate a variable, which looks like: =(Fields!MontantInitialRegime.Value/Fields!MontantInitial.Value)*Fields!SoldeFacture.Value It works well, except for the cases where both numerator and denominator equal zero. I've done some research and I've tried to solve it by using the formula below, which doesn't work. =IIF(Fields!MontantInitialRegime.Value = 0, Fields!SoldeFacture.Value, Fields!MontantInitialRegime.Value / IIF(Fields!MontantInitial.Value = 0,

Can I use an existing dataset in SSRS?

吃可爱长大的小学妹 提交于 2020-01-17 06:18:29
问题 Related to a question I've asked earlier regarding SSRS, could anyone please tell me - Is it possible to reuse an existing dataset in SSRS? I know we can have shared datasets and we can convert a dataset to a shared one too. Currently we are using Crystal Reports. We are trying to migrate to SSRS. So we were trying to reuse the existing dataset which we've used to create Crystal Reports. There is no option I could see to convert this dataset to a shared dataset so that I can reuse it. I could

Can I use an existing dataset in SSRS?

不想你离开。 提交于 2020-01-17 06:18:27
问题 Related to a question I've asked earlier regarding SSRS, could anyone please tell me - Is it possible to reuse an existing dataset in SSRS? I know we can have shared datasets and we can convert a dataset to a shared one too. Currently we are using Crystal Reports. We are trying to migrate to SSRS. So we were trying to reuse the existing dataset which we've used to create Crystal Reports. There is no option I could see to convert this dataset to a shared dataset so that I can reuse it. I could

What is the difference between how the “Data” and “Preview” data generation works in BIDS?

对着背影说爱祢 提交于 2020-01-17 03:21:09
问题 When I select the "!" ("Run") button on the Data tab of the design surface in a BIDS project, it prompts me for the parameters the Stored Procedure I have selected needs: Once these are supplied, and I click the Okay button, I see the data returned in a grid within the Data tab. Using the same Stored Procedure (but not selected exlicitly - apparently the project knows which one to use based on what is selected in the Data tab) on the Preview tab, instead of prompting me for the Stored

SSRS: Cannot figure out permission set for enumerating files in directory

微笑、不失礼 提交于 2020-01-17 02:41:27
问题 I have a problem figuring out the permission set to get Directory.GetFiles() to work in an assembly used by SQL Server reporting services. Background Basically, I use this assembly to perform two things: read images from a file share enumerate all images in a folder on that share. Feature 1: Reading an image (works fine) Reading images works using a custom permission set: <PermissionSet class="NamedPermissionSet" version="1" Name="MyCustomImagePermissionSet" <IPermission class=

Parameter functioning in SSMS but not SSRS

放肆的年华 提交于 2020-01-17 00:53:41
问题 Assume I have the following query (simplified version of what im really using)... DECLARE @p_ServerName nvarchar(10) SELECT SystemName FROM Table_x WHERE SystemName = @p_ServerName OR @p_ServerName = 'all' When I set the parameter to a specific name ex: DB1 the rows are displayed in SSRS but when I input 'all' as the parameter, nothing is displayed. Yet when I do the same in SSMS it works just fine. Does anyone know what can be the problem here? Thanks. EDIT Here is the first query I tried

SSRS - Dataset return multiple rows (intentionally) -> How can I check a specific column in all rows for a certain value?

与世无争的帅哥 提交于 2020-01-16 09:08:45
问题 I have a report that by default returns one record based on the user input in SSRS. The key column in the database is Invoice number. Each invoice number comes with relevant information such as customer which I have scripted. Now I am trying to add another join to the script which is customerIndustry. The problem is some customers are involved in multiple industries, therefore the result of the query will not be a single row necessarily, in my case it can go up to 7. I am trying to use the

SSRS - Dataset return multiple rows (intentionally) -> How can I check a specific column in all rows for a certain value?

余生长醉 提交于 2020-01-16 09:08:08
问题 I have a report that by default returns one record based on the user input in SSRS. The key column in the database is Invoice number. Each invoice number comes with relevant information such as customer which I have scripted. Now I am trying to add another join to the script which is customerIndustry. The problem is some customers are involved in multiple industries, therefore the result of the query will not be a single row necessarily, in my case it can go up to 7. I am trying to use the

Sum of distinct in SSRS

☆樱花仙子☆ 提交于 2020-01-16 08:38:13
问题 I have to get distinct rows sum in SSRS expression. **StudentId TestScoreMath CurriculumEnrolled EnrollStatus** 100 200 Nursing Enrolled 100 200 Physical Enrolled 200 100 Tech Enrolled Total Student TestScoreMath should be 300 not 400. I tried using the expression =Sum(Fields!TestScoreMath .Value, "table1_Group3") How can I SUM the value of TestScore of distinct students? I need this only in SSRS. 回答1: In SSRS 2005, this is not too easy. I would add embedded code to keep a running total. You