Questions tagged [synonym]

Synonym is a word or phrase that means exactly or nearly the same as another word or phrase in the same language.

Synonym is a word or phrase that means exactly or nearly the same as another word or phrase in the same language.

For more information read the Wikipedia page.

508 questions
5
votes
3 answers

Searching WordNet for Synonym gives only one result

I am using java jwi API for searching the wordnet to get the synonyms of a word. The problem is that it only gives me one result the word to find its synonyms itself. Please guide me. Is it possible to get the list of all possible synonyms of a…
Java Nerd
  • 958
  • 3
  • 19
  • 51
5
votes
3 answers

Accessing data from another database in stored procedure

Following is my schema detail: DB_A : schema_1, schema_2, schema_3 DB_B : schema_3 some procedures in schema_3 access resources(table, view, sp) from schema_1 and schema_2. All procedures in schema_3 are same on both the dbs. How do I access…
Durgesh Chaudhary
  • 1,075
  • 2
  • 12
  • 31
5
votes
1 answer

Elasticsearch - Check if document is contained in query using synonyms

I want to build an application where a match requires each token in the document to be contained in the query at least once!!! Please note its the other way around than the standard expectation. So documents are now fairly small while queries can…
user1488793
  • 284
  • 2
  • 14
5
votes
1 answer

elasticsearch: can I defined synonyms with boost?

Let's say A, B, C are synonyms, I want to define B is "closer" to A than C so that when I search the keyword A, in the searching results, A comes the first, B comes the second and C comes the last. Any help?
chrisyue
  • 195
  • 1
  • 9
5
votes
2 answers

How do I truncate a table via linked server using a synonym for the table name?

I know I can do the following: EXEC Server_Name.DBName.sys.sp_executesql N'TRUNCATE TABLE dbo.table_name' But what if I want to use a synonym for the table? I'm on SERVER1 and I want to truncate a table on SERVER2 using a synonym for the table…
JJ.
  • 9,580
  • 37
  • 116
  • 189
5
votes
3 answers

Synonym style text lookup and parsing

We have a client who is looking for a means to import and categorize a large amount of textual data. This data has to be categorized and it's been suggested that the easiest way to to do this would be to look at the description field and try to…
Dave
  • 129
  • 2
  • 7
4
votes
2 answers

How to create a synonym for a table in PostgreSQL

I am migrating this Oracle command to PostgreSQL: CREATE SYNONYM &user..emp FOR &schema..emp; Please suggest to me how I can migrate the above command.
rashmi
  • 47
  • 1
  • 3
  • 8
4
votes
3 answers

advantages of synonyms IN SQL?

why synonyms are used?,advantages of syNONYMS IN SQL?
user659418
  • 49
  • 1
  • 2
4
votes
1 answer

Clustering synonym words using NLTK and Wordnet

Given a set of words V, I would like to group the synonym words in V together. I am wondering if there is any built-in function in NLTK and Wordnet that takes V as the input and automatically cluster them based on synonymity. I already know how to…
Mila
  • 285
  • 4
  • 13
4
votes
3 answers

Difference between homonyms and synonyms in data science with examples

Please share the difference between homonyms and synonyms in data science with examples.
Sunitha G
  • 119
  • 1
  • 7
4
votes
1 answer

How to reload synonyms.txt in Solr?

When I changed my synonyms.txt I only see the diferences when I do this: restart solr server indexed some item (empty commit?) Some knows a way to reload synonyms.txt file without restart server? Tks a lot.
Topera
  • 12,223
  • 15
  • 67
  • 104
4
votes
1 answer

What is the config location of elastic search? Where should the synonyms file be placed?

I want to use synonyms feature of elastic search . I don't know where to keep it. Need help!
Shweta Gulati
  • 566
  • 1
  • 7
  • 17
4
votes
0 answers

Synonyms in Database Projects

I have two database. One database accesses tables in the other, via SYNONYMs. I have imported both databases into two separate projects in my solution. But when I build, I get an error: Error SQL71501: Computed Column: …
Craig
  • 18,074
  • 38
  • 147
  • 248
4
votes
4 answers

comparing synonyms NLTK

I can't come up with a stranger problem, guess you'll help me. for p in wn.synsets('change'):
4
votes
0 answers

Elasticsearch Synonym filter not working

I added a synonyms analyzer and filter to my elastic index so that when searching by state, "Massachusetts," "Ma," and "Mass," would return the same results for example. These are the settings that I have: analysis":{ "analyzer":{ …
Erica Stockwell-Alpert
  • 4,624
  • 10
  • 63
  • 130