↧
Answer by miracle173 for ORA-00905: missing keyword when trying to create a...
if one enters the statement in sqlplus (Oracle10.2, Solaris 5.10) I get the following is displayed:SQL> CREATE SYNONYM BILLING_USER_ACTIVITY@PACOMNET 2 FOR...
View ArticleAnswer by dezso for ORA-00905: missing keyword when trying to create a synonym
As the documentation says implicitly, you can create synonyms in the current DB only. So the first @PACOMNET in the synonym name is unnecessary (and causing the error). You should instead connect to...
View ArticleAnswer by Vincent Malgrat for ORA-00905: missing keyword when trying to...
In Oracle, DDL on remote database is not permitted. One likely reason is that a distributed transaction commit can not be initiated at the remote site (you can't COMMIT@remote) and since DDL statements...
View ArticleORA-00905: missing keyword when trying to create a synonym
I have a problem when I try to create a synonym like this:CREATE SYNONYM B2H.BILLING_USER_ACTIVITY@PACOMNET FOR B2H.BILLING_USER_ACTIVITY@PACOMNET.US.ORACLE.COM;Why does this happen and how can I...
View Article
More Pages to Explore .....