6
votes
6answers
170 views
C# in operator-overloading
Hi,
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 …
4
votes
3answers
508 views
SQL Server - Synonyms Tips & Tricks?
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 …
4
votes
3answers
440 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 …
3
votes
2answers
117 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 t …
2
votes
3answers
225 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 li …
2
votes
4answers
98 views
Synonym style text lookup and parsing
Hi all,
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 easi …
2
votes
2answers
996 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 m …
1
vote
2answers
32 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, …
1
vote
0answers
42 views
Sql Server 2008 Replicate Synonym?
I plan on updating some table names by create a synonym of the old name and renaming the table to what I want it to be. Can replication properly reference a synonym?
Also as a sid …
1
vote
3answers
305 views
Oracle synonyms selection
Hi,
Got into a situation where in a schema i have a table, say table ACTION , while i got a synonym called ACTION as well which refers to another table to another schema.
Now, wh …
0
votes
3answers
21 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 synon …
0
votes
2answers
21 views
public synonym creation
How can I create a public synonym in oracle 7.3.4 for a common table located in different users.
0
votes
0answers
36 views
Connecting to Remote Server Database through view or synonym causes all queries to return all rows, but connecting to table does not, why?
So here the scneario.
We have a database of read only records that contains about 3 million rows. This database is used by all of our application databases for data lookup.
We pl …
0
votes
1answer
104 views
Oracle 10: Is it possible to access a public synonym to a table in a stored procedure or package?
Hello,
I've been trying without success to add a reference to a public synonym in a package or stored procedure in oracle for a while, and I'm wondering if there are solutions t …
0
votes
1answer
70 views
When do you need to apply permissions to a synonym
I see from BOL that you can apply permissions to a T-SQL synonym, but in playing around with synonyms I'm not clear when you would need to do that if you have already GRANTed permi …
