Viewing 15 posts - 1 through 15 (of 107 total)
In my opinion, you should keep the payment related info only in the fact, not in the dimension. And you should create a dimension for all the entities(dimensions for client,...
July 21, 2015 at 6:07 am
Hi,
Thank you for the replies. Our workflows are made in informatica, but for the lineage info they ask for extra money, so we need to do it ourselves :-).
We will...
July 3, 2014 at 3:19 pm
The issue appears with reports more simple that have cascaded parameters if the values from the parameters are changed randomly. Though the report has default parameters which should be used...
June 14, 2012 at 3:46 am
I just needed an idea on how should I approach differently the query, more optimized. I will try it with your suggestion.
Thank you
March 28, 2012 at 3:13 am
Thanks.
We did that and it seems like there is a Citrix server connection who seems to be the blocker. We will try to stop that connection when possible an give...
April 20, 2011 at 11:20 am
sorry for the posts
I was receiving this error : Sorry the application encountered an unexpected error. Information about this error has been logged. If you continue to receive this message...
July 9, 2009 at 3:35 am
Thanks man
That's exactly the answer I needed.
Unfortunately the pk is a uniqueidentifier...but I asked you before about this and we agree that is better to put on the uniqueidentifier than...
June 26, 2009 at 9:08 am
I found the solution :
create table #temp
(
a int,
b int,
c int,
d int
)
insert into #temp
values(1,0,1,1)
insert into #temp
values(1,0,1,2)
insert into #temp
values(2,0,1,1)
insert into #temp
values(2,0,1,3);
--
select *
from #temp
where a in
...
June 5, 2009 at 2:41 am
I want this to be returned
a b c d
1011
1012
2013
In first row c = d
I...
June 4, 2009 at 6:07 am
I only need the idea, how to make this happen.Because the query is pretty big and ugly, and I posted before some big scripts and I didn't receive an answer.
....I'll...
June 4, 2009 at 5:43 am
You say that procedures age out of cache as they are not accessed. But how often? because in the case I mentioned they aren't kept in the cache even 2...
June 3, 2009 at 7:10 am
Of course...I wait for your suggestions....
The sp lists some 'activities' from Wf_Activity table and receives from the UI a whereClause that filters by an organization, workdate, etc.After this the records...
May 26, 2009 at 3:12 am
Yes , I used your suggestions , and the sp I just posted is recompiled 40 000 times a day. And I think this is a problem. I know that...
May 26, 2009 at 2:37 am
this is a pretty big one too
ALTER PROCEDURE [dbo].[List_ByPages]
(
@User_Id uniqueidentifier,
@Id_Organizationunit uniqueidentifier,
@whereClause Nvarchar(3000),
@PageIndex int,
@PageSize int,
@orderClause nvarchar(50),
@work_Date bit
)
AS
CREATE TABLE #temp_tab
(
[Activity_Id] uniqueidentifier,
[Nome] varchar(255),
[Id_Function]...
May 26, 2009 at 2:25 am
I'm using profiler to dig into this and I used OPTION (KEEP PLAN) to "eliminate" the temporary table recompile but no success. It shows me that the next statement...
May 26, 2009 at 1:02 am
Viewing 15 posts - 1 through 15 (of 107 total)