Topology Built from Spatial Geometries

Hello, I am trying creating topology from example:
CREATE TABLE city_streets6_geom ( -- City streets/roads
name VARCHAR2(30) PRIMARY KEY,
geometry SDO_GEOMETRY);
CREATE TABLE traffic_signs6_geom ( -- Traffic signs
name VARCHAR2(30) PRIMARY KEY,
geometry SDO_GEOMETRY);
CREATE TABLE land_parcels6_geom ( -- Land parcels
name VARCHAR2(30) PRIMARY KEY,
geometry SDO_GEOMETRY);
INSERT INTO user_sdo_geom_metadata
(TABLE_NAME,
COLUMN_NAME,
DIMINFO,
SRID)
VALUES (
'city_streets6_GEOM',
'GEOMETRY',
SDO_DIM_ARRAY(
SDO_DIM_ELEMENT('X', 0, 65, 0.005),
SDO_DIM_ELEMENT('Y', 0, 45, 0.005)
NULL -- SRID
INSERT INTO user_sdo_geom_metadata
(TABLE_NAME,
COLUMN_NAME,
DIMINFO,
SRID)
VALUES (
'traffic_signs6_GEOM',
'GEOMETRY',
SDO_DIM_ARRAY(
SDO_DIM_ELEMENT('X', 0, 65, 0.005),
SDO_DIM_ELEMENT('Y', 0, 45, 0.005)
NULL -- SRID
INSERT INTO user_sdo_geom_metadata
(TABLE_NAME,
COLUMN_NAME,
DIMINFO,
SRID)
VALUES (
'land_parcels6_GEOM',
'GEOMETRY',
SDO_DIM_ARRAY(
SDO_DIM_ELEMENT('X', 0, 65, 0.005),
SDO_DIM_ELEMENT('Y', 0, 45, 0.005)
NULL -- SRID
-- Load these tables (names and geometries for city streets/roads,
-- traffic signs, and land parcels).
-- Insert data into city street line geometries.
-- R1
INSERT INTO city_streets6_geom VALUES('R1',
SDO_GEOMETRY(2002, NULL, NULL, SDO_ELEM_INFO_ARRAY(1, 2, 1),
SDO_ORDINATE_ARRAY(9,14, 21,14, 35,14, 47,14)));
-- R2
INSERT INTO city_streets6_geom VALUES('R2',
SDO_GEOMETRY(2002, NULL, NULL, SDO_ELEM_INFO_ARRAY(1, 2, 1),
SDO_ORDINATE_ARRAY(36,38, 38,35, 41,34, 42,33, 45,32, 47,28, 50,28, 52,32,
57,33, 57,36, 59,39, 61,38, 62,41, 47,42, 45,40, 41,40)));
-- R3
INSERT INTO city_streets6_geom VALUES('R3',
SDO_GEOMETRY(2002, NULL, NULL, SDO_ELEM_INFO_ARRAY(1, 2, 1),
SDO_ORDINATE_ARRAY(9,35, 13,35)));
-- R4
INSERT INTO city_streets6_geom VALUES('R4',
SDO_GEOMETRY(2002, NULL, NULL, SDO_ELEM_INFO_ARRAY(1, 2, 1),
SDO_ORDINATE_ARRAY(25,30, 25,35)));
-- Insert data into traffic sign point geometries.
-- S1
INSERT INTO traffic_signs6_geom VALUES('S1',
SDO_GEOMETRY(2001, NULL, SDO_POINT_TYPE(21,14,NULL), NULL, NULL));
-- S2
INSERT INTO traffic_signs6_geom VALUES('S2',
SDO_GEOMETRY(2001, NULL, SDO_POINT_TYPE(35,14,NULL), NULL, NULL));
-- S3
INSERT INTO traffic_signs6_geom VALUES('S3',
SDO_GEOMETRY(2001, NULL, SDO_POINT_TYPE(57,33,NULL), NULL, NULL));
-- S4
INSERT INTO traffic_signs6_geom VALUES('S4',
SDO_GEOMETRY(2001, NULL, SDO_POINT_TYPE(20,37,NULL), NULL, NULL));
-- Insert data into land parcel polygon geometries.
-- P1
INSERT INTO land_parcels6_geom VALUES('P1',
SDO_GEOMETRY(2003, NULL, NULL, SDO_ELEM_INFO_ARRAY(1, 1003, 1),
SDO_ORDINATE_ARRAY(9,6, 21,6, 21,14, 21,22, 9,22, 9,14, 9,6)));
-- P2
INSERT INTO land_parcels6_geom VALUES('P2',
SDO_GEOMETRY(2003, NULL, NULL, SDO_ELEM_INFO_ARRAY(1,1003,1),
SDO_ORDINATE_ARRAY(21,6, 35,6, 35,14, 35,22, 21,22, 21,14, 21,6)));
-- P3
INSERT INTO land_parcels6_geom VALUES('P3',
SDO_GEOMETRY(2003, NULL, NULL, SDO_ELEM_INFO_ARRAY(1,1003,1),
SDO_ORDINATE_ARRAY(35,6, 47,6, 47,14, 47,22, 35,22, 35,14, 35,6)));
-- P4
INSERT INTO land_parcels6_geom VALUES('P4',
SDO_GEOMETRY(2003, NULL, NULL, SDO_ELEM_INFO_ARRAY(1,1003,1),
SDO_ORDINATE_ARRAY(17,30, 31,30, 31,40, 17,40, 17,30)));
-- P5 (polygon with a hole; exterior ring and one interior ring)
INSERT INTO land_parcels6_geom VALUES('P5',
SDO_GEOMETRY(2003, NULL, NULL, SDO_ELEM_INFO_ARRAY(1,1003,1, 11,2003,1),
SDO_ORDINATE_ARRAY(3,30, 16,30, 16,38, 3,38, 3,30, 4,31, 4,34, 7,34, 7,31, 4,31)));
-- Validate the layers.
create table val_results (sdo_rowid ROWID, result VARCHAR2(2000));
call SDO_GEOM.VALIDATE_LAYER_WITH_CONTEXT('city_streets6_GEOM','GEOMETRY','VAL_RESULTS');
SELECT * from val_results;
truncate table val_results;
call SDO_GEOM.VALIDATE_LAYER_WITH_CONTEXT('traffic_signs6_GEOM','GEOMETRY','VAL_RESULTS');
SELECT * from val_results;
truncate table val_results;
call SDO_GEOM.VALIDATE_LAYER_WITH_CONTEXT('land_parcels6_GEOM','GEOMETRY','VAL_RESULTS');
SELECT * from val_results;
drop table val_results;
-- Create the spatial indexes.
CREATE INDEX city_streets6_geom_idx ON city_streets6_geom(geometry)
INDEXTYPE IS MDSYS.SPATIAL_INDEX;
CREATE INDEX traffic_signs6_geom_idx ON traffic_signs6_geom(geometry)
INDEXTYPE IS MDSYS.SPATIAL_INDEX;
CREATE INDEX land_parcels6_geom_idx ON land_parcels6_geom(geometry)
INDEXTYPE IS MDSYS.SPATIAL_INDEX;
-- Start the main steps for using the topology data model with a
-- topology built from Spatial geometry data.
-- 1. Create the topology. (Null SRID in this example.)
EXECUTE SDO_TOPO.CREATE_TOPOLOGY('CITY_DATA6', 0.00005);
-- 2. Insert the universe face (F0). (id = -1, not 0)
INSERT INTO CITY_DATA6_FACE$ values (
-1, NULL, SDO_LIST_TYPE(), SDO_LIST_TYPE(), NULL);
COMMIT;
-- 3. Create feature tables.
CREATE TABLE city_streets6 ( -- City streets/roads
feature_name VARCHAR2(30) PRIMARY KEY,
feature SDO_TOPO_GEOMETRY);
CREATE TABLE traffic_signs6 ( -- Traffic signs
feature_name VARCHAR2(30) PRIMARY KEY,
feature SDO_TOPO_GEOMETRY);
CREATE TABLE land_parcels6 ( -- Land parcels
feature_name VARCHAR2(30) PRIMARY KEY,
feature SDO_TOPO_GEOMETRY);
-- 4. Associate feature tables with the topology.
-- Add the three topology geometry layers to the CITY_DATA6 topology.
-- Any order is OK.
EXECUTE SDO_TOPO.ADD_TOPO_GEOMETRY_LAYER('CITY_DATA6', 'city_streets6', 'FEATURE','LINE');
EXECUTE SDO_TOPO.ADD_TOPO_GEOMETRY_LAYER('CITY_DATA6', 'traffic_signs6','FEATURE', 'POINT');
EXECUTE SDO_TOPO.ADD_TOPO_GEOMETRY_LAYER('CITY_DATA6', 'land_parcels6','FEATURE', 'POLYGON');
-- As a result, Spatial generates a unique TG_LAYER_ID for each layer in
-- the topology metadata (USER/ALL_SDO_TOPO_METADATA).
-- 5. Create a TopoMap object and load the whole topology into cache for updating.
EXECUTE SDO_TOPO_MAP.CREATE_TOPO_MAP('CITY_DATA6', 'CITY_DATA6_TOPOMAP');
EXECUTE SDO_TOPO_MAP.LOAD_TOPO_MAP('CITY_DATA6_TOPOMAP', 'true');
-- 6. Load feature tables, inserting data from the spatial tables and
-- using SDO_TOPO_MAP.CREATE_FEATURE.
BEGIN
FOR street_rec IN (SELECT name, geometry FROM city_streets6_geom) LOOP
INSERT INTO city_streets6 VALUES(street_rec.name,
SDO_TOPO_MAP.CREATE_FEATURE('CITY_DATA6', 'city_streets6', 'FEATURE',
street_rec.geometry));
END LOOP;
FOR sign_rec IN (SELECT name, geometry FROM traffic_signs6_geom) LOOP
INSERT INTO traffic_signs6 VALUES(sign_rec.name,
SDO_TOPO_MAP.CREATE_FEATURE('CITY_DATA6', 'traffic_signs6', 'FEATURE',
sign_rec.geometry));
END LOOP;
FOR parcel_rec IN (SELECT name, geometry FROM land_parcels6_geom) LOOP
INSERT INTO land_parcels6 VALUES(parcel_rec.name,
SDO_TOPO_MAP.CREATE_FEATURE('CITY_DATA6', 'land_parcels6', 'FEATURE',
parcel_rec.geometry));
END LOOP;
END;
But process failed in sixth step with error:
Error report:
ORA-29532: java.lang.NumberFormatException: Infinite or NaN
ORA-06512: line 3
29532. 00000 - "Java call terminated by uncaught Java exception: %s"
*Cause:    A Java exception or error was signaled and could not be
resolved by the Java code.
*Action:   Modify Java code, if this behavior is not intended.
What should i do with this problem?
Thanks

thank you for reply.
i can try to network topology.
but i have more than one layer. for example lands, waters, etc.
actually i need left face, right face, start node, end node etc. (topology info) information for my application.
my question is on going...
thanks for interest again

Similar Messages

  • Need help emergency! In my Vision Application, how to extract the specified curve settings from the geometric template which was generated by NI Template editor??

    I have a machine vision application, in which the geometric pattern match technique was used to find the target in variant images.
    as we know ,we have to make a geometric template by the NI Template editor, in the editor we can adjust the parameters of specified curve settings to get the wanted curves, and we can draw the custom area to ignore during the match. then we save the template for latter using in our vision application.
    Now my question is coming. when I program my application for the geometric match. I have to specified the Curve Parameters for the input of IMAQ Advanced Setup Learn Pattern 2, obviously, I have to set this parameter same as the one in the template, but I don't know how to extract it from the geometric template. I have tried all methods I can, for example, read custom data, IMAQ Get Geometric Template Features(this is just for the feature based? then is there a same VI for the edge based?) , even to anasys the PNG file formats!!!! But I can not read the geometric template info by myself!
    It is too illogical that we have to adjust the CURVE PARAMETERS manually again for the " IMAQ Advanced Setup Learn Pattern 2"after I have already done that in the NI Template editor !!!!
    Solved!
    Go to Solution.

    Hello,
    why do you need to specify the curve parameters again, if you have already built a template using the template editor?You do not need to use "IMAQ Advanced Setup Learn Geometric Pattern 2 VI" to find the matches (see the attached example).
    you can wire the control to the "curve parameters" to the "IMAQ Setup Match Geometric Pattern 2 VI", but the values are not used if you wire a true boolean to the "use learn curve parameters" node (it is like this by default). To prove this, i have attached a small program, with pre-created template (using the template editor) for geometric matching. The template and three test images are also included.
    Try changing the curve parameters with the "use learn curve parameters" enabled, and you will see that the matching score remains the same. Then disable the boolean control and try changing the curve parameters.
    Also take a look at the detailed help for "IMAQ Setup Match Geometric Pattern 2 VI", specifically the "Use Learn Curve Parameters".
    I hope this helps.
    Best regards,
    K
    https://decibel.ni.com/content/blogs/kl3m3n
    "Kudos: Users may give one another Kudos on the forums for posts that they found particularly helpful or insightful."
    Attachments:
    geometric_matching_LV2010.zip ‏3154 KB

  • How can I do a clean uninstall of packages built from source?

    I want to remove older versions of Ruby (but not the one packaged with Snow Leopard) from my development machine. I have a couple versions that were built from source that are unused now. How can I do a clean uninstall of those types of packages? I don't think there is any "make" command that will uninstall, so other than just deleting the folders that I think contains the older versions, I'm not sure how else to do it. Any ideas?

    mickey13, if its Makefile doesn’t have a target for uninstalling, then the next best thing would be to run *make -n install 2>&1 > /tmp/install* to get a list of what it does at installation time, and then edit the /tmp/install file to remove the files that it copied over on installation (or to undo the edits that it made to previously existing files).

  • GUI built from  Xml schema

    I want to edit my Xml through the GUI .This GUI built from My Xml schema file .This is my requirement tell me how to achieve my requirement .you have any sample code please forward it to me .my platform is java .
    For example: NetBeans IDE provide the GUI for edit the web.xml file .
    Thanks in Advance ,
    With Regards,
    Ganesh kumar.L

    Also, the component palette for the XML document generated from the XML Schema does not list all the elements in the XML Schema, only the root element is listed. Even if elements are specified as required in the XML Schema with minOccurs="1" and the "Generate only Required Elements" checkbox is selected only the root element gets generated.

  • Pages Built from Template not working when put

    Hi,
    I am building a site with CS3 and running it to test it on
    onother site in a sub-directory - but, although the pages all work
    as expected when viewed locally, some are totally blank when put on
    the server - when I view the source they only contain;
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0
    Transitional//EN">
    <HTML><HEAD>
    <META http-equiv=Content-Type content="text/html;
    charset=windows-1252"></HEAD>
    <BODY></BODY></HTML>
    so its not like the page is not there - its just that all the
    content has been skipped. I have tried re-putting, deleteing from
    the server and reputting - all with no success. Several pages,
    built from the same template work great, but just a few are like
    this...
    I have searched the net and forum, but can't find a similar
    problem - any help would be very gratefully received

    OK - I think that I have a system or corruption
    problem - I just tried another full upload and now nothing is
    working... I'm switching to my laptop to see if the old Dell is the
    problem.

  • 2.4 getting replaced for a 2.66 "built" from applecare?

    A tier 2 wants to replace my late 2008 2.4 15inch umbp for the mid 2009 2.66 15inch umbp. He says that it will not be refurbished, however, it will be newly built from the replacement center. I asked him if it would not be refurbished and he said it wouldn't be refurbished at all. What's weird is that he doesn't want me to send in the box that came with my umbp. What do you guys think? Has anyone here have gotten a replacement with a newly built machine, than a replacement from the apple store? I'm also thinking of adding a new applecare warranty on the replaced machine. What do you guys think?
    Also, the tier 2 told me that they are only sending the shipping label. I forgot to ask him what type of box I should use to send my umbp back. What I do know is that I have an empty mail in repair box from apple. Can I use that box to send my uni? (with the new label of course).

    I just went through this process with our family's iMac.
    The machine was replaced with a brand new (non-refurbished) product. The new machine will come as it is boxed for retail sale, because there is no difference between the replacement product and the product that you could purchase at any retail store. The replacement product will come with the standard 1 year limited warranty, and Applecare can be purchased at any time within that original 1 year warranty. It is exactly like you're purchasing a new machine.
    My shipping label was delivered to my email electronically. I used the original "overpacking" box to ship my iMac back to them. That is the brown cardboard box that envelopes the white/black Apple product box for the product.
    Apple will not ship you a MBP without the brown overpacking cardboard box. They do this to deflect attention from the shipment. All references to Apple will most likely be "AI" (for Apple, Inc.) on a brown shipping box. When you ship back to them, either use the same brown cardboard box they sent you (with the MBP box inside of it) or the original brown cardboard box (still with the MBP box inside of it).
    You should be in contact with an Applecare Corporate Customer Care agent to direct you through this process. You must confirm all this information, that I have told you, with them, prior to taking any shipping action.
    --Travis

  • Cannot Open Topology Services from client

    Hi, I'm using LMS 3.2 and I can open the topology services from LMS server itself.
    This LMS didn't use a DNS resolution
    I can telnet from my laptop to port 42342 and  43242 using the LMS IP Address and Hostname, But unfortunately I still  cannot open Topology Services from my laptop.
    I already disable AV at my laptop and Ciscowork Server.
    Looking forward for your advice.

    I would suggest you need to check again for hostname issues;
    1) check the hostname of the LMS server with the command "hostname" in a DOS box of the server
    2) from the client try to telnet to the ports 42342 and 43242 using the hostname from step 1); like this in a DOS box on the client:
        telnet yourlmsServer 42342
    3) check the entry of PX_HOST in the file
        NMSROOT\lib\classpath\md.properties
        (NMSROOT is your installation path; windows default: C:\Program Files\CSCOpx)
    if the value of PX_HOST is different form the one in step 1) test if the mentioned ports are available using this name
    4) if you cannot establish a connection with one of the names you have to fix this issue by either adding a DNS entry or adding the names to the clients hosts file

  • Ad Hoc distribution with app built from DPS folio

    Hi, I was wondering if it was possible to deploy (ad hoc) an app built from the DPS tools.  If it is, what are the implications and the methods?  Currently, the only way that I am able to build iPad applications from DPS folio documents is from the Viewer Builder.  Are there extra steps that are required to distribute these .app files via ad hoc?  Thanks.

    For Enterprise customers:
    http://help.adobe.com/en_US/digitalpubsuite/using/WS67cb9e293e2f1f6063be51521300070dc55-80 00.html

  • How can I execute a java class with arguments from an air application built from mxml?

    I have an mxml application. It has a button, and when that button select event occurs, I want my mxml air app to pass arguments to a java class I have built, which resides in a package path on my system. I need to be able to pass several arguments to my java method from my mxml call. How do I do this, and what config files are necessary? For the simple task I want to engineer, can you show me an example of a properly configured config file? My java class has been executed at the command line in the past as follows:
    java -cp %CP% com.abc.prism.queue.EmitMessage XYZ "my message text" 192.12.13.14 5672
    where %CP% is an env variable that tells my class the classpath it runs with, and XYZ, "my message text", the IP address, and the port are the arguments I must pass from mxml to my java class. How do I accomplish this?
    How do I make known to the java class I call from mxml the %CP% class path? It tells my java class where to find various rabbitMQ jars.

    Hi,
    You need to use Integration technology like BlazeDS or LCDS.

  • Getting error while importing topology,scenarios from 11.3 to ODI 11.5

    Hi,
    Recently I had installed ODI 11.1.5.
    Now I am importing topology and scenarios exported from my older ODI 11.1.3 via shell script on Linux machine.
    There around 25 topology and around 40 scenarios.When i execute the script out of these some topology and scenarios get imported and for rest i get following error.
    Imported files are not persistent.Sometimes same file got imported and when I execute next time the same file gives error.
    oracle.odi.oditools.OdiToolException: This ODI Tool needs to be connected to the repository but repository connection failed
         at oracle.odi.oditools.OdiAbstractToolRunner.executeCoreTool(OdiAbstractToolRunner.java:133)
         at oracle.odi.oditools.OdiAbstractToolRunner.executeTool(OdiAbstractToolRunner.java:47)
         at oracle.odi.ToolRunner.main(ToolRunner.java:75)
    Caused by: oracle.odi.core.config.MasterRepositoryResourceFailureException: org.springframework.jdbc.CannotGetJdbcConnectionException: Could not get JDBC Connection; nested exception is oracle.odi.jdbc.datasource.ConnectionTimeoutException: A login timeout occured while connecting to the database
         at oracle.odi.core.repository.Repository.getMasterRepository(Repository.java:79)
         at oracle.odi.core.OdiInstance.createMasterRepository(OdiInstance.java:491)
         at oracle.odi.core.OdiInstance.<init>(OdiInstance.java:544)
         at oracle.odi.core.OdiInstance.createInstance(OdiInstance.java:521)
         at oracle.odi.ToolRunner.initInstance(ToolRunner.java:36)
         at oracle.odi.oditools.OdiAbstractToolRunner.executeCoreTool(OdiAbstractToolRunner.java:128)
         ... 2 more
    Caused by: org.springframework.jdbc.CannotGetJdbcConnectionException: Could not get JDBC Connection; nested exception is oracle.odi.jdbc.datasource.ConnectionTimeoutException: A login timeout occured while connecting to the database
         at org.springframework.jdbc.datasource.DataSourceUtils.getConnection(DataSourceUtils.java:82)
         at org.springframework.jdbc.core.JdbcTemplate.execute(JdbcTemplate.java:524)
         at org.springframework.jdbc.core.JdbcTemplate.query(JdbcTemplate.java:588)
         at org.springframework.jdbc.core.JdbcTemplate.query(JdbcTemplate.java:613)
         at org.springframework.jdbc.core.JdbcTemplate.query(JdbcTemplate.java:645)
         at org.springframework.jdbc.object.SqlQuery.execute(SqlQuery.java:111)
         at org.springframework.jdbc.object.SqlQuery.execute(SqlQuery.java:121)
         at org.springframework.jdbc.object.SqlQuery.execute(SqlQuery.java:136)
         at oracle.odi.core.repository.support.RepositoryUtils$RepositoryInfoSource.loadRepositoryInfo(RepositoryUtils.java:180)
         at oracle.odi.core.repository.support.RepositoryUtils.loadMasterRepositoryInfo(RepositoryUtils.java:374)
         at oracle.odi.core.repository.Repository.getMasterRepository(Repository.java:77)
         at oracle.odi.core.OdiInstance.createMasterRepository(OdiInstance.java:492)
         ... 6 more
    Caused by: oracle.odi.jdbc.datasource.ConnectionTimeoutException: A login timeout occured while connecting to the database
         at oracle.odi.jdbc.datasource.LoginTimeoutDatasourceAdapter.doGetConnection(LoginTimeoutDatasourceAdapter.java:117)
         at oracle.odi.jdbc.datasource.LoginTimeoutDatasourceAdapter.getConnection(LoginTimeoutDatasourceAdapter.java:62)
         at org.springframework.jdbc.datasource.DataSourceUtils.doGetConnection(DataSourceUtils.java:113)
         at org.springframework.jdbc.datasource.DataSourceUtils.getConnection(DataSourceUtils.java:79)
         at org.springframework.jdbc.core.JdbcTemplate.execute(JdbcTemplate.java:524)
         at org.springframework.jdbc.core.JdbcTemplate.query(JdbcTemplate.java:588)
         at org.springframework.jdbc.core.JdbcTemplate.query(JdbcTemplate.java:613)
         at org.springframework.jdbc.core.JdbcTemplate.query(JdbcTemplate.java:645)
         at org.springframework.jdbc.object.SqlQuery.execute(SqlQuery.java:111)
         at org.springframework.jdbc.object.SqlQuery.execute(SqlQuery.java:121)
         at org.springframework.jdbc.object.SqlQuery.execute(SqlQuery.java:136)
         at oracle.odi.core.repository.support.RepositoryUtils$RepositoryInfoSource.loadRepositoryInfo(RepositoryUtils.java:180)
         at oracle.odi.core.repository.support.RepositoryUtils.loadMasterRepositoryInfo(RepositoryUtils.java:375)
         ... 8 more
    Please guide me in this regard.

    hi actdi,
    Thanks for your guidance.
    we have tried this also....but still the same unstable import....
    We have another doubt while execuing scenarios using ODI Java EE Agent in ODI 11.5:
    We have one customized jar which we use in our scenario at runtime.
    In case of Odi 11.1.1.3 Version, there is a location
    <Middleware>\user_projects\domains\base_domain\servers\odi_Server1\tmp\_WL_user\oraclediagent\ev3fsn\war\WEB-INF\lib
    where we can put customized jar, so that at runtime oraclediagent picks up this jar from the given location,
    but in ODI 11.1.1.5 Version,
    at the given location <Middleware>\user_projects\domains\base_domain\servers\odi_Server1\tmp\_WL_user\oraclediagent\ev3fsn\war\WEB-INF\
    there is no <lib> folder for oraclediagent.
    Is there any different path for the same lib folder in 11.1.1.5? or is dere a miss ?
    Kindly guide.

  • Installation error occurred when the air is built from another machine.

    The senerio is that .
    AIR SDK: 2.0
    I orginally built an AIR versioned 1.05 from a mac 10.0.6 with FlashBuilder 4.6 and now I used the same code based and same application.xml to build a newer version 1.06 from a windows 7 x64  FlashBuilder 4.5 then i got the following error
    The application could not be installed because an application with that name already exists at the selected installation location. Try installing to a different location.
    I have put publisherID into the descriptor xml.
    Could somebody please help

    I found out the cause.
    What I do:
    Copy the Flex sdk from mac to pc directly.
    More info:
    The reason why i didnt do the above step at the begining because there are so many hidden files are generated by mac and which let the flashbuilder in PC keep prompting error.As a result, I manually deleted all the hidden files (more than 2k files) and build release with that sdk and finally the installation error not show.
    Also,I found that although both mac and pc are using Flex 4.1 sdk ,may be with different build number? The point is I will/may face the same problem if I decide to update the flex sdk from 4.1 to newers version.
    This is a very big problem because there are so many ppl installed the old version  and they may have to manually uninstall and install again and I will receive so many phone calls for support but  which is fine if they are all hot girls..

  • Arch Linux Kernel patch for kernels built from source?

    I buitl I kernel from source because the hotplug thing was taking for ever
    I really liked the arch logo. Is there a patch or is it possilbe to add the arch logo to the kernel?
    Thanks

    check out the PKGBUILD for the kernel:
    run "abs"
    and then go to /var/abs and edit the PKGBUILD for kernel26 to see how a kernel is built in arch

  • How to remove a package built from AUR

    Hi!
    I hope nobody has ever asked this question, but i didn't find an answer.
    I built a package from the AUR repository but i don't use it anymore, that's why i'd like to remove it but i don't know how to remove it from my computer since it doesn't appear in pacman's list
    can somebody explain me how to do this?
    thanks!
    Last edited by Beno@ (2008-08-14 12:57:18)

    ok, refer to the man pages for pacman
    -S (Sync) is for anything over the internet.
    -Q (Query) any operation that is performed locally.
    So yaourt -Ss means it will search over the internet in the AUR. If you wanna search locally for a package you use -Q for local query.
    makepkg is not a pakcage manager, instead it is a package builder for pacman, pacman is the package manager. As Army already said, once you use makepkg to build the package, you need to install the package with pacman -U
    BTW, -U (upgrade) a package.
    Need more info, read the man pages.
    man pacman
    once yaourt is installed
    man yaourt
    Last edited by rooloo (2008-08-14 14:17:41)

  • Creating connectivity data from spatial data

    Hi,
    I have some spatial data, of which I will try to describe the relevant aspects:
    - A LineSegment table, which contains information on cables, including Area ID (approx 4 million rows)
    - A Location table, which contains a LineSegmentID (one-to-one), and a Geometry (spatial) column (approx 4 million rows).
    What I need to do is create a new table, containing conceptual "nodes", containing the following columns:
    - NodeID (number)
    - LineSegmentID (number)
    - LineSegmentEnd (1 or 2)
    So I need to work out, for each cable, which other cables it connects to, by comparing its endpoints with the endpoints of other cables in the same area. An area contains up to 464 cables. There are a total of 160 thousand areas.
    I am trying to work out the most efficient way of achieving this, ideally by performing a batch job that will take less than half an hour. Oracle is relatively new to me, but I am guessing the correct approach would be to use a series of intermediate (staging) tables, as I believe nested cursors would be way too slow (I have performed a simple test to confirm this).
    I guess I will need to extract, into a temp table, the start point and end point of each cable using SDO_LRS.GEOM_SEGMENT_START_PT and SDO_LRS.GEOM_SEGMENT_END_PT, along with area ID. Then join the table with itself and use SDO_GEOM.SDO_DISTANCE to work out which points are close to each other (e.g. less than one metre). However I am struggling to outline a step by step process.
    Does anyone have any thoughts which may help?
    (Oracle 11g)
    Thanks

    As requested Karthick. Please get back to me with any questions...
    create table line_location (lineid number,
    geometry sdo_geometry);
    create table line (id number, areaid number);
    -- one cable in area 1, 2 in area 4, etc.
    insert into line values (1, 1);
    insert into line values (2, 4);
    insert into line values (3, 4);
    insert into line values (4, 3);
    insert into line values (5, 3);
    insert into line values (6, 3);
    insert into line values (7, 2);
    insert into line values (8, 2);
    insert into line values (9, 2);
    insert into line values (10, 2);
    -- in reality the lines aren't necessarily straight and simple like these...
    insert into line_location values (1, MDSYS.SDO_GEOMETRY(2002,3785,NULL,MDSYS.SDO_ELEM_INFO_ARRAY(1,2,1),MDSYS.SDO_ORDINATE_ARRAY(10,1,10,4))); -- area 1
    insert into line_location values (2, MDSYS.SDO_GEOMETRY(2002,3785,NULL,MDSYS.SDO_ELEM_INFO_ARRAY(1,2,1),MDSYS.SDO_ORDINATE_ARRAY(3,9,5,9))); -- area 4
    insert into line_location values (3, MDSYS.SDO_GEOMETRY(2002,3785,NULL,MDSYS.SDO_ELEM_INFO_ARRAY(1,2,1),MDSYS.SDO_ORDINATE_ARRAY(5,9,5,10))); -- area 4
    insert into line_location values (4, MDSYS.SDO_GEOMETRY(2002,3785,NULL,MDSYS.SDO_ELEM_INFO_ARRAY(1,2,1),MDSYS.SDO_ORDINATE_ARRAY(1,1,2,1))); -- area 3
    insert into line_location values (5, MDSYS.SDO_GEOMETRY(2002,3785,NULL,MDSYS.SDO_ELEM_INFO_ARRAY(1,2,1),MDSYS.SDO_ORDINATE_ARRAY(2,3,2,1))); -- area 3
    insert into line_location values (6, MDSYS.SDO_GEOMETRY(2002,3785,NULL,MDSYS.SDO_ELEM_INFO_ARRAY(1,2,1),MDSYS.SDO_ORDINATE_ARRAY(2,3,3,3))); -- area 3
    insert into line_location values (7, MDSYS.SDO_GEOMETRY(2002,3785,NULL,MDSYS.SDO_ELEM_INFO_ARRAY(1,2,1),MDSYS.SDO_ORDINATE_ARRAY(5,3,5,4))); -- area 2
    insert into line_location values (8, MDSYS.SDO_GEOMETRY(2002,3785,NULL,MDSYS.SDO_ELEM_INFO_ARRAY(1,2,1),MDSYS.SDO_ORDINATE_ARRAY(4,4,5,4))); -- area 2
    insert into line_location values (9, MDSYS.SDO_GEOMETRY(2002,3785,NULL,MDSYS.SDO_ELEM_INFO_ARRAY(1,2,1),MDSYS.SDO_ORDINATE_ARRAY(5,9,6,4))); -- area 2
    insert into line_location values (10, MDSYS.SDO_GEOMETRY(2002,3785,NULL,MDSYS.SDO_ELEM_INFO_ARRAY(1,2,1),MDSYS.SDO_ORDINATE_ARRAY(5,7,5,9))); -- area 2
    create table node_line (node_id number,
    line_id number,
    endpoint_id number, -- 1 for startpoint, 2 for endpoint,
    area_id number
    -- expected output here. if two lines are less than 0.5 from each other, then they should share a node.
    insert into node_line values (1, 1, 1, 1); -- isolated cable in area 1, start point node
    insert into node_line values (2, 1, 2, 1); -- isolated cable in area 1, end point node
    insert into node_line values (3, 2, 1, 4); -- area 4, cable 2, start point node
    insert into node_line values (4, 2, 2, 4); -- area 4, cable 2, end point node
    insert into node_line values (4, 3, 1, 4); -- cable 2's end point node = cable 3's start point node, etc
    insert into node_line values (5, 3, 2, 4);
    insert into node_line values (6, 4, 1, 3); -- node at (1,1)
    insert into node_line values (7, 4, 2, 3); -- node at (2,1)
    insert into node_line values (8, 5, 1, 3); -- node at (2,3)
    insert into node_line values (7, 5, 2, 3); -- node at (2,1)
    insert into node_line values (8, 6, 1, 3); -- node at (2,3)
    insert into node_line values (9, 6, 2, 3); -- node at (3,3)
    insert into node_line values (10, 7, 1, 2); -- node at (5,3)
    insert into node_line values (11, 7, 2, 2); -- node at (5,4)
    insert into node_line values (12, 7, 1, 2); -- node at (4,4)
    insert into node_line values (11, 7, 2, 2); -- node at (5,4)
    insert into node_line values (13, 7, 1, 2); -- node at (5,9)
    insert into node_line values (14, 7, 2, 2); -- node at (6,4)
    insert into node_line values (15, 7, 1, 2); -- node at (5,7)
    insert into node_line values (13, 7, 2, 2); -- node at (5,9)

  • MSI K8N neo 2 Plat System still to be Built from Scratch!!!

    Hi to all,
    My first post and it's gonna be lengthy I think!  
    I am not a gamer ever, most of what I do is Video encoding (mainly this 100% CPU hogging activity) and Graphics manipulation.
    Below is a list of what I have to start my build:
    Note that I do not overclock ever so please, no reference to this!!!
    MSI K8N Neo2 Platinum (7025)
    Athlon 64 3500+ 92nm Winchester Core (retail)
    Cooler = Zalman CNPS7000B-CU Ultra-Quiet CPU Cooler (think I might have fitting probs with memory slots DIMM's 1+2(G/P) on the MSI Neo2 Plat board, DIMM's 3+4(G/P) might be my only option if I want to stick with this cooler but for fault finding purposes I can always use the stock cooler?)
    Corsair TwinXL PC3200 - CMX512-3200XLPRO 400Mhz 2.2.2.5 LL
    Antec True Power 550W with SATA supply (X2)
    1 X Western Digital 74Gb SATA Raptor HDD (I want this as my C: main boot, no Raid)
    2 X Seagate Barracuda 300Gb 7K2rpm SATA HDD (I want these as RAID 0/stripe=performance only)
    GPU: On order!
    http://www.msi.com.tw/program/products/vga/vga/pro_vga_detail.php?UID=636
    Will use my old trustworthy and reliable GeForce 2 Ti 64 Mb card for XP+SP1 instalation only.
    1 X 120 Gb 7K2 HDD (IDE 1 Master) (from old set up)
    1 X 120 Gb 7k2 HDD (IDE 1 Salve) (from old set up)
    1 x  PlexWriter 52x/24x/52x CD-ReWriter (IDE 2 Master)
    1 X Pioneer DVR-108 Black16x DVD±RW Dual layer (IDE 2 Slave)
    PCI = Creative Sound Blaster Audigy 2 Value 7.1 PCI Sound Card - OEM
    Case = Lian-Li PC V1100 Black Aluminium Midi-Tower  
    Everthing is new in this set-up apart from my old IDE HDD's, still in boxes and ready to go ready for your input?
    Q1. Quote
    Keep in mind that you will need the special drivers to install your SATA Raid drives if you have any. When the windows install starts you need to keep tapping the F6 key to load those drivers from the diskette MSI supplied. "If you are using an Nvidia3 chipset with a single SATA drive and not raiding, you can skip this step, it will automatically be recognized by windows." (Tip Provided by timkessler)
    Straight forward if you are using one or the other methods mentioned in Tiresmokes thread Basic Building Tips(which is gr8, thnx for that Tiresmoke). But as above I want my W/D raptor as my C: main boot drive only, no RAID?
    Can I use the F6 option at the XP instal and then go on to set up the Raptor drive accordingly - and from there set up my 300Gb Seagates as RAID 0 (Seagates wont be attached till Raptor is set to C: main boot)???
    Once I get to this stage I will start asking about board BIOS and Driver details which I dont know as of yet, like I said everything is still boxed.
    I thought personally that starting this thread - people wanting to use this board would benefit from a brand new instalation from scratch guide from a relatively newbie point of view?
    I know there are alot of issues regarding the boards features, but I thought if I done this in public the relevant problems could be linked as I go along, either with problems or without - depending on the individual experience?
    pheeeewww, I said it was gonna be lengthy didnt I?

    Quote
    Originally posted by Supershanks
    On install windows will see 3 drives all sata which is why i suggestd the configuration, i did you dont need to set up your raid array at all as the drives are just going to be data drives.
    If you wish you could even install windows without f6 & loading any drivers
    Having then got widows installed.
    Seperate project to
    enable raid in bios, creating the raid & let windows install drivers later.
    assuming you have an original windows cd ie pre sp1, the quickest method of installation is to slipstream windows.
    Basically you download latest service pack sp1 or sp2 insert your OS cd & run a program which merges the 2 & creates a new OS cd with the SP integrated. Any updates needed then are miimal.
    see
    Slipstreaming - Autostreamer Neowin - i'ts so easy i've heard grannies can do it
    hope this helps
    Looks like they moved the AutoStreamer thread, and updated to 1.033---> AutoStreamer 1.0.33

Maybe you are looking for

  • Third party Sale with status profile.

    Dear All,    We have one business scenario of third party sale, My client is asking to configure that. We have created third party scenario in SD, When we create Sales order , status profile has been set Say, 1st Crete 2nd Verify 3rd  Finance 4th Rej

  • Apple Internal Modem not working since installing OS X 10.5.6

    http://discussions.apple.com/message.jspa?messageID=6979575 Same problem more or less. My mom has a Dual 1Ghz G4 Mirror Door Tower that runs great. However she lives in a very... remote, area so dial-up is her only option. With 10.4 on the machine ev

  • Creating PDF report in the servlet

    We have a requirement of creating PDF report in servlet. Over all idea of the requirements - - Servlet request receives input arguments, - JDO fetches data information, - need to create form [row and column] - send response as outputsream with conten

  • Problem with TCODE PK02 with the warehouse number field.

    Hello folks, I have created a control cycle in the TCODE PK01. When I tried to change it it is not displaying the warehouse number that I have used while saving. Also here it is showing the warehouse number as a mandatory field. I have input the ware

  • SAP PCP (Personnel Cost Planning)

    We are planning to implement PCP on SAP ECC 6.0. I am trying to achieve the basic scenario but it is not workign fine. In first step i need to collect data like basic pay of employee , valuate cost item by 50 percent , and then run the cost plan. for