Viewing 15 posts - 3,121 through 3,135 (of 3,348 total)
nancy.lytle (8/29/2008)
SET @ComplaintList = ''
SELECT @ComplaintList = @ComplaintList+ UserComplaint+ char(13)
FROM ComplaintsTable
WHERE UserID=@UserID
..
Return @ComplaintList
I thought that might be something I could use for various things, but...
August 29, 2008 at 8:50 am
shnizzle (8/29/2008)
August 29, 2008 at 8:47 am
Jeff Moden (8/29/2008)
Hugo Kornelis (8/29/2008)
August 29, 2008 at 7:39 am
shnizzle (8/29/2008)
August 29, 2008 at 7:36 am
shnizzle (8/29/2008)
Declare @var int
Select @var = 1+ Value1
From (Select 1 Value1 Union All Select 1 Union All...
August 29, 2008 at 5:25 am
The article presents a nice example of a possible use for a new technique - but unfortunately, the choice of examples is a bit bad.
I think every advanced SQL Server...
August 29, 2008 at 4:47 am
thomas.lamp (8/6/2008)
So my TableWithManualKey table...
August 7, 2008 at 1:24 am
hodgy (8/4/2008)
August 4, 2008 at 3:28 am
Jeff Moden (7/24/2008)
Thanks for taking the time for that feedback, Hugo. I appreciate it.Running totals are no excuse for using cursors... not even for display.
http://www.sqlservercentral.com/articles/Advanced+Querying/61716/
Hi Jeff,
Just as I appreciate...
July 24, 2008 at 8:31 am
Jeff Moden (7/24/2008)
or because you run into one of the very rare problems where a cursor actually runs faster than a set-based solution
Hi Hugo,
Do you have an example of when...
July 24, 2008 at 5:56 am
Christian Buettner (7/24/2008)
July 24, 2008 at 3:48 am
Gianluca Sartori (7/24/2008)
July 24, 2008 at 3:02 am
Christian Buettner (7/24/2008)
July 24, 2008 at 2:54 am
brewmanz (7/24/2008)
(...)
Was it a fluke, or is it some indirect help from BOL? Or maybe direct help - cursors are a bit of a...
July 24, 2008 at 2:43 am
There's a HUGE difference between "Allows the owner of another table to use columns in the table to which they've been granted that permission" (the supposedly "correct" answer to this...
July 23, 2008 at 4:13 am
Viewing 15 posts - 3,121 through 3,135 (of 3,348 total)