Forum Replies Created

Viewing 15 posts - 91 through 105 (of 137 total)

  • RE: SQL Server on RDS

    hosting is not new, SQL on VM is not new, RDP and many other TLA is not new.

    What's new is that Amazon is offering another product. For those whom...

  • RE: Did you say denormalize, why?

    We have code similar to this to manage EAV tables.*

    I believe the dynamic SQL executing DDL in a loop reduces your database to a very expensive scripting environment for running...

  • RE: VIEWS 5

    I thought "Select *" was banned from production environments for this (and other) reasons.

    Are we saying it is acceptable for View definitions with the caveat that someone remembers to update...

  • RE: Tabs or Spaces

    tabs

    To borrow from web design: semantic meaning. If the tab character (following newline) is taken to mean "indent" then four levels of indentation is literally 4 tab characters. ...

  • RE: TSQL Challenge 78 - Parse single field into multiple fields

    Jeff Moden (3/19/2012)


    This is another contest problem where the best solution wouldn't likely be an "all in one" query.

    I suggest the schema should be redesigned and this code would be...

  • RE: Change the port number for connections to SQL Server

    Kelsey Thornton (3/1/2012)


    Very well explained but missing one useful point:

    "Why would you want to change the port number in the first place?"

    Seconded. I also suggest sharing how you mitigate...

  • RE: SQL Server 2008 R2 Data Types

    "A column of type sql_variant may contain rows of different data types."

    fwiw: I parse that sentence at least two ways. I believe the correct meaning is that the...

  • RE: Dynamically create and populate staging tables from CSV files

    jimbobmcgee (1/10/2012)


    That said, I do want to offer some pointers with the .NET code itself, which I feel would make this better as a teaching article or reusable code block:

    [enumerated...

  • RE: Happy Holidays

    Just to clarify for those confused by the eating association to these animals, we don't eat black cats for Halloween either.

  • RE: Table space usage 2

    The question is sound. My attention span is not.

    I would hope those who are paid to hold the title of DBA are able to do these maths without too...

  • RE: Don't Criticize Code

    I'll accept code that goes through the mutations of evolution and the bandaid & tourniquet approach to solving problems - if those that have touched code have left comments. ...

  • RE: Table space usage 1

    Hugo Kornelis (11/9/2011)


    I must say that the low rate of correct answers surprises me. I intended this question to be a relatively easy first question in a series (hence the...

  • RE: Generate HTML output for given SQL Query

    dav0id (10/25/2011)


    I would tend to agree with Mike Dougherty-384281. This approach seems like a bad idea for a number of reasons.

    Why not use a "FOR XML" query and transform...

  • RE: Generate HTML output for given SQL Query

    I'd like to suggest that this solution strikes me as a bad idea. Why are you asking your database to do so much string manipulation? If you're using...

  • RE: Delete files older than n-days via T-SQL

    While this code does the job I have to ask, "Why would you want your SQL Server deleting files?"

    There isn't even any data-driven relationship to the files. We induct...

Viewing 15 posts - 91 through 105 (of 137 total)