Hi Just a quick one, if you wish to keep your django instance data seperate from your production data and still use all the nice nifty ORM and admin interface, you can just add synonyms to your django user, then make the following change from USER_TABLES to USER_OBJECTS in the db code and it all appears to work:
file : ....Python25\Lib\site-packages\django\db\backends\oracle \instrospection.py def get_table_list(cursor): "Returns a list of table names in the current database." cursor.execute("SELECT OBJECT_NAME FROM USER_OBJECTS WHERE OBJECT_TYPE IN ('TABLE', 'SYNONYM')") return [row[0].upper() for row in cursor.fetchall()] You cannot of course create tables this way, but it highly usefull for using the admin interface on existing databases while keeping dango seperate. Regards, --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---