Forum Replies Created

Viewing 15 posts - 481 through 495 (of 2,487 total)

  • RE: Another way to format @message in XPSMTP or Stored Procs period

    Take a look at sp_makewebtask, with it you can generate a HTML file and then use it as the message body.

     

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

  • RE: Setting up E-mail service

    Save yourself some grief dealing with Outlook profiles and MAPI. Get xp_smtp_sendmail from http://www.sqldev.net

    Once the DLL is registered in SQL Server there is no further setup required. It just...

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

  • RE: SQL-DMO Database object in VB 6 calling ExecuteWithResults() with batch of T-SQL

    ExecuteWithResults expects a resultset to be returned so you can't execute this as a batch because the 'GO' signifies multiple batches.

    You should be able to execute it using ExecuteImmediate and...

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

  • RE: Mail to be sent based on data

    How about using Reporting Services?

    Using Web Service calls you can render any given report in the format you require and then you can email out the result.

     

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

  • RE: MSDE and SQL Mail.

    I think the reference to installing software is for mail servers, etc...

     

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

  • RE: Saving DTS as .BAS, but how to load it?

    Done it many times without any problems.

     

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

  • RE: Translate this in a stored procedure

    Jeff, thanks for illustrating what I said

    "Of course with these samples you could remove the WHILE loop and copy the CHAR/SUBSTRING for as...

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

  • RE: What motivates you?

    I'd have to agree with that. Nothing better than a user saying how easy xyz job is now they have application abc.

     

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

  • RE: Translate this in a stored procedure

    Ahhh ... renamed all but the DECLARE ... DOH!!!

    Also, dredged this up which works as well.

    DECLARE @MyCode varchar(6)
    DECLARE @Min int
    DECLARE @Max int;
    SET @MyCode = ''
    SET @Min = 65
    SET...

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

  • RE: Translate this in a stored procedure

    If you goal is to generate a random six character string, then this seems to work. The main problem in generating random numbers in SQL Server is providing an appropriate...

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

  • RE: Criteria For Placing A New Database

    Joe has pretty much got everything covered. Although, I'd probably add one more,

    How much load is the app/db processing going to put on the server?

    We had an application setup recently that...

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

  • RE: Report Bursting in SSRS

    No, there is no report bursting capability in Reporting Services. We came up against the same issue and had to re-work how the report is produced.

    You can approach it a...

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

  • RE: DMO DTS

    Take a look at my script over here

    http://www.sqlserver.org.au/resources/ViewResource.aspx?resourceId=40

     

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

  • RE: MSDE and SQL Mail.

    If all you want is success or failure messages from DTS, then take a look at the DTSSMTP Mail Task over at http://www.sqldev.net

    This uses basic SMTP mail settings and...

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

  • RE: varchar size overflow

    Well if you're going to have that many values, using them is the IN clause of a WHERE is the wrong way to approach it. You'll have a large performance...

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

Viewing 15 posts - 481 through 495 (of 2,487 total)