503 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
27
views
Typesense synonym in middle of query doesn't work
I have a collection of documents of products (lights) with text in Italian + a lot of technical info. All fields are searcheable and I am querying by all fields. When I search here are the parameters ...
2
votes
1
answer
67
views
Add mapping response mapper_exception in ElasticSearch
I need synonyms for searching my documents and mainly fellow this topic:
Add synonym analyzer to elasticsearch index
POST /my_index/_close
PUT /my_index/_settings
{
"settings": {
"...
1
vote
0
answers
152
views
Can I use IDENTITY_INSERT on a table referenced by a SYNONYM?
I can't find anything that says I cannot do this, but if I use INSERT_IDENTITY on a table, referenced by a synonym, I get error:
'MyOtherDB.MyTable' is not a user table. Cannot perform SET operation.
...
-1
votes
2
answers
414
views
Table or view does not exist although the synonyms is created
select * from Schema1.view --Displays results.
When tried creating synonym "CREATE SYNONYM view_syn for view".
It gives an error of ORA-00980: synonym translation is no longer valid
00980. ...
0
votes
1
answer
543
views
Magento 2.4.6 Opensearch Search synonyms
I am trying to make use of search synonyms. I have created a synonym group, and added synonyms comma separated, and afterwards ran full re index.
Now I am testing this out with the following API call
...
0
votes
1
answer
456
views
Python NLTK Wordnet Issue
Code Used
augmenter = naw.SynonymAug(aug_src='wordnet', model_path=None, name='Synonym_Aug', aug_min=1, aug_max=10, aug_p=0.3, lang='eng',
stopwords=stop_words, tokenizer=...
0
votes
0
answers
31
views
how to skip metabase synonym in oracle?
I'm trying to create a report in Metabase after connecting to an Oracle database, but I'm encountering errors because the DBA has set up synonyms by default. Do you happen to know how to configure ...
2
votes
3
answers
2k
views
Is it possible to use elasticsearch synonyms dynamically?
I'm struggling trying to implement synonyms in elasticsearch queries.
As i've seen in Synonyms, i could create a filter when creating the index with the following structure:
"sinonimos": {
...
0
votes
2
answers
393
views
Elasticsearch synonym filter after stemmer sometimes does not work properly
With a simple analyzer that applies a synonym filter after a stemmer, sometimes for some stemmed words, the synonym does not work while the exact stemmed word is used in the synonym filter.
First, I ...
0
votes
1
answer
242
views
How to work with a dictionary of synonyms correctly?
I have a dictionary of synonyms of this type:
{"green": ["emerald", "herbaceous", "pistachio", "mint", "menthol", "malachite", &...
0
votes
1
answer
1k
views
How to handle Synonym files in elasticsearch Elastic Cloud
We have the requirement that we have to maintain multiple synonym files as token filter for an index.
But how do I do that in Azure managed Elatic Cloud Service?
I saw in the documentation (https://...
1
vote
1
answer
728
views
Full Text search with multiple synonyms in PostgresSQL
I am implementing Full Text Search with PostgreSQL. I am using following type query to search in document column.
FROM schema.table t0
WHERE t0.document @@ websearch_to_tsquery('error')
I am working ...
1
vote
1
answer
657
views
Is there a way to make multi term synonyms work in Azure Cognitive Search
I have problems getting synonyms with more than one term to work.
To illustrate my problem, I have created a minimal index with four items describing hotels, loosely based on the hotels-example from ...
0
votes
1
answer
64
views
Websphere v4 Microsoft SQL Server JDBC Driver want to include SQL Synonyms
My current database contains synonyms. The driver is currently getting only the tables. I have searched many documentations and haven't found some workaround for this.
Do you have any idea how I could ...
0
votes
0
answers
686
views
Oracle Synonym equivalent to refer to active table in postgres
I have a job in oracle which populates the table for frontend system.
To populate this table we map many other other tables.
The frontend refers this for any search they do.
In order to make the data ...