Viewing 15 posts - 1 through 15 (of 242 total)
DECLARE @Table Table(
Machine varchar(10)
,Set_speed int
,Actual_speed int
)
INSERT @Table VALUES
('Loft', 1000, 450),
('Loft', 1000, 335),
('Loft', 1000, 120),
('Loft', 1000, 140),
('Loft', 1000, 750)
GO
SELECT TOP 5 Machine,
Count(actual_speed) MachineCount
FROM @Table
WHERE Actual_speed < set_speed - 500
GROUP...
October 25, 2010 at 12:58 pm
Are you talking about Report Navigation at URL?
October 13, 2010 at 11:54 pm
I guress there is no problem in installation. You can't create any objects in Analysis Services DB directly. However you can execute XMLA scripts to create SSAS Objects.
To answer your...
October 13, 2010 at 10:42 pm
You can use UserID parameter which will store DOMAIN\UserID. Now get UserID from this parameter value and use SWITCH expression in Group Hierachy as per requirement.
October 6, 2010 at 11:58 pm
If the input is delimitted string then you can use below function
October 6, 2010 at 11:52 pm
I guess you are looking for report navigation. Right click on the supporter field --> Navigation --> Jump to report --> Select same report.
Now set the parameters values same as...
October 6, 2010 at 11:44 pm
I guess you should use Script Task and Log the values of variables in the code. That way you can see the values in SSIS log table (SQL Server 2005...
July 22, 2010 at 6:48 pm
Did you set all the options correctly?
here is the link:
July 13, 2010 at 2:48 pm
Just to confirm, do you have only one variable User::RecCount or multiple variables with same name and different scope - one for Execute SQL Task and another for Package? If...
July 7, 2010 at 4:26 pm
I have had faced similar issue few weeks back. I did following things to resolve the issue:
1. Open i-explorer with Run as administrator and go to http://reportserver/reports
2. click on Home...
June 14, 2010 at 3:18 pm
OK. CozyRoc is best solution 🙂 But I didn't mentioned codeplex as a best solution against CozyRoc since I never tried. I wrote in general way.
I am sorry if...
June 12, 2010 at 11:32 am
How do you know this is the best if you haven't tried other solutions? Have you tried CozyRoc's solution?
There is reason why codeplex is best solution: We need to specify...
June 11, 2010 at 11:40 pm
Best way to load SharePoint Lists into SQL Server table is to use codeplex solution SharePointListAdaptersSetup.msi
Click here to downloaded this.
After running this msi, two SSIS Data Flow controls SharePoint...
June 11, 2010 at 6:00 pm
Suppose you are running a Data Flow Task in a For Loop control or ForEach Loop control. There may be a case when you want to use ConnectionManger1 for some...
June 11, 2010 at 5:42 pm
only4mithunc (6/10/2010)
1)Drag the first column to the first column of the matrix
2)Insert one row for the column data and drag the second row record....
June 11, 2010 at 5:29 pm
Viewing 15 posts - 1 through 15 (of 242 total)