Forum Replies Created

Viewing 12 posts - 61 through 73 (of 73 total)

  • RE: qouestion about Index

    GilaMonster (11/4/2009)


    farax_x (11/3/2009)


    yes it helps but does not answer my question.

    There is no one, single, always right answer to your question. Without knowing the queries that run against that table,...

  • RE: qouestion about Index

    Lowell (11/3/2009)


    Gail's "it depends" answer is spot on...it depends on how your data gets accessed; indexes help find the data faster.

    ok 10 million records, but which columns are actually used...

  • RE: qouestion about Index

    GilaMonster (11/3/2009)


    farax_x (11/3/2009)


    my question is :

    its better put all columns together in one index or this situation is the best.

    As I said, it depends. It depends purely on the...

  • RE: qouestion about Index

    sorry, may be i explain my question badly.I have a table with 10 million records, and i created Separate index for each index-needed columns . my question is :

    its better...

  • RE: full text search problem !!!

    Paul White (9/9/2009)


    farax_x (9/8/2009)


    How can I edit noise words in SQL server 2008

    In Management Studio, expand your database name, then Storage. There you will find full-text stop lists.

    See Stop...

  • RE: full text search problem !!!

    Paul White (9/9/2009)


    farax_x (9/8/2009)


    How can I edit noise words in SQL server 2008

    In Management Studio, expand your database name, then Storage. There you will find full-text stop lists.

    See Stop...

  • RE: full text search problem !!!

    benyos (9/8/2009)


    Numbers are possiblr to be saught by configuring noise.dat file on your server and re-indexing whole content.

    Special chars, however, require you to write a new language analyzer... See MSDN...

  • RE: full text search problem !!!

    benyos (9/8/2009)


    Numbers are possiblr to be saught by configuring noise.dat file on your server and re-indexing whole content.

    Special chars, however, require you to write a new language analyzer... See MSDN...

  • RE: full text search problem !!!

    select *

    from tblDocument

    where contains(docNo,'"/abc 123 \*"')

  • RE: connect to a server

    if u want use Remote desktop u can use this :

    mstsc -v [destination] -console

  • RE: use 2 tables or one, this is a problem ;D

    thanx for your response Chirag 🙂

  • RE: -2147217871,Timeout expired

    locking may be the problem use fast firs row to solve

    (delete from tb with (fastfirstrow) where ....)

    if run this command is critical, set commandTimeOut = 0 (unlimit)

Viewing 12 posts - 61 through 73 (of 73 total)