Viewing 12 posts - 61 through 73 (of 73 total)
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,...
November 4, 2009 at 12:36 am
Lowell (11/3/2009)
ok 10 million records, but which columns are actually used...
November 3, 2009 at 8:29 pm
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...
November 3, 2009 at 8:28 pm
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...
November 3, 2009 at 8:33 am
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.
September 9, 2009 at 11:28 pm
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.
September 9, 2009 at 11:25 pm
benyos (9/8/2009)
Special chars, however, require you to write a new language analyzer... See MSDN...
September 8, 2009 at 11:23 pm
benyos (9/8/2009)
Special chars, however, require you to write a new language analyzer... See MSDN...
September 8, 2009 at 11:21 pm
select *
from tblDocument
where contains(docNo,'"/abc 123 \*"')
September 8, 2009 at 9:52 pm
if u want use Remote desktop u can use this :
mstsc -v [destination] -console
September 8, 2009 at 10:40 am
thanx for your response Chirag 🙂
September 8, 2009 at 10:37 am
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)
September 7, 2009 at 4:43 am
Viewing 12 posts - 61 through 73 (of 73 total)