Oracle 9.0.1.1 Spatial and Label

-- Author: Shawn Bisgrove
-- Oracle Version: 9.0.1.1 Personal
-- Operating System Windows 2000
-- I have just started evaluating Oracle for use on a future
project and have decided to recommend
-- using both the Label and Spatial components.
-- Sorry about the length of this post. I did make sure that
the example was simple but complete.
-- I have run into what I believe is a pretty severe bug. It
may not be, but if it is it hinders
-- the use of Oracle Spatial and Oracle Label Security with R-
TREE and Q-TREE indexing together.
-- Please tell me that I am doing something wrong. I will
cross post in the Spatial section.
-- Variations on this example can be derived from the base
example and will probably exhibit the
-- same behavior.
-- This example requires a database DARS configured with Label
Security
-- User: system Password: system
-- remove any residual policy information
connect admin/admin@dars;
execute sa_sysdba.drop_policy('DARS_RESOURCES');
connect system/system@dars;
drop user shawn cascade;
drop user dars cascade;
drop user admin cascade;
create user admin identified by admin;
grant connect, resource, select_catalog_role to admin;
grant connect to shawn identified by shawn;
grant connect to dars identified by dars;
grant resource to dars;
connect dars/dars@dars;
CREATE TABLE DATASET (COVERAGE MDSYS.SDO_GEOMETRY,
          INTERNALIDENTIFIER NUMBER(6) PRIMARY KEY);
create sequence DATASET_INTERNALIDENTIFIER_SEQ;
delete from USER_SDO_GEOM_METADATA;
INSERT INTO USER_SDO_GEOM_METADATA values
('dataset', 'coverage', mdsys.SDO_dim_array
(MDSYS.SDO_DIM_ELEMENT('X',-90,90,.001) ,
     MDSYS.SDO_DIM_ELEMENT('Y',-180,180,.001)), null);
-- OCCURS IN BOTH R-TREE and Q-TREE (for example using R-TREE)
CREATE INDEX DATASET_SPATIAL_IDX ON dars.DATASET(COVERAGE)
INDEXTYPE IS MDSYS.SPATIAL_INDEX;
--SELECT SDO_TUNE.QUALITY_DEGRADATION
('DARS', 'DATASET_SPATIAL_IDX') FROM DUAL;
--SELECT SDO_TUNE.RTREE_QUALITY('DARS', 'DATASET_SPATIAL_IDX')
FROM DUAL;
-- UNCOMMENT FOR Q-TREE EXAMPLE
--CREATE INDEX DATASET_SPATIAL_IDX ON dars.DATASET(COVERAGE)
INDEXTYPE IS MDSYS.SPATIAL_INDEX PARAMETERS('SDO_LEVEL = 8');
--SELECT SDO_TUNE.ESTIMATE_TILING_LEVEL
('dars.dataset', 'coverage', 8) from dual;
grant select, insert, update, delete on DATASET to public;
grant select, alter on DATASET_INTERNALIDENTIFIER_SEQ to public;
connect lbacsys/lbacsys@dars
GRANT EXECUTE ON SA_COMPONENTS TO admin WITH GRANT OPTION;
GRANT EXECUTE ON SA_USER_ADMIN TO admin WITH GRANT OPTION;
GRANT EXECUTE ON sa_user_admin TO admin WITH GRANT OPTION;
GRANT EXECUTE ON sa_label_admin TO admin WITH GRANT OPTION;
GRANT EXECUTE ON sa_policy_admin TO admin WITH GRANT OPTION;
GRANT EXECUTE ON sa_audit_admin TO admin WITH GRANT OPTION;
GRANT LBAC_DBA TO admin;
GRANT EXECUTE ON SA_SYSDBA TO admin;
GRANT EXECUTE ON to_lbac_data_label TO admin;
connect admin/admin@dars;
execute SA_SYSDBA.CREATE_POLICY('DARS_RESOURCES', 'ACL');
execute SA_COMPONENTS.CREATE_LEVEL('DARS_RESOURCES',
5000, 'EMP', 'Employee');
execute SA_COMPONENTS.CREATE_GROUP('DARS_RESOURCES',
500, 'MGR', 'Manager', NULL);
execute SA_COMPONENTS.CREATE_GROUP('DARS_RESOURCES',
600, 'WKR1', 'Worker', 'MGR');
execute SA_COMPONENTS.CREATE_GROUP('DARS_RESOURCES',
700, 'WKR2', 'Worker 2', 'MGR');
execute SA_LABEL_ADMIN.CREATE_LABEL('DARS_RESOURCES',
3000, 'EMP::MGR');
execute SA_LABEL_ADMIN.CREATE_LABEL('DARS_RESOURCES',
3100, 'EMP::WKR1');
execute SA_LABEL_ADMIN.CREATE_LABEL('DARS_RESOURCES',
3200, 'EMP::WKR2');
execute SA_POLICY_ADMIN.APPLY_TABLE_POLICY
('DARS_RESOURCES', 'DARS', 'DATASET', 'HIDE, READ_CONTROL,
LABEL_DEFAULT', NULL, NULL);
--execute SA_POLICY_ADMIN.REMOVE_TABLE_POLICY
('DARS_RESOURCES', 'DARS', 'DATASET');
-- also occurs if given more than one label and then a default
label such as 'EMP::WKR1 ,WKR2', 'EMP::WKR1');
execute SA_USER_ADMIN.SET_USER_LABELS
('DARS_RESOURCES', 'SHAWN', 'EMP::WKR1');
execute SA_USER_ADMIN.SET_USER_LABELS
('DARS_RESOURCES', 'DARS', 'EMP::MGR');
connect shawn/shawn@dars;
insert into dars.dataset values (MDSYS.SDO_GEOMETRY(2003,
NULL, NULL, MDSYS.SDO_ELEM_INFO_ARRAY(1,1003,3),
MDSYS.SDO_ORDINATE_ARRAY(33.422, -113.4822, 33.5601, -
113.2995) ), dars.DATASET_INTERNALIDENTIFIER_SEQ.nextval );
commit;
select count(*) from dars.dataset;
connect dars/dars@dars;
insert into dars.dataset values (MDSYS.SDO_GEOMETRY(2003,
NULL, NULL, MDSYS.SDO_ELEM_INFO_ARRAY(1,1003,3),
MDSYS.SDO_ORDINATE_ARRAY(33.422, -113.4822, 33.5601, -
113.2995) ), dars.DATASET_INTERNALIDENTIFIER_SEQ.nextval );
commit;
select count(*) from dars.dataset;
prompt first execute as user dars
connect dars/dars@dars
-- causes a bug, first hint is label access control and rtree
screwing up??
select internalidentifier from dars.dataset where
mdsys.sdo_relate(coverage,
     mdsys.SDO_GEOMETRY(2003, NULL, NULL,
mdsys.SDO_ELEM_INFO_ARRAY(1, 1003, 3),
     mdsys.SDO_ORDINATE_ARRAY(33, -114, 34, -112)),
     'mask = INSIDE querytype = WINDOW')= 'TRUE' order by
internalidentifier;
connect dars/dars@dars
-- does not cause same problem because we are not using the
index
select internalidentifier from dars.dataset where
sdo_geom.relate( coverage, 'INSIDE',
     mdsys.SDO_GEOMETRY(2003, NULL, NULL,
mdsys.SDO_ELEM_INFO_ARRAY(1, 1003, 3),
     mdsys.SDO_ORDINATE_ARRAY(33, -114, 34, -112)),
.005 ) = 'INSIDE';
prompt first execute as user shawn
connect shawn/shawn@dars
-- causes a bug, first hint is label access control and rtree
screwing up??
-- ERROR at line 1:
-- ORA-03113: end-of-file on communication channel
-- if q-tree is being used:
select internalidentifier from dars.dataset where
mdsys.sdo_relate(coverage,
     mdsys.SDO_GEOMETRY(2003, NULL, NULL,
mdsys.SDO_ELEM_INFO_ARRAY(1, 1003, 3),
     mdsys.SDO_ORDINATE_ARRAY(33, -114, 34, -112)),
     'mask = INSIDE querytype = WINDOW')= 'TRUE' order by
internalidentifier;
connect shawn/shawn@dars
-- does not cause same problem because we are not using the
index
select internalidentifier from dars.dataset where
sdo_geom.relate( coverage, 'INSIDE',
     mdsys.SDO_GEOMETRY(2003, NULL, NULL,
mdsys.SDO_ELEM_INFO_ARRAY(1, 1003, 3),
     mdsys.SDO_ORDINATE_ARRAY(33, -114, 34, -112)),
.005 ) = 'INSIDE';
connect dars/dars@dars
prompt break the index at this point
-- causes the index to be broken:
-- ERROR at line 1:
-- ORA-29858: error occurred in the execution of ODCIINDEXALTER
routine
-- ORA-29400: data cartridge error
-- ORA-01031: insufficient privileges
-- ORA-13249: internal error in Spatial index: [mdidxrbd]
-- ORA-13249: Error in Spatial index: index build failed
-- ORA-13249: Stmt-Execute Failure: SELECT count(*) from
DARS.DATASET
-- ORA-29400: data cartridge error
-- ORA-01031: insufficient privileges
-- ORA-06512: at "MDSYS.SDO_INDEX_METHOD_9I", line 232
-- ORA-06512: at line 1
alter index dars.dataset_spatial_idx rebuild;

Here is the last entry in the darsCORE.LOG file:
Oracle9i Enterprise Edition Release 9.0.1.1.1 - Production
Process Id: 0x000002e4 Thread Id : 0x00000674 Time : Mon Dec
17 06:27:19
Excp. Code: 0xc0000005 Excp. Type: ACCESS_VIO Flags:
0x00000000
------------------- Memory Map of process ----------------
Start Addr-End Addr Type Size ModuleName
0x00400000-0x01b5cfff Image 0024498176 C:\ORACLE\ORA90
\BIN\ORACLE.EXE
0x05790000-0x05882fff Image 0000995328 C:\ORACLE\ORA90
\JAVAVM\ADMIN\ORAJOX9ORACLE_AURORA_RDBMS.DLL
0x05890000-0x05978fff Image 0000954368 C:\ORACLE\ORA90
\JAVAVM\ADMIN\ORAJOX9JAVA_LANG.DLL
0x05980000-0x05b59fff Image 0001941504 C:\ORACLE\ORA90
\JAVAVM\ADMIN\ORAJOX9JAVA_UTIL.DLL
0x05b60000-0x05bb4fff Image 0000348160 C:\ORACLE\ORA90
\JAVAVM\ADMIN\ORAJOX9ORACLE_AURORA_VM.DLL
0x05bc0000-0x05c6ffff Image 0000720896 C:\ORACLE\ORA90
\JAVAVM\ADMIN\ORAJOX9JAVA_SECURITY.DLL
0x05c70000-0x05c83fff Image 0000081920 C:\ORACLE\ORA90
\JAVAVM\ADMIN\ORAJOX9JAVA_LANG_REFLECT.DLL
0x05c90000-0x06035fff Image 0003825664 C:\ORACLE\ORA90
\JAVAVM\ADMIN\ORAJOX9ORACLE_GSS_UTIL.DLL
0x06040000-0x0619cfff Image 0001429504 C:\ORACLE\ORA90
\JAVAVM\ADMIN\ORAJOX9JAVA_IO.DLL
0x061a0000-0x066bdfff Image 0005365760 C:\ORACLE\ORA90
\JAVAVM\ADMIN\ORAJOX9SUN_IO.DLL
0x066c0000-0x066d4fff Image 0000086016 C:\ORACLE\ORA90
\JAVAVM\ADMIN\ORAJOX9JAVA_LANG_REF.DLL
0x066e0000-0x066e6fff Image 0000028672 C:\ORACLE\ORA90
\JAVAVM\ADMIN\ORAJOX9SUN_SECURITY_ACTION.DLL
0x06700000-0x0670afff Image 0000045056 C:\ORACLE\ORA90
\JAVAVM\ADMIN\ORAJOX9ORACLE_AURORA_MEMORYMANAGER.DLL
0x06710000-0x067b0fff Image 0000659456 C:\ORACLE\ORA90
\JAVAVM\ADMIN\ORAJOX9SUN_MISC.DLL
0x067c0000-0x06a47fff Image 0002654208 C:\ORACLE\ORA90
\JAVAVM\ADMIN\ORAJOX9ORACLE_SQL.DLL
0x06a50000-0x06a87fff Image 0000229376 C:\ORACLE\ORA90
\JAVAVM\ADMIN\ORAJOX9JAVA_SQL.DLL
0x06a90000-0x06b70fff Image 0000921600 C:\ORACLE\ORA90
\JAVAVM\ADMIN\ORAJOX9SUN_SECURITY_PROVIDER.DLL
0x06b80000-0x06d72fff Image 0002043904 C:\ORACLE\ORA90
\JAVAVM\ADMIN\ORAJOX9ORACLE_JDBC_DRIVER.DLL
0x06d80000-0x06d89fff Image 0000040960 C:\ORACLE\ORA90
\BIN\COREJAVA.DLL
0x06d90000-0x06da1fff Image 0000073728 C:\ORACLE\ORA90
\JAVAVM\ADMIN\ORAJOX9JAVA_MATH.DLL
0x06db0000-0x06e3ffff Image 0000589824 C:\ORACLE\ORA90
\JAVAVM\ADMIN\ORAJOX9ORACLE_AURORA_RDBMS_SECURITY.DLL
0x06e40000-0x06e54fff Image 0000086016 C:\ORACLE\ORA90
\JAVAVM\ADMIN\ORAJOX9ORACLE_AURORA_REALM.DLL
0x06e60000-0x06ea0fff Image 0000266240 C:\ORACLE\ORA90
\JAVAVM\ADMIN\ORAJOX9ORACLE_JDBC_KPRB.DLL
0x06eb0000-0x06f13fff Image 0000409600 C:\ORACLE\ORA90
\JAVAVM\ADMIN\ORAJOX9ORACLE_JDBC_DBACCESS.DLL
0x070d0000-0x0712bfff Image 0000376832 C:\ORACLE\ORA90
\JAVAVM\ADMIN\ORAJOX9ORACLE_AURORA_NET.DLL
0x07150000-0x071e7fff Image 0000622592 C:\ORACLE\ORA90
\JAVAVM\ADMIN\ORAJOX9JAVA_NET.DLL
0x07200000-0x07204fff Image 0000020480 C:\ORACLE\ORA90
\JAVAVM\ADMIN\ORAJOX9ORACLE_AURORA_SECURITY.DLL
0x07240000-0x07245fff Image 0000024576 C:\ORACLE\ORA90
\JAVAVM\ADMIN\ORAJOX9JAVA_SECURITY_ACL.DLL
0x07280000-0x072acfff Image 0000184320 C:\ORACLE\ORA90
\JAVAVM\ADMIN\ORAJOX9JAVAX_NAMING_DIRECTORY.DLL
0x072c0000-0x07316fff Image 0000356352 C:\ORACLE\ORA90
\JAVAVM\ADMIN\ORAJOX9JAVAX_NAMING.DLL
0x07320000-0x07498fff Image 0001544192 C:\ORACLE\ORA90
\JAVAVM\ADMIN\ORAJOX9ORACLE_AURORA_UTIL.DLL
0x074b0000-0x074d5fff Image 0000155648 C:\ORACLE\ORA90
\JAVAVM\ADMIN\ORAJOX9COM_SUN_NAMING_INTERNAL.DLL
0x074e0000-0x07557fff Image 0000491520 C:\ORACLE\ORA90
\JAVAVM\ADMIN\ORAJOX9SUN_SECURITY_UTIL.DLL
0x07560000-0x07576fff Image 0000094208 C:\ORACLE\ORA90
\JAVAVM\ADMIN\ORAJOX9ORACLE_AURORA_RDBMS_URL_JSERVER.DLL
0x07580000-0x075acfff Image 0000184320 C:\ORACLE\ORA90
\JAVAVM\ADMIN\ORAJOX9JAVAX_NAMING_SPI.DLL
0x07a90000-0x07be1fff Image 0001384448 C:\ORACLE\ORA90
\JAVAVM\ADMIN\ORAJOX9JAVA_TEXT.DLL
0x08140000-0x081a1fff Image 0000401408 C:\ORACLE\ORA90
\JAVAVM\ADMIN\ORAJOX9SQLJ_RUNTIME_REF.DLL
0x081d0000-0x081fffff Image 0000196608 C:\ORACLE\ORA90
\JAVAVM\ADMIN\ORAJOX9SQLJ_RUNTIME.DLL
0x08200000-0x08206fff Image 0000028672 C:\ORACLE\ORA90
\JAVAVM\ADMIN\ORAJOX9SQLJ_FRAMEWORK_IDE_AURORA_RDBMS.DLL
0x08210000-0x08244fff Image 0000217088 C:\ORACLE\ORA90
\JAVAVM\ADMIN\ORAJOX9ORACLE_JDBC.DLL
0x08250000-0x08255fff Image 0000024576 C:\ORACLE\ORA90
\JAVAVM\ADMIN\ORAJOX9ORACLE_JDBC_INTERNAL.DLL
0x10000000-0x1028efff Image 0002682880 C:\ORACLE\ORA90
\BIN\ORAJOX9.DLL
0x60000000-0x60031fff Image 0000204800 C:\ORACLE\ORA90
\BIN\ORAWWG9.DLL
0x60300000-0x60492fff Image 0001650688 C:\ORACLE\ORA90
\BIN\ORAGENERIC9.DLL
0x60500000-0x6057dfff Image 0000516096 C:\ORACLE\ORA90
\BIN\ORACOMMON9.DLL
0x60600000-0x60753fff Image 0001392640 C:\ORACLE\ORA90
\BIN\ORACLIENT9.DLL
0x60800000-0x60805fff Image 0000024576 C:\ORACLE\ORA90
\BIN\ORAVSN9.DLL
0x60810000-0x60815fff Image 0000024576 C:\ORACLE\ORA90
\BIN\ORAWTC9.DLL
0x60820000-0x60825fff Image 0000024576 C:\ORACLE\ORA90
\BIN\ORAODM9.DLL
0x60a00000-0x60c03fff Image 0002113536 C:\ORACLE\ORA90
\BIN\ORAPLS9.DLL
0x60e00000-0x60ed8fff Image 0000888832 C:\ORACLE\ORA90
\BIN\ORAPLP9.DLL
0x610a0000-0x61136fff Image 0000618496 C:\ORACLE\ORA90
\BIN\ORACORE9.DLL
0x612a0000-0x61307fff Image 0000425984 C:\ORACLE\ORA90
\BIN\ORANLS9.DLL
0x61350000-0x6135ffff Image 0000065536 C:\ORACLE\ORA90
\BIN\ORASNLS9.DLL
0x613a0000-0x613aefff Image 0000061440 C:\ORACLE\ORA90
\BIN\ORAUNLS9.DLL
0x61400000-0x6142bfff Image 0000180224 C:\ORACLE\ORA90
\BIN\ORANL9.DLL
0x61480000-0x61538fff Image 0000757760 C:\ORACLE\ORA90
\BIN\ORAN9.DLL
0x615a0000-0x61627fff Image 0000557056 C:\ORACLE\ORA90
\BIN\ORANNZSBB9.DLL
0x616a0000-0x616a5fff Image 0000024576 C:\ORACLE\ORA90
\BIN\ORANCDS9.DLL
0x616b0000-0x616c2fff Image 0000077824 C:\ORACLE\ORA90
\BIN\ORANCRYPT9.DLL
0x61730000-0x61766fff Image 0000225280 C:\ORACLE\ORA90
\BIN\ORANRO9.DLL
0x617c0000-0x617c5fff Image 0000024576 C:\ORACLE\ORA90
\BIN\ORANHOST9.DLL
0x617d0000-0x617d5fff Image 0000024576 C:\ORACLE\ORA90
\BIN\ORANONAME9.DLL
0x61820000-0x61825fff Image 0000024576 C:\ORACLE\ORA90
\BIN\ORANTNS9.DLL
0x61850000-0x61857fff Image 0000032768 C:\ORACLE\ORA90
\BIN\ORANBEQ9.DLL
0x61890000-0x6189dfff Image 0000057344 C:\ORACLE\ORA90
\BIN\ORANNTS9.DLL
0x61910000-0x6191bfff Image 0000049152 C:\ORACLE\ORA90
\BIN\ORANTCP9.DLL
0x61960000-0x6196efff Image 0000061440 C:\ORACLE\ORA90
\BIN\ORANLDAP9.DLL
0x61af0000-0x61af9fff Image 0000040960 C:\ORACLE\ORA90
\BIN\ORANSGR9.DLL
0x62000000-0x62020fff Image 0000135168 C:\ORACLE\ORA90
\BIN\ORALDAPCLNT9.DLL
0x62300000-0x6233ffff Image 0000262144 C:\ORACLE\ORA90
\BIN\ORATRACE9.DLL
0x62500000-0x62506fff Image 0000028672 C:\ORACLE\ORA90
\BIN\ORASLAX9.DLL
0x62600000-0x62673fff Image 0000475136 C:\ORACLE\ORA90
\BIN\ORASQL9.DLL
0x62fc0000-0x63040fff Image 0000528384 C:\ORACLE\ORA90
\BIN\ORAXML9.DLL
0x64000000-0x64006fff Image 0000028672 C:\ORACLE\ORA90
\BIN\ORANMS.DLL
0x64020000-0x6402ffff Image 0000065536 C:\ORACLE\ORA90
\BIN\ORANMSP.DLL
0x74fd0000-0x74fe0fff Image 0000069632 C:\WINDOWS\SYSTEM32
\MSAFD.DLL
0x75010000-0x75016fff Image 0000028672 C:\WINDOWS\SYSTEM32
\WSHTCPIP.DLL
0x75020000-0x75027fff Image 0000032768 C:\WINDOWS\SYSTEM32
\WS2HELP.DLL
0x75030000-0x75043fff Image 0000081920 C:\WINDOWS\SYSTEM32
\WS2_32.DLL
0x75050000-0x75057fff Image 0000032768 C:\WINDOWS\SYSTEM32
\WSOCK32.DLL
0x75150000-0x7515efff Image 0000061440 C:\WINDOWS\SYSTEM32
\SAMLIB.DLL
0x75170000-0x751befff Image 0000323584 C:\WINDOWS\SYSTEM32
\NETAPI32.DLL
0x751c0000-0x751c5fff Image 0000024576 C:\WINDOWS\SYSTEM32
\NETRAP.DLL
0x75500000-0x75503fff Image 0000016384 C:\WINDOWS\SYSTEM32
\SECURITY.DLL
0x77570000-0x7759ffff Image 0000196608 C:\WINDOWS\SYSTEM32
\WINMM.DLL
0x777e0000-0x777e7fff Image 0000032768 C:\WINDOWS\SYSTEM32
\WINRNR.DLL
0x777f0000-0x777f4fff Image 0000020480 C:\WINDOWS\SYSTEM32
\RASADHLP.DLL
0x77830000-0x7783dfff Image 0000057344 C:\WINDOWS\SYSTEM32
\RTUTILS.DLL
0x77840000-0x7784bfff Image 0000049152 C:\WINDOWS\SYSTEM32
\RNR20.DLL
0x77950000-0x77978fff Image 0000167936 C:\WINDOWS\SYSTEM32
\WLDAP32.DLL
0x77980000-0x779a3fff Image 0000147456 C:\WINDOWS\SYSTEM32
\DNSAPI.DLL
0x779b0000-0x77a44fff Image 0000610304 C:\WINDOWS\SYSTEM32
\OLEAUT32.DLL
0x77a50000-0x77b44fff Image 0001003520 C:\WINDOWS\SYSTEM32
\OLE32.DLL
0x77be0000-0x77beefff Image 0000061440 C:\WINDOWS\SYSTEM32
\SECUR32.DLL
0x77d40000-0x77daefff Image 0000454656 C:\WINDOWS\SYSTEM32
\RPCRT4.DLL
0x77db0000-0x77e09fff Image 0000368640 C:\WINDOWS\SYSTEM32
\ADVAPI32.DLL
0x77e10000-0x77e74fff Image 0000413696 C:\WINDOWS\SYSTEM32
\USER32.DLL
0x77e80000-0x77f35fff Image 0000745472 C:\WINDOWS\SYSTEM32
\KERNEL32.DLL
0x77f40000-0x77f7bfff Image 0000245760 C:\WINDOWS\SYSTEM32
\GDI32.DLL
0x77f80000-0x77ff8fff Image 0000495616 C:\WINDOWS\SYSTEM32
\NTDLL.DLL
0x78000000-0x78045fff Image 0000286720 C:\WINDOWS\SYSTEM32
\MSVCRT.DLL
0x780a0000-0x780b1fff Image 0000073728 C:\WINDOWS\SYSTEM32
\MSVCIRT.DLL
0x78140000-0x78159fff Image 0000106496 C:\WINDOWS\SYSTEM32
\MSV1_0.DLL
------------------- End of memory map --------------------
------------------- Registers ----------------------------
eip = 012362cf esp = 097fb024 ebp = 097fbc00 edi = 0996a910 esi
= 0996c258
eax = 00000000 ebx = 098bca34 ecx = 098b3d44 edx = 098b3d44
ecs = 0000001b eds = 00000023 ees = 00000023 ess = 00000023
egs = 00000000 efs = 0000003b
eflags = 00210206
------------------- End of Registers ---------------------
------------------- Instruction Disassembly --------------
------------------- End of Disassembly -------------------
------------------- Call Stack Trace ---------------------
Frameptr RetAddr Param#1 Param#2 Param#3 Param#4 Function
Name
0x097fbc00 011dc4f0 098b3d44 098bc990 098bca34 0996a910
_mdqtgmadt+16f     
0x097fbc40 011ed2eb 098b3d44 098bc990 098bca34 098fccb0
_mdidxrel+c0       
0x097fbc94 011ee035 0996a810 09980ad0 09890f44 097fbd4c
_mdrtrel+1cb       
0x097fbd50 011ec071 00000000 000007d0 0996bc00 097fbfdc
_mdrtpq+7d5        
0x097fbfe8 011e5824 098fccb0 098b3d44 098bc990 098bca34
_mdrtft+f1         
0x097fc0fc 00e90c29 098fccb0 09979774 09979730 7a2bb7b8
_mdidxf+254        
0x097fc1d8 00646246 792691b4 097fc534 79269296 79269290
_qeroifcf+1b9      
0x097fc4a8 00e91417 7adb9634 00000179 097fc530 00000002
_rpiswu2+226       
0x097fc568 00e8f846 79269290 00e90a70 792691b4 0990cd30
_qeroifcsu+a7      
0x097fd9a4 010edd17 792691b4 00000000 097fdd24 00000001
_qeroiFetch+1b6    
0x097fdd10 010f99ac 792690dc 010fa040 7926908c 00007fff
_qertbFetchByRowID+5
0x097fdd44 00fc0202 7926908c 00fa6320 097fdf04 00000001
_qersoFetch+9c     
0x097fdf68 00fc5d03 00000089 00000005 097fdfc0 00000001
_opifch2+10d2      
0x097fe15c 00ede1cb 0000005e 00000022 097fe1a4 00000000
_opiall0+d03       
0x097fe2b4 00648369 0000005e 00000014 017ff6fc 00e5a8fc
_kpoal8+58b        
0x097fe424 605352c6 0000005e 00000014 097ff6fc 00000000
_opiodr+549        
0x097fe894 0064974a 01207104 0000005e 097ff6fc 00000000
_ttcpip+1066       
0x097ff874 00b6c934 00000000 00000000 014e76d0 0000003c
_opitsk+74a        
0x097ff958 00648369 0000003c 00000004 097ffbd8 00207104
_opiino+554        
0x097ffac8 004156cb 0000003c 00000004 097ffbd8 00000000
_opiodr+549        
0x097ffb58 0040920e 0000003c 00000004 097ffbd8 00000000
_opidrv+24b        
0x097ffb70 00401120 097ffbf4 0000003c 00000004 097ffbd8
_sou2o+1e          
0x097ffc08 00401c34 00000002 097ffe74 010373f4 77d4a1bb
_opimai+120        
0x097fffb4 77e92ca8 01037d94 010373f4 77d4a1bb 01037d94
_OracleThreadStart@4
0x097fffec 00000000 004018d0 01037d94 00000000 00000000
0x77e92ca8
------------------- End of Stack Trace -------------------
------------------- Raw Stack Dump -----------------------
Address Dump of bytes
0x097fb024 c9 a3 6e 01 d3 a8 96 09 - 10 a8 96 09 53 45 4c
45 ..n.........SELE
0x097fb034 43 54 20 61 2e 22 43 4f - 56 45 52 41 47 45 22 20 CT
a."COVERAGE"
0x097fb044 46 52 4f 4d 20 44 41 52 - 53 2e 44 41 54 41 53 45
FROM DARS.DATASE
0x097fb054 54 20 61 20 77 68 65 72 - 65 20 61 2e 72 6f 77 69 T a
where a.rowi
0x097fb064 64 3d 3a 72 69 64 20 00 - a8 2f 20 00 70 2e 20 00
d=:rid ../ .p. .
0x097fb074 00 00 00 00 b0 b0 7f 09 - 46 ac 37 60 a8 2f 20
00 ........F.7`./ .
0x097fb084 00 00 00 00 00 20 00 00 - 28 10 00 00 3c 21 00
00 ..... ..(...<!..
0x097fb094 00 00 00 00 00 00 00 00 - 70 2e 20 00 00 00 00
00 ........p. .....
0x097fb0a4 0c 00 00 00 a8 2f 20 00 - 1c b1 7f 09 e1 9e 37
60 ...../ .......7`
0x097fb0b4 a8 2f 20 00 70 2e 20 00 - 9c 91 96 09 01 00 00
00 ./ .p. .........
0x097fb0c4 14 10 00 00 00 20 00 00 - 80 63 8d 09 7c 63 8d
09 ..... ...c..|c..
0x097fb0d4 58 63 8d 09 ff 2f 07 00 - 00 00 00 00 74 7b 38 60
Xc.../......t{8`
0x097fb0e4 00 00 00 00 00 00 00 00 - 01 00 00 00 00 00 00
00 ................
0x097fb0f4 00 00 00 00 58 63 8d 09 - a4 91 96 09 9c 91 96
09 ....Xc..........
0x097fb104 01 00 00 00 d8 80 37 60 - 58 63 8d 09 00 00 00
00 ......7`Xc......
0x097fb114 a4 91 96 09 0c 10 00 00 - 00 00 00 00 58 63 8d
09 ............Xc..
0x097fb124 9c 91 96 09 00 00 00 00 - 01 00 00 00 0c 10 00
00 ................
0x097fb134 00 00 00 00 4e a8 37 60 - a8 2f 20 00 00 00 00
00 ....N.7`./ .....
0x097fb144 00 00 00 00 0c 10 00 00 - 0c 10 00 00 58 63 8d
09 ............Xc..
0x097fb154 00 00 00 00 94 b1 7f 09 - a0 be 37 60 00 00 00
00 ..........7`....
0x097fb164 ff ff ff ff 00 00 00 00 - 24 8c 8b 09 14 10 00
00 ........$.......
0x097fb174 44 3d 8b 09 48 a8 96 09 - 00 10 00 00 48 63 8d 09
D=..H.......Hc..
0x097fb184 9c 63 8d 09 00 10 00 00 - d8 63 8d 09 00 00 00
00 .c.......c......
0x097fb194 bc b1 7f 09 5e 92 38 60 - a8 2f 20 00 58 63 8d
09 ....^.8`./ .Xc..
0x097fb1a4 0c 10 00 00 00 00 00 00 - a8 2f 20 00 02 00 00
00 ........./ .....
0x097fb1b4 01 00 00 00 01 00 00 00 - e4 9d 96 09 d8 11 8b
09 ................
0x097fb1c4 01 b2 7f 09 00 02 8c 09 - 90 c9 8b 09 bc 93 8d
09 ................
0x097fb1d4 3c 00 00 00 01 00 00 00 - d8 11 8b 09 a8 2f 20 00
<............/ .
0x097fb1e4 3c 00 00 00 7c 60 90 09 - 3c 00 00 00 14 b2 7f 09
<...|`..<.......
0x097fb1f4 d3 bc 3d 60 02 00 00 00 - 48 63 8d 09 49 4e 53
49 ..=`....Hc..INSI
0x097fb204 44 45 00 00 48 63 8d 09 - 38 b2 7f 09 74 7b 38 60
DE..Hc..8...t{8`
0x097fb214 a8 2f 20 00 08 00 00 00 - e0 9e 96 09 f4 63 8d
09 ./ ..........c..
0x097fb224 d8 11 8b 09 7c 60 90 09 - 3c 00 00 00 c0 69 45
60 ....|`..<....iE`
0x097fb234 d8 11 8b 09 7c 60 90 09 - 3c 00 00 00 64 b2 7f
09 ....|`..<...d...
0x097fb244 d3 bc 3d 60 a8 2f 20 00 - 48 63 8d 09 ec 9e 96
09 ..=`./ .Hc......
0x097fb254 a8 2f 20 00 3f 00 00 00 - 40 a1 96 09 64 d2 8a
09 ./ [email protected]...
0x097fb264 e8 b2 7f 09 6b bb 3d 60 - a8 2f 20 00 ec 9e 96
09 ....k.=`./ .....
0x097fb274 3c 00 00 00 00 00 00 00 - d0 50 47 60 00 00 00 00
<........PG`....
0x097fb284 00 00 00 00 a8 2f 20 00 - a8 2f 20 00 3c 00 00
00 ...../ ../ .<...
0x097fb294 44 d1 8a 09 70 2e 20 00 - d8 11 8b 09 18 b3 7f 09
D...p. .........
0x097fb2a4 89 85 3d 60 a8 2f 20 00 - ec 12 8b 09 3c 00 00
00 ..=`./ .....<...
0x097fb2b4 01 00 00 00 d8 11 8b 09 - a8 2f 20 00 3c 00 00
00 ........./ .<...
0x097fb2c4 dc b2 7f 09 88 79 3e 60 - fc 10 8b 09 88 b2 7f
09 .....y>`........
0x097fb2d4 9c de 95 09 88 c2 7f 09 - fb ff ff ff 40 00 00
00 ............@...
0x097fb2e4 48 63 8d 09 14 b3 7f 09 - 74 7b 38 60 a8 2f 20 00
Hc......t{8`./ .
0x097fb2f4 04 00 00 00 d0 9d 96 09 - f4 63 8d 09 d8 11 8b
09 .........c......
0x097fb304 7c 60 90 09 3c 00 00 00 - c0 69 45 60 d8 11 8b 09
|`..<....iE`....
0x097fb314 7c 60 90 09 3c 00 00 00 - 40 b3 7f 09 d3 bc 3d 60
|`..<...@.....=`
0x097fb324 a8 2f 20 00 48 63 8d 09 - dc 9d 96 09 a8 2f 20
00 ./ .Hc......./ .
0x097fb334 c0 39 8b 09 0c 8a 8b 09 - 64 d2 8a 09 c4 b3 7f
09 .9......d.......
0x097fb344 6b bb 3d 60 a8 2f 20 00 - dc 9d 96 09 3c 00 00 00
k.=`./ .....<...
0x097fb354 00 00 00 00 7c f4 bd 60 - 00 00 00 00 00 00 00
00 ....|..`........
0x097fb364 24 bb 7f 09 c0 39 8b 09 - 0c 8a 8b 09 96 ef d6 34
$....9.........4
0x097fb374 9c 19 8b 09 44 d1 8a 09 - 0c 00 00 00 9c 19 8b
09 ....D...........
0x097fb384 9c 19 8b 09 b0 b3 7f 09 - 84 08 3d 60 a8 2f 20
00 ..........=`./ .
0x097fb394 8c 0b 8b 09 0c 00 00 00 - a8 2f 20 00 0c 00 00
00 ........./ .....
0x097fb3a4 40 89 92 09 fc 10 8b 09 - 64 b3 7f 09 a4 9d 8a 09
@.......d.......
0x097fb3b4 bc b7 7f 09 c0 69 45 60 - 88 86 45 60 ff ff ff
ff .....iE`..E`....
0x097fb3c4 f0 b3 7f 09 1f f4 ac 60 - a8 2f 20 00 2c 00 00
00 .......`./ .,...
0x097fb3d4 3c 00 00 00 00 00 00 00 - 7c f4 bd 60 00 00 00 00
<.......|..`....
0x097fb3e4 00 00 00 00 3c 00 00 00 - 24 8c 8b 09 60 04 00
00 ....<...$...`...
0x097fb3f4 11 00 00 00 00 00 00 00 - 4c b4 7f 09 4f 6a ad
60 ........L...Oj.`
0x097fb404 24 bb 7f 09 a0 ba 7f 09 - 68 b9 7f 09 00 00 00 00
$.......h.......
0x097fb414 00 00 00 00 a8 2f 20 00 - a8 2f 20 00 3f 00 00
00 ...../ ../ .?...
0x097fb424 44 d1 8a 09 70 2e 20 00 - d8 11 8b 09 a8 b4 7f 09
D...p. .........
0x097fb434 89 85 3d 60 a8 2f 20 00 - ec 12 8b 09 3f 00 00
00 ..=`./ .....?...
0x097fb444 01 00 00 00 d8 11 8b 09 - a8 2f 20 00 3f 00 00
00 ........./ .?...
0x097fb454 24 bb 7f 09 a0 ba 7f 09 - 68 b9 7f 09 80 8b 8b 09
$.......h.......
0x097fb464 ec 8a 8b 09 00 00 00 00 - 7f ff ff ff 90 00 00
00 ................
0x097fb474 04 ed 95 09 a0 b4 7f 09 - a0 b4 7f 09 fc eb 23
01 ..............#.
0x097fb484 ac b8 7f 09 03 00 00 00 - ac b8 7f 09 ac b8 7f
09 ................
0x097fb494 00 00 00 00 20 a4 96 09 - 00 00 00 00 cc b4 7f
09 .... ...........
0x097fb4a4 39 ec 23 01 60 a4 96 09 - 02 00 00 00 03 00 00 00
9.#.`...........
0x097fb4b4 00 00 00 00 00 00 00 00 - 00 00 41 40 7c b6 7f
09 ..........A@|...
0x097fb4c4 ac b8 7f 09 ac b8 7f 09 - 58 b5 7f 09 44 e4 23
01 ........X...D.#.
0x097fb4d4 04 00 00 00 02 00 00 00 - 03 00 00 00 00 00 00
00 ................
0x097fb4e4 00 00 41 40 00 00 00 00 - f8 b4 7f 09 28 b7 7f
09 ..A@........(...
0x097fb4f4 01 00 00 00 00 00 00 00 - 00 00 41 40 00 00 00
00 ..........A@....
0x097fb504 00 00 5c c0 00 00 00 00 - 00 00 00 00 00 00 00
00 ..\.............
0x097fb514 00 00 00 00 00 00 00 00 - 00 e0 40 40 00 00 00
00 ..........@@....
------------------- End of Raw Stack Dump ----------------

Similar Messages

  • Customizing the titles and labels in the page OIM

    Hi guys,
    I localised a Oracle documentation, to customize the titles and labels in the page of OIM 11.
    Exist the files of translation, localised in "xlWebApp\WEB-INF\classes\xlWebAdmin_LOCALE.properties" in here I edited and customized but the alteration not apply in the page of OIM. Someone know if exist somehow for this alteration apply in the page?
    Bellow is the link to documentation:
    http://docs.oracle.com/cd/E14571_01/doc.1111/e14309/uicust.htm#BABGEGGD
    In the item 25.3.3.1
    Thanks

    Hi,
    I had done some labels change in Advanced & Self Service console of OIM using OIMUI.jar. Now, i need to change the labels in Administration console. If I search for a user and select the user here, I can see whatever his Resources,Roles, Proxies etc he is having. Now, I need to change the label of Roles with some other name. Along with it, the headers in the Roles table like Display Name,Role Name, Description,Role Namespace etc. should also be changed. But I am unable to find the exact properties file in OIMUI or am I looking at the correct jar to do these changes in Oracle Identity Manager - Delegated Administration console.
    Please let me know.
    Thanks in advance

  • Oracle Spatial and Oracle Forms

    Hi,
    Does anyone have experience with Oracle Spatial and Oracle Forms?
    I have generated a form, which is based on a view. The view uses the mdsys.sdo_relate operator. Somehow I am unable to get the form to perform (to get one record it takes over 20 minutes). While useing sql-navigator to process the same statement it seems no problem. The query that also uses the view, is then processed in 10 seconds.
    I also noticed that when text-functions like ' lower' of ' upper' are used to query the view, the query is processed within 15 seconds. If I don't use ' lower' or ' upper' it takes a long time (> 20 minutes) to process the query. Is it possible that this causes the bad performance of the form?
    On metalink I have found that forms and spatial do not cooperate because of the pl/sql version that
    forms6 uses. There is no solution presented, does anyone know of a work around?
    My configuration is:
    Oracle 8.1.7 on WIN2K @ PIII-800Mhz 256 Mb memory.
    Formsbuilder 6
    If requested I can post the queries that I have made.
    With regards,
    Gerjan Walrecht
    [email protected]
    null

    Hello Priya,
    Look into the following.
    1. Book - Pro Oracle Spatial for Oracle Database 11g by r. Kothuri, A. Godfrind, E. Beinat. This book provides a nice introduction on Oracle Spatial concepts and have examples.
    2. Look at the Oracle Spatial & Graph User Guide
    2. Book - Applying and Extending Oracle Spatial by S. Greener and S. Ravada. This book provides hands on information for advanced oracle spatial application developers. Practical guide on hands-on examples, Data models and  develop cross-vendor database solutions.
    3. This oracle spatial forum, once you understand these concepts.
    In the future consider Certification on Oracle Spatial 11g Certified Implementation Specialist.
    Best
    Navaneet

  • Oracle Enterprise Manager Agent deployment (Installation and Configuration) Error

    Hello,
    I am trying to create an agent on a linux server using Oracle Enterprise Manager 12.1.0.3. The user is created with root privilege on the server, by change /etc/sudoers entry username the same as the root entry. After that I tried to add host target by clicking Setup->Add Target->Add target Manually->Add Host Targets in the Oracle Enterprise Manager.
    In the Add Target view: I clicked on add, then I entry host and platform information. After that I click next. Then I provided the Linux x86-64 : Installation Details for
    Installation Base Directory, Instance Directory, Name Credential ... then click next. then click Deploy Agent.
    In the Add Host Status view: stages Initialization and Remote Prerequisite Check successfully passed, but in the stage Agent Deployment, it failed in the Installation and Configuration phrase of the Agent Deployment stage.
    The log content is shown below. There are numerous SEVERE Errors. But I don't have much experience in dealing with these type of problems. I thank you in advance for all the helps.
    lf
    WARNING: Validation of XML schema is disabled because AggregateDescriptions.xsd could not be found
    INFO: Creating new CFM connection
    INFO: Creating a new logger for oracle.sysman.top.agent
    INFO: Unmarshalling /users/ncgf/em_agent/core/12.1.0.3.0/inventory/ContentsXML/ConfigXML/oracle.sysman.top.agent.12_1_0_3_0.xml
    INFO: Creating a new logger for OuiConfigVariables
    INFO: Unmarshalling /users/ncgf/em_agent/core/12.1.0.3.0/inventory/ContentsXML/ConfigXML/OuiConfigVariables.1_0_0_0_0.xml
    INFO: Aggregate Description oracle.sysman.top.agent:12.1.0.3.0:common successfully loaded
    INFO: Aggregate Description OuiConfigVariables:1.0.0.0.0:common successfully loaded
    INFO: Successfully returning from CfmFactory.connect()
    INFO: Cfm.save() was called
    INFO: Cfm.save(): 2 aggregate instances saved
    INFO: oracle.sysman.top.agent:IAction.perform() was called on {Action state:configuration in CfmAggregateInstance: oracle.sysman.top.agent:12.1.0.3.0:common:family=CFM:oh=/users/ncgf/em_agent/core/12.1.0.3.0:label=1}
    INFO: Framework waiting for Action to complete at 15:08:10.272
    INFO: CfwProgressMonitor:actionProgress:About to perform Action=configuration Status=is running with ActionStep=0 stepIndex=0 microStep=0
    WARNING: Skipping environment variable line: "}": oracle.sysman.emCfg.common.CfwException: A non-empty environment line must contain "=": }
    WARNING: Failed to read environment variable file /users/ncgf/em_agent/core/12.1.0.3.0/install/envVars.properties: java.io.FileNotFoundException: /users/ncgf/em_agent/core/12.1.0.3.0/install/envVars.properties (No such file or directory)
    INFO: oracle.sysman.top.agent:About to execute plug-in Agent Configuration Assistant
    INFO: oracle.sysman.top.agent:The plug-in Agent Configuration Assistant is running
    INFO: oracle.sysman.top.agent:Internal PlugIn Class: oracle.sysman.agent.config.AgentConfiguration
    INFO: oracle.sysman.top.agent:Classpath = /users/ncgf/em_agent/core/12.1.0.3.0/oui/jlib/srvm.jar:/users/ncgf/em_agent/core/12.1.0.3.0/jlib/agentConfig.jar:/users/ncgf/em_agent/core/12.1.0.3.0/jlib/emConfigInstall.jar:/users/ncgf/em_agent/core/12.1.0.3.0/sysman/jlib/emagentSDK.jar:/users/ncgf/em_agent/core/12.1.0.3.0/modules/oracle.http_client_11.1.1.jar:/users/ncgf/em_agent/core/12.1.0.3.0/sysman/jlib/log4j-core.jar
    INFO: oracle.sysman.top.agent:AgentConfiguration:agent configuration has been started
    INFO: oracle.sysman.top.agent:Parametes passed to agent configuration are:
    1.ORACLE_HOME=/users/ncgf/em_agent/core/12.1.0.3.0
    2.AGENT_PORT=3872
    3.ORACLE_HOSTNAME=nsn175-89.us.oracle.com
    4.b_doDiscovery=false
    5.AGENT_BASE_DIR=/users/ncgf/em_agent
    6.AGENT_INSTANCE_HOME=/users/ncgf/em_agent/agent_inst
    7.s_hostname=nsn175-89.us.oracle.com
    8.OMS_HOST=nsn175-105.us.oracle.com
    9.b_startAgent=false
    10.b_secureAgent=true
    11.b_chainedInstall=false
    12.b_forceConfigure=false
    13.EM_UPLOAD_PORT=4904
    14.b_forceAgentDefaultPort=false
    15.s_staticPorts=
    16.PROPERTIES_FILE=
    b_skipValidation=false
    INFO: oracle.sysman.top.agent:Validating OMS_HOST and EM_UPLOAD_PORT
    INFO: oracle.sysman.top.agent:Validating with http protocol ...
    INFO: oracle.sysman.top.agent:URL framed is:http://nsn175-105.us.oracle.com:4904/empbs/genwallet
    SEVERE: oracle.sysman.top.agent:Connection refusedUnexpected end of file from server
    INFO: oracle.sysman.top.agent:Validating with https protocol ...
    INFO: oracle.sysman.top.agent:URL framed is:https://nsn175-105.us.oracle.com:4904/empbs/genwallet
    SEVERE: oracle.sysman.top.agent:The EM_UPLOAD_PORT passed is a secure port. Hence AGENT_REGISTRATION_PASSWORD or s_encrSecurePwd should be passed
    INFO: oracle.sysman.top.agent:EM Protocol Switch determined: https
    INFO: oracle.sysman.top.agent:Performing free port detection..
    INFO: oracle.sysman.top.agent:Trying for host : nsn175-89/10.134.175.89 and port : 3872
    INFO: oracle.sysman.top.agent: Trying for host : /127.0.0.1 and port : 3872
    INFO: oracle.sysman.top.agent:** Agent Port Check completed successfully.**
    INFO: oracle.sysman.top.agent:Agent Port from User Passed Port3872
    INFO: oracle.sysman.top.agent:Paths after canonical format conversions are :
    1. state_dir=/users/ncgf/em_agent/agent_inst
    2. agentBaseDir=/users/ncgf/em_agent
    3. oraHome=/users/ncgf/em_agent/core/12.1.0.3.0
    INFO: oracle.sysman.top.agent:Parent directory of agent instance home:/users/ncgf/em_agent
    INFO: oracle.sysman.top.agent:AgentConfiguration:perform:AgentPortHandler for /users/ncgf/em_agent/core/12.1.0.3.0 and hosts=nsn175-89.us.oracle.com returned Port to Use=3872
    INFO: oracle.sysman.top.agent:Instantiating emctl.template file #DEFAULT_EMSTATE# with /users/ncgf/em_agent/agent_inst
    INFO: oracle.sysman.top.agent:Writing the following contents into /users/ncgf/em_agent/core/12.1.0.3.0/install/oragchomelist
    INFO: oracle.sysman.top.agent:/users/ncgf/em_agent/core/12.1.0.3.0:/users/ncgf/em_agent/agent_inst
    INFO: oracle.sysman.top.agent:Both /etc/oragchomelist and /var/opt/oracle/oragchomelist does not exist.
    INFO: oracle.sysman.top.agent:Executing emctl deploy agent command...
    INFO: oracle.sysman.top.agent:AgentConfiguration: Executing emctl deploy agent command...
    INFO: oracle.sysman.top.agent:Executing the command: /users/ncgf/em_agent/core/12.1.0.3.0/bin/emctl deploy agent -L -o nsn175-105.us.oracle.com:4904 -N /users/ncgf/em_agent/agent_inst nsn175-89.us.oracle.com:3872 nsn175-89.us.oracle.com
    INFO: oracle.sysman.top.agent:Creating shared install...
    INFO: oracle.sysman.top.agent:Source location: /users/ncgf/em_agent/core/12.1.0.3.0
    INFO: oracle.sysman.top.agent:Destination (shared install) : /users/ncgf/em_agent/agent_inst
    INFO: oracle.sysman.top.agent:Secure Mode: No
    INFO: oracle.sysman.top.agent:DeployMode : agent
    INFO: oracle.sysman.top.agent:
    INFO: oracle.sysman.top.agent:Creating directories...
    INFO: oracle.sysman.top.agent:Creating private.properties...
    INFO: oracle.sysman.top.agent:Creating blackouts.xml...
    INFO: oracle.sysman.top.agent:Creating targets.xml...
    INFO: oracle.sysman.top.agent:Creating emctl control program...
    INFO: oracle.sysman.top.agent:Creating emtgtctl control program...
    INFO: oracle.sysman.top.agent:Agent will not be secured.
    INFO: oracle.sysman.top.agent:Secure REPOSITORY_URL found. New agent should be configured for secure mode
    INFO: oracle.sysman.top.agent:Secure emdWalletSrcUrl found. New agent should be configured for secure mode
    INFO: oracle.sysman.top.agent:Oracle Enterprise Manager Cloud Control 12c Release 3
    INFO: oracle.sysman.top.agent:Copyright (c) 1996, 2013 Oracle Corporation.  All rights reserved.
    INFO: oracle.sysman.top.agent:Property 'agentTZRegion' is  missing from /users/ncgf/em_agent/agent_inst/sysman/config/emd.properties. Updating it...
    INFO: oracle.sysman.top.agent:An agentTZregion of 'US/Pacific' is installed in /users/ncgf/em_agent/agent_inst/sysman/config/emd.properties.
    INFO: oracle.sysman.top.agent:The command: /users/ncgf/em_agent/core/12.1.0.3.0/bin/emctl deploy agent -L -o nsn175-105.us.oracle.com:4904 -N /users/ncgf/em_agent/agent_inst nsn175-89.us.oracle.com:3872 nsn175-89.us.oracle.com completed with status=0
    SEVERE: oracle.sysman.top.agent:Securing of agent step will be skipped because of the following reasons:
    1. Agent Registration Password was not passed.
    2. b_secureAgent was passed as false
    3. The flag -forceConfigure was assed from agentDeploy.sh
    INFO: oracle.sysman.top.agent:Plugin File:/users/ncgf/em_agent/plugins.txt
    INFO: oracle.sysman.top.agent:Plugin Homes found.
    INFO: oracle.sysman.top.agent:Executing command :/users/ncgf/em_agent/core/12.1.0.3.0/perl/bin/perl /users/ncgf/em_agent/core/12.1.0.3.0/bin/AgentPluginDeploy.pl -oracleHome /users/ncgf/em_agent/core/12.1.0.3.0 -agentDir /users/ncgf/em_agent -pluginIdsInfoFile /users/ncgf/em_agent/plugins.txt -action configure -emStateDir /users/ncgf/em_agent/agent_inst
    INFO: oracle.sysman.top.agent:
    INFO: oracle.sysman.top.agent:
    INFO: oracle.sysman.top.agent:The Agent emStateDir location passed is /users/ncgf/em_agent/agent_inst
    INFO: oracle.sysman.top.agent: The log file is /users/ncgf/em_agent/agent_inst/install/logs/agentplugindeploy_2013_10_16_15_08_11.log
    INFO: oracle.sysman.top.agent: The temp file created to check R/W permissions in Oraclehome: /users/ncgf/em_agent/core/12.1.0.3.0 is /users/ncgf/em_agent/core/12.1.0.3.0/rwFile
    INFO: oracle.sysman.top.agent:Plugin command completed with status=0
    INFO: oracle.sysman.top.agent:Executing command :/users/ncgf/em_agent/agent_inst/bin/emctl listplugins agent -type all
    INFO: oracle.sysman.top.agent:Oracle Enterprise Manager Cloud Control 12c Release 3
    INFO: oracle.sysman.top.agent:Oracle Enterprise Manager Cloud Control 12c Release 3
    INFO: oracle.sysman.top.agent:Copyright (c) 1996, 2013 Oracle Corporation.  All rights reserved.
    INFO: oracle.sysman.top.agent:Copyright (c) 1996, 2013 Oracle Corporation.  All rights reserved.
    INFO: oracle.sysman.top.agent:---------------------------------------------------------------
    INFO: oracle.sysman.top.agent:---------------------------------------------------------------
    SEVERE: oracle.sysman.top.agent:ERROR: The Management Agent configuration failed. The plug-in configuration for the oracle.sysman.oh monitoring plug-in may have failed, or this plug-in may not be present in the Management Agent software. Ensure that the Management Agent software has the oracle.sysman.oh monitoring plug-in, if not then retry the operation. If the agent software has the oracle.sysman.oh monitoring plug-in, view the plug-in deployment log /users/ncgf/em_agent/agent_inst/install/logs to check if the plug-in configuration for the oracle.sysman.oh monitoring plug-in failed.
    SEVERE: oracle.sysman.top.agent:Agent configuration has failed
    INFO: oracle.sysman.top.agent:AgentConfiguration:agent configuration finished with status = false
    INFO: oracle.sysman.top.agent:AgentConfiguration:agent configuration finished with status = false
    INFO: oracle.sysman.top.agent:The plug-in Agent Configuration Assistant has failed its perform method
    INFO: Cfm.save() was called
    INFO: Cfm.save(): 2 aggregate instances saved
    INFO: done waiting for Action from 15:08:10.272
    Thank you for your help AkankshaSheoranKaler. I have executed the following command based on your request. If there is any issue, please let me know. Thanks!
    "Can you run this command to make sure that the agents bits were downloaded correctly : oms home /bin /emcli verify_updates
    Share the output of the command. I am suspecting this is a know issue (Bug 17300008) but i will wait for your output.  Also if you can open an SR with oracle support to track this issue and its resolution. "
    [ncgf@nsn175-105 bin]$ ./emcli setup -url=https://nsn175-105.us.oracle.com:7803/em -u sername=SYSMAN
    Oracle Enterprise Manager 12c 3.
    Copyright (c) 1996, 2013 Oracle Corporation and/or its affiliates. All rights reserve d.
    The configuration directory "/users/ncgf" may not be local. See the "dir" option in t he help for the setup command.
    Do you want to continue using this directory? [yes/no] yes
    Enter password
    Emcli setup successful
    [ncgf@nsn175-105 bin]$ ./emcli verify_updates
    Verifying updates. Starting validation...
    Type       : Plug-in
    Description: Demo Hostsample Test Plugin
    Attributes
            Version: 1201000100
            Revision: 0
            OS Platform: Generic Platform
            Plug-in Name: Demo Host Sample Plugin
    Archives are missing from the Software Library. Unable to determine the URL for downloading the update. The update might not have come from Oracle Enterprise Manager Store.
    For each update with missing archives, emcli import_update can be used with a -force option to re-upload the archives to the Software Library.

       Hello AkankshaSheoranKaler
    We have done the following, but we aren't able to resolve this issue. Thank you for your help!
    lf
    “This  happen if the software library is not accessible, readable or unmounted (if it is in shared file system).”
    On Enterprise Manager server [nsn175-105], we did the following:
    1. we modified /etc/exports to include this line: /export *(rw,no_root_squash,sync)
    we start nfs service by executing command “service nfs start”.  
    On Management Agent server (nsn175-89), we verified that we are able to mount /export directory of EM server.
    On Management Agent server, we started firefox browser and were able to run successfully https://nsn175-105.us.oracle.com:4904/empbs/genwallet
    After making this change, we ran agent deployment again. We encountered the same error as shown above.
    “You can fix the software library or you can download the agent bits in offline mode.”
    For fixing the software library, select Setup->Provision and Patching->Offline Patching, then select Offline Patching radio button, download: https://updates.oracle.com/download/em_catalog.zip. Next upload this zip file.
    “Try downloading the bits again”
    We are not sure what agent bits are. Would you please explain this and provide procedure how we can download this?
    (Here I have attempted to fix the software library, but I am new to Enterprise Manager and not sure how to interpret this).

  • Retrieving spatial and non spatial data in one query

    Hello. I am having slight difficulties using JDBC to retrieve both spatial and non spatial data in the same query. The following is code from a sample program of mine that retrives spatial data from spatial tables.
    (In spatialquery geom is a geometry column and city is simply the name of the city):
    try
    Geometry geom = null;
    String database = "jdbc:oracle:thin:@" + m_host + ":" + m_port + ":" + m_sid;
    DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
    con = (OracleConnection)DriverManager.getConnection(database, sUsername, sPassword);
    GeometryAdapter sdoAdapter =
    OraSpatialManager.getGeometryAdapter("SDO", "8.1.7", STRUCT.class, null, null, con);
    String spatialquery = "SELECT a1.geom, a1.city \n" +
    "FROM cities a1";
    Statement stmt = con.createStatement();
    OracleResultSet rs = (OracleResultSet) stmt.executeQuery(spatialquery);
    int i = 0;
    int noOfFeatures = 2;
    while (rs.next())
    for(i = 1; i <= noOfFeatures; i++)
    STRUCT dbObject = (STRUCT)rs.getObject(i);
    try
    geom = sdoAdapter.importGeometry(dbObject);
    catch(GeometryInputTypeNotSupportedException e)
    System.out.println("Input Type not supported");
    catch(InvalidGeometryException e)
    System.out.println("Invalid geometry");
    System.out.println(geom);
    }//end while loop
    This retrieves the sptial data fine, however when I attempt to retreive the non-spatial data I keep getting a "ClassCastException" error. I understand it is something to do with "STRUCT dbObject = (STRUCT)rs.getObject(i);" line. Can anyone tell me how to retrieve both spatial and non-spatial data in the one query using JDBC. I have tried nearly everything at this stage. Cheers joe

    Theresa A Radke
    Posts: 20
    OTN Member Since: Jul, 2001
    retrieving spatial and non spatial in same query. May 23, 2003 12:02 AM
    retrieving spatial and non spatial in same query.

  • Retrieving spatial and non spatial in same query.

    I have hacked out queries that retrieve and display GEOM Vertices in a JSP using sdoapi.
    I have hacked out queries that retrieve standard format data types and display them in JSP using jdbc, java.sql and oracle.sql.
    I cannot figure out an easy way to blend the two. It seems as though there is no choice but to make two separate queries to the same table in the database in order to present all the columns of an entire row result if a row contains both spatial and standard data.
    Does anyone have any ideas of how this can be done without making two separate calls??

    I'm not sure why you need to print to a file or why you feel you need to do multiple queries to fetch spatial and non spatial attributes. Here are some snippets of SDOAPI based code that may help or may end up confusing matters even more. Hopefully they'll help. I assume you can modify the code to print coordinates to whichever output stream you require for displaying them. "..." indicates that some other code goes here.
    DriverManager.registerDriver(new OracleDriver());
    m_conn = DriverManager.getConnection(url, user, password);
    m_adapter = OraSpatialManager.getGeometryAdapter("SDO", "9.0.1", STRUCT.class, STRUCT.class, null, m_conn);
    Statement stmt = null;
    ResultSet rs = null;
    stmt = m_conn.createStatement();
    String query = "SELECT " + idName + ", " + columnName + " FROM " + tableName;
    rs = stmt.executeQuery(query);
    while (rs.next())
    Object id = rs.getObject(1);
    Object sdoGeom = rs.getObject(2);
    Geometry geometry = ((AdapterSDO)m_adapter).importGeometry(sdoGeom, nDim);
    // do something with the ID column
    // print the geometry's coordinates
    processGeometry(geometry);
    public void processGeometry(Geometry geometry)
    if (geometry instanceof Point)
    Point point = (Point) geometry;
    System.out.println("Point: SRID = " + point.getSpatialReference().getID()+ " (" + point.getX() + ", " + point.getY() + ")");
    else if (geometry instanceof LineString)
    LineString lineString = (LineString) geometry;
    System.out.println(lineString.getNumPoints() + "-point LineString: ");
    for (Enumeration pointEnum = lineString.getPoints(); pointEnum.hasMoreElements();)
    CoordPoint point = (CoordPoint) pointEnum.nextElement();
    System.out.println("\t\t(" + point.getX() + ", " + point.getY() + ")");
    else if (geometry instanceof Polygon)
    Polygon polygon = (Polygon) geometry;
    System.out.println((polygon.getNumRings()) + "-ring Polygon: ");
    LineString exteriorRing = (LineString) polygon.getExteriorRing();
    System.out.println("\t" + exteriorRing.getNumPoints() + "-point exterior ring:");
    for (Enumeration pointEnum = exteriorRing.getPoints(); pointEnum.hasMoreElements();)
    CoordPoint point = (CoordPoint) pointEnum.nextElement();
    System.out.println("\t\t(" + point.getX() + ", " + point.getY() + ")");
    for (Enumeration ringEnum = polygon.getInteriorRings(); ringEnum.hasMoreElements();)
    LineString interiorRing = (LineString) ringEnum.nextElement();
    System.out.println("\t" + interiorRing.getNumPoints() + "-point interior ring:");
    for (Enumeration pointEnum = interiorRing.getPoints(); pointEnum.hasMoreElements();)
    CoordPoint point = (CoordPoint) pointEnum.nextElement();
    System.out.println("\t\t(" + point.getX() + ", " + point.getY() + ")");
    ...

  • Why could not Oracle replicates tables which includes Spatial Data to Logical Standby?

    Hi all,
    Nowadays, i am working on Oracle Logical Standby Databases which includes Spatial Data? But i could not achieve to transport a table with multimedia data (with spatial data types ). But Logical Standby Databases can not support this type of tables? Is this a restriction of modelling Spatial and Geometry in data blocks? And how do i achieve this because i should use this secondary for query-only?
    Kind Regards,

    Some data types are simply not supported by logical standby replication. Depending on the version, this might or might not include Spatial.
    11.2: https://docs.oracle.com/cd/E11882_01/server.112/e41134/data_support.htm#SBYDB4936
    12.1: https://docs.oracle.com/database/121/SBYDB/data_support.htm#SBYDB4936
    If you need to replicate Spatial data, you need to look at other mechanisms. E.g., physical standby, materialized views, or GoldenGate.

  • Rating and labelling images is not working in Photoshop Bridge CS6. The Rating and Label headings in the Label menu are greyed out. Any ideas for correcting this would be appreciated.

    Any suggestions for restoring the Rating and Label options in Photoshop Bridge CS6 would be appreciated.

    Please post Bridge related queries over at
    http://forums.adobe.com/community/bridge
    Maybe it’s permissions issue … what volume are the files on?

  • Printing cards and labels on Photosmart C4580 printer

    I couldn't find my particular problem using the search so I'm hoping for some answers here. I have a Photosmart C4580 printer connected to a Toshiba laptop running Vista with all the current updates. My problem is that I can't seem to get it to print on business card stock or addrress label stock. Here's the issue:
    I use Word to create business cards to print onto business card stock. The instructions that came with the card stock say to do a test page on regular paper first to verify placement, which I do - everything looks perfect so I put a page of card stock in the feeder. The printer grabs the page and prints with the image offset towards the top of the page by about 1/4" so that the top of the card is above the edge of the cards. As the cards are repeated down the page, it shifts down slightly so that by the time it gets to the bottom of the page it's almost on the card, but still overlaps the top edge slightly. Printing onto regular paper works perfectly every time.
    A similar thing happens printing address labels - again using Word to create the labels for either Avery 5267 or Avery 8161 label stock. On regular paper everything looks perfect, but feed a sheet of label stock in and the text is offest toward the top of the page. The last time I needed labels I was able to get it to print properly by printing one label at a time, then refeeding the page and printing the next one, then repeating until each label on the page was printed. When you're printing several pages of labels that takes a lot of time!
    Is there something I need to do to get this printer to print cards and labels?
    Alan Hepburn
    Alan Hepburn
    Proud to be a Blue Star Family

    @ deblois 1089 - I will need a little more information to help out. What are the specifications of the labels? Do you have the measurements and the weight of the paper type? Thanks
    I am a former employee of HP...
    How do I give Kudos?| How do I mark a post as Solved?

  • Oracle SQL Developer 2.1 EA1 and 1.5.5 not working on MacOS X Snow Leopard

    Currently, the Oracle SQL Developer 2.1 EA1 and 1.5.5 are not working on MacOS X Snow Leopard. Is there a plan to support the actual version of OS X?
    When I try to start the MacOS X-Download I always get the following errors using MacOS X 10.6.1:
    ./sqldeveloper.sh oracle.classloader.util.AnnotatedNoClassDefFoundError:
         Missing class: oracle.ide.Version
         Dependent class: oracle.ide.IdeCore
         Loader: main:11.0
         Code-Source: /Users/dus/Downloads/sqldeveloper-1.5.5.59.69-macosx/SQLDeveloper.app/Contents/Resources/sqldeveloper/ide/extensions/oracle.ide.jar
         Configuration: system property PCLMain.createExtensionManagerLoader()
    The missing class is not available from any code-source or loader in the system.
         at oracle.classloader.PolicyClassLoader.handleClassNotFound (PolicyClassLoader.java:2176) [Users/dus/Downloads/sqldeveloper-1.5.5.59.69-macosx/SQLDeveloper.app/Contents/Resources/sqldeveloper/j2ee/home/lib/pcl.jar (from system property java.class.path), by sun.misc.Launcher$AppClassLoader@2039559412]
         at oracle.classloader.PolicyClassLoader.internalLoadClass (PolicyClassLoader.java:1729) [Users/dus/Downloads/sqldeveloper-1.5.5.59.69-macosx/SQLDeveloper.app/Contents/Resources/sqldeveloper/j2ee/home/lib/pcl.jar (from system property java.class.path), by sun.misc.Launcher$AppClassLoader@2039559412]
         at oracle.classloader.PolicyClassLoader.loadClass (PolicyClassLoader.java:1685) [Users/dus/Downloads/sqldeveloper-1.5.5.59.69-macosx/SQLDeveloper.app/Contents/Resources/sqldeveloper/j2ee/home/lib/pcl.jar (from system property java.class.path), by sun.misc.Launcher$AppClassLoader@2039559412]
         at oracle.classloader.PolicyClassLoader.loadClass (PolicyClassLoader.java:1670) [Users/dus/Downloads/sqldeveloper-1.5.5.59.69-macosx/SQLDeveloper.app/Contents/Resources/sqldeveloper/j2ee/home/lib/pcl.jar (from system property java.class.path), by sun.misc.Launcher$AppClassLoader@2039559412]
         at java.lang.ClassLoader.loadClassInternal (ClassLoader.java:399) [jre bootstrap, by jre.bootstrap:1.6.0_15]
         at oracle.ide.IdeCore.$init$ (IdeCore.java:169) [Users/dus/Downloads/sqldeveloper-1.5.5.59.69-macosx/SQLDeveloper.app/Contents/Resources/sqldeveloper/ide/extensions/oracle.ide.jar (from system property PCLMain.createExtensionManagerLoader()), by main:11.0]
         at oracle.ide.IdeCore.<init> (IdeCore.java:176) [Users/dus/Downloads/sqldeveloper-1.5.5.59.69-macosx/SQLDeveloper.app/Contents/Resources/sqldeveloper/ide/extensions/oracle.ide.jar (from system property PCLMain.createExtensionManagerLoader()), by main:11.0]
         at oracle.ideimpl.DefaultIdeCore.<init> (DefaultIdeCore.java:64) [Users/dus/Downloads/sqldeveloper-1.5.5.59.69-macosx/SQLDeveloper.app/Contents/Resources/sqldeveloper/ide/lib/ideimpl.jar (from system property PCLMain.createExtensionManagerLoader()), by main:11.0]
         at oracle.ideimpl.DefaultIdeCore.<init> (DefaultIdeCore.java:69) [Users/dus/Downloads/sqldeveloper-1.5.5.59.69-macosx/SQLDeveloper.app/Contents/Resources/sqldeveloper/ide/lib/ideimpl.jar (from system property PCLMain.createExtensionManagerLoader()), by main:11.0]
         at oracle.ideimpl.Main.start (Main.java:109) [Users/dus/Downloads/sqldeveloper-1.5.5.59.69-macosx/SQLDeveloper.app/Contents/Resources/sqldeveloper/ide/lib/ideimpl.jar (from system property PCLMain.createExtensionManagerLoader()), by main:11.0]
         at oracle.ideimpl.Main.main (Main.java:72) [Users/dus/Downloads/sqldeveloper-1.5.5.59.69-macosx/SQLDeveloper.app/Contents/Resources/sqldeveloper/ide/lib/ideimpl.jar (from system property PCLMain.createExtensionManagerLoader()), by main:11.0]
         at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native method) [unknown, by unknown]
         at sun.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:39) [unknown, by unknown]
         at sun.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:25) [unknown, by unknown]
         at java.lang.reflect.Method.invoke (Method.java:597) [unknown, by unknown]
         at oracle.ide.boot.PCLMain.callMain (PCLMain.java:66) [Users/dus/Downloads/sqldeveloper-1.5.5.59.69-macosx/SQLDeveloper.app/Contents/Resources/sqldeveloper/ide/lib/ide-boot.jar, by sun.misc.Launcher$AppClassLoader@2039559412]
         at oracle.ide.boot.PCLMain.main (PCLMain.java:58) [Users/dus/Downloads/sqldeveloper-1.5.5.59.69-macosx/SQLDeveloper.app/Contents/Resources/sqldeveloper/ide/lib/ide-boot.jar, by sun.misc.Launcher$AppClassLoader@2039559412]
         at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native method) [unknown, by unknown]
         at sun.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:39) [unknown, by unknown]
         at sun.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:25) [unknown, by unknown]
         at java.lang.reflect.Method.invoke (Method.java:597) [unknown, by unknown]
         at oracle.classloader.util.MainClass.invoke (MainClass.java:128) [Users/dus/Downloads/sqldeveloper-1.5.5.59.69-macosx/SQLDeveloper.app/Contents/Resources/sqldeveloper/j2ee/home/lib/pcl.jar (from system property java.class.path), by sun.misc.Launcher$AppClassLoader@2039559412]
         at oracle.ide.boot.IdeLauncher.bootClassLoadersAndMain (IdeLauncher.java:190) [Users/dus/Downloads/sqldeveloper-1.5.5.59.69-macosx/SQLDeveloper.app/Contents/Resources/sqldeveloper/ide/lib/ide-boot.jar, by sun.misc.Launcher$AppClassLoader@2039559412]
         at oracle.ide.boot.IdeLauncher.launchImpl (IdeLauncher.java:90) [Users/dus/Downloads/sqldeveloper-1.5.5.59.69-macosx/SQLDeveloper.app/Contents/Resources/sqldeveloper/ide/lib/ide-boot.jar, by sun.misc.Launcher$AppClassLoader@2039559412]
         at oracle.ide.boot.IdeLauncher.launch (IdeLauncher.java:66) [Users/dus/Downloads/sqldeveloper-1.5.5.59.69-macosx/SQLDeveloper.app/Contents/Resources/sqldeveloper/ide/lib/ide-boot.jar, by sun.misc.Launcher$AppClassLoader@2039559412]
         at oracle.ide.boot.IdeLauncher.main (IdeLauncher.java:55) [Users/dus/Downloads/sqldeveloper-1.5.5.59.69-macosx/SQLDeveloper.app/Contents/Resources/sqldeveloper/ide/lib/ide-boot.jar, by sun.misc.Launcher$AppClassLoader@2039559412]
         at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native method) [unknown, by unknown]
         at sun.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:39) [unknown, by unknown]
         at sun.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:25) [unknown, by unknown]
         at java.lang.reflect.Method.invoke (Method.java:597) [unknown, by unknown]
         at oracle.ide.boot.Launcher.invokeMain (Launcher.java:729) [Users/dus/Downloads/sqldeveloper-1.5.5.59.69-macosx/SQLDeveloper.app/Contents/Resources/sqldeveloper/ide/lib/ide-boot.jar, by sun.misc.Launcher$AppClassLoader@2039559412]
         at oracle.ide.boot.Launcher.launchImpl (Launcher.java:115) [Users/dus/Downloads/sqldeveloper-1.5.5.59.69-macosx/SQLDeveloper.app/Contents/Resources/sqldeveloper/ide/lib/ide-boot.jar, by sun.misc.Launcher$AppClassLoader@2039559412]
         at oracle.ide.boot.Launcher.launch (Launcher.java:68) [Users/dus/Downloads/sqldeveloper-1.5.5.59.69-macosx/SQLDeveloper.app/Contents/Resources/sqldeveloper/ide/lib/ide-boot.jar, by sun.misc.Launcher$AppClassLoader@2039559412]
         at oracle.ide.boot.Launcher.main (Launcher.java:57) [Users/dus/Downloads/sqldeveloper-1.5.5.59.69-macosx/SQLDeveloper.app/Contents/Resources/sqldeveloper/ide/lib/ide-boot.jar, by sun.misc.Launcher$AppClassLoader@2039559412]

    You have started this annoying discussion.
    I don't have any problems with my OS instead of you.
    I have already told you what to do, if you have no idea how to do that just go and buy yourself another support subscription from your mac support.
    The missing class is not available from any code-source or loader in the system. check that.
    what version of JAVA do you have in your fancy OS? most of the time upgrade java to the latest version will fix the issues.
    Update java from sun website not from another mac tore.

  • Differences between Oracle Forms 11.1.1.6  and 11.1.2

    Hello !
    Which version should I choose 11.1.2 or 11.1.1.6
    11.1.2 must me the latest one aka 11gR2
    11.1.1.6 must be 11gR1 PS5
    Am i right ?
    but in the forms home page it seems that the 11.1.1.6 is the latest version ??
    Oracle Forms 11.1.1.6 Released
    The latest version of Oracle Forms (11.1.1.6) has been released.
    This can be downloaded from My Oracle Support (MOS)
    23-Feb-2012
    Oracle Forms 11g Release 2 has been released. Read about the new features.
    Oct-2011
    I suppose that in a MiddleWare stack : SOA suite + BI publisher + Forms, the 11.1.1.6 (11gR1 PS5) is the best choice.
    Can somebody explain me the differences between Oracle Forms 11.1.1.6 and 11.1.2 ?
    Thanks
    Regards
    Jean-Yves

    Michael Ferrante (Oracle) wrote:
    There are many new features in 11.1.2.0 that do not exist in 11.1.1. Some of the most significant new features are listed in the 11gR2 New Features documentation found on this page:
    http://www.oracle.com/technetwork/developer-tools/forms
    Additional information about new features and changes can be found in the product documentation for 11gR2, which is here:
    http://docs.oracle.com/cd/E24269_01/index.htm
    One important thing to note is that FMw 11.1.2 (11gR2) does not include Portal or Discover. So if you need either or both of these you will need to stick with 11.1.1.Hi Michael,
    One of the features which is very very important in my point of view is
    Reduced Installation Footprint
    In order to reduce the resource requirements on development machines, you can perform an
    installation specifically tailored for development. This will limit the number of software products
    and servers installed on the machine whilst still allowing a developer to build, run and test their
    Forms application.
    If this feature is only available for the 11.1.2 release then the choice is made !
    Thanks !
    Jean-Yves
    ps : and we don't use any portal or discoverer :-)
    Edited by: JeanYves Bernier on 30 nov. 2012 23:54

  • Differences between Oracle 8i for a UNIX Platform and Oracle 8i for a Linux Platform

    Hello,
    J would like to know if there are some differences between Oracle 8i for a UNIX Platform and Oracle 8i for a Linux Platform.
    I know that there are some differences on Oracle 8i Parallel Server and i know that some products are not include like precompiler (Mod*Ada, Pro*FORTRAN) on a Linux Platform.
    Thank you.

    We have installed Oracle 8i on Solaris 8 and it had a great performance, of course that the hardware and licence invested here was costed my the office where i work. Personaly i'd installed linux reh hat 8 and oracle 8i, imagine that, it could be implemented by any individual that has the time to do so.
    By buyinng from a company that has a good background you could be sure that you will have support.
    Bottom line, if you have the $ to buy great hardware go for a unix platform. But if you don't a Red Hat Linux Server Licence with a 1 year sopport and Oracle data base is about 3500Dls.
    Visit www.red-hat.com
    Rewards... Bye

  • Differences between Oracle 8i for a UNIX Platform and a Linux Platform

    I want to know the differences between Oracle 8i for a UNIX Platform and Oracle 8i for a Linux Platform. And which platform is better?
    Thanks

    We have installed Oracle 8i on Solaris 8 and it had a great performance, of course that the hardware and licence invested here was costed my the office where i work. Personaly i'd installed linux reh hat 8 and oracle 8i, imagine that, it could be implemented by any individual that has the time to do so.
    By buyinng from a company that has a good background you could be sure that you will have support.
    Bottom line, if you have the $ to buy great hardware go for a unix platform. But if you don't a Red Hat Linux Server Licence with a 1 year sopport and Oracle data base is about 3500Dls.
    Visit www.red-hat.com
    Rewards... Bye

  • What's the difference between tags and labels?

    What's the difference between message tags and labels?
    Solved!
    Go to Solution.

    Indeed tags are freeform and can be added and created by anyone. Labels follow a stricter hierarchy and are usually defined on the individual community level (e.g. per ideation section, or specific to a discussion board).
    Labels are used as a filter by the community team to more easily look at specific sub-sections of content.
    Follow the latest Skype Community News
    ↓ Did my reply answer your question? Accept it as a solution to help others, Thanks. ↓

  • Report with a break above and labels

    We want to create a Report with a break above and labels. There are examples for each of these, but I do not see an example of both in the same Report. Hopefully this is possible?? What can you tell us?
    Thanks, Wayne

    Thanks for the reply. I have the columns set up just as you have suggested. I even created a new report with form wizard and tried to update those two questionable columns.
    If the columns are null, and I add values, they save. But then when I go back and update the record, but different columns, it nulls out the two I am talking about. I am wondering if a trigger is out there someplace that is causing them to get nulled out.
    Regards,
    Jeff

Maybe you are looking for

  • Vendor field in mmbe t-code

    Hi, We want to transfer the material with movement type 415 to vendor location & want to see the details in MMBE . how much quantity is avaiable in vendor.pl. help me.

  • Combining two music libraries on one iMac

    Hi, I have about an 80 GB iTunes music library on my iMac.  My new wife has a library of about 130 GB which is currently on  an external hard drive.   I want to combine both libraries on one iTunes account on our iMac.  First, what is the best way to

  • IPhone 3G frozen when I tried to upgrade to 3.1.2

    This is not the first time my iPhone 3G gets frozen and unresponsive when upgrading. Two months ago, when I bought it second-hand, I've tried to upgrade from 3.0.1 to 3.1 and it was a nightmare that lasted for days... Eventually I succeeded, after co

  • SQ01 Show Max

    Hi All, I have done a SQ01 report where I have a asset number with various sequences in table ANEP regarding depreciation. Can anybody please assit me on how to display only the max sequence number for field ANEP-LNRAN for each asset number. Thanks

  • WEB services in SAP BI 7

    Hi all, I have created some function module based web services. Can any one plz tell me what is Function group based web service?? what is difference between calling function module based and function grp based web service??