Forum Replies Created

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

  • RE: Serialising tabular and relational data.

    It sounds like you guys haven't worked much with 3rd-party data vendors and their data. If you had, you'd appreciate how big an issue this is. Widespread use of a...

  • RE: Shrinking Databases

    GilaMonster (12/13/2010)


    It's backing up the changed extents, but like full backups it'll need enough of the tran log to ensure a consistent restore, however I don't think dfalso was talking...

  • RE: Shrinking Databases

    Representing the non-standard SQL Server folks if I may, SHRINKing is very needed and valuable in our situation (databases not attached to applications). Our data is for analysis, so I'm...

  • RE: Different results running SQL as sp vs. adhoc

    Craig Farrell (11/11/2010)


    Haven't seen that before, dfalso, except when I'm getting different defaults off my procedure declaration.

    I know you're trying to keep the code to a reasonable length here, but...

  • RE: A Lack of SQL

    I looked into writing CLR stored procedures and aggregate functions a few months back. For me, the problem was not enough integration, actually. What I mean by that is that...

  • RE: Using XML to Enhance the Performance of String Manipulations

    Hi, thanks for the article.

    In reading this and other articles that show how to use XML for string tasks, they all provide examples using variables. I'm looking to parse...

  • RE: The T-SQL Quiz

    So now, what's the minimum number of rows guaranteed to be in master's syscolumns?

  • RE: The T-SQL Quiz

    Jeff Moden (6/28/2008)


    dfalso (6/27/2008)


    In order to be truly safe, dynamic sql is needed, unless we could write a CTE with an input variable that governs the amount of recursion...

  • RE: The T-SQL Quiz

    Jeff Moden (6/27/2008)


    dfalso (6/27/2008)


    Not to quibble about it, but you do need dynamic SQL if you need more than 11,000 but don't know how much more. Right? In other words,...

  • RE: The T-SQL Quiz

    Not to quibble about it, but you do need dynamic SQL if you need more than 11,000 but don't know how much more. Right? In other words, if your upper...

  • RE: The T-SQL Quiz

    Jeff Moden (6/27/2008)


    dfalso (6/27/2008)


    Also, depending on need, you can adapt the above to dynamic SQL should you want to work with input parameters.

    Why would you need to do that?

    If you...

  • RE: The T-SQL Quiz

    David Jackson (6/27/2008)


    Insert this into the top of the script

    --===== Conditionally drop

    IF OBJECT_ID('dbo.Tally') IS NOT NULL

    ...

  • RE: XML Parsing drawbacks

    Just an observation, but I believe most XQuery commands need string literals for their parameters, not strings (so no variables). So if you know the schema structure and are querying...

  • RE: Cost of using CAST function

    I'd add that if you *know* your data will fit in a nvarchar(50) - and future data as well - it's good to keep it that small if you want...

  • RE: XML vs Split for parsing of URL type data

    Jeff Moden (4/17/2008)


    Sorry folks... dunno how I missed this one.

    Antonio... I sure do appreciate the attention to detail you put into the tests you did and the reports that followed....

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