Reporting Services :: Grouping All Instances Of ESI Together
Apr 23, 2015
I have created a Table within SQL Server Report Builder, and the first field is a calculated field with the following code:
=Code.ChangeWord(Fields!NAME.Value)
Where the function is
Public Function ChangeWord(ByVal s As String) As String
Dim strBuilder As New System.Text.StringBuilder(s) If s.Contains("ESI ") Then
strBuilder.Replace(s,"ESI")
Return strBuilder.ToString()
Else : Return s End IfEnd Function
Now, when I execute this, it works beautifully ... except that the Grouping mechanism doesn't group all instances of "ESI" together, like I want it to.
How do I change this behavior so that it groups all instances of "ESI" together, like it should?
View 3 Replies
ADVERTISEMENT
Feb 7, 2007
Can anyone help me with grouping in Reporting services. I am more used to crystal reports drill-down method
For example i have a simple table that has timestamp and three other columns. I want to drill down by (after Grouping) for Day-Then- Hour and then show the details for three columns. And also group by one of the columns, if i get above working.
All i could do with Reporting services was stepped down model, but i have same dates repeated more than once. i would like them to be grouped under day and then show time stamps for times of day .
-Thanks all
View 1 Replies
View Related
Apr 21, 2006
The upgrade was alright for my first/default instance of reporting services but failed for the other 3 non-default instances.
I was running SP1 using remote desktop connection.
I got the following error at the report manager and the reporting services configuration's initialization. Is there any way to get around this?
The version of the report server
database is either in a format that is not valid, or it cannot be read. The
found version is 'C.0.8.40'. The expected version is 'C.0.8.43'. To continue,
update the version of the report server database and verify access rights.
(rsInvalidReportServerDatabase)
Extract from RS9_Hotfix_KB913090.log:
....
04/21/2006 13:20:34.652 Successfully opened registry key: SoftwarePoliciesMicrosoftWindowsInstaller04/21/2006 13:20:34.668 Failed to read registry key: Debug04/21/2006 13:20:34.761 Unable to install MSP file: \D11-OEMP4-16c$481974575b35c5d8b2HotFixRSFilessqlrun_rs.msp04/21/2006 13:20:34.808 The following exception occurred: Unable to install Windows Installer MSP file Date: 04/21/2006 13:20:34.808 File: depotsqlvaultsetupmainsetupsqlsesqlsedllcopyengine.cpp Line: 856
04/21/2006 13:20:34.871
04/21/2006 13:20:34.933 Product Status Summary:
04/21/2006 13:20:34.980 Product: SQL Server Native Client
04/21/2006 13:20:35.027 SQL Server Native Client (RTM ) - Reboot Required
04/21/2006 13:20:35.090
04/21/2006 13:20:35.168 Product: Setup Support Files
04/21/2006 13:20:35.230 Setup Support Files (RTM ) - Success
04/21/2006 13:20:35.277
04/21/2006 13:20:35.340 Product: Database Services
04/21/2006 13:20:35.402 Database Services (RTM 1399 ENU) - Reboot Required
04/21/2006 13:20:35.465 Analysis Services (RTM 1399 ENU) - Success
04/21/2006 13:20:35.511 Reporting Services (RTM 1399 ENU) - Success
04/21/2006 13:20:35.574
04/21/2006 13:20:35.636 Product: Notification Services
04/21/2006 13:20:35.699 Notification Services (RTM 1399 ENU) - Success
04/21/2006 13:20:35.746
04/21/2006 13:20:35.808 Product: Reporting Services
04/21/2006 13:20:35.871 Reporting Services (RTM 1399 ENU) - Failure04/21/2006 13:20:35.933 Details: Unable to install Windows Installer MSP file04/21/2006 13:20:35.980 04/21/2006 13:20:36.043 Product: Reporting Services04/21/2006 13:20:36.105 Reporting Services (RTM 1399 ENU) - Failure04/21/2006 13:20:36.152 Details: Unable to install Windows Installer MSP file04/21/2006 13:20:36.215 04/21/2006 13:20:36.277 Product: Reporting Services04/21/2006 13:20:36.340 Reporting Services (RTM 1399 ENU) - Failure04/21/2006 13:20:36.402 Details: Unable to install Windows Installer MSP file
04/21/2006 13:20:36.480
04/21/2006 13:20:36.543 Product: Integration Services
04/21/2006 13:20:36.605 Integration Services (RTM 1399 ENU) - Not Applied
04/21/2006 13:20:36.683
04/21/2006 13:20:36.746 Product: Client Components
04/21/2006 13:20:36.808 Client Components (RTM 1399 ENU) - Not Applied
04/21/2006 13:20:36.871
04/21/2006 13:20:36.918 Product: MSXML 6.0 Parser
04/21/2006 13:20:36.996 MSXML 6.0 Parser (RTM ) - Not Applied
04/21/2006 13:20:37.043
04/21/2006 13:20:37.074 Product: SQLXML4
04/21/2006 13:20:37.105 SQLXML4 (RTM ) - Not Applied
04/21/2006 13:20:37.183
04/21/2006 13:20:37.246 Product: Backward Compatibility
04/21/2006 13:20:37.308 Backward Compatibility (RTM ) - Not Applied
04/21/2006 13:20:37.371
04/21/2006 13:20:37.433 Product: Microsoft SQL Server VSS Writer
04/21/2006 13:20:37.496 Microsoft SQL Server VSS Writer (RTM ) - Not Applied
04/21/2006 13:20:37.543
04/21/2006 13:37:53.718 Hotfix package closed
View 17 Replies
View Related
Dec 4, 2007
Hi,
I want to create a number of Groups in a table.
Within each group I want to display that group's data details.
So far I seem to be only able to create another SubGroup within a Group.
I want my data to display as follows(using Drilldown)...
ItemA
ItemA Details
ItemA DetailsExtra
ItemB
ItemB Details
ItemC
ItemC Details
ItemC DetailsExtra
thanks.
View 7 Replies
View Related
Aug 11, 2015
I would like to create a group and add an overall header.
So the dimension is grouped and results in the following:
Group Title
Dimension 1 Dimension 1 Dimension 1 Dimension 1
Instead of :
Group Title Group Title Group Title Group Title
Dimension Dimension Dimension Dimension
How can I achieve this without using a tablix within a tablix?
View 6 Replies
View Related
Aug 31, 2015
I create a matrix,
Row groups: Province
Column groups: Project Type
Values: Count of # of Projects, Sum of Amount ($)
What this displays is the following. How do I go about calculating what's highlighted in yellow? It is Amount of OneProjectType / Amount of TwoProject Type.
View 5 Replies
View Related
Jun 15, 2015
I am creating a report that shows orders created by our employees but I am having trouble with one employee. She changed her last name this year and so in the report, it shows a line her with her maiden name and one with her new name.
Is there a way to combine all the data from both names into one name so it appears on one line and looks like a single person instead of two.
View 4 Replies
View Related
Jan 9, 2008
Is there a way in Reporting Services layout mode to get the report to display more than one response for one field in the same cell?
More specifically, I have a list of classes that lists section, title, and instructors. If the class has more than one instructor, I want the instructor cell to list both instructors in one cell, separated by a semi-colon, rather than listing all the class information - along with instructor - in two separate rows. Any suggestions?
something like this:
Section
Title
Instructors
15
Class 1
Jones
16
Class 2
Jones; Smith
View 5 Replies
View Related
Jul 6, 2015
I am working on one of the report. where I need to move the amount across column group.
My data is like this
Project Amount CurrentFiscalMonth DelaybyMonth
A 10 Jul 0
B 20 Aug 2
C 10 Sep 0
Report will be sum up the amount at CurrentFicalMonth grouping on column
But, if the Project is being delayed say by as per the example its 2 months than the amount should be moved from Sep to Oct column for the particular project. User has done it using the Offset function in excel.
Fiscal month starts at July and ends at June. and data source is SSAS cube.
View 4 Replies
View Related
Mar 5, 2014
Example: A sales report that details and summarizes each Salesperson’s total sales within a company’s stores that reside in each state.
The report has 3 levels of groupings where the highest 2 levels require summary counts on a separate page and the lowest level produces a summary count in the midst of the detail lines of the report.
The data consumed by the report is ordered by State, Store ID, and Salesperson.
The header of each page lists the State and Store ID. The detail lines of the report list items sold and the associated sales amount for each item sold by each store’s salesperson.
At the end of each Salesperson’s items sold, a summary line is listed on the next line in the report showing the total amount and total count of items sold by that Salesperson.
The very next line on the report lists items sold and the associated sales amount for the next Salesperson within that particular store.
Summary lines will be produced for each Salesperson within each particular store on the next line of detail in the report.
At the end of all sales data for each store, a summary page is produced on a separate page listing the summary of each Salesperson’s totals.
Each line of the summary page contains the same counts for each Salesperson that was embedded in the detail section of the report.
The summary page also contains a grand total line listing the total count and sales for all salesmen within each given store.
At the end of all sales data for each state a summary page is produced on a separate page listing the summary of each store’s totals.
Each line of the summary page contains the grand totals of all sales for each store within a given state.
The summary page also contains a grand total line listing the total count and sales for all stores within each given state.
The simple breakdown is the groupings and totals for each state and store must be listed on a separate page in the report.
The grouping and totals for each Salesperson must be listed on the next line within the detail section of the report.
Current issue: The requirement is for no page break at the end of each salesperson’s sales data because the page breaks produce too many extra pages in the report.
Disabling the page break at the Salesperson level produces format issues such as page headers printing on the next line in the report before each Salesperson’s summary line.
Disabling the page breaks at this level also produces the problem of suppressing the page break for the summary page that comes at the end of each store.
Question:The report has 3 levels of grouping with Salesperson at the lowest level, Store ID being the parent group of Salesperson, and State being the parent group of Store ID. Is it possible to format the Salesperson summary line (lowest level grouping) as just another detail line in the report without impacting the report format that requires page breaks at the parent group levels?
A sample report layout of what we are trying to achieve is on the next page.
Sales Report
State: Alaska
Store ID: 100
Item Sold
Sales Amount
Hammer
$10.00
Saw
$15.00
[Code] .....
View 2 Replies
View Related
Apr 28, 2015
I want to display data in following format in ssrs report.
Rank Group Value
1 G1 10
2 G1 20
3 G1 30
4 G1 40
1 G2 25
2 G2 54
3 G2 64
I tried row count and other ranking functions but it did not working.
View 3 Replies
View Related
Jun 23, 2015
I have table which has 5 columns(col1,col2,col3,col4,col5) very simple and some data .
I would like to create a tabular report datasets on the report like shown below with grouping on col1
like
col1 some static text and dynamic text
------------------------
col1 col2 col3 col4
data data data data
------------------------
col1 some static & dynamic text
------------------------
col1 col2 col3 col4
data data data data
------------------------
Note I need to keep all the tables on the same page and when exported in excel they should come on same page sheet.
View 2 Replies
View Related
Sep 23, 2015
I am trying to add a filter and sorting to a matrix, within the matrix I have a column which works out the percentage and is as follows
=(Sum(Fields!Sum_Distinct_JobBilledExVAT.Value) + Lookup(Fields!ClientId.Value, Fields!JobClientId.Value, Fields!Sum_JobBilledExVAT.Value, "ProfJobClientsFees") + Lookup(Fields!ClientId.Value, Fields!ClientId.Value, Fields!Sum_JobBilledExVAT.Value, "ProfClientsFeesID")) / (Lookup(Fields!ClientId.Value, Fields!ClientId.Value, Fields!Sum_MatchedToOtherPost.Value, "ProfClientsMatch") + Lookup(Fields!ClientId.Value, Fields!ClientId.Value, Fields!Sum_JobBilledExVAT.Value, "ProfClientsCC") + Lookup(Fields!ClientId.Value, Fields!ClientId.Value,
[Code] ....
I tried enclosing the query in Abs( ), which I have done in the past, although in the past I wasn't using Lookup functions so I don't know if that is the reason it won't work.
View 6 Replies
View Related
Jul 23, 2015
SSRS 2008 R2
I have two level of grouping Example:
:::HEADER:::
A [GROUPING 1]
B[GROUPING 2]
C[GROUPING 2]
When I apply Page Break
:::HEADER:::
A [GROUPING 1]
B[GROUPING 2]
:::HEADER:::
A [GROUPING 1]
C[GROUPING 2]
[URL]
View 3 Replies
View Related
Sep 1, 2015
I want to develop a ssrs report which is grouped by month?
View 4 Replies
View Related
Nov 16, 2015
We are facing problem in doing page break with column grouping. Our column group contains years e.g 2011, 2013 . We want to show a complete page for a year.
Suppose 2011 has 10 records(horizontal) and 2013 has 12 records(horizontal) in column. The output should be 10 records of 2011 in first page, 12 records of 2013 in second page.
We cannot change the report layout to make column to row and vice versa.
View 3 Replies
View Related
Mar 27, 2012
We have a report that was created in SSRS 2008 R2 that has 3 tables with different datasets that share a common ID that I want to use to group them.
If we run the report passing only a single value for the grouped parameter then the report works perfectly. What we need is for this report to allow multiple values to be selected for this parameter and for the report to run as if the user had selected each value one at a time and run the report with page breaks in between. Currently, when we pass multiple selected values for the grouping parameter the report displays all values for table 1, then all values for table 2, then all values for table three as below:
Table 1:
Detail rows for Group Param Value 1 ...
Detail rows for Group Param Value 2 ...
Detail rows for Group Param Value 3 ...
....
Table 3:
Detail rows for Group Param Value 1 ...
Detail rows for Group Param Value 2 ...
Detail rows for Group Param Value 3 ...
But we want it to render like this:
Table 1:
Detail rows for Group Param Value 1...
Table 2:
Detail rows for Group Param Value 1...
Table 3:
Detail rows for Group Param Value 1...
[code]....
The page breaks are needed so that when the report is exported to excel each individual report (by group param) will be on its own uniquely named tab.The report must export cleanly to excel and currently does for the single value passed.
View 5 Replies
View Related
Jun 10, 2015
I have a report where in I want to show each record on a separate page.
So, to achieve that I took a single cell from table control, expanded it and used all the controls in that single cell. This looks nice so far.
Now, I also have to show a sub grid on each record. So I took a table control and added on the same single cell and tried to add a parent group to the table row.
When I preview, it throws this error.
"The tablix has a detail member with inner members. Detail members can only contain static inner members."
What am I doing wrong? How can I achieve table grouping inside a table cell?
View 2 Replies
View Related
Mar 22, 2008
Hello,
I am trying to migrate my reports from SQL server 2000 reporting services 32bit to 2005 64bit. I am following the migration steps that MS specified.
Restored my Reportserver and ReportserverTempDB databases
Then I was using the configure Report services to upgrade these databases but I always end up getting the follwoing exception when I run the upgrade on the "Database Setup" configuration for 'ReportServerTempDB' database
System.Data.SqlClient.SqlException: Could not locate entry in sysdatabases for database 'ReportServerTempDBTempDB'. No entry found with that name. Make sure that the name is entered correctly.
at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection)
at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection)
at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj)
at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj)
at System.Data.SqlClient.SqlCommand.RunExecuteNonQueryTds(String methodName, Boolean async)
at System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(DbAsyncResult result, String methodName, Boolean sendToPipe)
at System.Data.SqlClient.SqlCommand.ExecuteNonQuery()
at Microsoft.ReportingServices.Common.DBUtils.ApplyScript(String connectionString, String script)
at ReportServicesConfigUI.SqlClientTools.SqlTools.ApplyScript(String connectionString, String script)
It's driving me crazy, why is it looking for 'ReportServerTempDBTempDB' in the catalog instead of 'ReportServerTempDB'?
Is it possible to migrate from 32bit to 64bit?
Any help is appreciated
View 1 Replies
View Related
Dec 17, 2007
Hello all,
I am trying to built a general demo machine for our multiple resellers.
Is it possible to have multiple database instances (one per reseller) with each of them their own reporting instance, running on the same server (also same IIS). In our DNS and in the IIS settings i will reroute the specific reseller to his specific reporting url (eg: http://www.demosite.reseller1.com/reports (this is not a real url), will be rerouted via dns to the
specific reporting url for reseller one ... and so on.)
Each reseller must be able to has it own reports, subscriptions, models and access to reportbuilder.
Can this be accomplished ?
I have tried already a few times but get stuck when i want to upload reports/datasources to the specific websites. Also i have encountered the fact that if i succeed in uploading data to one reporting site and i want to upload different data to
another site, the initial site is also changed with the data of the second upload.
Can anyone point me into the right direction how to solve this problem .
Greetings
Vinnie
View 7 Replies
View Related
Oct 11, 2007
Hi,
I've written a series of procedures that are writing output lines into a common table that I'm then reporting on.
I've included some simplified code to show waht I've done.
I was hoping someone could tell me if it is possible to remove the loop that I've created to get the report headings.
I've tried to write this as a with statement, but can't quite get it right.
--------
CREATE TABLE JobReport(
JobRunId int NOT NULL,
ReportDate datetime NOT NULL,
Process] varchar(200) NOT NULL,
Line varchar(200) NOT NULL
)
INSERT INTO jobreport(jobrunid,reportdate,process,line)
SELECT 1,CURRENT_TIMESTAMP,'Proc A','testline A1' union
SELECT 1,CURRENT_TIMESTAMP,'Proc A','testline A2' union
SELECT 1,CURRENT_TIMESTAMP,'Proc A','testline A3' union
SELECT 1,CURRENT_TIMESTAMP,'Proc b','testline b1' union
SELECT 1,CURRENT_TIMESTAMP,'Proc b','testline b2' UNION
SELECT 1,CURRENT_TIMESTAMP,'Proc b','testline b3' UNION
SELECT 1,CURRENT_TIMESTAMP,'Proc c','testline c1' UNION
SELECT 1,CURRENT_TIMESTAMP,'Proc c','testline c2' UNION
SELECT 1,CURRENT_TIMESTAMP,'Proc c','testline c3' UNION
SELECT 1,CURRENT_TIMESTAMP,'Proc c','testline c4' UNION
SELECT 1,CURRENT_TIMESTAMP,'Proc d','testline d1' UNION
SELECT 1,CURRENT_TIMESTAMP,'Proc d','testline d2' UNION
SELECT 1,CURRENT_TIMESTAMP,'Proc d','testline d3'
SELECT IDENTITY(INT,1,1) id,headings.Process INTO #headings from
(
SELECT Process FROM jobreport
WHERE jobrunid = 1
GROUP BY Process
) headings
BEGIN
DECLARE @max INT, @COUNT INT,@heading AS VARCHAR(200),@report VARCHAR(MAX), @jobrunid INT
SET @jobrunid = 1
set @report = ''
SELECT @max = COUNT(*) FROM #headings
SET @count = 0
WHILE @count < @max
BEGIN
SET @count = @count + 1
SELECT @heading = h.Process FROM #headings h WHERE h.id = @count
SELECT @report = @report + '----' + @heading + '----' + CHAR(13)
SELECT @report = @report + line + CHAR(13)
FROM jobcontrol.dbo.jobreport rep
WHERE rep.jobrunid = @jobrunid
AND rep.Process = @heading
END
--------
any help would be appreciated.
thanks
Sean
View 4 Replies
View Related
Aug 17, 2007
Hi there.
I am working on a set of reports where I am summing/averaging data elements based on what period they are in. For example, the report output should look something like this:
Period
Sum
May '07
41
April '07
14
Q2 '07
55
March '07
36
February '07
28
January '07
22
Q1 '07
86
June '07
N/A
YTD '07
141
December '06
33
November '06
27
October '06
42
Q4 '06
102
September '06
58
August '06
84
July '06
52
Q3 '06
194
June '06
40
May '06
41
April '06
14
Q2 '06
95
March '06
67
February '06
38
January '06
N/A
Q1 '06
105
YTD '06
496
For each of the items I am summing, all I have is a datetime of when the event happened. This is a relational database (not a cube), so I am struggling with how to create the 'buckets' based on period. I think the best way is to dynamically create the buckets based on a given date. Is there a way in RS that it can do this bucketing for you?
Thanks, Mike
View 4 Replies
View Related
Sep 28, 2007
When I am in Visual Studio 2005, and I try to add an SQL database, I get the following error "generating user instances in sql server is disabled. use sp_configure user instances enabled to generate user instances." I am currently using SQL server 2005 Express. What do I need to do, to create an SQL database? Thanks in advance.
View 4 Replies
View Related
Jan 23, 2008
Have anyone came across an issue with Reporting Service 2005 where if you had more than 1 group within a table and the first group has the property 'Page Break at end' checked - this will cause a page break after the group footer was printed.
Usually this is not an issue but consider this scenario - the 'Page Break at end' is set against the second group (not the first group which show the overall total) - when the last footer was printed for the second group, this cause a page break before the first group (overall) is printed - it seem to me that Reporting Service is not able to know when not to generate a page break if there isn't any more data - more importantly - there dosen't appear to be a way to set an expression against 'Page Break at end' within the group
Does anyone know of this issue and is there a workaround it?
View 3 Replies
View Related
Oct 1, 2007
I am facing a reporting service issue.
System information:
1. Our Reporting Server installed on a DB server.
2. We have one windows application which executes on the same server, which generates the reports snapshots.
3. One set of reports with single Shared data source
Scenario:
We have many countries for which report history snapshots needs to be generated. The report information is stored in different databases named as database_CountryCode on the same DB server.
Questions:
1. We need to dynamically change the shared data source connection string to point to the respective country database, when generating the report for that particular country. --> We found out this can be accomplised by using parameterized connection string in report specific data sources in SQL 2005. Can we achive something similar in SQL 2003 Reports as well?
2. We also need to instantiate the reporting service web service in multiple threads, one for each country, where in each thread picks up the corresponding country code, changes the connection string and generates reports snapshots. Can this be accomplished? I know this goes against the entire idea of licensing, but my question is just about feasibility of this idea.
Addnl Info
The CreateReportHistorySnapshot method of reportingservice.asmx returns a snapshotID, which is the timestamp of report snapshot creation. We tried creating the same report snapshot for the same country in 2 threads. Whenever the timestamp for both snapshots was same, only one report snapshot actually got created. Can this be overcome?
View 1 Replies
View Related
Dec 6, 2006
I'm attempting to obtain a cost effective solution for my existing customers to develop reports on their SQL 2000 Server installations using their Reporting Services 2000. With products like Visual Basic.NET 2003 becoming almost impossible to obtain, I have at least one customer who is running into a dead end.
One option possibly is the SQL Express with Advanced Services download, which has Reporting Services. My questions are as follows:
Can the report designer component of SQL Express Reporting Services be configured to connect to an external database (which would happen to be a SQL 2000 database) to establish its datasets?
Does the resultant designed report end up in an RDL file? If the customer published this report via the Reporting Services 2000 Report Manager, would the report be able to run?
Sorry for asking a question like this that I could probably answer on my own, but my customer needed this answer yesterday. I have scoured the web and microsoft sites - and posted a question on the official SQL Reporting Services cateogy ... in an attempt to answer the basic question of how to design reports for Reporting Services 2000 in the absence of Visual Basic.NET 2003 (or other .NET 2003 tools) with no success.
Thanks to anyone who can help.
-- Mark
View 1 Replies
View Related
May 10, 2012
I have noticed that analysis services has stopped on two instance on my server.For the first instance, I go to configuration manager and try to start the service I get the standard service did not respond in a timely fashion error, if I change the account that runs it from the domain user account to local system it starts up fine, but try changing it back I get the following WMI error: The server threw an exception. [0x80010105], I see this error in google but it always refers to the agent and not analysis services. In the application log, I see the following error...The service cannot be started: Message-Handling subsystem: The message manager for the defaul locale cannot be found. The locale will be changed to US English. File system error: The following error occurred during a file operation: Access is denied. But access denited to what? The services had been up and running for a while and nothing on the server has changed.
As on the second instance gives me the following error in the application log...The file <path>CryptKey.bin' could nor be opened. Please check the file for permissions or see if other applications locked it.
Then further up...The service cannot be started: Message-Handling subsystem: The message manager for the defaul locale cannot be found. The locale will be changed to US English. File system error: The following error occurred while opening the file <path>CryptKey.bin.
I should say the <path> part is me, saving typing not part of the error. And again, if I change the account running the service to local system if all changes and starts fine, but if I try to change it back I get WMI Error: The process terminated unexpectedly [0x8007042b]. If I hit 'apply' a second time I get another WMI Error, except this time it says 'The server threw an exception. [0x80010105].
View 7 Replies
View Related
Aug 3, 2006
Hi,
I am trying to install multiple application services on 1 sql server database. Is this possible? I do not know how to install anything but the default application services settings for the membership, roles, etc.
Please help if you can.
Thanks,
Ezeibe
View 1 Replies
View Related
May 30, 2008
Hi folks
I have deployed a package from file resources to sql server named instance. I did not receive any errors. msdb..dtspackages90 table have rows for my package.
But when I try to connect to integration services using ssms like 'serverinstance', I am getting an error saying that 'serverinstance' names are not supported by integrated services and I should use just a servername.
What am I doing wrong? Is that really integration services are not supported on named instances or i miss something?
Thank you, Gene.
View 4 Replies
View Related
Jun 9, 2015
There is a requirement with our customer about grouping contact details based on certain fields from in the contact table.
I have built a SSIS package and using Script Manager and Fuzzy Grouping Component. and its working perfectly as per the requirement.
But unfortunately Client is using SQL Server 2012 Standard Edition.
and in SQL Server 2012 Standard Edition , Fuzzy Transactions components are not supported.
View 2 Replies
View Related
Jul 27, 2015
I work in a big project and we will begin in using reporting services as the base technique for reports and I will be responsible for this part. but I have a problem I will discuss in the following:
Currently: We use currently devexpress reports and we have 2 languages(Arabic and English). the data in tables saved in two ways (Arabic and English). when the end user change the language of the web site the report data language changed when run it.
Example:
we have table with (ID, NAME_AR, NAME_EN, JobTitle_AR, JobTitle_EN). designed report will display(ID, NAME_EN, JobTitle_EN) . but the end user change the language of the system the report will
dispaly(ID, NAME_AR, JobTitle_AR)
Hint:this done pragmatically
how to do this in reporting services.
View 7 Replies
View Related
May 26, 2015
I have a table that I need to identify similarities so I'm running a Fuzzy Grouping Process. I'm getting the follow errors and I can't identify the problema since all the fields are varchar, except for the first that is int but not use in the fuzzy.
select
MSSEndCustomerTPID
, orgname
, address1
, cityname
, statename
, countryname
from [sales].[vw_Fact_VolumeSales] a
inner join [GMOFBI].[dbo].[vw_Dim_MSS_Organization] b
on a.EndCustomerOrganizationKey=b.MSSOrganizationKey
[code]...
View 3 Replies
View Related
Jul 18, 2001
I had a server with SQL Server 7.0
I installed a named instance of SQL Server 2000 and then i passed all my DB
of the 7.0 instance to the 2000 instance.
Then i removed the 7.0 instance, that was the default instance.
So at the moment there is only the 2000 version, but it isn't the default
instance
Can the 2000 instance become the default instance? (So that clients can
connect to it simply through computer name, and not creating an alias)
thanks
Fede
View 1 Replies
View Related