Viewing 15 posts - 1 through 15 (of 20 total)
Well you had me entertained until you decided to send that sad excuse of an e-mail to the interviewee. It really showed your lact of tact and sadly you sent...
October 3, 2005 at 11:46 pm
Thanks, but this isn't a Comcast project nor do I work for Comcast. I'm confident that there are people out there like myself who have helped others in the past...
April 19, 2005 at 12:37 pm
Thank you for the suggestions, you both brought up some good points.
Demicoq
November 7, 2004 at 7:47 pm
Ok figured it out. Here is the solution.(one way to solve that is.......)
DECLARE @domain varchar(80)
DECLARE @domainid int
Select @domain = '7'
--Get the domainid of the domain that is being passed in.
SELECT...
October 17, 2004 at 2:58 pm
Any luck with this question J.P.?
October 11, 2004 at 2:48 pm
Quick note: Here is the modified script to go with the script you provided me with last week.
DECLARE @domain varchar(80)
set @domain = '12' --This guy happens to have a parent...
October 9, 2004 at 9:25 pm
This is close but what I need it do is always find the highest level in the hierarchy where the type is = 1. It just so happens that Type...
October 9, 2004 at 8:03 pm
Hi JP
Using the solution for finding levels I am able to go up the tree to find the grand parent of the id I provide. So far I have three...
October 8, 2004 at 10:29 pm
Thank you very much for your help on this JP. Your solution "fits the bill".
Demicoq
October 3, 2004 at 11:36 pm
Thank you for your response JP, I believe this will get me closer to what I was looking for, a thousand thanks.
To give you a little more background, what I...
October 2, 2004 at 12:42 pm
Yikes!!!! Would describe my first reaction to seeing this tribute to Ronald Reagan. From the African American perspective, Reagan was hardly a president I could hardly get behind and support....
June 8, 2004 at 4:16 pm
This method works as well but I can't get it to work within a cursor. Any ideas on placement?
I get an error stating:
Invalid length parameter passed to the substring...
May 5, 2004 at 8:38 pm
Ended up finding out the solution. Use Ltrim, which works only for leading spaces but by using replace with an empty string. Ltrim is able to kick into action by...
May 5, 2004 at 6:23 pm
Ended up figuring it out myself. Changes are in red.
WHILE @counter <= @Max_srch_id
BEGIN
Select @cscd_srch_string = @cscd_srch_string+srch_val+Char(9)
from ##srch_val
JOIN srch_elmt_assoc on srch_val_id = srea_sche_id
Where srch_val_id in (Select srch_val_id from ##Srch_val...
May 4, 2004 at 10:53 pm
Here is the whole script for what will be the calling procedure. Area of interest is in red. This might clear things up so I cn get a reply.
DECLARE @counter INT
DECLARE...
May 4, 2004 at 3:18 pm
Viewing 15 posts - 1 through 15 (of 20 total)