fulltext-index Questions
4
Solved
I'm looking to run a query that will return a list of columns in a table that are FULLTEXT indexed. The table is in MyISAM format and i'll be using php to construct the query.
Ideally i would run ...
Domenech asked 5/11, 2010 at 15:53
7
Solved
We are writing unit tests for our ASP.NET application that run against a test SQL Server database.
That is, the ClassInitialize method creates a new database with test data, and the ClassCleanup d...
Overwind asked 28/4, 2010 at 8:40
3
Solved
I'm working on a document storage. Therefore I plan to use SqlServer 2012 with file tables.
Now after some tests it seems like the SqlServer only indexes doc and not docx files.
I also installed t...
Haplography asked 1/4, 2012 at 11:10
6
My question is about using full text search. As I know like queries which begin with % never use index :
SELECT * from customer where name like %username%
If I use fulltext for this query can I ta...
Dervish asked 16/11, 2010 at 13:14
3
Hi I am looking for a query that is able to find Full text indexing on all tables and columns within a database using SQL Server 2008. Any information or help that can be provided for this is welco...
Howland asked 29/4, 2013 at 14:14
1
Solved
Let's say I have a mongo collection with a text index on the itemName field with these 3 documents:
{
_id: ...,
itemName: 'Mashed carrots with big carrot pieces',
price: 1.29
},
{
_id: ...,
i...
Monnet asked 26/2, 2017 at 12:40
5
Solved
I changed to "ft_min_word_len" = 4 by my-innodb-heavy-4G.ini located in my system path "C:\Program Files\MySQL\MySQL Server 5.1" , but when i run
SHOW VARIABLES LIKE 'ft_min_word_len'
I got sti...
Connelley asked 1/2, 2013 at 12:51
1
Working now on a vBulletin board, which runs on MySQL 5.6.21 with InnoDB table engine. There is a default query in vBulletin, which uses index hint on one column and the same time uses fulltext ind...
Selfgovernment asked 17/4, 2015 at 7:8
1
Solved
I have a table named 'fact' with title column, that should be full text index.
Firstly, I add a full text index:
ALTER TABLE fact ADD FULLTEXT title_fts (title)
So, I insert row:
INSERT INTO f...
Jiminez asked 1/7, 2015 at 14:36
2
Solved
I have created a fulltext catalog that stores the data from some of the columns in a table, but the contents seem to have been split apart by characters that I don't really want to be considered wo...
Joannjoanna asked 12/10, 2010 at 12:43
3
Solved
what exactly is the difference (and advantages/disadvantages) between a fulltext index and a regular index on a varchar column? When would I use which index?
I have a multitude of varchar columns ...
Gwenny asked 23/7, 2009 at 17:54
1
© 2022 - 2024 — McMap. All rights reserved.