Forum Replies Created

Viewing 15 posts - 1 through 15 (of 65 total)

  • RE: The Basics of iTVFs

    I think that the best thing about ITVF versus direct access to views is that you can enforce some parameters to be provided.  So even if views (indexed or not)...

  • RE: Using a TSQL semaphore in SSIS

    Any particular reason that sp_getapplock wasn't used for this implementation?

    http://msdn.microsoft.com/en-us/library/ms189823.aspx

  • RE: 9 Things to Do When You Inherit a Database

    Chrissy321 (6/15/2012)too problematic?

    Really depends. If you can run the profiler for extended periods, you can still easily miss something which is only used once a year.

    I tend to rely...

  • RE: Technology Guilt

    jay-h (6/15/2012)


    Cade Roux (6/15/2012)


    bwillsie-842793 (6/15/2012)

    .... This is very much due to the current state of wealth redistribution where wealth is being more and more redistributed to the top (to people...

  • RE: Technology Guilt

    bwillsie-842793 (6/15/2012)

    In the US 99% of those demanding "wealth redistribution" do so based on their wants and not on their needs. It's not the greed of others that is...

  • RE: Technology Guilt

    Personally, I am convinced we place far too much emphasis on "get a college degree" and not enough on "learn a marketable skill set."

    I agree with the first part, but...

  • RE: Technology Guilt

    I don't feel guilty for being part of the technological forces which cause shifts, but I feel a tremendous anger towards those who exploit it with their greed and lies.

    Our...

  • RE: An alternative to GUIDs

    Paxman (9/15/2011)


    By looking at the other posts, I think that some are confusing Primary Keys, which should only be used for referential integrity and not used by humans, and Reference...

  • RE: An alternative to GUIDs

    For independent client generation, we had good success with COMBs: http://www.informit.com/articles/printerfriendly.aspx?p=25862

    The problem you mention with waiting on the database for SCOPE_IDENTITY() can be mitigated now (at least for...

  • RE: Strange T-SQL behaviour using Hungarian collation

    The problem is not Y, but LY - Hungarian has a special LY letter: http://en.wikipedia.org/wiki/Hungarian_alphabet

  • RE: Extracting Extended Properties

    damian.wise (5/3/2011)


    An excellent set of articles. Does anyone know how to return the extended properties of Database Roles in the same way?

    Damian

    Apply with:

    EXEC sys.sp_addextendedproperty

    @name=N'name',

    @value=N'value',

    @level0type=N'USER',

    @level0name=N'databaserole'

    Query with:

    SELECT *

    FROM ...

  • RE: Linking to the Previous Row

    AlistairNY (4/12/2011)


    Well, in my application it seems about the same as the Outer Apply method. I only need the previous (not the next) day's value, for 5000 series of about...

  • RE: Linking to the Previous Row

    _ms65g_ (4/12/2011)

    No, if we change the DENSE_RANK with ROW_NUMBER the result will not be correct. You can rum my first script at my first post with row_number. So you will...

  • RE: Linking to the Previous Row

    ;WITH C AS

    (

    SELECT seq_nbr, k,

    DENSE_RANK() OVER(ORDER BY seq_nbr ASC) + k AS grp_fct

    FROM [Sample]

    ...

  • RE: Extended Properties Introduction

    aigl (3/21/2011)Is it possible for View columns to inherit the Extended Properties from the Table columns that the View is based on?

    I don't think so, and I wasn't even able...

Viewing 15 posts - 1 through 15 (of 65 total)