Viewing 15 posts - 706 through 720 (of 2,486 total)
So from that data, these are the records with the relevant datetime ??
00456633 2005-08-26 15:31:36 Completed 1125028938 00458176 2005-08-24 16:01:24 Resolved 1124856820 00461166 2005-09-15 13:15:11 Resolved 1126754120
September 29, 2005 at 12:52 am
What are you trying to do with this query? Looks like you're trying to update the field CaseResolvDatetime if there is only one record in the table.
September 28, 2005 at 10:34 pm
Except that it requires a MAPI client and pre-defined profile.
Michelle, I've no idea why the email wouldn't have been received. Maybe a firewall/port mapping issue ??
September 28, 2005 at 4:57 pm
Rudy, so you actually run the procedure on the remote server itself?
I've been thinking about doing something similar and using a DTS package to amalgamate the data on a central...
September 28, 2005 at 4:52 pm
What other indexes are on the table? What indexes does the query use? Does the query use different indexes if you use ANSI standard joins in the FROM clause?
At first...
September 27, 2005 at 6:42 pm
For curiosity sake, how long did it take to run?
September 27, 2005 at 6:32 pm
Hmmm ... that looks awful. I'm presuming this is not the change script generated in EM. Given that amount of output I'd be thinking that's more to do with the...
September 27, 2005 at 6:30 pm
Michelle, Here's an example of what the job step could look like with xp_smtp_sendmail.
DECLARE @Subj varchar(100), @Msg varchar(8000), @Srvr varchar(100)SET...
September 27, 2005 at 6:07 pm
Michelle, you don't need IIS setup on the machine, that was just an example. All you need to provide is a valid smtp server as a parameter to the...
September 27, 2005 at 5:54 pm
You can execute xp_readerrorlog for each of the remote servers. If you can use linked servers then you can use OPENQUERY. EG:
SELECT Qry.* FROM OPENQUERY(<<LINKED SERVER>>, 'SET FMTONLY OFF...
September 27, 2005 at 5:41 pm
Ok, try this then,
-- Update CustPendCase to Y or N UPDATE Asgn SET Asgn.CustPendCase = CASE WHEN ISNULL(FlwUp.CallId, '') = '' THEN 'N' ELSE 'Y' END FROM Asgnmnt Asgn LEFT...
September 27, 2005 at 4:36 pm
Not quite sure from that post if you've got it worked out
And don't worry about being a...
September 27, 2005 at 7:18 am
Michelle, as I said in my earlier post I think you're unesscessarily complicating things by running a DTS package. Also, the sp_OA* procedures are know for there quirks and can...
September 27, 2005 at 7:13 am
Simple really, remove all the guff for the testing and you're left with the update statement. The update statement refers to a table variable that was created for testing, so...
September 27, 2005 at 4:59 am
Viewing 15 posts - 706 through 720 (of 2,486 total)