Oracle 11g Database Version 11.1.0.7
Dec 24, 2008 Here's a great way to end the year 2008 for Certifications with EBS: Oracle Database 11gR1 version 11.1.0.7 is now certified with E-Business Suite Release 11i. 11.1.0.7 is the first database patchset available for the 11gR1 Release 11.1.0.6. Customers can upgrade to this version. May 13, 2016. Verify that the version is 4, when it is higher or lower than follow Metalink Note: Actions for the DSTv4 update in the 11.1.0.7 patch set ID:568125.1. Connected to: Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production With the Partitioning, OLAP, Data Mining and Real Application.
Hi All,
Have anybody tried to change the NLS parameter NLS_LENGTH_SEMANTICS in Oracle 11g (11.1.0.7.0)?
I found a weird behavior:
I tried the following
SQL> col parameter for a30
SQL> col value for a35
SQL> select * from v$nls_parameters where PARAMETER='NLS_LENGTH_SEMANTICS';
PARAMETER VALUE
------------------------------ -----------------------------------
NLS_LENGTH_SEMANTICS BYTE
SQL> alter system set NLS_LENGTH_SEMANTICS = CHAR SCOPE=BOTH SID='*';
System altered.
SQL> select * from v$nls_parameters where PARAMETER='NLS_LENGTH_SEMANTICS';
PARAMETER VALUE
------------------------------ -----------------------------------
NLS_LENGTH_SEMANTICS BYTE

however the show parameter shows the changed value
SQL> show parameter NLS_LENGTH_SEMANTICS;
NAME TYPE VALUE
------------------------------------ ---------- ------------------------------
nls_length_semantics string CHAR
Oracle 11g Database Version 11.1.0.7 Windows 10

Have anybody faced such weird behavior of oracle 11gR1 or if i am doing anything wrong.
---
Sameer Mattoo

Oracle 11g Database Version 11.1.0.7.0
I want to export a schema with expdp from a 11g database and import the created file to 10g database with impdp.
my export-commandline is as follow:
expdp system/***@db_01 schemas=grnfl directory=data_dump exclude=statistics logfile=grnfl.log reuse_dumpfiles=y version=10.2.0.1
with the version-parameter it is possible to import the file to 10g database.
I tried to import with:
impdp system/***@db_02 dumpfile=expdat.dmp logfile=grnfl_imp.log
there are no problems with all my tables without mdsys.sdo_geometry. but the tables with spatial are not imported with error-messages in logfile:
-----
ORA-31693: Tabellendatenobjekt 'GRNFL'.'ANLAGE' konnte nicht geladen/entladen werden und wird wegen Fehler übersprungen:
ORA-02354: Fehler beim Exportieren/Importieren von Daten
ORA-39779: type 'MDSYS'.'SDO_GEOMETRY' not found or conversion to latest version is not possible
-----
with old imp/exp I was able to add a parameter toid_novalidate to import dumpfiles from 11g database into 10g database.
Any idea what I can do to import mdsys.sdo_geometry correct?
Many Thanks,
Daniel