Viewing 15 posts - 1,561 through 1,575 (of 8,416 total)
GilaMonster (11/8/2011)
So much for 'fixed in the next version of SQL'... 🙁
The comments on the Connect item are contradictory, but the most recent one says:
"This is now an active DCR...
November 8, 2011 at 2:14 am
skanth (11/7/2011)
select *from
a,b,c
where
A.cash_id in
( select B.cash_id
from B
where B.cash_id = C.cash_id
)
The literal translation of that query...
November 7, 2011 at 9:23 pm
Jeff Moden (11/7/2011)
I agree with TOM. I recommend you continue to use DATALENGTH for the very reason he stated.
Trouble is, that implementation now only works with Unicode data. ...
November 7, 2011 at 9:00 pm
Use the local-name function:
DECLARE @XML XML =
N'<root>
<resource-list>
<Specimen Name="CODE"/>
</resource-list>
</root>'
SELECT
...
November 7, 2011 at 8:44 pm
daveriya (11/7/2011)
i am converting function into sp,can i execute like this exec proc proc_name 'parm1' 'parm2' order by column.
Given that the best solution is to insert into table variable and...
November 7, 2011 at 8:25 pm
Alex Bransky (11/7/2011)
November 7, 2011 at 8:02 pm
I would happily refer to rCTEs (and nested loops plans in general) as RBR rather than RBAR; it's the 'A' that I have issues with 🙂
Mind you, everything's RBR when...
November 7, 2011 at 7:06 pm
One more time, with PATH syntax:
SELECT
aosms.iStudentid AS [StudentId],
aosms.oldClassID AS [OldClassID],
aosms.newClassID AS [NewClassID]
FROM dbo.ArrayOfStudentMoveSummary AS aosms
FOR XML
...
November 7, 2011 at 7:18 am
SELECT
s2.sname,
m.marks,
s.name
FROM @marks-2 AS m
JOIN @Student AS s ON
s.stuid = m.studentid
JOIN @Subject...
November 7, 2011 at 6:57 am
Gianluca Sartori (11/7/2011)
That's it Paul!!!I still have confused the two, but at least I'm happy it wasn't my fantasy playing tricks on me. 🙂
It is inconsistent, so I doubt...
November 7, 2011 at 4:03 am
Adi Cohn-120898 (11/4/2011)
I think that this is a bug, but I might be wrong. Can anyone have an explanation for that?
Sure. I think most people will say that...
November 7, 2011 at 2:49 am
Jeff Moden (11/6/2011)
November 6, 2011 at 10:05 pm
SQLRNNR (11/4/2011)
What is this query plan operator?
It's the 'before' operator for this one:
I don't think I've ever seen a Log Row Scan operator in the wild.
November 6, 2011 at 9:36 pm
Jeff Moden (11/6/2011)
November 6, 2011 at 9:28 pm
Jeff Moden (11/6/2011)
November 6, 2011 at 9:10 pm
Viewing 15 posts - 1,561 through 1,575 (of 8,416 total)