Viewing 15 posts - 166 through 180 (of 249 total)
kishore.sqlbi (4/26/2012)
April 26, 2012 at 6:48 am
Please do not cross-post as this fragments the feedback.
http://www.sqlservercentral.com/Forums/Topic1290412-1633-1.aspx
Fitz
April 26, 2012 at 2:00 am
kishore.sqlbi (4/25/2012)
Name email product...
April 26, 2012 at 1:56 am
vinu512 (4/26/2012)
What was the answer??....:w00t:
4th or 5th OP post that has been "solved". The rest were coding errors so probably the join as was pointed out in the suggestions.:-)
Table1...
April 26, 2012 at 1:49 am
riya_dave (4/25/2012)
my question is particular sp.i dont find option to put its name
Which product or technique are you using for the trace? What do you want out of it?...
April 25, 2012 at 4:19 pm
shashidar (4/25/2012)
I am facing problem when i try to pass parameter [DATE].[Year Month] to a subreport it passes an Id [Date].[Year Month].&[33] instead of [Date].[Year Month].&[201201].
Can somebody help...
April 25, 2012 at 4:02 pm
SQL_Nw (4/25/2012)
Hi My report runs fine for smaller date ranges but throws the above error for longer time ranges any ideas. thanks.
Seems to be a known reported error with SQL...
April 25, 2012 at 3:57 pm
vinu512 (4/25/2012)
April 25, 2012 at 3:09 am
riya_dave (4/24/2012)
insert into #temp7
select a.shortname , a.portfoliobaseid , a.account ,a.InceptionDate,
a.DTDTWR,
MTDTWR = case when (a.MTDTWR is null) then
(exp(sum(LOG(CASE WHEN b.monthirr = 0.0 THEN 1 WHEN b.monthirr IS NULL...
April 25, 2012 at 3:06 am
vinu512 (4/25/2012)
Would this work?
SELECT TOP 1 test_date
FROM (
SELECT DISTINCT TOP 2 test_date
FROM datetest
ORDER BY test_date DESC) a
ORDER BY test_date
This would return the second last test date. The OP wanted...
April 25, 2012 at 2:47 am
rajn.knit07 (4/25/2012)
the structure is as below
CREATE TABLE [dbo].[datetest](
[test_date] [datetime] NULL
)
insert into datetest
select '2012-04-25'
union
select '2011-12-31'
union
select '2011-12-27'
union
select '2011-12-23'
union
select '2011-12-23'
union
select '2011-12-20'
Now here...
April 25, 2012 at 2:36 am
riya_dave (4/24/2012)
begin
---------------------------------------------------------
------quatertodate---------------
declare @qtd1 float
declare @maxdate1...
April 24, 2012 at 8:47 am
keymoo (4/24/2012)
anthony.green (4/24/2012)
something like this
Thanks that does provide the correct result but my hunch is that it can be solved in one statement using RANK and OVER statements. There you...
April 24, 2012 at 6:00 am
polkadot (4/22/2012)
April 22, 2012 at 10:00 am
maryamzolfaghar (4/22/2012)
Can anyone help?
The quesry is sth like this:
SET STATISTICS TIME ON
select *
from [a...
April 22, 2012 at 6:23 am
Viewing 15 posts - 166 through 180 (of 249 total)