Forum Replies Created

Viewing 15 posts - 271 through 285 (of 389 total)

  • RE: Sending scheduled SQL query results via HTML e-mail using SSIS

    Gordo et al,

    Another option is to not generate the html file - just generate the xml file, which itself contains a reference to the xsl stylesheet. You can then...

  • RE: Using FOR XML clause to generate KML

    Firstly, I couldn't get the code to run from the article - as it's different from the code in the resource section!

    But more importantly I think you're missing the point...

  • RE: Correlated Joins Using "Apply"

    mdonnelly (2/27/2009)


    Peter E. Kierstead (6/16/2008)


    I'll index this table appropriately, and wallah!, home-grown full-text index...

    This would have been on the bubble of being excusable had the original article not had a...

  • RE: Correlated Joins Using "Apply"

    Alex Ionine (6/16/2008)


    it could be a descent article had it been written 2 years ago.

    or even an ascent article! (no s in decent.)

  • RE: Add Styles to Your Reporting Services Reports

    Nice article - nothing revolutionary, just good relevant practical advice on making life easier. Look forward to the next installments.

    David McKinney.

  • RE: How to write efficient stored procedure ?

    Afterthought, if the proc is taking too long, perhaps you should be focusing on the indexes on the tables rather than the proc itself!

  • RE: How to write efficient stored procedure ?

    I would assume that in the majority of cases you will not be creating a new page - you will just be inserting into the tbl_Tracking_dtl.

    For that reason, it would...

  • RE: How to write efficient stored procedure ?

    Jack Corbett (2/24/2009)


    I'd start with something like this:

    IF NOT EXISTS(SELECT 1 FROM dbo.tbl_Tracking_WebPages WHERE Page_Name = @Page_Name)

    BEGIN ...

  • RE: Linking to the Previous Row

    mishaluba (1/29/2009)


    Absolutely loved the article. I am sure everyone had to do something like this at one time or another. Thank you for sharing this technique and nice...

  • RE: Linking to the Previous Row

    Paul Paiva (2/12/2009)


    Excellent and clearly written!

    I'm always reading CTE articles and this is one of the best, because it explains a situation which is very commonly encountered.

    - Paul

    Thanks, Paul. ...

  • RE: SMO vs SQL-DMO

    ....found it!

    EXEC master..xp_dirtree 'C:\temp',@depth, @includefiles

    e.g. EXEC master..xp_dirtree 'C:\temp',1,1

  • RE: SMO vs SQL-DMO

    For example, I know lots of folks that will write a script to get file names from a directory... xp_DirTree works just fine

    Hi Jeff,

    Does this really work for getting...

  • RE: Linking to the Previous Row

    Dave R (1/30/2009)


    Good article. I tried to use it to get results of calculations for previous year and quarter but not working.

    How can I use your example "Linking to...

  • RE: SMO vs SQL-DMO

    Sripting objects, doing stuff on the "outside" because they don't know a way to do it "inside".

    OK...I get you. I immediately thought more of 'script generation' i.e. Create Table...

  • RE: SMO vs SQL-DMO

    Ninja's_RGR'us (1/28/2009)


    I was subscribed to this thread as well. And Jeff only replied to it because someone else posted another solution a couple minutes before him.

    When replying to a...

Viewing 15 posts - 271 through 285 (of 389 total)