The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
37 views

How to handle Oracle synonyms with Flyway 2.0.1?

I'm using flyway for a long time now. Very nice/complete tool! I'm actually facing an unexpected situation... I have two schemas: An Owner pocessing the tables and sequences A User using synonyms ...
0
votes
0answers
33 views

FORMSOF(INFLECTIONAL,well) returns best,better

Why is that when I search FORMSOF(INFLECTIONAL,well) in my containstable that I get back matches to better and best? Does inflectional include synonyms too? Is better and best an inflection of well? ...
0
votes
0answers
37 views

How to get the definition for a view only accessable via synonym in an Oracle database?

Is there any way to get the type or general table/view definition from an Oracle database synonym? Are special rights neccessary to get it or is it even impossible and I have to check the real source ...
0
votes
1answer
169 views

How to create a synonym in mysql

I have a view in database B which I use in database A. I would like to create a synonym to this view. Because right now each time I have to write the query like this Select * from DBNAME.VIEWNAME ...
0
votes
1answer
37 views

Thesaurus & synonyms & inflections for search-related development?

I'm looking for some open source thesaurus/inflections mechanism. I have a program in C with an array of English words, and I want to try and associate a word typed by the user with any of them. For ...
0
votes
2answers
105 views

Wordnet Find Synonyms

I am searching for a way to find all the synonyms of a particular word using wordnet. I am using JAWS. For example: love(v): admire, adulate, be attached to, be captivated by, be crazy about, be ...
1
vote
2answers
108 views

How can I check if the table behind a synonym exists

I'm trying to create a simple script to dump the results of a complex view out into a table for reporting. I have used synonyms to simplify tweaking the view and table names. The idea is that the ...
-4
votes
1answer
48 views

Structures , and defining a variable as synonym [closed]

I am struggling with structures, and have a few questions that I can't figure out how to do. first i had to define a structure call parts containing with int variable part_number,i and a character ...
-2
votes
2answers
170 views

How to get synonyms.txt to be used in solr for different languages

Do you know if I can get synonyms.txt files for all languages supported by SOLR ? Thanks for your help. Before we were using Verity that provide a dictionary of synonyms for each language supported ...
0
votes
1answer
63 views

DB Alias on Sql Server 2008

I need to run a migration from my server1 to server2, in both servers have the same DB schema Server1: DB1.dbo... All tables DB2.dbo... All tables Server2: DB1.dbo... All tables DB2.dbo... ...
1
vote
0answers
338 views

Performance effect of Synonyms over a linked server in SQL Server

On localserver (a SQL Server 2008 R2), I have a synonym called syn_view1 pointing to the linked server remoteserver.remotedb.dbo.view1 This SLOW query takes 20 seconds to run. select e.column1, ...
1
vote
1answer
109 views

Share a common remote db connection across multiple independent dtsx packages

Background: Server1 has source db with 4 tables. Server2 is the destination db with those 4 to 5 tables (and some extra fields). We've a field mapping and some extra processing (i.e. truncate, ...
0
votes
1answer
181 views

How to check all invalid synonyms in Oracle

I have the table user_synonyms in which I can see the name, table and table owner. Is there a way to see if this synonym is still valid i,e. if the referencing table still exists without trying it ...
1
vote
3answers
204 views

SQL Server Database Name Reference

Hello SQL Server experts, I have a strange issue that I'm hoping to get some feedback on potential solutions for: I am working with an application which requires an ODBC connection to an existing SQL ...
0
votes
1answer
110 views

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 ...
4
votes
1answer
92 views

Pattern Matching in Type Synonyms / Type Synonyms for Inner Type Parameters

I have something similar to this class in my code. It does not make sense for my situation to add a' as another parameter to class Foo. class Foo a where type FCtx a a' :: Constraint type ...
1
vote
2answers
112 views

Orcle Script -Materialized View & synonym

I've a question about script in Oracle! I'have a materialized view on a prebuilt table, in my BBDD, (this MV is of the user DAT_OWN, other 2 user (APP & BO) have synonym on this MV) I have to ...
1
vote
0answers
261 views

Entity Framework Code First with SQL Server Synonyms

I have the situation where I will have multiple companies accessing a single instance of my application, but I need to segregate their data to avoid accidentally loading data for another company, and ...
0
votes
1answer
113 views

Creating and using synonyms in a stored procedure

I am creating a stored procedure that will be called from one database but needs to access tables in other databases. We have a different database for each of our clients. I'm trying to create a ...
2
votes
2answers
55 views

Mapping interchangeably terms such as Weight to Mass for QAnswering NLP

I've been working on a Question Answering engine in C#. I have implemented the features of most modern systems and are achieving good results. Despite the aid of Wordnet , one problem I haven't been ...
1
vote
0answers
94 views

Different behaviour at synonyms migrating from solr 3.6 to 4.0

I'm studying the migration from SolR 3.6 to 4.0. I've developed a tiny system with no more than 2500 documents. Furthermore, I've developed more than 4100 tests to make sure that at every change, ...
0
votes
1answer
332 views

How can I find synonyms in estimated frequency order using JWNL(Wordnet Library)?

Does anyone know how I can take the synonyms of a word using JWNL (Java Wordnet Library) ordered by estimated frequency? I know this can be done somehow, because Wordnet's application can do it. (I ...
0
votes
0answers
292 views

Synonym for a Sequence in Oracle

I want to create a synonym for a sequence in oracle and fetch currval from it. I created a synonym using this statement. CREATE SYNONYM NUMGEN FOR MY_SEQ; when I fetch the currval or extval from ...
1
vote
1answer
978 views

Trying to find synonyms using wordnet java api

I am trying to find synonyms of some words(String type) in java using Wordnet java api. I have difficulties though in figuring out how it works. I found this link ...
5
votes
2answers
148 views

How to store and check synonym of string in Java

I'm making a program which can response to what user said, something like chatter bot. But I wonder if I can make it understand if two or more words have the same meaning. For example, I make it to ...
0
votes
1answer
56 views

Oracle synonym randomly not viewable

here's a tricky case on which 5 peoples including a DBA have been struggling on for days... I offer lifetime consideration to the one which will identify the root cause of the issue. here it is: ...
0
votes
0answers
160 views

synonyms visual studio 2010

An earlier "answer" was posted regarding an issue with Visual Studio 2010 and SQL Server database projects with SYNONYMS. The issue in detail is that if a project contains database synonyms that ...
2
votes
1answer
160 views

phrase synonym analyser Lucene.net?

I am using the Synonym Analyser, but this only adds synonyms for single words. Is there a similar analyser for phrases or does anyone know any other way of adding phrase synonyms? For example, "The ...
0
votes
1answer
368 views

got pls-00201 when I call a package via public synonym in Oracle

I created a package named sf_timer in sys, then I created a public synonym on this: create or replace public synonym sf_timer for sys.sf_timer; select * from all_synonyms where synonym_name = ...
3
votes
1answer
116 views

A generic composition with ambiguity detection

I want to define a generic composition which works both for a -> b and for a -> Maybe b: class Comp m where (...) :: m a b -> m b c -> m a c instance Comp (->) where (...) = ...
0
votes
1answer
951 views

Solr - synonyms containing multiple words

Quick question, I don't know how to deal with synonyms which contains a space! I have the following config: The SOLR config file <analyzer type="index"> <charFilter ...
0
votes
1answer
126 views

shortest synonym for default value

Seeking the shortest synonym for use as a variable name, which means the "default value". There is an option: "want" (from dict.org) But it somehow looks strange. Maybe someone knows a better ...
0
votes
1answer
71 views

Matching “UK” to “United Kingdom,scotland etc.” in Solr

I'm using Solr as a search engine in my site and all is going well except for synonym matching. My synonym.txt file looks like: uk => united kingdom,england,scotland,wales This works for ...
0
votes
1answer
69 views

tag synonyms in rails using thinking sphinx

What is a proper way to handle tag synonyms in rails? Model is called Situation, I use acts_as_taggable_on for tags and ThinkingSphinx for search. Situation.search :conditions => { :tag_name => ...
0
votes
1answer
99 views

is it possible to selecting table in current_schema independent of public synonym

Is there a way, to select data only form the own schema, even if there is an public synonym? something like: Select * from current_schema.Table1 more info: I got a public synonym on table1 on ...
0
votes
1answer
323 views

Magento how to quickly populate Search Terms

I am trying to populate the Search Terms in my Magento site. How can I go about quickly populating the database with my terms and synonyms without having to manually add in all my terms. I have 100s ...
2
votes
1answer
3k views

create synonym for table in a database hosted in a different server

In oracle, if the other database is within the same server, I did the following to create a synonym CREATE SYNONYM synonymName FOR databaseName.schema.table; What should I do to create a synonym ...
0
votes
1answer
97 views

How to programatically make changes in the index and query for new synonms in synonm.txt

Please can any one suggest me how we can programtically make chages in the index and query part for new synonms enter. Thanks in advance
0
votes
1answer
355 views

How to reload the Solr core using SolrJ?

I am using SolrJ for indexing my data. I am updating the Synonym.txt file dynamically but Solr server is not getting the latest changes from Synonym.txt file, my previous question is how to update ...
1
vote
4answers
113 views

“Synonyms” of classes

For the sake of an example I have a WAV class which represents WAV sound files. For convenience' sake, I am then required to add a class called WaveformAudioFile which has exactly the same ...
4
votes
1answer
306 views

Is there a way to dynamically update a synonym file without restarting Solr server?

As we know there is a synonym.txt file in conf directory, which I wanted to update whenever I found some new synonym words... So is there any way to update that file dynamically without restarting ...
2
votes
0answers
423 views

Solr: Multi-word synonyms

I'm developing a set of synonyms, where you can find some multi-word expressions, such as: black berry => blackberry At the analysis stage, and using the /admin/analysis.jsp tools, I can see that ...
0
votes
1answer
202 views

Does Oracle Synonyms for table cause a race conditions?

I have use a synonym for a table in a Remote database. Application in remote site will insert data to source table, and my application will read those data via the synonym of the table. Remote site ...
2
votes
2answers
105 views

Solr synonyms aren't working right

We have a large restaurant menu database where users can search for menu items. There are many items that when the words are side by side its a unique dish but the words are so common and appear all ...
0
votes
2answers
271 views

synonym finder text-mining algorithm

I would like to create an automatic synonym finder algorithm (mostly for brand names). For example, if the user enters the word "Coca cola", I would like to return the word "Coke". This can easily be ...
3
votes
1answer
164 views

Synonym suggestion in LyX

Is there any package for LyX to give synonym suggestion for words like what Microsoft Word does?
5
votes
1answer
298 views

Is there way to boost original term more while using Solr synonyms?

For example I have synonyms laptop,netbook,notebook in index_synonyms.txt When user search for netbook I want to boost original text more then expanded by synonyms? Is there way to specify this in ...
1
vote
1answer
128 views

Programmaticlly upload synonyms to google search api using java

I'm having issues figuring out how to programmaticlly upload synonyms to the google search api from my server using java. 1. The Authorization: The desciption of how to do a server to google api is ...
2
votes
2answers
4k views

How can I check that if synonym already exist then don't create synonym

I am using Oracle SQL developer 2.1 for creating a synonym. CREATE OR REPLACE SYNONYM "ETKS_PR_RW"."SQ_CLDOS_ATCHMNT_ID" FOR "CLDOS_ONLINE_DBA"."SQ_CLDOS_ATCHMNT_ID"; How can I check that if ...
1
vote
0answers
92 views

offline fulltext search with synonyms

I'd like to provide an offline version of my website with fulltext search. Most of the website is only pure HTML + JavaScript. But I need fulltext search with synonyms in a non-English language. ...

1 2 3