Click here to Skip to main content
15,899,634 members
Home / Discussions / Database
   

Database

 
QuestionSQL SP exception: "Incorrect syntax near '-'" Pin
cdietschrun31-Jul-09 4:14
cdietschrun31-Jul-09 4:14 
AnswerRe: SQL SP exception: "Incorrect syntax near '-'" Pin
That's Aragon1-Aug-09 1:56
That's Aragon1-Aug-09 1:56 
QuestionHow to Use an Array Variant as a control name? Pin
dpminusa31-Jul-09 2:00
dpminusa31-Jul-09 2:00 
AnswerRe: How to Use an Array Variant as a control name? Pin
Luc Pattyn31-Jul-09 2:22
sitebuilderLuc Pattyn31-Jul-09 2:22 
GeneralRe: How to Use an Array Variant as a control name? Pin
dpminusa31-Jul-09 9:53
dpminusa31-Jul-09 9:53 
GeneralRe: How to Use an Array Variant as a control name? Pin
Luc Pattyn31-Jul-09 10:20
sitebuilderLuc Pattyn31-Jul-09 10:20 
GeneralRe: How to Use an Array Variant as a control name? Pin
dpminusa31-Jul-09 10:28
dpminusa31-Jul-09 10:28 
QuestionFull Text Search Pin
ps_prakash0230-Jul-09 21:33
ps_prakash0230-Jul-09 21:33 
Hi Guys,

I'm in need of your help.

my problem is, i have two tables namely MASTER and LINECONTENT.

"MASTER" table contains 5,00,000 records,
The columns in MASTER table is
masterid int, masterdesc varchar(1000).

"LINECONTENT" table contains more than 1000 records &
its columns are pageno int, lineno int, content varchar(2000).

I want to compare each row of "MASTER" table, masterdesc column value with the "LINECONTENT" table content column,
If any records matched i want to take the matched master record and store it in another table.

for this i used the below query.

select b.* from linecontent a
join master b on a.content like '%'+b.masterdesc+'%'

but this query is taking much.
so we are going full text search option.
i enabled fulltext search MASTER table as well as LINECONTENT table.

but i dont know how to link these tables in freetext search.
IS THERE ANY OPTIONS LIKE THE BELOW ONE.

SELECT b.* FROM LineContent A
JOIN Master b ON FREETEXT(a.Content,b.MasterDesc)

for this scenario which method i have to follow to make the process faster.

please help me

thanks & regards
P.Prakash
QuestionData Retrieval Pin
mgr_2k730-Jul-09 20:25
mgr_2k730-Jul-09 20:25 
AnswerRe: Data Retrieval Pin
Blue_Boy30-Jul-09 21:37
Blue_Boy30-Jul-09 21:37 
Questionsql server 2005 installation Pin
Spurple30-Jul-09 18:14
Spurple30-Jul-09 18:14 
AnswerRe: sql server 2005 installation Pin
Mycroft Holmes30-Jul-09 20:24
professionalMycroft Holmes30-Jul-09 20:24 
GeneralRe: sql server 2005 installation Pin
Spurple30-Jul-09 23:48
Spurple30-Jul-09 23:48 
AnswerRe: sql server 2005 installation Pin
Eddy Vluggen31-Jul-09 6:14
professionalEddy Vluggen31-Jul-09 6:14 
AnswerRe: sql server 2005 installation Pin
Jerry Hammond2-Aug-09 3:55
Jerry Hammond2-Aug-09 3:55 
AnswerRe: sql server 2005 installation Pin
Robin_Roy3-Aug-09 0:16
Robin_Roy3-Aug-09 0:16 
QuestionMS SQL 2005 - merge new rows and tables Pin
Member 469202330-Jul-09 8:59
Member 469202330-Jul-09 8:59 
AnswerRe: MS SQL 2005 - merge new rows and tables Pin
Robin_Roy30-Jul-09 16:40
Robin_Roy30-Jul-09 16:40 
AnswerRe: MS SQL 2005 - merge new rows and tables Pin
Mycroft Holmes30-Jul-09 16:54
professionalMycroft Holmes30-Jul-09 16:54 
Question.NET DataGridView question Pin
Art Frank30-Jul-09 7:56
Art Frank30-Jul-09 7:56 
AnswerRe: .NET DataGridView question Pin
Robin_Roy30-Jul-09 16:35
Robin_Roy30-Jul-09 16:35 
AnswerRe: .NET DataGridView question Pin
Mycroft Holmes30-Jul-09 16:48
professionalMycroft Holmes30-Jul-09 16:48 
GeneralRe: .NET DataGridView question Pin
Art Frank31-Jul-09 9:18
Art Frank31-Jul-09 9:18 
GeneralRe: .NET DataGridView question Pin
Art Frank31-Jul-09 9:25
Art Frank31-Jul-09 9:25 
GeneralRe: .NET DataGridView question Pin
Mycroft Holmes31-Jul-09 12:42
professionalMycroft Holmes31-Jul-09 12:42 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.