Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 321 results for
fulltext
- Page 1
Fulltext Index problems
Programming
Databases
16 Years Ago
by ecejahv
…I have the following code: [code=sql]CREATE
FULLTEXT
INDEX ON sample_table (data) KEY INDEX UQ__sample_table__59FA5E80 …ui_name CHAR (100) EXECUTE S_UNIQUE_INDEX_NAME @ui_name OUTPUT CREATE
FULLTEXT
INDEX ON sample_table (data) KEY INDEX @ui_name ON… not be visible within the "CREATE
FULLTEXT
..." command context but I am not sure…
Re: Fulltext Index problems
Programming
Databases
16 Years Ago
by ed_ward_graham
… S_UNIQUE_INDEX_NAME @ui_name OUTPUT DECLARE @SqlCmd NVARCHAR(MAX) SET @SqlCmd = 'CREATE
FULLTEXT
INDEX ON sample_table (data) KEY INDEX ' + @ui_name + ' ON Catalog_data WITH…
FULLTEXT index help
Programming
Databases
18 Years Ago
by Horst Azeglio
…,nom_en) against ('Huile'); [/quote] It says: "Can't find
FULLTEXT
index matching the column list", but both nom and… nom_en are
FULLTEXT
indexed and the table "item" is MyISAM. Anyone…
Fulltext search with MS SQL
Programming
Databases
18 Years Ago
by pub00515
Hello, I am trying to implement a
fulltext
search on a MS SQL database. While I can query each table independently for a specific word, I didn't find a method to query the entire collection of tables for my search key. Is there a way to do this (using the
fulltext
catalog for example)? Thanks! Mark
Re: FULLTEXT searching
Programming
Databases
19 Years Ago
by Troy
… if you have 1 row, you can't do any
fulltext
searches since 100% of the rows will match. If you… have 2 rows, you can't do
fulltext
searches since 50% or 100% of the rows will match…
Re: FULLTEXT searching
Programming
Databases
19 Years Ago
by Troy
… like '%".$searchvar."%'"; [/php] You don't need
fulltext
indexes to search, but they serve a special purpose when… a lot of database apps, and I've never used
fulltext
indexes. I probably should have a few times, but just…
Re: FULLTEXT index help
Programming
Databases
18 Years Ago
by Dani
Do you actually have a single
fulltext
index of both columns together?
FULLTEXT searching
Programming
Databases
19 Years Ago
by bwest
… though with getting results. I learned how to do the
fulltext
searching at the mysql.com site. I plugged their exact…
Re: FULLTEXT searching
Programming
Databases
19 Years Ago
by bwest
… PRIMARY KEY, -> title VARCHAR(200), -> body TEXT, ->
FULLTEXT
(title,body) -> ); Query OK, 0 rows affected (0.00…
Please help me to understand MySQL fulltext search.
Programming
Databases
15 Years Ago
by ItecKid
…am trying to structure query to execute MySQL
fulltext
search. I have creates simple table as follows…, `doc` text collate utf8_unicode_ci, PRIMARY KEY (`id`),
FULLTEXT
KEY `doc` (`doc`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8…eat meat'); Now, I am attempting to execute
fulltext
search according to the following query: SELECT *…
myisam innodb fulltext normalization question
Programming
Databases
16 Years Ago
by Dsiembab
… with products and is using the myisam engine for the
fulltext
capabilities on two columns. The question I have is that… split this table into smaller tables i.e. keep the
fulltext
columns in a myisam table with a primary key and…
how to obtain SQL Server FullText Search service?
Programming
Databases
16 Years Ago
by BobLewiston
….msc shows the following local services (but not SQL Server
FullText
Search): SQL Active Directory Helper Service SQL Server (SQLEXPRESS) SQL… VSS Writer Does anyone know how I can obtain the
FullText
Search service for SQL Server 2008 Express?
How to optimize mysql fulltext union search?
Programming
Web Development
14 Years Ago
by cj333
I am making a mysql
fulltext
search. my database table article1 has ~18000 articles, article2 has ~… it will cost). Is there any way to optimize mysql
fulltext
union search? Thanks. [CODE](SELECT title,content,date FROM article1…
Re: How to optimize mysql fulltext union search?
Programming
Web Development
14 Years Ago
by diafol
Did you also post here: [url]http://stackoverflow.com/questions/5721483/how-to-optimize-mysql-
fulltext
-union-search[/url] ? or [url]http://www.sitepoint.com/forums/mysql-182/how-optimize-mysql-
fulltext
-union-search-752212.html[/url] or [url]http://forums.digitalpoint.com/showthread.php?t=2156861[/url] Are there more? Maybe Senna?
Re: Guide as a search for using fulltext search two table in FW laravel
Programming
Web Development
10 Years Ago
by diafol
… - an INNER JOIN should suffice. I used to think of
fulltext
searching being clunky and heavy, but I read an article…: http://makandracards.com/makandra/12813-performance-analysis-of-mysql-s-
fulltext
-indexes-and-like-queries-for-full-text-search which made… I doubt you'd see any time advantage from using
fulltext
over 'LIKE'.
Order by relevance using boolean fulltext search + rand() for rest columns
Programming
Databases
11 Years Ago
by shalu2012
… php version 5.4.16,MYISAM and am doing a
fulltext
search based on the (product_name) column and i want to…
Guide as a search for using fulltext search two table in FW laravel
Programming
Web Development
10 Years Ago
by daocntt
I have two table data as: - table Classifieds id | title | body | city | district| - table Locations id | label Relationship City of table Classifieds is Id two Locations Now I want using
Fulltext
Search when users enter keyword (title, body, label(USA, Canada...)) then it will return records by keyword users enter.
Re: Guide as a search for using fulltext search two table in FW laravel
Programming
Web Development
10 Years Ago
by daocntt
In this case, I have a search input box. When users enter a title, body, or label, it will also find recoder containing such information. And the only way I used to work
fulltext
search with it instead of using not Like
Re: Guide as a search for using fulltext search two table in FW laravel
Programming
Web Development
10 Years Ago
by diafol
So what specifically do you need? AN example of
fulltext
in SQL? Did you check the online mysql manual?
Re: Fulltext search with MS SQL
Programming
Databases
18 Years Ago
by chmonalisa
Hi Mark, Here is the code. I never tried this before as I didn't need it till now. But as I have seen ur query I thought I should do this. See the code Just copy and paste and see whether it is running. Make sure you write [B][I]use 'database name'[/I][/B] at the start and also specify the search string you need in the code. here it is…
Re: FULLTEXT searching
Programming
Databases
19 Years Ago
by vark
could you post the code that your having problems with? That would be helpful. vark
Re: FULLTEXT searching
Programming
Databases
19 Years Ago
by bwest
I dont suppose there's anyway to change this? My client may have 30 rows max. (Articles for their clients) This may make searching frustrating when keywords dont get anything. -B
fulltext problem
Programming
Databases
20 Years Ago
by Antonbomb22
ok i am getting the error that my fields i want to full text search are not in my index but in phpmyadmin it lists them in my index! i do not understand y it is doing this:( also does it automatically order results by relevance and how i change the relevance score to a percentage?
fulltext search on two different tables in not working
Programming
Web Development
14 Years Ago
by iqra123
hiii ALL!! I have to match/compare fields of one table with the fields of another table. basically m i have to search a record from another tables using some fields of a different table. for exmple I have two tables. Table 1: newjobs table 2: employer form Table 1 newjobs contains (Job Id, job title, industy...etc) Table2 employer …
Re: fulltext search on two different tables in not working
Programming
Web Development
14 Years Ago
by public-image
<?php $jobTitle = $_POST; $industry = $_POST; $stationBase = $_POST; $gender = $_POST; $maritalStatus = $_POST; mysql_select_db("a2z"); if((!$jobTitle) || ($jobTitle == "")) { $jobTitle = ""; } else { $jobTitle = "+(".$jobTitle.")"; } if((!$…
Re: fulltext search on two different tables in not working
Programming
Web Development
14 Years Ago
by iqra123
No its not working still same problem this what i get in out put Resource id #5 [I]Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in D:\wamp\www\a2z\admin\searchjobseeker.php on line 53 sorryyyyyyyyy[/I] I have also tried uniion between these two tables that also gives the same result.. i have not used any …
Re: fulltext search on two different tables in not working
Programming
Web Development
14 Years Ago
by public-image
Sorry small error I think, I used $result after mysql_num_rows, that should in fact say $query so try: mysql_num_rows($query)
Re: Please help me to understand MySQL fulltext search.
Programming
Databases
14 Years Ago
by mwasif
MySQL returns empty result set if the search term is present in at least 50% of the rows.
Re: myisam innodb fulltext normalization question
Programming
Databases
16 Years Ago
by Dsiembab
never mind I got this book written in 1999 called SQL: the complete reference and it seems to cover most of the question I have, of course it's antiquated but most of the chapters cover the same things that are still used today.
Re: how to obtain SQL Server FullText Search service?
Programming
Databases
16 Years Ago
by Geek-Master
You really didn't need to create a new thread since this still relates to your previous one.
1
2
3
6
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC