Viewing 15 posts - 91 through 105 (of 163 total)
Hi Steve, thanks for your reply - sorry about the delayed response.
I agree with your solution and certainly building reports directly from the CRM system would be a lot easier....
June 30, 2009 at 6:54 am
Looks like you're trying to insert a record into a field called "ID" which is an identity field. You either don't want to import a record into that field or...
June 10, 2009 at 2:49 pm
Thanks for your reply.
I have been thinking about this for a while now and what seems to have been built for the company is an Operational Data Store (ODS). But...
June 7, 2009 at 6:47 am
Got it in the end !!
ParallelPeriod ([CRM DIM Time].[Date].[Date], -6 , STRTOMEMBER(@ReportDay) )
June 1, 2009 at 6:36 am
So far I have tried using the hierarchy members with various combinations of the following;
MEMBER [Measures].[ParameterValue7Days] AS '[CRM DIM Time].[Year - Quarter - Month - Day Hierarchy].[date].lag(7)'
MEMBER [Measures].[ParameterValue7Days] AS...
June 1, 2009 at 5:51 am
Thanks Steve, I'll give this a go tomorrow.
I have to product several reports which have NoOfAppointments, CancelledAppointments, SuccesfulAppointments etc. By Sales Person and by Area.
At the moment the only fact...
May 31, 2009 at 2:26 am
Thanks for your help guys. At the moment I used Derek's old skool technique provided earlier. But I will be sure to review Jeff's article and see if I can...
February 17, 2009 at 1:07 pm
This is good. Closer to what I require.
The point that I need to make clear is that this table will contain object information for each day, (sometimes more than once)...
February 17, 2009 at 5:54 am
Jeff, thanks for you advice.
The collation used is SQL_Latin1_General_CP1_CI_AS. So this is case insensitive. If the join handles the RTRIM then as you state that leaves the LTRIM to deal...
November 18, 2008 at 3:02 am
It does have a datetime field but this contains 2008-11-01 00:00:00.000 and so on. So if we have a datetime field with 2008-11-01 12:58:21.000 we cannot use this field to...
November 18, 2008 at 1:36 am
Thanks guys, some interesting perspectives. I invite more people to raise their points.
Steve where will I be able to read your article?
November 15, 2008 at 10:00 am
Thanks, but how would go about spliting the one transaction into many?
June 9, 2008 at 2:04 pm
Hi, thanks for your reply. I am not following exactly what you mean in relation to the script task, but it certainly sounds like the best way to go.
I have...
June 9, 2008 at 1:54 pm
I have made the change but get the following error Must declare the scalar variable "@SeqNo".
Here is my revised code;
CREATE PROCEDURE up_SequenceNumber
@ReportName CHAR(30),
@SeqNo int OUTPUT
AS
DECLARE @SQLGetNo nvarchar(250)
DECLARE @SQLUpd nvarchar(250)
SET @SQLGetNo...
April 11, 2008 at 7:35 am
Yes, @ReportName is the name of a column. I would prefer to use dynamic SQL.
April 11, 2008 at 5:13 am
Viewing 15 posts - 91 through 105 (of 163 total)