Registering layers imported to Oracle via shp2sdo: problem with sdelayer

Hi,
I am using Oracle 9.2.0.5 and ArcSDE / ArcGIS 8.3 on a Windows 2003
server. I have been loading shapefiles into Oracle using the SHP2SDO
utility and have encountered a problem I didn't have to start off
with.
This is my methodology:
1. Use SHP2SDO and SQLLDR to load spatial data into tables in Oracle.
2. Execute the SDO_MIGRATE.TO_CURRENT('tablename','geom') function to
migrate dataset to current version of Oracle.
3. Attempt to register the dataset with SDE using sdelayer -0
register.
Doing it in this order results in an error when executing the sdelayer
command, saying "Cannot create layer. Layer already exists.".
If I do it in the other order - i.e. try to register the dataset
before executing the migrate function - I get a much bigger error:
Underlying DBMS error (-51)
Cannot create layer
ORA-29855: error occurred in the execution of ODCIIINDEXCREATE routine
ORA-13249: internal error in Spatial index: [mdidxrbd]
ORA-13249: Error in Spatial Index: index build failed
ORA-13206: internal error [Tessellate] while creating the spatial
index
ORA-13249: Error in spatial index: [mdpridxtessellate]
ORA-13200: internal error [ROWID:AAAH/1AAOAAA1dYAAC] in spatial
indexing
ORA-13019: coordinates out of bounds
ORA-06512: at "MDSYS.SDO_INDEX_METHOD_9I", line 7
ORA-06512: at line 1
(MDSYS.SPATIAL_INDEX)
I am a novice at managing spatial data in Oracle, being more familiar
with SQL Server, so I may be missing something quite basic. Early in
the process of loading data I was able to both migrate and register
the datasets, but now I am not able to...
I understand this may be an ESRI problem rather than an Oracle one, but I am having no luck finding a solution at present. Any suggestions and advice would be gratefully received.
Many thanks
Sharon

Sharon,
Loading data into the ESRI format IS tricky. I'm not sure what projection you are using, but here is the order in which I have successfully loaded data. A very important step is step 3, as without data (at least with WGS84 and 8.3) the boundaries do not get registered correctly. Also, step 4 may no longer be required with the new shp2sdo tool, but it won't hurt anything:
1.CREATE STRUCTURE - Login as GCM
DROP TABLE VEHICLE_PARKING_AREA;
CREATE TABLE VEHICLE_PARKING_AREA (
PARKING_ID      NUMBER(38) NOT NULL PRIMARY KEY,
OBJECTID      NUMBER,
FNODE_      NUMBER,
TNODE_      NUMBER,
LPOLY_      NUMBER,
RPOLY_      NUMBER,
LENGTH      NUMBER,
EOP_      NUMBER,
EOP_ID      NUMBER,
Shape_Leng      NUMBER,
GEOMETRY      MDSYS.SDO_GEOMETRY);
2. CD TO WHERE DATA IS AND UPLOAD DATA VIA DOS BOX USING SQLLDR:
SQLLDR USERID=GCM/GCM CONTROL=VEHICLE_PARKING_AREA.ctl
3. POPULATE SDO_GEOMETRY TABLE:
DELETE FROM USER_SDO_GEOM_METADATA WHERE TABLE_NAME = 'VEHICLE_PARKING_AREA';
INSERT INTO USER_SDO_GEOM_METADATA (TABLE_NAME, COLUMN_NAME, DIMINFO, SRID)
VALUES ('VEHICLE_PARKING_AREA', 'GEOMETRY',
MDSYS.SDO_DIM_ARRAY
(MDSYS.SDO_DIM_ELEMENT('X', -180.000000000, 180.000000000, 0.000000050),
MDSYS.SDO_DIM_ELEMENT('Y', -90.000000000, 90.000000000, 0.000000050)
8307);
COMMIT;
--- AT this point, you can view the data in the Oracle Spatial Index Advisor...
4. FIX GEOMETRY
execute sdo_migrate.to_current('VEHICLE_PARKING_AREA','GEOMETRY');
5. VALIDATE GEOMETRY (SAVE BUFFER - ALL SHOULD Be TRUE!)
If you see something like: 13356 [Element <1>] [Coordinate <1>] instead of TRUE, it has problems!
Fix it, and go on.
SELECT c.PARKING_ID, SDO_GEOM.VALIDATE_GEOMETRY_WITH_CONTEXT(c.geometry, 0.000000005)
FROM VEHICLE_PARKING_AREA c;
6. CREATE SPATIAL INDEX
DROP INDEX GCM.tvehprk_SPATIAL_IDX;
CREATE INDEX GCM.tvehprk_SPATIAL_IDX ON GCM.VEHICLE_PARKING_AREA(GEOMETRY)
INDEXTYPE IS MDSYS.SPATIAL_INDEX;
-- PARAMETERS('SDO_INDX_DIMS=2 INITIAL=1K NEXT=1K PCTINCREASE=0');
7. REGISTER FEATURE WITH SDE:
sdelayer -o register -l VEHICLE_PARKING_AREA,GEOMETRY -e nls+ -c PARKING_ID -C USER -S "ROADS" -u gcm -p gcm@gcm -i sde:oracle9i
8. MODIFY THE SDE SPATIAL REF # TO UTM:
sdelayer -o alter -l VEHICLE_PARKING_AREA,GEOMETRY -G 4326 -u gcm -p gcm@gcm -i sde:oracle9i
OPTIONAL: View min and max values to see if there is invalid range data:
SELECT aa.MINX, bb.MINY, cc.MAXX, dd.MAXY FROM
(SELECT MIN(t.X) MINX
     FROM GCM.VEHICLE_PARKING_AREA c,
     TABLE(SDO_UTIL.GETVERTICES(c.GEOMETRY)) t) aa,
(SELECT MAX(t.X) MAXX
     FROM GCM.VEHICLE_PARKING_AREA c,
     TABLE(SDO_UTIL.GETVERTICES(c.GEOMETRY)) t) cc,
(SELECT MIN(t.Y) MINY
     FROM GCM.VEHICLE_PARKING_AREA c,
     TABLE(SDO_UTIL.GETVERTICES(c.GEOMETRY)) t) bb,
(SELECT MAX(t.Y) MAXY
     FROM GCM.VEHICLE_PARKING_AREA c,
     TABLE(SDO_UTIL.GETVERTICES(c.GEOMETRY)) t) dd;
OBJECTWS of TYPE:
SELECT COUNT(1) "UNKNOWN"
     FROM GCM.VEHICLE_PARKING_AREA M
     WHERE M.GEOMETRY.GET_GTYPE() = 0;
SELECT COUNT(1) "POINT"
     FROM GCM.VEHICLE_PARKING_AREA M
     WHERE M.GEOMETRY.GET_GTYPE() = 1;
SELECT COUNT(1) "LINE or CURVE"
     FROM GCM.VEHICLE_PARKING_AREA M
     WHERE M.GEOMETRY.GET_GTYPE() = 2;
SELECT COUNT(1) "POLYGON"
     FROM GCM.VEHICLE_PARKING_AREA M
     WHERE M.GEOMETRY.GET_GTYPE() = 3;
SELECT COUNT(1) "COLLECTION"
     FROM GCM.VEHICLE_PARKING_AREA M
     WHERE M.GEOMETRY.GET_GTYPE() = 4;
SELECT COUNT(1) "MULTIPOINT"
     FROM GCM.VEHICLE_PARKING_AREA M
     WHERE M.GEOMETRY.GET_GTYPE() = 5;
SELECT COUNT(1) "MULTILINE or MULTICURVE"
     FROM GCM.VEHICLE_PARKING_AREA M
     WHERE M.GEOMETRY.GET_GTYPE() = 6;
SELECT COUNT(1) "MULTIPOLYGON"
     FROM GCM.VEHICLE_PARKING_AREA M
     WHERE M.GEOMETRY.GET_GTYPE() = 7;

Similar Messages

  • File transfer via socket problem (with source code)

    I have a problem with this simple client/server filetransfer program. When I run it, only half the file is transfered via the net? Can someone point out to me why this is happening?
    Client:
    import java.net.*;
    import java.io.*;
         public class Client {
         public static void main(String[] args) {
              // IPadressen til server
              String host = "127.0.0.1";
              int port = 4545;
              //Lager streams
              BufferedInputStream fileIn = null;
              BufferedOutputStream out = null;
              // Henter filen vi vil sende over sockets
              File file = new File("c:\\temp\\fileiwanttosend.jpg");
    // Sjekker om filen fins
              if (!file.exists()) {
              System.out.println("File doesn't exist");
              System.exit(0);
              try{
              // Lager ny InputStream
              fileIn = new BufferedInputStream(new FileInputStream(file));
              }catch(IOException eee) {System.out.println("Problem, kunne ikke lage fil"); }
              try{
              // Lager InetAddress
              InetAddress adressen = InetAddress.getByName(host);
              try{
              System.out.println("- Lager Socket..........");
              // �pner socket
              Socket s = new Socket(adressen, port);
              System.out.println("- Socket klar.........");
              // Setter outputstream til socket
              out = new BufferedOutputStream(s.getOutputStream());
              // Leser buffer inn i tabell
              byte[] buffer = new byte[1024];
              int numRead;
              while( (numRead = fileIn.read(buffer)) >= 0) {
              // Skriver bytes til OutputStream fra 0 til totalt antall bytes
              System.out.println("Copies "+fileIn.read(buffer)+" bytes");
              out.write(buffer, 0, numRead);
              // Flush - sender fil
              out.flush();
              // Lukker OutputStream
              out.close();
              // Lukker InputStrean
              fileIn.close();
              // Lukker Socket
              s.close();
              System.out.println("File is sent to: "+host);
              catch (IOException e) {
              }catch(UnknownHostException e) {
              System.err.println(e);
    Server:
    import java.net.*;
    import java.io.*;
    public class Server {
         public static void main(String[] args) {
    // Portnummer m� v�re det samme p� b�de klient og server
    int port = 4545;
         try{
              // Lager en ServerSocket
              ServerSocket server = new ServerSocket(port);
              // Lager to socketforbindelser
              Socket forbindelse1 = null;
              Socket forbindelse2 = null;
         while (true) {
         try{
              forbindelse1 = server.accept();
              System.out.println("Server accepts");
              BufferedInputStream inn = new BufferedInputStream(forbindelse1.getInputStream());
              BufferedOutputStream ut = new BufferedOutputStream(new FileOutputStream(new File("c:\\temp\\file.jpg")));
              byte[] buff = new byte[1024];
              int readMe;
              while( (readMe = inn.read(buff)) >= 0) {
              // Skriver filen til disken ut fra input stream
              ut.write(buff, 0, readMe);
              // Lukker ServerSocket
              forbindelse1.close();
              // Lukker InputStream
              inn.close();
              // flush - sender data ut p� nettet
              ut.flush();
              // Lukker OutputStream
              ut.close();
              System.out.println("File received");
              }catch(IOException e) {System.out.println("En feil har skjedd: " + e.getMessage());}
              finally {
                   try {
                   if (forbindelse1 != null) forbindelse1.close();
                   }catch(IOException e) {}
    }catch(IOException e) {
    System.err.println(e);
    }

    Hi!!
    The problem is at this line:
    System.out.println("Copies "+fileIn.read(buffer)+" bytes");
    Just comment out this line of code and see the difference. This line of code causes another "read" statement to be executed, but you are writing only the data read from the first read statement which causes approximately half the file to be send to the server.

  • Oracle XA driver problem with WLS 7.0.1.0, Oracle 9.0.1

    We are using simplified chinese, after swith to bea jdriver, it messed up
    all the encoding. So we cannot display Chinese character correctly.
    We are using WLS 7.0.1.0, Oracle 9.0.1 on both Windows and Solaris 8
    environment, BEA supplied JDK 1.3.1_03.
    We have many diffrent problems with oracle drivers:
    1. We want to use XA driver to support distributed transaction, However:
    * bea jdriver xa messes up with encoding
    * when using oracle 901 driver, everything works fince except webservices.
    Workshop application access the ejb, then the workshp application sets
    isolation level, but oracle driver does not support it and gives error. Is
    there a way to turn off isolation level in workshop? I tried manually edit
    weblogic-ejb-jar.xml, however,workshop cannot redeploy it after that.
    2. When not using XA, oracle thin driver works fine. But we lost XA
    capability.
    Any work around?

    I did try to change the value in this config file as well, but did not help.
    In fact, the installation default setting is with
    '<transaction-isolation-level>' commented out.
    And when I use bea oracle jdriver, it somehow messed up with database
    character set encoding, so our Chinese characters could not be retrieved
    correctly. And I try to set the encoding of jdriver to 'GBK', it did not
    work.
    "Anurag Pareek" <[email protected]> дÈëÏûÏ¢ÐÂÎÅ
    :[email protected]..
    Hello Ma,
    The transaction isolation level value for EJBs backing the JWS files is
    specified in the <transaction-isolation-level> tag in the
    WEB-INF/weblogic-jws-config.xml file of a Workshop project. You can
    manipulate this value to serve your purpose.
    Please do let me know how it goes.
    Regards,
    Anurag
    Workshop Support
    "Ma Jie" <[email protected]> wrote in message
    news:[email protected]..
    We are using simplified chinese, after swith to bea jdriver, it messed
    up
    all the encoding. So we cannot display Chinese character correctly.
    We are using WLS 7.0.1.0, Oracle 9.0.1 on both Windows and Solaris 8
    environment, BEA supplied JDK 1.3.1_03.
    We have many diffrent problems with oracle drivers:
    1. We want to use XA driver to support distributed transaction, However:
    * bea jdriver xa messes up with encoding
    * when using oracle 901 driver, everything works fince exceptwebservices.
    Workshop application access the ejb, then the workshp application sets
    isolation level, but oracle driver does not support it and gives error.Is
    there a way to turn off isolation level in workshop? I tried manuallyedit
    weblogic-ejb-jar.xml, however,workshop cannot redeploy it after that.
    2. When not using XA, oracle thin driver works fine. But we lost XA
    capability.
    Any work around?

  • Oracle 11gR2 RAC problem with resource state

    Hi all,
    I installed Oracle 11gR2 grid infrastructure with 2 nodes and I installed DB 11gR2.
    S.O: HP-UX
    I actived both DB instance in each node.
    For an hardware problem node 1 become unstable (continuos auto reboot).
    I found that the problem was RAM.
    However I note that database resource is in a particular state and i don't able to reset it.
    Performing command crsctl status resource ora.orcl.db this is the result
    ora.orcl.db
    1 OFFLINE UNKNOWN node1 Startup Initiated
    2 ONLINE ONLINE node2 Open
    That UNKNOWN state is really abstruse.
    I tryed to perform crsctl stop resource ora.orcl.db -n node1 and the result is
    CRS-2679: Attempting to clean 'ora.orcl.db' on 'node1'
    ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist
    HPUX-ia64 Error: 2: No such file or directory
    Process ID: 0
    Session ID: 0 Serial number: 0
    CRS-2680: Clean of 'ora.orcl.db' on 'node1' failed
    CRS-4000: Command Stop failed, or completed with errors.
    I tryed to perform crsctl start resource ora.orcl.db -n node1 and the result is
    CRS-2662: Resource 'ora.orcl.db' is disabled on server 'node1'
    CRS-4000: Command Start failed, or completed with errors.
    How do I do to reset that UNKNOWN state?
    Thanks in advance.
    Bye
    Alessandro

    I tryed srvctl enable instance -d orcl -i ORCL_1
    but the results is
    srvctl enable instance command is not supported for configuration using server pool.
    I tryed to delete service ora.orcl.db and recreate it.
    Now I have
    NAME=ora.orcl.db
    TYPE=ora.database.type
    TARGET=ONLINE , ONLINE
    STATE=UNKNOWN on node1, OFFLINE
    So Targets are both ONLINE, but if I write crsctl start resource ora.orcl.db
    the result is
    CRS-2679: Attempting to clean 'ora.orcl.db' on 'node1'
    CRS-2672: Attempting to start 'ora.orcl.db' on 'node2'
    CRS-5003: Invalid attribute value: '' for attribute DB_UNIQUE_NAME
    ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist
    HPUX-ia64 Error: 2: No such file or directory
    Process ID: 0
    Session ID: 0 Serial number: 0
    CRS-2674: Start of 'ora.orcl.db' on 'node2' failed
    CRS-2679: Attempting to clean 'ora.orcl.db' on 'node2'
    CRS-2681: Clean of 'ora.orcl.db' on 'node2' succeeded
    CRS-2632: There are no more servers to try to place resource 'ora.orcl.db' on that would satisfy its placement policy
    CRS-2680: Clean of 'ora.orcl.db' on 'node1' failed
    CRS-4000: Command Start failed, or completed with errors.
    Where DB_UNIQUE_NAME attribute must be set?
    Any other suggest?
    Thanks in advance.
    Regards.
    Alessandro
    Edited by: Alessandro Zenoni on 21-giu-2010 11.26

  • Oracle package invalidate problem with the jdbcOracleConnectionCacheImpl ()

    Hi all,
    I am using the OracleConnectionCacheImpl(); to Create the Oracle connection pool (OracleConnectionCacheImpl class)
    In my application i am calling the oracle stored procs.
    (DB environment :Oracle 9i)
    to call those stored proc i used the Prepared statements.
    All the requests are calling the same java bean to invoke the same package.
    when ever the changes occured in the db level,(it means if that package is invalid. i.e when ever the db refreshes occured), all the requests are geting oracle error.
    after the oracle package become valid.. still i am geting the oracle errors.
    it should not happen, because stored proc is in valid state.
    if we restart our adapter or java service then we are geting the proper responses.
    we don't know when the db problems occurs, when it will be solve
    can any one help me to make my application stable
    kindly help me to get underastand the behaviour of our java code and the jdbc behaviour.
    if any one didn't understand the above description i can mail you the code what i am using..
    Thanks in advance
    RajThota

    A regular Oracle database environment comes with several mandatory userids. These include SYS and SYSTEM. SYS 'owns' all details of the database and SYSTEM is the 'super DBA'. These are database userids, not operating system userids.
    I suspect the repository wizard wants to access the SYSTEM userid to be able to create a new schema (equivalent to 'database' for other vendors) within the Oracle environment.
    In older versions of Oracle, the default SYSTEM password was 'MANAGER'. These days, any security conscious DBA will have changed that quickly, but ...

  • Importing from DVD via Handbrake problems...

    HI folks. I've taken a DVD of our ancestors, that is a simple set of chapters of movies. I used handbrake to convert to mp4 but Final Cut Pro 6 is telling me it cannot import the video because unknown errors. If I drag and drop, the File error, unknown file. When I try to Log and transfer it in, it says it has an invalid directory structure.
    However, the mp4 plays just fine in Quicktime 7 and exported from QT to QTmov it plays as well. It will not import from QT Mov either, although the file is too small for my needs.
    I'm creating a family heritage dvd. Any suggestions? Do a I need a different, $$ pro, translator?
    Thanks
    Jeff

    The information you have been provided is incomplete. Apple's QuickTime MPEG-2 Playback plugin gives QuickTime the ability to play MPEG-2 files, including .VOB DVD files. Theoretically this should allow import into Apple's video editing apps. HOWEVER, I found that my DVD recorder's VOBs must encode AC3 audio or some other audio spec not supported by the plugin because the audio in the files do not play through the plugin. YYMV. At the same time, though, MPEG Streamclip is able to properly play the files back with the plugin installed, whereas without the plugin it cannot read MPEG2. My current workflow is to open the .VOB files with MPEG Streamclip, then export them to QuickTime, then import them to Final Cut, which while requiring rendering, seems to be a good amount faster than rendering from .VOB to .MP4 using an app like iSquint. It's still not ideal because of the plugin audio issue, but it's better than what I was doing previously.
    QuickTime MPEG-2 Playback Plugin
    http://www.apple.com/quicktime/mpeg2/
    MPEG Streamclip Mac
    http://www.squared5.com/svideo/mpeg-streamclip-mac.html

  • Oracle 9i installation problem with RedHat 7.2 (segmentation violation)

    I have try to installation 9i with RedHat 7.2 by x windows.
    when i use xwin to run the "./runInstaller, i got the error
    (segmentation) as below:
    i have already try to follow the installation procedure in
    http://staff.in2.hr/denis/oracle/901install_rh72_en.html#1 but
    still got this error.
    Can anyone help me??
    Regards
    Chris Sung
    =================================================================
    ===============
    oracle install
    Connecting 192.168.1.3 via TELNET
    Thursday, December 13, 2001 1:04:06
    Red Hat Linux release 7.2 (Enigma)
    Kernel 2.4.7-10 on an i686
    login: oracle
    Password:
    Last login: Thu Dec 13 00:46:39 from apple
    [oracle@orange oracle]$ (/home/oracle/Disk1/runInstaller -
    display 192.168.1.2:0
    -name "oracle install" &)
    [oracle@orange oracle]$ Initializing Java Virtual Machine
    from /tmp/OraInstall/jre/bin/jre. Please wait...
    SIGSEGV 11* segmentation violation
         stackbase=0xbffff298, stackpointer=0xbffff160
    Full thread dump:
    "Finalizer thread" (TID:0x4276d210, sys_thread_t:0x4d0bfe0c,
    state:R) prio=1
    "Async Garbage Collector" (TID:0x4276d258,
    sys_thread_t:0x4d09ee0c, state:R) prio=1
    "Idle thread" (TID:0x4276d2a0, sys_thread_t:0x4d07de0c,
    state:R) prio=0
    "Clock" (TID:0x4276d088, sys_thread_t:0x4d05ce0c, state:CW)
    prio=12
    "main" (TID:0x4276d0b0, sys_thread_t:0x80d6fe8, state:R)
    prio=5 *current thread*
         java.lang.System.initializeSystemClass(System.java)
    Monitor Cache Dump:
    Registered Monitor Dump:
    Thread queue lock: <unowned>
    Name and type hash table lock: <unowned>
    String intern lock: <unowned>
    JNI pinning lock: <unowned>
    JNI global reference lock: <unowned>
    BinClass lock: <unowned>
    Class loading lock: <unowned>
    Java stack lock: <unowned>
    Code rewrite lock: <unowned>
    Heap lock: <unowned>
    Has finalization queue lock: <unowned>
    Finalize me queue lock: <unowned>
    Dynamic loading lock: <unowned>
    Monitor IO lock: <unowned>
    Child death monitor: <unowned>
    Event monitor: <unowned>
    I/O monitor: <unowned>
    Alarm monitor: <unowned>
         Waiting to be notified:
         "Clock" (0x4d05ce0c)
    Monitor registry: owner "main" (0x80d6fe8, 1 entry)
    Thread Alarm Q:

    Strange, but yesterday I nter in Oracle9i install, open
    gnome-terminal window as oracle user and simply type
    /tmp/Disk1/runInstaler
    the DISPLAY enviroment variable was set,
    using RedHat 7.2 , kernel 2.4.16-0.9, glibc-2.2.4-19
    Segmentation violation 11 may mean RAM problem, sometimes
    incorrect program pointer.So I think it must work (runIstaler)

  • ORA-12952 and Oracle 10g XE problem with migration to 11g XE

    Hi, all
    My DB (Oracle 10g XE) reach storage limit. I have tried to migrate to 11g XE version but unsuccessful.
    For migration I used next manual: http://download.oracle.com/docs/cd/E17781_01/install.112/e18803/toc.htm#XEINW136
    expdp returned next error:
    Processing object type DATABASE_EXPORT/SCHEMA/CLUSTER/INDEX
    Processing object type DATABASE_EXPORT/SCHEMA/TABLE/TABLE
    ORA-39125: Worker unexpected fatal error in KUPW$WORKER.CREATE_OBJECT_ROWS while calling FORALL [TABLE]
    ORA-12952: The request exceeds the maximum allowed database size of 4 GB
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 116
    ORA-06512: at "SYS.KUPW$WORKER", line 6248
    ----- PL/SQL Call Stack -----
    object line object
    handle number name
    2D6F0304 14916 package body SYS.KUPW$WORKER
    2D6F0304 6300 package body SYS.KUPW$WORKER
    2D6F0304 5638 package body SYS.KUPW$WORKER
    2D6F0304 2145 package body SYS.KUPW$WORKER
    2D6F0304 6861 package body SYS.KUPW$WORKER
    2D6F0304 1262 package body SYS.KUPW$WORKER
    285BD50C 2 anonymous block
    Next I have tried to garbage some information from DB but I got some as "UNDO cannot get next block" error.
    What else can I do to migrate the data from 10g with limitation problem to 11g?
    Thank You in advance.

    There is output from SQL:
    "OWNER"; "TABLESPACE_NAME"; "COUNT(*)"; "SIZE_MB"
    "A1"; "USERS"; "899"; "3995,9375"
    "SYS"; "SYSTEM"; "980"; "323,1875"
    "FLOWS_020100";"SYSAUX"; "658"; "297,625"
    "SYS"; "SYSAUX"; "626"; "151,125"
    "XDB"; "SYSAUX"; "753"; "84,5"
    "SYSTEM";"SYSTEM"; "259"; "31,75"
    "SYS"; "UNDO"; "10"; "20,25"
    "MDSYS"; "SYSTEM"; "96"; "12,25"
    "SYSTEM";"SYSAUX"; "109"; "6,8125"
    "CTXSYS";"SYSAUX"; "74"; "4,625"
    "D1"; "USERS"; "14"; "3,5625"
    "DBSNMP";"SYSAUX"; "25"; "1,5625"
    "HR"; "USERS"; "25"; "1,5625"
    "FLOWS_FILES";"SYSAUX"; "7"; ",5"
    "OUTLN"; "SYSTEM"; "8"; ",5"
    "TSMSYS";"SYSAUX"; "4"; ",25"
    1. When I tried to delete some old data from USERS dataspase by some PROCEDURE I got the next error:
    ERROR at line 1:
    ORA-30036: unable to extend segment by 8 in undo tablespace 'UNDO'
    This problem I solved. PROCEDURE generate huge buffer for transaction. Therefore I deleted the old data by small pieces.
    After I have deleted the old data the Application start to comunicate with database without ORA-12952 error.
    2. I've reduced the size of SYSAUX (http://remidian.com/oracle/purging-sysaux-tablespace-purging-awr-reports.html) down to 94%
    3. I has SYSTEM tablespace 100% full. When I've tried to resize the SYSTEM table up I got the ORA-12952. Then I've increased the SYSTEM table size by 1M. In such way I got additional 9Mb for the SYSTEM tablespace (from 360Mb to 369Mb 98%). Is any other way to reduce of the SYSTEM tablespace filling?
    4. Next (http://wiki.oracle.com/page/Data+Pump+Export+%28expdp%29+and+Data+Pump+Import%28impdp%29)
    on the step: $ expdp system/<password> DIRECTORY=expdp_dir DUMPFILE=expfull.dmp FULL=y LOGFILE=expfull.og
    i got the error:
    Processing object type DATABASE_EXPORT/SCHEMA/TABLE/TABLE
    ORA-39125: Worker unexpected fatal error in KUPW$WORKER.CREATE_OBJECT_ROWS while calling FORALL [TABLE]
    ORA-12952: The request exceeds the maximum allowed database size of 4 GB
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 116
    ORA-06512: at "SYS.KUPW$WORKER", line 6248
    There is my last state of the tablespace filling:
    "Tablespace"; "Size (MB)"; "Free (MB)"; "% Free"; "% Used"
    "UNDO"; "500"; "411,6875"; "82"; "18"
    "SYSAUX"; "570"; "31,5"; "6"; "94"
    "USERS"; "4180"; "178,875"; "4"; "96"
    "SYSTEM"; "369"; "1,25"; "0"; "100"
    "TEMP"; "291"; "0"; "0"; "100"

  • Importing .gif file into Pages - problem with transparency

    Hi Apple Forum,
    First-timer (on the forum) here. I tried importing a .gif image (with alpha channel) into a pages document. The image was imported, but it's not transparent. In other words, the alpha channel isn't working. The problem is NOT with the opacity button, in case some one wants to suggest that as a solution. Has anyone had this issue before?

    Hi Scrambled_Eggs
    Welcome to the forum.
    Resave them as .png from Preview app.
    Peter

  • SAPGUI for Windows via Portal - problem with frame

    We are launching SAPGUI for Windows via Portal to drive single sign-on via AD.  Our problem is that when SAPGUI launches, it is contained within an IE browser frame that causes some of the SAPGUI screens to not fit on the screen well.  Those same screens fit just fine if we launch SAPGUI directly.
    Is there any way to launch SAPGUI from Portal, with SSO enabled, but without the IE frame around it?

    Lonny,
    The best way to authenticate users when they logon using SAP GUI for Windows, is to use SNC authentication in SAP GUi. Then, the browser iview will launch the GUI and the GUI will authenticate the user using their AD credentials issued during the Windows logon. You will need to setup an SNC library on both the ABAP system which the user is logged onto, and the workstation where SAP GUI is installed.
    If you don't use SNC, and you just launch SAP GUI for Windows from browser, then an SSO2 ticket is used to authenticate the user to the ABAP stack, and this is not secure due to the fact that the SAP GUI session which is used to pass the SSO2 ticket is not protected - anybody can intercept the SAP GUI session, take the SSO2 ticket from this traffic and logon as that user - clearly this is bad security and needs SNC to make it secure.
    Thanks,
    Tim

  • Importing m2ts files but having problems with the audio layer

    Hi all, I'm new to the whole video editing side of things and so would appreciate some help.
    I've just bought myself a Canon HF200 HD camcorder, and a Sony Vaio notebook which came with Premiere Elements 7.0 pre-installed.
    For the last month I've been shooting footage, and just getting down to trying to edit everything and put a DVD together.
    The problem I have at the moment (and I've just started using the program, so everything is new to me) is that while I seem to be able to import the m2ts file format that my Canon records, only the video is imported into Premiere - not the audio.
    I can play all my videos in Windows Media Player just fine, with both video and audio.  So it seems my machine is able to read the files correctly in this program.  However, the audio seems to drop out when I import the file into Premiere.  The program was pre-installed in my machine, and when I go in to have a look at the audio settings, there doesn't seem to be an ability to change the settings to something different.
    So far I've spent a long time googling and trying to find a solution, but with no joy just yet.
    Appreciate any assistance the anyone can offer.
    Thanks.
    Jeff

    Hi there
    I think I sorted it. If you look at the Premiere Pro forum, on the right is a box with a link to "Forum Best Practices".
    Click the image below for larger view.
    Being a good first time poster, you read that. But the problem is, it places you inside the Forum Comments forum. So when you choose to Create a Discussion, you aren't creating the discussion in the Premiere Pro forum. Instead, you are creating it in the Forum Comments forum.
    Looks like perhaps a forum mod needs to work on this and create a duplicate thread in the forums in question.
    Cheers... Rick

  • Executing sql server procedure  from oracle via db link with out parameters

    HI
    we have successfully created the link between oracle and sql server via DB LINK also able to access table from the
    sqlserver via dblink
    Can any one tell me how to execute procedure with 1 input and 4 out parameters from pl\sql
    is it possible using
    dbms_hs_passthrough

    You should be able to call it like you would any other procedure:
    dbo.procedure_name@dblink(parameter_list);

  • Oracle Bam Installation problems with IIS, Error code 1

    Hello, When I try to install oracle bam I got like 40 errors when its executing some vbs scripts, I think that these scripts create the virtual directories and so on but I am not sure.
    The error that I see in the event log in spanis is this:
    I need to say that I am an administrator on this machinem so I dont know that the problem is.
    Su administrador ha limitado el acceso a C:\OracleBAM\BAM\adsutil.vbs por el nivel de directiva de restricción de software predeterminado.
    Para obtener más información, vea el Centro de ayuda y soporte técnico en http://go.microsoft.com/fwlink/events.asp.

    Thanks.
    Yes, I do have a P4.
    I have looked through previous postings and have found the following suggestions, both of which I have tried:
    1. Copy the files from CD to disk, rename symcjit.dll and then run install.
    2. Oracle seem to suggest that the disk directories must be called Disk1 etc.
    I have also tried removing the Java SDK I had installed, stopping Apache and stopping MySQL.
    Nothing has worked.
    Any more ideas (please....)?

  • Importing txt in flash 8, problems with special caracters

    i am having a problem when importing a txt file into my swf.
    When publishing it in flash player 5 the special caracters (in this
    case another language) the caracters display just fine, but when
    publishing in flash 8 they all transform into weird boxes.
    Anybody, any sugestions???
    thanks a lot

    Hade almost the same problem - - ->
    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?catid=194&threadid=1240349

  • Imported DVD clips using dropDV - problems with freezing

    I bought a copy of DropDV so i could make FCP-importable mpeg files from some dvd's i made.
    Problem is, when i drag any of these files into my source window in FCP, the clip will play for a few seconds then freeze. if i mark an in and out and move it into my sequence timeline it plays fine - but i can't watch them in the source monitor (the sound continues after it freezes).
    I have 2gb RAM and i even went into the system preferences of FCP (4.5) and boosted the numbers there but it's still not working - the g5 we have at work does not have this problem.
    not sure how many people here use dropDV with FCP, but if anyone has any suggestions i'd appreciate it!
    thanks

    it's a 2gb video clip file, if that makes a difference.<<</div>
    hmmmmm. 2gb is the size file limit for drives formatted as FAT32 and since I don't believe in coincidences, that makes me suspicious. It might be nothing, but you may want to verify that the drive that the clip is stored on is formatted as "Mac OS Extended."
    -DH

Maybe you are looking for

  • Display driver stopped responding

    Hi, I get the above message and followed one of the links on a prior thread but when it completes the diagnostic I can not go further; http://h20000.www2.hp.com/bizsupport/TechSupport/S​oftwareIndex.jsp?cc=us&prodNameId=4023815&prodSeri​... Can you r

  • OIM 9102: Send Email Notification to other user in a task

    I created a process in OIM. In this process exist a Task: Manager Process. When this task will be completed for the user that be assigned. In the Notification Tab are able to send a email notification to a Assign User, Requester User, User or User Ma

  • Setting series and episode of a TV show in iTunes and now the video won't play

    I have an episode of a TV show in my iTunes library that plays just fine on my laptop and Apple TV. The moment I set the TV shows name, series and episode number (so that it is grouped with the rest of the series) the file will not play on laptop or

  • Deserializing error for the Data format

    Hi, We have created a RFC FM. Which will be call from other non-sap system. Where other non-sap system was using dot net. While they are calling our custom RFC there are getting a problem with date format. The error says as follows - <n0:SimpleTransf

  • Barcode printing sapcript available in preview but not in print

    We are trying to print Barcode from ECC 6.0 system but unable to make it , though we can view the same in Print preview , still we are unable to get the same in the hard copy.Barcode is not present in hard copy Below are settings Device type: SAPWIN