Ask a Question related to ASP Database, Design and Development.
-
Darren Heinrich #1
Partial Words search
Hi - can anyone point me to info on how to search on partial words using ASP
?
For instance if a db field contains the product name 'cx-3', but the user
enters 'cx3'.
Or if a field contains 'synthesizer' and the user enters 'synthesiser'.
Thanks
Darren
Darren Heinrich Guest
-
partial word search with FULLTEXT
MySQL FULLTEXT searches support wildcard suffixes such as: mysql> SELECT * FROM articles WHERE MATCH (title,body) -> AGAINST ('apple*' IN BOOLEAN... -
replace words with bold words
Hello I was wondering if you guys could help me solve this using reg exp, i have a searchpage and a variable keywords that holds a number of... -
String question: Returning portion of string with words surrounding highlighted search term?
I'm looking to find or create an ASP script that will take a string, examine it for a search term, and if it finds the search term in the string,... -
Put partial text
Hi, Reading from the registry I get a string like "C:\Program Files\Abobe\Illustrator\illustrator.exe". set installtypeOverview=... -
Partial Index
Can someone tell if it's possible to partially index a varchar. For instance, I have a varchar(40) field, but I don't want to index all 40... -
Mark Schupp #2
Re: Partial Words search
You probably want a "soundex" search. What DBMS are you using?
--
Mark Schupp
Head of Development
Integrity eLearning
[url]www.ielearning.com[/url]
"Darren Heinrich" <dazzjazz@ozemail.com.au> wrote in message
news:uRWTb.18$%A5.1402@nnrp1.ozemail.com.au...ASP> Hi - can anyone point me to info on how to search on partial words using> ?
> For instance if a db field contains the product name 'cx-3', but the user
> enters 'cx3'.
> Or if a field contains 'synthesizer' and the user enters 'synthesiser'.
>
> Thanks
>
> Darren
>
>
Mark Schupp Guest
-
Darren Heinrich #3
Re: Partial Words search
I'm using Access unfortunately. Is that what you mean by DBMS ?
Darren
"Mark Schupp" <mschupp@ielearning.com> wrote in message
news:uvZEiVr6DHA.2432@TK2MSFTNGP10.phx.gbl...user> You probably want a "soundex" search. What DBMS are you using?
>
> --
> Mark Schupp
> Head of Development
> Integrity eLearning
> [url]www.ielearning.com[/url]
>
>
> "Darren Heinrich" <dazzjazz@ozemail.com.au> wrote in message
> news:uRWTb.18$%A5.1402@nnrp1.ozemail.com.au...> ASP> > Hi - can anyone point me to info on how to search on partial words using> > ?
> > For instance if a db field contains the product name 'cx-3', but the>> > enters 'cx3'.
> > Or if a field contains 'synthesizer' and the user enters 'synthesiser'.
> >
> > Thanks
> >
> > Darren
> >
> >
>
Darren Heinrich Guest
-
Chris Hohmann #4
Re: Partial Words search
"Darren Heinrich" <dazzjazz@ozemail.com.au> wrote in message
news:E9XTb.25$%A5.1582@nnrp1.ozemail.com.au...using> "Mark Schupp" <mschupp@ielearning.com> wrote in message
> news:uvZEiVr6DHA.2432@TK2MSFTNGP10.phx.gbl...> > "Darren Heinrich" <dazzjazz@ozemail.com.au> wrote in message
> > news:uRWTb.18$%A5.1402@nnrp1.ozemail.com.au...> > > Hi - can anyone point me to info on how to search on partial wordsthe> > ASP> > > ?
> > > For instance if a db field contains the product name 'cx-3', but'synthesiser'.> user> > > enters 'cx3'.
> > > Or if a field contains 'synthesizer' and the user entersHere's something Google came up with:> I'm using Access unfortunately. Is that what you mean by DBMS ?> > You probably want a "soundex" search. What DBMS are you using?> > >
> > > Thanks
> > >
> > > Darren
> > >
> > >
> >
> > --
> > Mark Schupp
> > Head of Development
> > Integrity eLearning
> > [url]www.ielearning.com[/url]
> >
> >
>
> Darren
[url]http://groups.google.com/groups?selm=20020110121725.06317.00000155%40mb-fp.aol.com[/url]
As this relates to ASP, you'll want to investigate the "ASP Soundex
function" link.
You might also consider either migrating to a more robust database with
native SOUNDEX support or (and this seems like overkill) deploy MS
SQLServer/Oracle and created links to your MS Access database solely for
the purpose of using the SOUNDEX function.
Note: The quoted material in this reply was reordered to preserve
continuity of flow. Please consider posting responses/replies below
quoted text.
HTH
-Chris Hohmann
Chris Hohmann Guest
-
Darren Heinrich #5
Re: Partial Words search
Thanks Chris - I think I'll have to give that a miss, as it sounds over my
head and over my clients budget.
Thanks anyway
Darren
"Chris Hohmann" <nospam@thankyou.com> wrote in message
news:%23KKYZas6DHA.2496@TK2MSFTNGP09.phx.gbl...[url]http://groups.google.com/groups?selm=20020110121725.06317.00000155%40mb-fp.aol.com[/url]> "Darren Heinrich" <dazzjazz@ozemail.com.au> wrote in message
> news:E9XTb.25$%A5.1582@nnrp1.ozemail.com.au...> using> > "Mark Schupp" <mschupp@ielearning.com> wrote in message
> > news:uvZEiVr6DHA.2432@TK2MSFTNGP10.phx.gbl...> > > "Darren Heinrich" <dazzjazz@ozemail.com.au> wrote in message
> > > news:uRWTb.18$%A5.1402@nnrp1.ozemail.com.au...
> > > > Hi - can anyone point me to info on how to search on partial words> the> > > ASP
> > > > ?
> > > > For instance if a db field contains the product name 'cx-3', but> 'synthesiser'.> > user> > > > enters 'cx3'.
> > > > Or if a field contains 'synthesizer' and the user enters>> > I'm using Access unfortunately. Is that what you mean by DBMS ?> > > >
> > > > Thanks
> > > >
> > > > Darren
> > > >
> > > >
> > > You probably want a "soundex" search. What DBMS are you using?
> > >
> > > --
> > > Mark Schupp
> > > Head of Development
> > > Integrity eLearning
> > > [url]www.ielearning.com[/url]
> > >
> > >
> >
> > Darren
> Here's something Google came up with:
>>
> As this relates to ASP, you'll want to investigate the "ASP Soundex
> function" link.
>
> You might also consider either migrating to a more robust database with
> native SOUNDEX support or (and this seems like overkill) deploy MS
> SQLServer/Oracle and created links to your MS Access database solely for
> the purpose of using the SOUNDEX function.
>
> Note: The quoted material in this reply was reordered to preserve
> continuity of flow. Please consider posting responses/replies below
> quoted text.
>
> HTH
> -Chris Hohmann
>
>
>
Darren Heinrich Guest



Reply With Quote

