Forum Replies Created

Viewing 15 posts - 5,386 through 5,400 (of 6,022 total)

  • RE: Doubled the size of my SQL Server and now getting bad performance

    If possible, try running a schema comparison including indexes and statistics between the new database and the previous database instance. Perhaps in the process of migrating to the new server...

  • RE: Using TOP To Rank Columns In a Table

    CELKO (10/24/2011)


    Why did you encourage him? Sounds like time for re-education:w00t:

    On a slow day, even the best of us may become so distracted by the challenge of solving some small...

  • RE: Script to Update Rows

    For more complex type record matching problems, I turn to the ranking functions.

    Example:

    select * from

    (

    select *,

    ...

  • RE: Retiring DB

    liebesiech (10/21/2011)


    As mentioned by others, sometimes you cannot remove a database as it is the only source for important legacy information.

    Just to give you an idea...

    Ideally all relevent legacy...

  • RE: interview

    Know the the Standard Model, the six types of quarks, their intrinic properties and interactions. Also know at least the Wizard's First and Second Rule.

  • RE: Retiring DB

    Sending out a broadcast email asking if it's OK to retire a database is good, but depending on the size and organization of the IT department, it's entirely possible for...

  • RE: Finding the column containing the minimum value

    If this were Oracle, I could do it all with an inline expression using the DECODE() and LEAST(<value>, <value>, ....) functions.

    However, after deriving a version of your table that...

  • RE: Not Only SQL

    I agree that, if your application needs to reference very large entity-attribute-value datasets, then it would perhaps be best to move those specific tables out of SQL Server and into...

  • RE: Protecting Data

    Is it really true that we can't anonymize data?

    It is possible to remove or hash the personally identifying attributes (name, ssn, contact info, etc.) from a flat dataset or...

  • RE: The Countdown

    Steve Jones - SSC Editor (10/12/2011)50, years that is.

    An amazing view

    A touch of danger

    Steve, this is just a guess, but has Red Gate offered you a lofty executive position?

  • RE: A Nice Refund

    Several years back, I was working on a government contract to develop the database backend for a web application that would query a large accounting datamart, and then build a...

  • RE: A Nice Refund

    I consider CLR functions to be one of the least useful features introduced in SQL Server 2005. Although I can see a niche use for it when a developer needs...

  • RE: Rookie DBA

    mendesm (10/5/2011)


    Don't take this personally, but when a resume comes my way with "MCITP/MCTS" and other MS certifications I pass the resume on to the trash barrel.

    These days, the more...

  • RE: INFORMATION_SCHEMA.101

    When writing DDL deployment scripts, I try to leverage information schema views rather than system views.

    -- If a named constraint exists, then drop it:

    if exists (select * from information_schema.table_constraints...

  • RE: What’s In Your (Junk) Drawers?

    Charles Kincaid (9/29/2011)


    You said; "Aren’t we all destined to have so much uncategorized stuff and as long as we limit it to one drawer, does it matter?"

    So, getting back to...

Viewing 15 posts - 5,386 through 5,400 (of 6,022 total)