Viewing 15 posts - 4,726 through 4,740 (of 10,144 total)
Oh right - ok. In that case, I'll try to track down an excellent article which provides good evidence NOT to use built-in cursor updates but to do it manually...
April 26, 2013 at 7:36 am
Comment out the INTO as below:
SELECT distinct *
--INTO #RESULTS
FROM pr_linked
April 26, 2013 at 7:22 am
hoseam (4/26/2013)
with OPTION(MAXRECURSION 0) it just runs forever, I think I have aa circular loop somewhere and need to stop it, I just haven't found out yet how to.
Set the...
April 26, 2013 at 7:21 am
It's highly likely that the folks here can replace your cursor-based code with a fast, efficient and pretty set-based equivalent - why don't you post your code and let them...
April 26, 2013 at 7:19 am
OPTION(MAXRECURSION 0)
100 is the default value. 0 = max limit.
April 26, 2013 at 6:59 am
faheemahmad14 (4/25/2013)
MemberId(F.K) ! Event ! Event Date
1 'Test Event1' "2012-03-20 05:39:51"
1 'Test Event1' "2012-03-21 05:39:51"
1 'Test Event1' "2012-03-22 05:39:51"
3 'Test Event3' "2012-03-23 05:39:51"
2 'Test...
April 26, 2013 at 5:11 am
John Mitchell-245523 (4/26/2013)
April 26, 2013 at 5:04 am
mister.magoo (4/26/2013)
select DataId, PathId, Value
from...
April 26, 2013 at 4:25 am
L' Eomot Inversé (4/26/2013)
ChrisM@Work (4/25/2013)
What might you gain by putting phone numbers into a table separate from the entity (client, agent whatever) to which they belong?
Maybe the entity owning the...
April 26, 2013 at 3:32 am
Evil Kraig F (4/25/2013)
April 26, 2013 at 1:41 am
Ganga-236835 (4/25/2013)
Well, first they are not many to many then, and second it constrains the software development due to the inability for code reuse.
This doesn't really address the point I...
April 25, 2013 at 9:31 am
What might you gain by putting phone numbers into a table separate from the entity (client, agent whatever) to which they belong?
April 25, 2013 at 9:11 am
Nice one, Geoff! Other than swapping around the sign on the hierarchy direction, it's bang on.
April 25, 2013 at 8:51 am
Try this...
-- This CTE search for the linked client(child)--
;WITH pr_linked(CLIENT_ID, NAME, LINK_CLIENT_ID, [LEVEL])
AS
(
SELECT CLIENT_ID, Name, LINK_CLIENT_ID, 1
FROM #PR_LINK_INV_HST
--WHERE LINK_CLIENT_ID = @CLIENT_ID
WHERE CLIENT_ID = @CLIENT_ID
April 25, 2013 at 8:44 am
raghuldrag (4/25/2013)
I m creating one sample application its has two dropdown boxes ddl1 and dd2
if i choose dd1 in air
...
April 25, 2013 at 8:17 am
Viewing 15 posts - 4,726 through 4,740 (of 10,144 total)