Tagged Questions
The synonym tag has no wiki summary.
9
votes
6answers
603 views
When should database synonyms be used?
I've got the syntax down but I'm wondering if somebody can provide an illustrative use case where database synonyms are very useful.
8
votes
2answers
1k views
Making an Entity Framework Model span multiple databases
Is it valid to do something such as
CREATE SYNONYM [dbo].[MyTable] FOR [AnotherDatabase].dbo.[MyTable]
and then modify Entity Framework's edmx file to read this object like it would any other ...
8
votes
3answers
4k views
SQL Server - Synonyms Tips & Tricks? [closed]
I've been doing a lot of DB refactoring lately and synonyms have come in incredibly useful. When I originally put in the synonyms I was thinking they would be very temporary while I refactor. Now I am ...
8
votes
3answers
7k views
How to create Sql Synonym or “Alias” for Database Name?
I'm using ms sql 2008 and trying to create a database name that references another database. For example 'Dev', 'Test', 'Demo' would be database names that i could reference from my multiple config ...
7
votes
1answer
134 views
What is the data model used for tags and tag synonyms?
I asked this question on meta, but i now realize that it may be more appropriate for the main site as it is a general question that would relate to any tagging based system (i am happy to close / ...
7
votes
2answers
124 views
Managing Oracle Synonyms
I was reading this article:
Managing Oracle Synonyms
Regarding the order of preference, when it come to resolving an object name to the actual object, it says:
Local objects will always be accessed ...
7
votes
6answers
950 views
C# in operator-overloading
I just had an idea last nigth when writing an if-expression
and sometimes the expression tend to be long when you have it like this:
if(x == 1 || x == 2 || x == 33 || x == 4 || x == -5 || x == 61) { ...
6
votes
4answers
92 views
How do I hide my Oracle table?
Here's the scenario (simplified example):
I have an Oracle user/schema called ABC. ABC owns a table called TRN. Client side code connects to the database as ABC and selects from ABC.TRN.
So far so ...
6
votes
4answers
275 views
Synonym finder algorithm
I think example will be much better than loooong description :)
Let's assume we have an array of arrays:
("Server1", "Server_1", "Main Server", "192.168.0.3")
("Server_1", "VIP Server", "Main ...
6
votes
5answers
165 views
Is the word “lexer” a synonym for the word “parser”?
The title is the question: Are the words "lexer" and "parser" synonyms, or are they different? It seems that Wikipedia uses the words interchangeably, but English is not my native language so I can't ...
6
votes
2answers
1k views
Where can I download a free synonyms database?
I googled far and wide but so far no free synonyms database. I did find some but they were in weird database formats so I couldn't use them.
5
votes
2answers
199 views
Is there any lib for python that will get me the synonyms of a word?
Is there any api/lib for python that will get me the synonyms of a word?
For example if i have the word "house" it will return "building, domicile, mansion, etc..."
5
votes
4answers
2k views
SQL Server Table Synonyms with Indexes
I have multiple databases on a single instance of SQL Server 2005. I've created a synonym on one database to access a table on another database and when writing my queries, I'd like to utilize a ...
5
votes
6answers
37k views
How to debug ORA-01775: looping chain of synonyms?
I'm familiar with the issue behind ORA-01775: looping chain of synonyms, but is there any trick to debugging it, or do I just have to "create or replace" my way out of it?
Is there a way to query ...
4
votes
1answer
56 views
Bypass “table or view does not exist” in package compilation
There are two schemas in a Oracle database.
MYSCHEMA that is controlled by me.
OTHERSCHEMA that is not controlled by me.
I just know I can get result from select * from OTHERSCHEMA.OTHEROBJECT. ...
4
votes
2answers
208 views
4
votes
2answers
471 views
Entity Framework and SQL Server Synonyms
Hasty research tells me that even EF4 still doesn't support SQL Server synonyms. What are my options for setting up a synonym based entity set as if it were a table based entity set? The crudest I ...
4
votes
2answers
448 views
Best way to store and retrieve synonyms in database mysql
I am making a synonyms list that I will store it in database and retrieve it before doing full text search.
When users enters like: word1
I need to lookup for this word in my synonyms table. So if ...
4
votes
0answers
269 views
Way to extract Google Synonyms
Would anyone know of a way to extract Google Synonyms, either through their API or other (TOS-approved) methods?
Specifically, Google have a function that allows you to type a tilde sign "~" in front ...
4
votes
3answers
926 views
Why would an Oracle synonym return a different number of rows to the underlying table?
I have a very unusual situation that I am hoping someone will be able to shed some light onto. My understanding of an oracle synonym is that it is basically an alias to a table in another schema.
...
3
votes
1answer
128 views
fetch synonym of a word
Is there any good api from where I can fetch synonym of a word(English Language).
Requirement:--
User enters a word
press fetch button
I will display synonym of that word.
3
votes
1answer
134 views
Variations in spelling of first name
As part of a contact management system I have a large database of names. People frequently edit this and as a result we run into issues of the same person existing in different forms (John Smith and ...
3
votes
2answers
753 views
Edit synonyms in MS SQL Server 2005
Out of curiousity, is there any way to edit an existing synonym? That is, change which table the synonym is pointing to...
Thus far I seem to have had to delete and re-create them, because they're ...
2
votes
1answer
42 views
Finding synonyms and the basic form of tilted words
I am looking for a tool in Java that would allow me to do the following things:
1) Find for a tilted word its basic form. Example:
For the words "connection", "connecting", "connects" and etc, it ...
2
votes
2answers
187 views
Python: normalizing a text file
I have a text file which contains several spelling variants of many words:
For e.g.
identification ... ID .. identity...contract.... contr.... contractor...medicine...pills..tables
So I want to ...
2
votes
3answers
58 views
C#: Making a file editable from one project, but including it in two
I've currently got a solution where a certain class is used from several C# projects, some Silverlight, some regular. For compatibility reasons I cannot create a single project for these utility ...
2
votes
4answers
538 views
Find synonym and root of a word in java
I am developing a JAVA application where user enters a word in textbox,the synonyms of the word has to be autoprompted to him.
Given a word,is it possible to find its synonyms and its root in ...
2
votes
1answer
210 views
SQL Server multiple schema object issues
I have database that has multiple schemas and objects under them. I want to consolidate the objects into one schema.
I tried
ALTER SCHEMA dbo TRANSFER <custom_schema>.<table_name>
I ...
2
votes
2answers
239 views
Oracle Synonyms issue
My Scenario:
Schema name: schema1
Package name: pkg_system
procedure name: proc1
Now I am trying to create a synonyms for my proc1 as below
CREATE PUBLIC SYNONYM call_proc FOR ...
2
votes
4answers
2k views
Create synonym to all tables in a different database with a script
Is there an easy way to create synonyms to all tables in a different database?
thanks
EDIT:
I have a number of stored procedures that hardcoded some table schemas into the select queries. When I ...
2
votes
2answers
683 views
Hibernate Schema Validation Fails on Oracle Table Synonyms
I'm developing a Java web application that uses Hibernate (annotations-based) for persisting entities to an Oracle 11g database. The DBA created synonyms for the tables and requested that I use these ...
2
votes
4answers
460 views
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 ...
1
vote
1answer
24 views
boosting lucene terms when building the index
Is it possible to determine that specific terms are more important then other when creating the index (not when querying it) ?
Consider for example a synonym filter:
doc 1: "this is a nice car"
doc ...
1
vote
1answer
59 views
Solr: Multi Word Synonyms : Only first word is highlighting
I am doing index time synonym expansion for multi word synonyms. In my synonyms.txt I have synonyms like (barc=>barc,bhabha atomic research center). But when I am searching for "barc" it is not ...
1
vote
1answer
36 views
SolrNet: Can size of the synonym.txt file be an issue while indexing?
My indexing was working fine initially. I then changed my schema to use SynonymFilterFactory while indexing. My synonym.txt file is 1.27MB. Since then whenever I have tried to reindex using synonym, I ...
1
vote
2answers
33 views
Create a Synonym for a database / Change DB views point to
I know databases aren't supported by CREATE SYNONYM, but I'm looking to achieve the functionality this would provide.
We've got Database A which contains views to tables on Database B. The trouble is ...
1
vote
2answers
95 views
Is “Selects Against ALL_SYNONYMS Perform Badly on 10g Release 10.2 [ID377037.1]” fixed for Oracle 11.2.0.1?
The metalink article [ID377037.1] I have states that the issue applies to Oracle 10.2.0.1 to 10.2.0.4 but there is no resolution to the issue. Does anyone know if this issue is fixed on Oracle ...
1
vote
1answer
338 views
Lucene synonym expansion,stemming,spell check and more
I am using Lucene to index my database and then perform a phrase search on a specific field(field name: keyword).
I am using following code currently:
String userQuery = ...
1
vote
1answer
72 views
How to make Wordforms handle three related words?
I'm trying to create synonym relationships between 3 similar words
cesarian > luscs
caesarian > cesarian
caesarian > luscs
but if I try this I get this when trying to index
WARNING: duplicate ...
1
vote
2answers
53 views
Why libc contains synonyms?
synonyms of the form _name exist for name entries that are not listed
with a leading underscore prepended to their name. Thus libc contains
both getopt and _getopt, for example.
Figure 3-2: ...
1
vote
1answer
279 views
how to map oracle synonyms in hibernate
How could I map an oracle read only synonym to hibernate object?
Thanks
1
vote
1answer
165 views
Tag schema to provide functionality similar to Stack Overflow's tag synonyms
I'm currently designing a database for a small bookmarking application (using MySQL) and I'd like to do something clever with the tag system. Although it's not an issue initially, I want to implement ...
1
vote
1answer
104 views
How can I create a SQL query to also include acronyms?
Suppose I have a search for government registered charities, how can I craft my SQL query so that it also searches for acronyms of the query submitted?
For example, if I search for 'Toronto SPCA' I ...
1
vote
2answers
550 views
How to get column metadata from a table synonym
How can I determine column metadata from a table synonym in a SQL Server 2005 database? I have a synonym called 'ProjectSyn' for a table called 'Project', but I can find no column metadata for the ...
1
vote
1answer
513 views
Oracle: is it possible to create a synonym for a schema?
Firstly
I am an oracle newbie, and I don't have a local oracle guru to help me.
Here is my problem / question
I have some SQL scripts which have to be released to a number of Oracle instances.
...
1
vote
1answer
145 views
Can Solr return the actual final query that was used when synonyms and stemming are used?
I would like to be able to show in my UI what the query terms were that solr used to run the final query. For example, I might type the query "run" but behind the scenes solr will use stemming to also ...
1
vote
1answer
502 views
SQL Server Synonyms Performance with Views
If I have two databases and create a linked table (synonym) in one of them to the other one and then wrap that synonym in a view, will there be a performance issue? The reason I want to do this is to ...
1
vote
1answer
405 views
using sql server 2005 synonyms for table causes dynamic query generation errors
I have a situation where by i have a catalog on Server A, and a same named Catalog on Server B. I'm using synonyms on Server B so that some tables are actually just going through to server A.
Such ...
1
vote
3answers
281 views
Solr - character substitution
I have Solr with indexed database. In my database all data is in Latvian. The problem is, I need to be able to search word Riga as if it is word Rīga. Of course, i can define synonym - Rīga = Riga, ...
1
vote
2answers
316 views
Inflectional forms of verbs using DBsight lucene?
I know dbsight allows synonyms and stop words for searching but does this take care of inflectional forms of a verb too e.g. for 'swim' it should find swim, swims, swimming, swam, and swum
Link on ...