Viewing 12 posts - 16 through 27 (of 27 total)
I hope I understand your question. We have a db named res. The job command, under sql server agent/jobs, is 'exec survey' with the db being res. All tables referenced...
October 22, 2009 at 8:32 am
Here is what I came up with..
UPDATE TBLNAME SET COLNAME = REPLACE(COLNAME, 'xyz.com', 'localhost')
WHERE COLNAME LIKE '%xyz.com%'
Jim
August 28, 2009 at 10:35 am
I have found a solution. Thanks for the help.
Jim
August 27, 2009 at 3:02 pm
Thank you for your response. How do I update the table with this?
thanks
jim
August 27, 2009 at 2:38 pm
Here is my proc
DECLARE
@HMY AS INT,
@STARTDATE AS DATETIME
SELECT
@HMY = HMY,
@STARTDATE = DTSTART
FROM
MM2WODET
WHERE
DTFINISH IS NULL AND
DTSTART IS NOT NULL AND
HPERSON = @USERHMY
IF @HMY > 0
UPDATE MM2WODET SET
DTFINISH = GETDATE(),
DQUAN...
August 14, 2009 at 2:04 pm
Yes it does. I have researched this, but can't seem to make it work correctly. Any thoughts?
Thanks
Jim
April 28, 2009 at 7:42 am
Viewing 12 posts - 16 through 27 (of 27 total)