Viewing 15 posts - 1 through 15 (of 45 total)
What's an interview question that has thrown me for a loop?
"Can you give me an example of when you have failed ?"
Totally unexpected - turned round with something along...
August 12, 2011 at 12:44 am
Think you will have to write custom code within SSRS - below a couple of artricles that should give you a starting point.
http://msdn.microsoft.com/en-us/library/bb395166(v=sql.90).aspx
http://techfilth.blogspot.com/2008/07/calculate-median-on-group-in-ssrs.html
August 2, 2011 at 8:27 am
The statement below shows you how to return the numbers of minutes, so you could use this in your where clause where the number of minutes was not between 690...
July 28, 2011 at 7:24 am
from my code snippet - change the from clause to point to your table 🙂
;with cte as (
select *
...
July 8, 2011 at 6:35 am
But you do have a fuller explanation... 😛 and therefore a more complete reply - curse my haste !!
July 8, 2011 at 6:08 am
Think this does what you are after - let me know if not D..
declare @ccTest table (
localID varchar(50),
STDate varchar(10),
enddate varchar(10),
CCAC int)
insert into @ccTest Values ('57180', '20110601',...
July 8, 2011 at 6:00 am
One way to accomplish this is to change the data access mode of the oledb source component from Table or View to SQL and write the statement in...alternatively you could...
July 8, 2011 at 5:29 am
Think you can only do this with a dynamic pivot statement - could be wrong though - take a look at the following article[/url] by Jeff Moden - think this...
July 4, 2011 at 4:42 am
Maybe not the most efficient way, but you can achieve this using recursive ctes
declare @data table(Col1 varchar(5), Col2 varchar(5), Col3 varchar(5), Col4 varchar(5))
insert @data
select 'ABC', 'XXX',...
July 4, 2011 at 4:36 am
Was missing the nulls previously...slight revision
SELECT * FROM #Cartesis_to_hfm
WHERE (D_OT <> 'IM06' and D_TE <> 'TM06')
or (D_oT is null And d_te is null)
or (D_oT <> 'IM06' And d_te is null)
or...
June 28, 2011 at 8:34 am
not sure if I am missing something - have you tried
SELECT * FROM #Cartesis_to_hfm
WHERE (D_OT <> 'IM06' and D_TE <> 'TM06')
?
June 28, 2011 at 8:24 am
Again - without more information about your tables it is not possible to say...also, you original question is a little vauge and raises more questions...such as what bonus to apply...
May 19, 2011 at 4:30 am
Would need much more information before it would be possible to help - is all the information in a single table or multiple tables etc etc
May 19, 2011 at 4:16 am
Nice - the client stats for the two appear to be the same - any idea if with greater volumes yours would perform better ?
May 10, 2011 at 8:46 am
Viewing 15 posts - 1 through 15 (of 45 total)