Forum Replies Created

Viewing 15 posts - 706 through 720 (of 2,487 total)

  • RE: Query Analyzer Extended

    "You should be aware - no matter what format you use to create a table Query Analyzer or Enterprise Manager will always return your code in First format"

    This is not...

    --------------------
    Colt 45 - the original point and click interface

  • RE: converting statement

    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
    

     

    --------------------
    Colt 45 - the original point and click interface

  • RE: converting statement

    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.

     

    --------------------
    Colt 45 - the original point and click interface

  • RE: DTS package to send alert e-mails

    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 ??

  • RE: help needed for parsing the error log file

    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...

    --------------------
    Colt 45 - the original point and click interface

  • RE: SQL Serve Not using indexes

    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...

    --------------------
    Colt 45 - the original point and click interface

  • RE: SQl Mail not using outllok

    yes

     

    --------------------
    Colt 45 - the original point and click interface

  • RE: converting statement

    For curiosity sake, how long did it take to run?

     

    --------------------
    Colt 45 - the original point and click interface

  • RE: Enterprise Manager Tricks

    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...

    --------------------
    Colt 45 - the original point and click interface

  • RE: DTS package to send alert e-mails

    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...

    --------------------
    Colt 45 - the original point and click interface

  • RE: DTS package to send alert e-mails

    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...

    --------------------
    Colt 45 - the original point and click interface

  • RE: help needed for parsing the error log file

    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...

    --------------------
    Colt 45 - the original point and click interface

  • RE: converting statement

    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...

    --------------------
    Colt 45 - the original point and click interface

  • RE: converting statement

    Not quite sure from that post if you've got it worked out

    And don't worry about being a...

    --------------------
    Colt 45 - the original point and click interface

  • RE: DTS package to send alert e-mails

    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...

    --------------------
    Colt 45 - the original point and click interface

Viewing 15 posts - 706 through 720 (of 2,487 total)