Tagged Questions

6
votes
6answers
141 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 …
1
vote
2answers
22 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, …
0
votes
1answer
81 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 …
2
votes
3answers
175 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 …
0
votes
1answer
88 views

Creating public synonym at system level

I have created public synonym as suggested in my other question about creating view at system level. Having said that I have created individual public synonym out of the view so th …
4
votes
3answers
454 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 …
0
votes
0answers
29 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
66 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 …
3
votes
2answers
110 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
4answers
90 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 …
4
votes
3answers
411 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 …
1
vote
0answers
40 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 …
0
votes
3answers
983 views

Oracle 9i: Synonymed Table Does Not Exist?

I've created a package that contains a stored procedure that I plan to invoke from a separate application. The stored procedure will return a sorted list of all the views and table …
2
votes
2answers
894 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
3answers
292 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 …