Forum Replies Created

Viewing 15 posts - 16 through 30 (of 116 total)

  • RE: Comma separate list as parameter

    You may want to consider performance differences between using an IN and an INNER JOIN

    select columns

    from dbo.sometable

    where ItemCode in (select Item from #tempTable)

    -- AND --

    select columns

    from dbo.sometable st

    inner

    join ...

  • RE: Data Merge Builder

    There is an updated version of this pending. I changed the use of XML as the extract mechanism for data which allowed me to remove the dependency on a...

  • RE: Never, Ever Use Clustered Indexes

    I hear the argument "we don't want to be locked in" from the app dev folks - the same ones that aren't afraid to be locked in to their programming...

  • RE: Process Support Database Framework

    I'd be interested in throwing in on an open source effort. I agree that it can do much more than only SSIS. I look forward to sharing my...

  • RE: Process Support Database Framework

    Well done! I had created a process framework at my last company that was similar in it's approach but more generic in nature. I used a queueing mechanism...

  • RE: Pros and cons of six SQL table tools

    I enjoyed the article and think it's a good overall non-biases intro. There are a couple of points I feel are worth mentioning. The in-line TVF can be...

  • RE: Why SHRINKFILE is a very bad thing, and what to do about it.

    In all a well written and reasoned article and I agree wit the practices outlined as far as production goes. However, it's a regular practice at our shop to...

  • RE: Where are all the MVBs?

    I like this idea! Having a body of knowledge that can be applied to these situations will be a great resource.

    IMHO: Steer away from the term "best practice". ...

  • RE: Leave Developers Alone

    Ninja's_RGR'us (7/25/2011)


    What were the time differences?

    They generally range from 1/3 - 1/2 longer for the context switching. I have one person (a mother of twins) that can context switch...

  • RE: Leave Developers Alone

    A few years back I learned of a test that demonstrates the evils of multitasking. It's a way of training people not to say "no" but "not yet". ...

  • RE: 100% Microsoft?

    I have a hybrid approach. First, I look for an MS only solution. There's a tremendous number resources available thru SQL Server Central, other web sites and blogs...

  • RE: Under Appreciated Features

    I don't think you can overlook the usefulness of bcp and/or bulk insert. They're frequently overlooked in favor of SSIS. Many times SSIS is overkill for loading/producing simple...

  • RE: BCP Format File Builder

    It looks like it's an issue with one of the varchar data columns.

    You might want to look at the table variable -- maybe bust out the varchar 5/6 to sysname....

  • RE: What Do We Need in SQL Server?

    Having the ability to "variableize" a few commands like BULK INSERT and OPENQUERY would be nice.

    ...something like:

    BULK INSERT dbo.MyTable

    from @FileSpec

    with ...

    ...and for open query...

    create proc myproc @key int

    as

    declare...

  • RE: What Do We Need in SQL Server?

    david_wendelken (9/22/2010)


    Products get better by improving on their strengths and adding better ideas from whatever source. That other source is often competing products. So don't get your knickers...

Viewing 15 posts - 16 through 30 (of 116 total)