Forum Replies Created

Viewing 15 posts - 8,926 through 8,940 (of 14,953 total)

  • RE: collation conflict with a split function

    You won't end up with a collation conflict with an inline query, because they're both being done in the same context.

    For example:

    ;with CTE (ParsedString) as

    select substring(@String...

  • RE: Over-Engineering

    Jeff Moden (7/28/2009)


    Yeah.... just not one you release to the customer. You only have one chance to make a first impression. Unless the customer is fully aware that...

  • RE: Can't install SQL server 2005 Standard Edition on Windows XP professional SP3

    I'm not saying it's somehow not allowed. I'm not saying it's not supported in any way. I'm saying it's got overkill issues. Express or Workgroup on XP,...

  • RE: PK violation but still a commitable transaction

    It took a paragraph for you to explain what you were doing in one of the examples. That's what I mean by harder to document. The one with...

  • RE: Does Maturity Make a DBA?

    sjsubscribe (7/28/2009)


    Lynn Pettis (7/28/2009)


    Freedom of something does NOT equate to Freedom FROM something.

    You would certainly be considered a disruptive force in an orderly society that protects freedom of speech. Here...

  • RE: Trigger Conundrum

    I've never seen that one take any measurable amount of time, so I really can't say why it would in your case.

    Can you provide table definitions and an insert statement...

  • RE: how to deal with characters and period

    I'm not clear on what you're asking.

    Do you need to do something beyond just query that column of data from the table?

  • RE: ntext column problem?

    I haven't used ntext in SQL 2000 in a while, but I think it has to allocate space for it even if it's null. I could easily be wrong...

  • RE: Loading Trace Files To A Table

    You can use xp_cmdshell to query the files in a directory. Would that allow you to do what you want?

  • RE: Running out of space in tempdb

    I could be mistaken, but I think the XML for the query plan is built in tempdb. So, yeah, it could. Doesn't sound like it should in your...

  • RE: Are the posted questions getting worse?

    Jan Van der Eecken (7/28/2009)


    john.arnott (7/28/2009)


    Steve Jones - Editor (7/28/2009)


    How about advanced pork chop aiming strategies for maximum developer damage?

    Just be careful of starting an internecine battle. There are...

  • RE: Query Help?

    Will this do what you need:

    create table #temp1

    (

    name varchar(10),

    ID int

    )

    insert into #temp1

    select 'John',1 union

    select 'Jane',1 union

    select 'Fred',2...

  • RE: Joining two blocks of code

    Have you tried a cross-join?

  • RE: auto subscribe the author to the forum posting

    I've always been on the notification list for my articles. I generally drop the subscription once the topic quiets down and has no activity for a few days, but...

  • RE: Are the posted questions getting worse?

    Grant Fritchey (7/28/2009)


    Luke L (7/28/2009)


    Steve Jones - Editor (7/28/2009)


    How about advanced pork chop aiming strategies for maximum developer damage?

    And of course a ppt preso won't quite cut it. Perhaps...

Viewing 15 posts - 8,926 through 8,940 (of 14,953 total)