Viewing 6 posts - 1 through 6 (of 6 total)
Simple and neat! Thank you very much, Drew. It's much simpler than I thought it would be. Z
August 12, 2010 at 8:16 pm
Kenneth Fisher-475792 (8/12/2010)
ziedkallel (8/11/2010)
August 12, 2010 at 3:42 pm
UPDATE d_description SET RequestId = con.RequestId, FormId = Con.FormId,
DescriptionId = CASE WHEN IdDescription =
...
August 11, 2010 at 9:52 am
Very smart. Thanks a brunch!
August 10, 2010 at 8:29 pm
(
SELECT
d.*,
ROW_NUMBER() OVER(PARTITION BY d.conceptid ORDER BY iddescription) ROW
FROM #D_DESCRIPTION d
)
Thanks for your reply. As mentioned, I'm using SQL Server 2000. I believe the function Row_number was introduced with subsequent SQL...
August 10, 2010 at 4:18 pm
CELKO (8/5/2010)
August 5, 2010 at 4:09 pm
Viewing 6 posts - 1 through 6 (of 6 total)