Forum Replies Created

Viewing 15 posts - 5,506 through 5,520 (of 9,712 total)

  • RE: RAID 10, Crystal Disk Mark Weird score?

    Yes, because SANS are set up in different ways and also have different hardware. Some SANS have 1 disk controller, others have multiples. Also, it depends on how the LUNS...

  • RE: When to use full-text

    I think your scenario highlights a very real problem with Full-Text.

    The searches are based on words, and variations of words, that SQL "knows." Because you are using proper names,...

  • RE: remove last character from string

    You could always use the RIGHT and LEFT functions.

    Declare @MyVar char(6);

    Set @MyVar = 'abcdef';

    Select @MyVar = LEFT(RIGHT(@MyVar,5),4);

    Select @MyVar;

    UPDATE import_table

    SET cost_code=@MyVar;

  • RE: How to properly design this DB

    I agree with everything everyone said so far. I would just like to add that it may be easier for you to draw things out before you start physically designing...

  • RE: Member of Windows Group login issue in SQL server 2008

    DBA in Unit 7 (7/25/2011)


    with the SQL 2008 instance: I added the domain group COM\DBA to the sysadmin server role on the SQL 2008 instance, and default database as MASTER;...

  • RE: Unable to connect DB server across domain

    If the domains don't trust each other, I don't think any amount of SQL perms verification will help. Check with your domain admin to make sure that A) the domains...

  • RE: sp_send_dbmail with dynamic body

    You have to turn the whole statement into a dynamic SQL statement. You can't just assign variables to the various bits of it. Do you know how to do dynamic...

  • RE: Fast "Select" query slows way down when adding an "Into #temp" statement

    Have you compared execution plans between the regular SELECT and the SELECT...INTO queries?

  • RE: Are the posted questions getting worse?

    mtillman-921105 (7/25/2011)


    Too many of these posters don't realize the level of expertise that they are getting here. Maybe you all need more intimidating titles like "Grand Intergalactic SQL Master"...

  • RE: What's a safe backup?

    halifaxdal (7/25/2011)


    Brandie Tarvin (7/25/2011)


    halifaxdal (7/25/2011)


    SSMS is not reliable and it's very buggy

    What sort of problems are you having with it? If you post detailed problem descriptions / error messages, we...

  • RE: What's a safe backup?

    halifaxdal (7/25/2011)


    SSMS is not reliable and it's very buggy

    What sort of problems are you having with it? If you post detailed problem descriptions / error messages, we might be able...

  • RE: Today's Random Word!

    Revenant (7/25/2011)


    Brandie Tarvin (7/25/2011)


    crookj (7/25/2011)


    Ray K (7/25/2011)


    Daniel Bowlin (7/25/2011)


    ruthless

    people

    Despicable

    Me

    Really?

    Movie title. "Despicable Me."

  • RE: Nulls and logic

    zapouk (7/22/2011)


    Sorry, haven't got access to my sql code at the moment but the example I've given matches it. The only nullable column is A and it's a one-to-one relationship...

  • RE: Are the posted questions getting worse?

    I love chapter 2, The First Programmer was a Lady.

  • RE: Today's Random Word!

    crookj (7/25/2011)


    Ray K (7/25/2011)


    Daniel Bowlin (7/25/2011)


    ruthless

    people

    Despicable

    Me

Viewing 15 posts - 5,506 through 5,520 (of 9,712 total)