otmfaqForumsBlogsRegister
FAQMembers ListCalendarToday's PostsSearch


 Subscribe Blogs:RSS
 Subscribe Forums:RSS
OTMFAQ Home
OTMFAQ Blogs
OTMFAQ Forums
OTMFAQ Tutorials

OTM SIG
MavenWire


Installation and Upgrades Getting past the first step - installing and upgrading OTM / G-Log.

Tags: , ,

Reply
 
Submit Tools LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old December 14th, 2006, 05:27
chrisplough's Avatar
Site Moderator
 
Join Date: Jun 2006
Location: West Chester, PA
Posts: 816
Blog Entries: 7
Thanks: 53
Thanked 199 Times in 121 Posts
Groans: 0
Groaned at 0 Times in 0 Posts
Rep Power: 10
chrisplough has a spectacular aura aboutchrisplough has a spectacular aura aboutchrisplough has a spectacular aura about
Send a message via AIM to chrisplough
Uninstalling Oracle Spatial

If you've installed OTM v5.5 into an Oracle DB that has Oracle Spatial enabled, you'll find that certain functions (such as distance lookups) fail in OTM. In order to resolve these issues, you'll need to uninstall Oracle Spatial from your database using the following steps.

Login to your OTM DB as the sys user and run:

Code:
SQL> drop user MDSYS cascade;

SQL> set pagesize 0
SQL> set feed off
SQL> spool drop_spatial.sql
SQL> select 'drop public synonym "' || synonym_name || '";' from dba_synonyms where table_owner='MDSYS';
SQL> spool off;
SQL> @drop_spatial.sql
SQL> commit;
Then:
  • Open up a command prompt on the OTM App server
  • Change into the <otm_install_dir>/glog/oracle/script8 directory
  • Sqlplus into the OTM database as the glogowner user
  • Run:
Code:
SQL> @create_public_synonyms.sql
To verify that everything has been completed successfully, run the following query:

Code:
SQL> select * from dba_synonyms where synonym_name='DISTANCE';
The TABLE_NAME should be DISTANCE and the TABLE_OWNER should be GLOGOWNER.

References:
Oracle Note: 179472.1
Oracle Note: 387793.1

Hope this helps!

Thanks!
--Chris
__________________
Chris Plough
MavenWire

www.MavenWire.com

Last edited by chrisplough : January 18th, 2007 at 15:11.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply



Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] Re: v5.5 CU2 Issues after de-installing Oracle Spatial Chris Plough Email List Archive 0 January 10th, 2007 00:23
[SOLVED] v5.5 CU2 Issues after de-installing Oracle Spatial Barnett , Jada Email List Archive 2 January 9th, 2007 18:56
[SOLVED] RE: v5.5 CU2 Issues after de-installing Oracle Spatial Mauricio Ramirez Email List Archive 0 January 9th, 2007 18:56
[SOLVED] RE: v5.5 CU2 Issues after de-installing Oracle Spatial Barnett , Jada Email List Archive 0 January 9th, 2007 18:56
[SOLVED] Re: v5.5 CU2 Issues after de-installing Oracle Spatial Alan Cuartero Email List Archive 1 January 9th, 2007 18:56



All times are GMT. The time now is 01:26.
Copyright © 2008, Open Book Solutions LLC. All rights reserved.

Sponsored by MavenWire - MavenWire.com


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37