Forum Replies Created

Viewing 11 posts - 556 through 567 (of 567 total)

  • RE: ##Tables in concurrent environment

    Hi Jeff,

    Thanks for the tip on the (max) vs. (8000)/(4000) nvarchar/varchar data types in these functions. When I implemented your new splitter function, I used nvarchar(4000), which covers our...

    Jason Wolfkill

  • RE: ##Tables in concurrent environment

    Sure. My multistatement table-valued function (below) is a WHILE loop that repeats as long as the string has any characters in it, finding the first occurrence of the delimiter, inserting...

    Jason Wolfkill

  • RE: ##Tables in concurrent environment

    Jeff Moden (2/14/2011)


    Ok... the following function will pretty much blow the doors off of other splitter functions including some of my old ones.

    WOW!!! That crash you just heard was...

    Jason Wolfkill

  • RE: Update a column, multiple time on multiple contitions

    Sean Lange (2/10/2011)

    I don't know that there is much way to combine this with the first one because the join conditions are different.

    The OR operator is valid in JOIN conditions...

    Jason Wolfkill

  • RE: Query Behavior in Management Studio

    When you insert data into a table, SQL Server stores the data based on the table definition and index structure, not on how you feed the data to it. Read...

    Jason Wolfkill

  • RE: Creating XML from select statement

    Sounds like you should look into FOR XML:

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

    Jason Wolfkill

  • RE: Standard Deviation

    Hi Tom,

    I see that we are on the same page. The only way I can make sense of Microsoft's nomenclature is to remember that I should use STDEVP when...

    Jason Wolfkill

  • RE: Standard Deviation

    I thought the P in STDEVP stood for "Population", so STDEVP would be the estimated Population Standard Deviation (obtained by applying Bessel's correction to the actual Sample Standard Deviation) and...

    Jason Wolfkill

  • RE: Standard Deviation

    What's going on here is that the STDEV() function in T-SQL returns the sample standard deviation (which for a single value will be undefined, hence the programmatically dictated NULL result)...

    Jason Wolfkill

  • RE: SQL Server Reporting Services - Problem with multi-value parm in SQL stmt

    If I understand what you are trying to do correctly, you want to create a report with three required parameter values (@StartDate, @EndDate, @SurgeonName) and two optional parameter values (@Service,...

    Jason Wolfkill

  • RE: 100 Years Ago, What Would You Be?

    A friend who does metalwork as a hobby often dreams of blasting society back to, if not the Stone Age, then at least to the mid-18th century, where he as...

    Jason Wolfkill

Viewing 11 posts - 556 through 567 (of 567 total)