Hello,
I want to implement a search facility on the relevant columns of my database.
Following is a brief overview of how the data is structured:
Table1 : Message
Columns: Forum_id, Thread_id, Subject, Message, Attachment name
Table 2 : Forum
Columns : Forum_id, Forum Name
Table 3 : Thread
Columns : Thread_id, Thread_name
Table 4 : UploadedCases
Columns : Case_id, Case_detail
Essentially I will have to create a join between the tables Message, Forum and Thread.
The search will have to be performed on the join above and the table - UploadedCases.
I am trying to implement a search where there is one text field and the user enters single/multiple word(s) and I will have to match it with the relevant columns.
The tables - Message and UploadedCases have the actual data and both have about 10000 rows and are still growing.
Any suggestions on the best way to implement this?
Is there a search mechanism where the increasing size of the data will not affect the performance?
I am not sure if implementing Full Text search is an overkill.
Thanks for any input.
rsshetty.
It's always in the details.
I want to implement a search facility on the relevant columns of my database.
Following is a brief overview of how the data is structured:
Table1 : Message
Columns: Forum_id, Thread_id, Subject, Message, Attachment name
Table 2 : Forum
Columns : Forum_id, Forum Name
Table 3 : Thread
Columns : Thread_id, Thread_name
Table 4 : UploadedCases
Columns : Case_id, Case_detail
Essentially I will have to create a join between the tables Message, Forum and Thread.
The search will have to be performed on the join above and the table - UploadedCases.
I am trying to implement a search where there is one text field and the user enters single/multiple word(s) and I will have to match it with the relevant columns.
The tables - Message and UploadedCases have the actual data and both have about 10000 rows and are still growing.
Any suggestions on the best way to implement this?
Is there a search mechanism where the increasing size of the data will not affect the performance?
I am not sure if implementing Full Text search is an overkill.
Thanks for any input.
rsshetty.
It's always in the details.