active questions tagged synonym - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T18:37:16Z http://stackoverflow.com/feeds/tag/synonym http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1761674/solr-character-substitution 0 Solr - character substitution Yurish 2009-11-19T08:07:06Z 2009-11-23T21:01:52Z <p>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, but can i just define, that letter ī is letter i? I read something about solr.ISOLatin1AccentFilterFactory, but as far as i understood, this is not for UTF-8 encoding, right? Advices?</p> http://stackoverflow.com/questions/1714324/public-synonym-creation 0 public synonym creation tejasruthi 2009-11-11T10:30:14Z 2009-11-11T11:28:17Z <p>How can I create a public synonym in oracle 7.3.4 for a common table located in different users.</p> http://stackoverflow.com/questions/1672537/c-in-operator-overloading 6 C# in operator-overloading Daniel Svensson 2009-11-04T09:09:22Z 2009-11-04T11:03:34Z <p>Hi,</p> <p>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:</p> <pre><code>if(x == 1 || x == 2 || x == 33 || x == 4 || x == -5 || x == 61) { ... } </code></pre> <p>x can be enums,strings,ints,chars you get the picture.</p> <p>I want to know if there are an easier way of writing this. I think of sql's operator 'in' for example as a eay to shorten the expression:</p> <pre><code>if(x in (1,2,33,4,-5,61)) { ... } </code></pre> <p>I know you can't write an expression like this with 'in' because the lexer and parser of the compiler won't recognize it.</p> <p>Perhaps other solutions as extension methods of different types of x is the solution? In the coming .NET 4.0 i heard something about parameterized methods, should that solve the n amount of parameters supplied to the if-expression ?</p> <p>Perhaps you understand me, have you an idea of a good practice/solution to this question?</p> <p>/Daniel</p> http://stackoverflow.com/questions/1637472/inflectional-forms-of-verbs-using-dbsight-lucene 1 Inflectional forms of verbs using DBsight lucene? Yasir Laghari 2009-10-28T14:08:23Z 2009-10-28T15:23:25Z <p>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</p> <p>Link on DBSight Wiki : <a href="http://wiki.dbsight.com/index.php?title=User%5Fdictionary" rel="nofollow">http://wiki.dbsight.com/index.php?title=User%5Fdictionary</a></p> http://stackoverflow.com/questions/1390674/connecting-to-remote-server-database-through-view-or-synonym-causes-all-queries-t 0 Connecting to Remote Server Database through view or synonym causes all queries to return all rows, but connecting to table does not, why? Ogedei 2009-09-07T19:20:41Z 2009-09-07T19:20:41Z <p>So here the scneario.</p> <p>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.</p> <p>We placed this database on a new server and used a synonym to point to it in the local database. The synonym was pointing to a view on the remote server. This allowed us to update these 3 million rows during the day and swap the synonym pointer to the new table without effecting our clients searches.</p> <p>If I query the synonym by itself the results are as expected filtered at the remote database but if I union this data with local look up data as required the remote query returns all 3 million rows to the local server and then the data is filtered.</p> <p>This also happened if we dropped the sysnonym and used a view to point to the view.</p> <p>We had to point a view directly at the remote table in order to accomplish this request without returning all rows.</p> <p>I am really interested in why the Union operator caused this effect.</p> <p>Any thoughts?</p> http://stackoverflow.com/questions/1375510/oracle-10-is-it-possible-to-access-a-public-synonym-to-a-table-in-a-stored-proce 0 Oracle 10: Is it possible to access a public synonym to a table in a stored procedure or package? Horus 2009-09-03T19:41:40Z 2009-09-03T19:51:38Z <p>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 to this problem short of accessing the tables directly. For instance:</p> <pre><code>CREATE OR REPLACE PROCEDURE test_func AS test_int INTEGER;&lt;br&gt; BEGIN&lt;br&gt; select count(*) INTO test_int FROM test_synonym; END; / </code></pre> <p>I know this procedure does nothing, but it is only an example. Where the table 'test_synonym' is actually a public synonym to a table in another schema. I do have select permissions to that table, but trying to compile this repeatedly gives me the error:</p> <pre><code>Error(5,38): PL/SQL: ORA-00942: table or view does not exist </code></pre> <p>Thanks for your time.</p> http://stackoverflow.com/questions/1362916/sql-server-table-synonyms-with-indexes 2 SQL Server Table Synonyms with Indexes Jarred Froman 2009-09-01T14:53:44Z 2009-09-02T11:35:07Z <p>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 specific index, however, when evaluating the execution plan, it doesn't appear to use it. If I write the query to access the database explicitly, it works, but I can't seem to get it to work using a synonym. For example:</p> <pre><code>select * from testdb..testtable with (index(testindex)) |--Nested Loops(Inner Join, OUTER REFERENCES:([testdb].[dbo].[testtable].[id])) |--Index Scan(OBJECT:([testdb].[dbo].[testtable].[testindex])) |--Clustered Index Seek(OBJECT:([testdb].[dbo].[testtable].[PK_testtable]), SEEK:([testdb].[dbo].[testtable].[id]=[testdb].[dbo].[testtable].[id]) LOOKUP ORDERED FORWARD) </code></pre> <p>does not yield the same execution plan as </p> <pre><code>select * from testdb_synonym with (index(testindex)) |--Clustered Index Scan(OBJECT:([testdb].[dbo].[testtable].[PK_testtable])) </code></pre> <p>Is this a limitation with Synonyms or is there something specific I need to do to get this to work?</p> http://stackoverflow.com/questions/796791/sql-server-synonyms-tips-tricks 4 SQL Server - Synonyms Tips & Tricks? Chad Grant 2009-04-28T08:22:19Z 2009-09-01T19:11:59Z <p>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 thinking there might be some good reasons to keep some of these synonyms around.</p> <ul> <li><p>Has anyone used them as full blow abstraction layer?</p></li> <li><p>What are the performance costs?</p></li> <li><p>Any gotchas with indexes?</p></li> <li><p>Tips or Tricks?</p></li> </ul> <p>My first question, so please be gentle. </p> <p>Thanks</p> http://stackoverflow.com/questions/1197943/creating-public-synonym-at-system-level 0 Creating public synonym at system level Fadzil 2009-07-29T03:39:30Z 2009-08-23T17:32:13Z <p>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 that I don't have to connect to the individual domain anymore. My problem now is how to create a master kind of public synonym to capture all those synonyms which I have created earlier. To what extent the "for" statement can be used?</p> <p>Example: At system level, I will run query for each domain where MYVIEW is created : Create or replace public synonym domain1_myview for domain1.myview; Create or replace public synonym domain2_myview for domain2.myview; Create or replace public synonym domain3_myview for domain3.myview;</p> <p>Then I have 3 public synonym above.</p> <p>Then I tried writing statement (out of desperation - not as expert) like below hoping to have just ONE Master_MYVIEW but failed: Create or replace public synonym MASTER_MYVIEW for (select * from domain1_myview union all select * from domain2_myview union all select * from domain3_myview);</p> <p>The error with the above : "ORA-00995: missing or invalid synonym identifier"</p> <p>Hope someone can assist me on this task. Have a nice :) day.</p> http://stackoverflow.com/questions/1205782/when-do-you-need-to-apply-permissions-to-a-synonym 0 When do you need to apply permissions to a synonym David Gardiner 2009-07-30T10:38:12Z 2009-07-30T11:14:16Z <p>I see from <a href="http://msdn.microsoft.com/en-us/library/ms187552.aspx" rel="nofollow">BOL</a> 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 permissions to the base object.</p> <p>eg. If I have a synonym in database A that points to a table FRED in database B, then it appears that as long as user Joe is granted SELECT on [Fred].[B] then Joe can do SELECT * FROM [Fred].[B].</p> http://stackoverflow.com/questions/1173849/sql-server-2008-replicate-synonym 1 Sql Server 2008 Replicate Synonym? Chris Klepeis 2009-07-23T19:06:48Z 2009-07-23T19:16:47Z <p>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?</p> <p>Also as a side question, is there an easy way to see if a specific table is actually being replicated? (via a query perhaps)</p> http://stackoverflow.com/questions/1067752/synonym-style-text-lookup-and-parsing 2 Synonym style text lookup and parsing Dave 2009-07-01T07:32:33Z 2009-07-06T13:39:20Z <p>Hi all,</p> <p>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 be to look at the description field and try to match the words held there to see if a category can be derived for that particular record.</p> <p>It was thought the best way to do this would be matching the words to key words held against each category and if that was unsuccessful then to use some kind of synonym look up to see if this could be used instead. So for example, if a particular record had the word "automobile" in it then a synonym look up could match that word to the word "car" which would be held against the category "vehicle".</p> <p>Does anyone know of a web service or other means of looking up a dictionary to find synonyms for a particular word? The project manager has suggested buying a Google Enterprise Search license for this but from what I can make out that doesn't offer what these guys are looking for. </p> <p>Any suggestions of other getting the client what they are looking for would be gratefully accepted.</p> <p>Cheers.</p> http://stackoverflow.com/questions/1077407/edit-synonyms-in-ms-sql-server-2005 3 Edit synonyms in MS SQL Server 2005 Margaret 2009-07-03T01:03:46Z 2009-07-03T02:31:17Z <p>Out of curiousity, is there any way to <em>edit</em> an existing synonym? That is, change which table the synonym is pointing to... </p> <p>Thus far I seem to have had to delete and re-create them, because they're locked from being edited. It's not a big deal, but at the same time it's a little irritating.</p> <p>GUI or scripting, but preferably GUI.</p> http://stackoverflow.com/questions/781224/why-would-an-oracle-synonym-return-a-different-number-of-rows-to-the-underlying-t 4 Why would an Oracle synonym return a different number of rows to the underlying table? Jonathan 2009-04-23T10:58:45Z 2009-04-23T15:05:21Z <p>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.</p> <p>When I do a count from the synonym, it returns zero rows. When I do the same from the underlying table, it returns 12 thousand rows.</p> <p>I cannot explain this discrepancy. Can anyone help?</p> <pre><code>select * from dba_synonyms where synonym_name = 'CS_INCIDENTS_B_SEC'; OWNER SYNONYM_NAME TABLE_OWNER TABLE_NAME DB_LINK ------ ------------------- ------------ ------------------- ------- APPS CS_INCIDENTS_B_SEC CS CS_INCIDENTS_ALL_B select count(*) from CS.CS_INCIDENTS_ALL_B; COUNT(*) ---------------------- 12549 select count(*) from APPS.CS_INCIDENTS_B_SEC; COUNT(*) ---------------------- 0 </code></pre> <p>Explain plans:</p> <p>Directly on the table...</p> <pre><code>EXPLAIN PLAN FOR SELECT * FROM CS.CS_INCIDENTS_ALL_B PLAN_TABLE_OUTPUT -------------------------------------------------------------------------- | Id | Operation | Name | Rows | Bytes| Cost(%CPU)| -------------------------------------------------------------------------- | 0 | SELECT STATEMENT | | 6056 | 1549K| 122 (3)| | 1 | TABLE ACCESS FULL| CS_INCIDENTS_ALL_B | 6056 | 1549K| 122 (3)| -------------------------------------------------------------------------- </code></pre> <p>Through the synonym...</p> <pre><code>EXPLAIN PLAN FOR SELECT * FROM APPS.CS_INCIDENTS_B_SEC PLAN_TABLE_OUTPUT --------------------------------------------------------------------------- | Id | Operation | Name | Rows | Bytes| Cost(%CPU)| --------------------------------------------------------------------------- | 0 | SELECT STATEMENT | | 1 | 262 | 0 (0)| |* 1 | FILTER | | | | | | 2 | TABLE ACCESS FULL| CS_INCIDENTS_ALL_B | 6056 | 1549K| 122 (3)| --------------------------------------------------------------------------- 1 - filter(NULL IS NOT NULL) </code></pre> <p>Synonym chain...</p> <pre><code>SQL&gt; SELECT * 2 FROM dba_synonyms 3 START WITH 4 owner = 'CS' 5 AND synonym_name = 'CS_INCIDENTS_ALL_B' 6 CONNECT BY 7 owner = PRIOR table_owner 8 AND synonym_name = PRIOR table_name 9 / no rows selected SQL&gt; SELECT * 2 FROM dba_synonyms 3 START WITH 4 owner = 'APPS' 5 AND synonym_name = 'CS_INCIDENTS_B_SEC' 6 CONNECT BY 7 owner = PRIOR table_owner 8 AND synonym_name = PRIOR table_name 9 / </code></pre> <p>Checking Policies on database...</p> <pre><code>SQL&gt; SELECT * 2 FROM dba_policies 3 WHERE OBJECT_NAME = 'CS_INCIDENTS_B_SEC' 4 / OBJECT_OWNER OBJECT_NAME POLICY_GROUP POLICY_NAME ------------- ------------------- ------------- -------------------- APPS CS_INCIDENTS_B_SEC SYS_DEFAULT CS_SR_SEC_SR_ACCESS PF_OWNER PACKAGE FUNCTION SEL INS UPD DEL IDX CHK --------- ------------------ -------------- --- --- --- --- --- --- APPS FND_GENERIC_POLICY GET_PREDICATE YES NO NO NO NO NO ENABLE STATIC_POLICY POLICY_TYPE LONG_PREDICATE ------ ------------- ------------ -------------- YES NO DYNAMIC YES </code></pre> http://stackoverflow.com/questions/444139/how-to-create-sql-synonym-or-alias-for-database-name 2 How to create Sql Synonym or "Alias" for Database Name? Kevin 2009-01-14T18:29:18Z 2009-01-23T20:13:54Z <p>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 files, but each name would point to another database such as 'db20080101' or 'db20080114'. </p> <p>[Edit]Some of the configs are for applications that i control the code and some aren't (ex. MS Reporting service datasource file configs)[/Edit]</p> <p>It seems that sqlserver only supports synonyms for View,Table,Sproc, or Function. And Alias' are for table and column names.</p> <p>Is there a way to do this that i missed in the docs? Any one have any suggestions on a workaround?</p> http://stackoverflow.com/questions/379672/oracle-9i-synonymed-table-does-not-exist 0 Oracle 9i: Synonymed Table Does Not Exist? Mike Hofer 2008-12-18T23:17:07Z 2008-12-19T14:06:15Z <p>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 tables in the schema. To do that, it performs a simple select on the DBA_TABLES and DBA_VIEWS synonyms, as shown below:</p> <pre><code>CREATE OR REPLACE PACKAGE BODY TITAN_ENTITY AS PROCEDURE GETSCHEMAOBJECTS (RESULTS IN OUT T_CURSOR) IS V_CURSOR T_CURSOR; BEGIN OPEN V_CURSOR FOR SELECT 'T' OBJECTTYPE, TABLE_NAME OBJECTNAME FROM DBA_TABLES WHERE OWNER = 'SONAR5' UNION ALL SELECT 'V' OBJECTTYPE, VIEW_NAME OBJECTNAME FROM DBA_VIEWS WHERE OWNER = 'SONAR5' ORDER BY OBJECTNAME; RESULTS := V_CURSOR; END GETSCHEMAOBJECTS; END TITAN_ENTITY; </code></pre> <p>I have verified that the synonyms in question exist, and are public:</p> <pre><code>CREATE PUBLIC SYNONYM "DBA_TABLES" FOR "SYS"."DBA_TABLES" CREATE PUBLIC SYNONYM "DBA_VIEWS" FOR "SYS"."DBA_VIEWS" </code></pre> <p>My understanding is that, because they are public, I don't need any further permissions to get to them. If that understanding is incorrect, I wish someone would disabuse me of the notion and point me to more accurate data.</p> <p>Now here's my problem: I can open a worksheet in Oracle SQL Developer and select from these tables just fine. I get meaningful data just fine (567 rows, as a matter of fact). But when I try to execute the stored procedure, Oracle complains with a compilation error, as shown below:</p> <pre><code>Error(9,8): PL/SQL: SQL Statement ignored Error(10,16): PL/SQL: ORA-00942: table or view does not exist </code></pre> <p>When I double-click on that second error message, SQL Developer takes me to the first FROM clause ("FROM DBA_TABLES").</p> <p>So I'm fairly stumped. I know SQL Server pretty well, and I'm new to Oracle, so please bear with me. If you could provide some clues, or point me in the right direction, I'd really appreciate it.</p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/271953/oracle-synonyms-selection 1 Oracle synonyms selection ipohfly 2008-11-07T12:44:06Z 2008-11-10T13:44:31Z <p>Hi,</p> <p>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.</p> <p>Now, when i run the query</p> <p>select * from ACTION</p> <p>it will select the records from the table, but not the synonym.</p> <p>Anyway for me to select from the synonym AND the table both together?</p> <p>Thanx</p>