Basic Question - Update - Usage of index

Gurus,
I have a basic question. As per my knowledge, an index will speed up the process while we are selecting the data. If we are doing some DML operations (especially Update), do we need the index to speed up the process eventhough the indexed column is in the where condition?
Regards
Edited by: Sarma12 on Apr 17, 2012 5:59 AM

Have you tried setting up a test scenario? For example:
SQL> CREATE TABLE test AS SELECT 1 num FROM DUAL CONNECT BY LEVEL <= 1000;
Table created.
SQL> UPDATE test SET NUM = 99 WHERE ROWNUM = 1;
1 row updated.
SQL> COMMIT;
Commit complete.
SQL> UPDATE /*+gather_plan_statistics*/
  2         test
  3  SET    num = 2
  4  WHERE  num = 99
  5  ;
1 row updated.
SQL> SELECT * FROM TABLE(DBMS_XPLAN.DISPLAY_CURSOR(null,null,'ALLSTATS LAST'));
PLAN_TABLE_OUTPUT
SQL_ID  96wt4ddwy0sa5, child number 0
UPDATE /*+gather_plan_statistics*/        test SET    num = 2 WHERE
num = 99
Plan hash value: 3859524075
| Id  | Operation          | Name | Starts | E-Rows | A-Rows |   A-Time   | Buffers |
|   0 | UPDATE STATEMENT   |      |      1 |        |      0 |00:00:00.01 |       7 |
|   1 |  UPDATE            | TEST |      1 |        |      0 |00:00:00.01 |       7 |
|*  2 |   TABLE ACCESS FULL| TEST |      1 |      1 |      1 |00:00:00.01 |       4 |
Predicate Information (identified by operation id):
   2 - filter("NUM"=99)
Note
   - dynamic sampling used for this statement (level=2)
24 rows selected.
SQL> rollback;
Rollback complete.
SQL> CREATE INDEX test_x1 ON test(num);
Index created.
SQL> UPDATE /*+gather_plan_statistics*/
  2         test
  3  SET    num = 2
  4  WHERE  num = 99
  5  ;
1 row updated.
SQL> SELECT * FROM TABLE(DBMS_XPLAN.DISPLAY_CURSOR(null,null,'ALLSTATS LAST'));
PLAN_TABLE_OUTPUT
SQL_ID  96wt4ddwy0sa5, child number 0
UPDATE /*+gather_plan_statistics*/        test SET    num = 2 WHERE
num = 99
Plan hash value: 734435536
| Id  | Operation         | Name    | Starts | E-Rows | A-Rows |   A-Time   | Buffers |
|   0 | UPDATE STATEMENT  |         |      1 |        |      0 |00:00:00.01 |       9 |
|   1 |  UPDATE           | TEST    |      1 |        |      0 |00:00:00.01 |       9 |
|*  2 |   INDEX RANGE SCAN| TEST_X1 |      1 |      1 |      1 |00:00:00.01 |       2 |
Predicate Information (identified by operation id):
   2 - access("NUM"=99)
Note
   - dynamic sampling used for this statement (level=2)
24 rows selected.So yes, an index may be used in DML.

Similar Messages

  • Basic questions on usage of indexes

    Hi All,
    I have the following questions on the usage of indexes. I would be glad if you could answer the same.
    1)     Will using two different indexes for comparison reduce the performance for eg. If in a query I were to compare columns of two different tables, in which on one we have a non unique index while on the other we have a unique index will the query’s performance be poor? If so does it mean to have optimum performance we need to compare columns having same indexes?
    2)     Does deleting records from a table remove the indexes present on a given column? If no whether the space occupied by this particular index is overwritten by new indexes or these indexes simply exist without any mapping?
    3)     Does the order of conditions in where clause have a significance in terms that we should use the columns having index on them first and so on so that the column not having index comes last in the where clause?
    4)     Are indexes optimally used when we compare them in the where condition using LIKE? Or indexes are optimally used only when we compare using =, >, <, <=,>= in the WHERE clause?
    5)     If I have the following four columns C1, C2, C3 and C4 and if I were to create a composite index including all the four in the given order (C1, C2, C3 and C4); while I were to write a query with the columns C2, C3 and C4 (excluding C1); will it be a correct usage of the composite index? If no why?
    6)     If I have three columns C1, C2 and C3 and if I were to put a composite index on all the three but while writing a query use C1 and C2 only or C1 and C3 only will the index be used optimally? If no then does it make sense to create two composite indexes C1 and C2 & C2 and C3 to have the optimum usage of indexes?
    Thanks in advance.

    Most of your queries are answered on (directly or indirectly)
    http://richardfoote.wordpress.com/
    For those questions which remain unanswered, I am afraid you need to check it out yourself as you have the access to your environment. We, over here, can only give you the hints.

  • Pl/sql vs sql basic question

    Hi,
    I have a very very basic question, so excuse me for that... I just would like to know the difference ( and the difference in usage) between sql and pl/sql?
    thank you
    Yann

    SQL - the structured query language - is the language available for extracting data from the database. It is a 4GL, and each command stands alone and performs a database action.
    PL/SQL is the 3GL primarily intended to control the flow of a series of SQL commands. PL/SQL does not, in any way, interact with the data in the database. It does, however, allow SQL statements to be called, or even created, in a specific order.
    SQL is capable of a LOT more than people usually realize. Unfortunate, as people often create PL/SQL programs when single SQL statements will do the job. I encourage reading the O'Reilly 'Mastering Oracle SQL' book ... only after fiunishing that book do I recommend any of Feuerstein's excellent PL/SQL books.

  • Basic questions on data modeling

    Hi experts,
    I have some basic questions regarding data modeling within MDM. I understand the available table types and the concept of lookup fields. I know that the MDM data modeling concept is different to the relational concept. But having a strong database background my first step was to design a relational data model which I would like to transfer to a MDM repository. Unfortunately I didn't found good information material on this. So here are some questions maybe you can help me:
    1) Is it the right approach to model n:m relationships with multivalued lookup fields? E.g. main table Users with lookup field from subtable SapAccounts (a user can have accounts in different SAP systems, that means more than one account).
    2) Has a record always be unique in MDM repositories (e.g. should we use Auto ID's in every table or do we have to mark a combination of fields as unique)? Is a composite key of 2 or more fields represented with marking these fields as unique?
    3) The concept of relationships in MDM is only based on relationships between single records (not valid for all records in a table)? Is it necessary to define all relationships similar to the relational data model in MDM? Is there something similar to referential integrity in MDM?
    4) Is it possible to change the main table to a sub table later on if we realize that it has also to be used as a lookup table for another table (when extending the data model) or do we have to create a new repository from scratch?
    Thank you for your answers.
    Regards, bd

    Yes you are correct. It is almost difficult to map relational database to mdm one. But again MDM is not 'just' a database. It holds much more 'master' information as compared to any relational db.
    1) Is it the right approach to model n:m relationships with multivalued lookup fields? E.g. main table Users with lookup field from subtable SapAccounts (a user can have accounts in different SAP systems, that means more than one account).
    Yes Here you need to use MV look up tables or can also try Qualifier tables if it gets more complex
    2) Has a record always be unique in MDM repositories (e.g. should we use Auto ID's in every table or do we have to mark a combination of fields as unique)? Is a composite key of 2 or more fields represented with marking these fields as unique?
    Concept of uniqueness differs here that you also have something called Display Fields (DF). A combination of DF can also be treated as Unique one. For instance while importing records if you select these DF as a combination, you will eliminate any possible of duplicates based on this combination. Auto Id is one of the ways to have a unique id once record is within MDM. While you use UF or DF to eliminate any possible duplicates at import level
    3) The concept of relationships in MDM is only based on relationships between single records (not valid for all records in a table)? Is it necessary to define all relationships similar to the relational data model in MDM? Is there something similar to referential integrity in MDM?
    Hmm... good one. Referencial Integrity. What I assume you are talking is that if you have relationships between tables then removing a record will not be possible as it is a foreign key for some record. Here MDM does not allow that. As Relationships within MDM are physical and not conceptual. For instance material can have components. Now if material does not exist then any relationship to components is not worthwile to maintain. Hence relationshsip is eliminated.  While in relational model relationships are more conceptual. Hence with MDM usage of lookups and main table you do not need to maintain these kind of relationships on your own.
    4) Is it possible to change the main table to a sub table later on if we realize that it has also to be used as a lookup table for another table (when extending the data model) or do we have to create a new repository from scratch?
    No. It is not possible to convert main table. There is only one main table and it cannot be changed.
    I went for the same option but it did not work. What I suggest is to look up your legacy system one by one and see what fields in general can be classified as Master, Reference, Transactional - You will start getting answers immediately.

  • Basic questions about macbook pro + external monitor

    Hi,
    I have some very basic questions about using a Macbook Pro + external display. I don't actually have them but need to know how things works.
    So, here they are:
    1) Can I use the external display as the main display?
    2) Will the external display run with its resolution or with that of the mbook pro?
    3) Somewhere I read that you cannot keep the macbook pro open and get the full resolution of the external display. Is that true ?
    4) Is it dangerous to keep the mbook closed while using the external display?
    5) Does the usage of the external display impact on mbook performance?
    I know...a lot of questions , but would be nice if someone could help me.
    Thanks.

    Hi - I am presently using an external display.
    To answer your questions in sequence:
    1. Yes you can use the external display as your main display. The way to enable that mode is to put your MacBook Pro to sleep, attach the external display. Wake up your MBPro with the lid closed and you will see the external display as you main display. You can alternatively set the external to "Mirror" your notebook by using preferences/display.
    2. The external display will run at its resolution although you can adjust and calibrate it using Preferences/Display.
    3. Not true. You get max resolution on both displays. Of course you may have to tweak as mentioned above.
    4. Not at all. I use this mode all the time. Just make sure you initially set up as mentioned above and your LCD on the MBPro will stay off.
    5. I have not seen any performance degradation whatsoever.
    Hope this helps.

  • Basic questions from a new mozaic owner

    I have some very basic questions about how to use the new mozaic 2G mp3 player. I bought the Mozaic because it has a speaker and sleep timer, but I'm finding it to be much harder to use than other mp3 players that I have had (Ipod shuffle, clix etc). This may reflect my failure to look in the right place but I have to say the "help" section isn't much help.
    Here goes:
    . I download podcasts to listen to during my morning run. WMP provides an easy to find place in its program, "recently added," which allows the user to just work with those files. As near as I can tell, Creative makes you wade through all of your tracks. Is there some way to create a file to which "recently added" tracks, or specific tracks, can be dumped? How about automatic tagging of these added files?
    2. I have several thousand pictures on this hard dri've. Apparently, the Mozaic Centrale
    Is going to copy all of them, which strikes me as a waste of space. Is there a way to shut this function off? I couldn't care less if a single photo was added to the centrale program (or whatever it's called). Is it really going to duplicate all of the jpg files?
    3. I have the Zen Stone plus speaker which has served me very well. I had similar problems working with whatever Zen was calling its media player and wound up using WMP instead. I"d like to take a run at using the dedicated Zen media player....
    I apologize for the basic nature of these questions, but the answers weren't obvious to me from the materials I was able to locate.
    gba

    sineadholly wrote:
    Problem with speaker. I read you need to do a firmware update to get the speaker option on your product's menu so i've completely updated it, but still no option to switch speaker on, and won't just come on when i unplug the headphones, any ideas?
    what exactly is the model of your Mozaic? Is it EZ 00, EZ 300 or plane ZEN Mozaic?

  • BASIC QUESTIONS - VERY URGENT

    I have some basic questions regarding Oracle XMLDB's features.
    Is there a special JOIN clause that can be used in Oracle XMLDB?
    Can we create partitions in a set of records that are all based on the same DTD? How do we query records from a particular partition?
    Is it possible to query records with synonyms of words present in the documents (some sort of a dictionary feature)?
    Is it possible to query records based on the hierarchical directory structure using which the documents have been stored? i.e. can we query all documents that are stored in a specific path (including/excluding subdirectories)?
    Can we select a particular field within the XML document to be the primary key? Can the documents be indexed based on this field?
    What is the general performance of XMLDB like? For a database of the order of say 50-100 million XML records, would the performance be better with oracle XMLDB or with oracle RDBMS + some XML-RDB mapping tool?
    It would be good if any one could help me out.
    Waiting for earlier response

    Ram
    Please review the Oracle XML DB basic demo, it will answer some of your questions.
    To answer some of your questions.
    XML DB is architected to work with documents that are based on an XML SChema rather than a DTD...
    If you documents are not based on a schema you will need to store them as CLOB Based XMLtype. At this point you will be better off storing then in a relational table with an XMLType column, rather than an XMLType table. You can add other columns to this table for partioning purposes...
    You can query documents based on an Hierarchy, but only if they are schema based. Non schema based XML would be stored in the repository, Again it can be queried in terms of the heirarchy, but you cannot control the partioning on non schema based XML stored in the XML DB repository.
    You can have a PK only with Schema based XML. You can partition Schema based XML on any element that is not part of a collection.
    Hope this helps

  • GRC - BASIC QUESTION

    Dear All
    I would to get the clarification on general question as below:
    1. Who will be the part of the GRC (functional or Technical) ? What is best practice ?
    2. What will be the role and responsibilities of GRC consultant ?
    3. What are best practices say about the GRC Deployment ?
    4. What is the best landscape with GRC ?
    5. When GRC - ERM will be 100% bug free ?
    Regards
    Vimal

    Hi Vimal ,
       Almost all the questions you posed are very generic ( As you rightly said,  these are the BASIC QUESTIONS) and really need a lots of explanation to understand the product , here I have just given a few reference sites try to visit , it may be helpful in  answering few of your queries 
    1. Who will be the part of the GRC (functional or Technical) ? What is best practice ? 
    Ans: Both ( also include many other teams like  Business Process Owners  etc etc )
    2. What will be the role and responsibilities of GRC consultant ?
    Ans: Quite a Lot Depends on the area where the consultant is working
    3. What are best practices say about the GRC Deployment ? 
    Ans: These are the few customer feed back try to visit   http://www.sap.com/solutions/sapbusinessobjects/customers/testimonials/index.epx
    4. What is the best landscape with GRC ?
    Ans : Lots of documents available , but its always depends on your requirement , However try to visit http://www.sap.com/solutions/sapbusinessobjects/governance-risk-compliance/index.epx   You will get the better understanding of the GRC , then based on the requirement , the landscape will change.
    5. When GRC - ERM will be 100% bug free
    Ans: I feel,  we canu2019t not say any software is 100 % Bug free , As you know that people always try to improve the quality of product by minimize the Bugs , and as and when a customer/ Consultant found a bug , SAP is always address in very less time and they release the patch/Note to address these issues.
    Thanks & Regards
    Umashankar T ekumudi

  • Basic Questions on BOBJ inrelation with BI

    Hi,
    I am working in SAP BI 2004s. I have few basic questions on BOBJ.
    1. What is Rapid Mart? Is it an ETL tool? If so is it set to replace existing BI extractors from ECC (R3)?
    2. when data is extracted thru Bussiness Obejcts rapid mart where the data will be stored? BI Info Cubes? or any data ware house tables?.
    3. If stored in BI InfoCubes, should universe to be created for the cubes? if so, each dimesnion will be treated like a table to create joins?
    4. Can I automate the result of WebI downloaded to excel to Excelcius Dashboard with any manual steps involved? in otherwords Xcelcius shows the chart or dashboard out of the WebI query result.
    ( I am trying to see how all these products work. In 2004s I use WAD and call individual queries to generate a dashboard)
    Thanks,
    Alex.

    Hi,
    1. What is Rapid Mart? Is it an ETL tool? If so is it set to replace existing BI extractors from ECC (R3)?
    A Rapid MArt is a pre-designed set of database schemas, universes and reports from BusinessObjects. Available for SAP ERP as well. Details can be found here : http://www.sap.com/solutions/sapbusinessobjects/large/intelligenceplatform/im/data-integration/rapidmarts/index.epx
    2. when data is extracted thru Bussiness Obejcts rapid mart where the data will be stored? BI Info Cubes? or any data ware house tables?.
    When it is a Rapid Mart then it is a relational database but the tool - Data Services - can also load to other targets like BW.
    3. If stored in BI InfoCubes, should universe to be created for the cubes? if so, each dimesnion will be treated like a table to create joins?
    You can create multi dimensional universes and relational universes on top of BW. Depends on your goal really.
    4. Can I automate the result of WebI downloaded to excel to Excelcius Dashboard with any manual steps involved? in otherwords Xcelcius shows the chart or dashboard out of the WebI query result.
    ( I am trying to see how all these products work. In 2004s I use WAD and call individual queries to generate a dashboard)
    Yes - possible.
    perhaps you can provide  a little bit more on what you trying to achieve and then I can point you to more specific information.
    ingo

  • Basic questions from techie thicko with 'new' G4

    I've looked but can't find the answers to these basic questions.
    My new (reconditioned) computer as below came with just the operating systems and something called 'Cloner' plus some Utilities.
    A) What is the best way to switch between OSX and Classic?
    (It defaults to X on start-up and I can get to X from Classic by re-starting pressing 'x'. If that's the right way to do it, what is the approved way of getting into Classic?)
    B) I'm not sure (after reading about it!) what I can do with Cloner and how.
    C) I have AppleWorks on OS9. Can I update this for OSX? Failing this, is there a Software Download that will give me a basic DTP facility until I can afford to buy an advanced programme? I also have Pagemaker 7 in Classic.
    D) I have been transferring stuff to Classic from my iMac DV 9.2.2 with my card reader and this seems to work well. Anything to watch out for?
    There's more but I can't impose on members' kindness too much!
    For future reference, is it possible to post pictures on these boards and if so how please? I have Photoshop and hosting sites.
    Sorry to be a pain but I really am an idiot about techie stuff.
    Thanks for any help.

    I'm not sure what Cloner does. It sounds as if it may clone the hard drive, a bit like Carbon Copy Cloner:
    http://www.bombich.com/software/ccc.html
    I'm wondering whether it was just used to put the operating systems and utilites onto the drive in the first place when they reconditioned the computer. Perhaps they use a 'master' drive and just clone it to the drives in the computers they're reconditioning, rather than installing everything separately and repeatedly.
    I think version 6 of AppleWorks runs under both OS 9 and OS X natively. If you have an earlier version, I'm not sure whether it's a free downloadable upgrade or whether you have to pay for it.
    I'm sure the card reader works fine, although you could network the two computers together with an ethernet cable and create a small network. With two computers you just need a crossover cable to create a crossover network:
    http://docs.info.apple.com/article.html?artnum=106658
    If you're thinking of keeping your iMac, that may be a better long term solution. You could then use the iMac as your OS 9 machine and the PowerMac as your OS X machine if you wanted to.

  • Basic Questions on CUBE & DSO size

    Hi Experts
    I had a few basic questions with Regards to Cube and DSO.
    I had a CUBE  & ODS in Live with Historical Data from 2000 to tell date.
    1) How can i check the No of Data Records avaliable in Cube (2000 to till date)
    2) How can i check the No of Data Records avaliable in ODS (2000 to till date)
    AND
    3)When i check the Data Load request in Cube (Context Menu Manage) in request tab i can see
    Request ID,Avaliable for reporting...Transfered Records & Added Records
    What is the difference between Transfered Records & Added Records in a request
    Thanks in advance

    Hi,
    1 & 2. to check ODS/Cube data goto SE11/SE16-->give the name of the ODS/Cube as /BIC/A(ODS name)
    and for the cube as /BI0/F(cube name) (before compression) and /BI0/E(cube name) (after compression).
    3. Transferred records--> are the records loaded from Source.
        Added records--> these are the records which are added to the cube/ods. This added records will depends on the Transfer/update rules of cube and ODS and also key fields in the ODS. This added records may be less or greater than transferred records.
    Added to FCI the program: SAP_INFOCUBE_DESIGNS is to display how many rows per dimension table.
    Hope you understood ......
    Edited by: Ravi kanth on May 19, 2009 5:25 PM

  • Basic questions about connection sharing and radio mode

    I just got TC and have a couple of basic questions.
    At home I have a D-Link ADSL modem/router (no wifi) plugged into the wall, and would like TC to provide wifi. I've connected the WAN port to some LAN port of the router and everything works fine. The intented usage of the setup is wifi-only. Would you recommend TC to do DHCP/NAT? Or is Bridge mode better? In the latter case I don't fully understand who's routing the wifi network (though it actually works).
    Second question is about radio mode. My wife has an iBook G4 that is not capable of talking 801.11n, so I selected the n mode compatible with b/g. In that mode my black MacBook will still be able to talk 801.11n with TC? The iBook has very low usage, it is fine that computer uses 801.11g for TC, but I'd like the MacBook to go full-speed. (If that's not possible I'd ponder purchasing an 801.11n adaptor of some sort for the iBook.)

    Would you recommend TC to do DHCP/NAT? Or is Bridge mode better?
    It doesn't matter.
    In the latter case I don't fully understand who's routing the wifi network (though it actually works).
    The D-Link modem/router.
    In that mode my black MacBook will still be able to talk 801.11n with TC?
    Yes. It will only suffer lower bandwidth if the iBook G4 is actively connected.

  • Basic questions about Notes domino connector

    Hi,
    I have a very basic question about the Lotus Domino connector for OIM. We have a requirement to provision accounts into the domino mail server and while doing that also update some information directly into a separate nsf file.
    I checked the documentation and it seems while configuring an IT resource, we need to give the Mail DB path, and thats the only place where it refers to it.
    Could you guys please let me know if this can be done? Can I write directly to a different nsf file, which is not like provisioning to the complete mail server. So the other attributes in the IT resource may not be able to be set up as its just the file I need to provision into.
    Looking forward to your response.
    Thanks, M

    Hello folks, please share your experience working with the lotus notes connector.
    Thanks, M

  • VERY Basic Questions about Oracle eBusiness - what "languages" are used?

    Please forgive the very basic nature of this post- (I have been in systems (IT) for over 20 years, so I do have lots of systems experience, but no exposure to this particular software.)
    So here are the basic questions - I assume that much of the data base logic is written in PL/SQL, but what other tools / languages are the applications written in?
    (Oracle Forms, Oracle Reports, Java, C, something else?)
    With over 20 years and experience with a number of other packages, I can learn a great deal about an application by 1. Looking at the DB structures (charts), 2. looking into DB code (Packages, triggers, procedure, functions) and 3. Seeing the screen shots.
    None of my customers have had Oracle eBusiness - that have had home grown applications or other COTS/packages.
    can anyone suggest a place where an independent person can inexpensively get some exposure?
    My sincere thanks for any answers/suggestions. 

    Hi,
    Please refer to the following links for details about the different database releases and Oracle tools.
    Oracle Timeline
    http://www.oracle.com/timeline/index.html
    http://www.oracle.com/oramag/profit/07-may/p27anniv_timeline.pdf
    Oracle Corporation - Oracle FAQ
    http://www.orafaq.com/wiki/Oracle_Corporation
    Oracle E-Business Suite consists of Application/Database/Client tiers, you can find more details in [Oracle Applications Concepts|http://www.oracle.com/technology/documentation/applications.html] manual.
    Oracle Forms
    http://en.wikipedia.org/wiki/Oracle_Forms
    Regards,
    Hussein

  • MapViewer - A team of newbies and definitely basic questions...

    Dear All,
    We are a team of programmers who are very new to MapViewer. We are an experienced team of GIS programmers, however, we find difficulty in applying known functions to MapViewer. It's a great application, but a lot of unknowns.
    We have very basic questions, as well as advanced ones. I would like to summarize them as follows:
    1. How can I let the map to be zoomed into a specific feature?
    2. How can I execute a query to find a specific feature?
    3. How can I execute network analysis query to find the shortest path or paths between two or more nodes?
    4. How can I find out the nearest node to the location when user clicks on an arbitrary location on the map?
    5. How can I execute generic queries, without (this is important) need to send/receive XML queries?
    6. The bottomline is: we just want to use ready made functions to make it as easy as possible.
    Anyhelp is greatly appreciated. We are stuck with the basics of MapViewer (Oracle Maps).
    Please help us find the light :)
    Best regards.
    Desperate MapViewer Team!

    Here are some quick answers, hopefully they are not too late.
    1. You will construct a theme (mostly a dynamic one) that contains the specific feature, then call the theme's setBoundingTheme(true). Typically what we see people do is: a) create a dynamic theme with a query that selects a set of features; b) create a FOI layer based on the theme (MVThemeBasedFOI); c) call the setBoundingTheme(true) on the FOI layer. The end result, is that MapViewer will process your query and return the FOI data to the Oracle Maps JavaScript client, which will zoom the map to include the set of features in the FOI layer. Check out Oracle Maps tutorial #35 for an example.
    2. This is partly answered above. Basically you will construct a theme with a dynamic query string. You may want to check out tutorial #37 which finds out and displays the buffers around a set of points; the buffers are constructed via a SQL query at run time.
    3. This is not really a MapViewer question; rather, you may need to consult the Oracle Spatial routing engine XML API; the gist is you send the XML route request to the routing server, which returns a set of coordinates for your directions, which you can construct (MapViewer) FOI objects out of and display them on the map.
    4. I'm not sure our routing engine or network data model API has such a function ready for use; what you can do is if you can formulate the SQL query string (with the current location represented as a binding variable), then you can create a theme out of this query condition, and simply supply the location at run time to get the set of nodes.
    5. Can you please elaborate on what do you mean by generic queries? A simple usage scenario will help.
    6. We understand; there are quite a lot of things that can be made easier out of the box and we are working towards that. in the mean time, just ask questions if you have them; and always check out the Oracle maps tutorials first (actually reading the MapViewer primer article should be the absolute first step :) ).
    thanks
    LJ

Maybe you are looking for

  • Issue in changing the Mountain logo in CRM WEB UI

    Hi Everyone, My requiremnet is to change the mountain logo in the web ui logon screen. I have done all the configurations as per the link given below: New Skin Management Part 3 - Example about how to change the image above WorkCentre from CRM7.0 Ehp

  • Can no longer access Graphite Base Station, Please help

    For no apparent reason, my DP 800,10.4.11 can no longer access my Graphite Base Station. For years I have had no problems. But this morning I lost access to my base station. I entered the PW as usual, but it did not allow access. I verified the PW in

  • Signing Adobe PDF

    Hi, I am trying to "sign" a PDF file. I was able to this AM, but I cannot all of a sudden. It wont let me write or anything. Please help I need this for work!

  • Zen X-FI 2 Help Thread.

    At first I was disheartened after reading the bad experiences with the the zxf2 a lot of people were having, specially because after months of researching for a good portable FLAC player I was ready to pick a lesser known brand that was open to dozen

  • SAP HANA studio OpenSuse 12.3

    Hi All, I'm trying to install SAP HANA Studio on a OpenSuse 12.3 OS. As soon as I unpack the .SAR files and I run the ./hdbsetup command I get the following error message: cannot load wxWidgets properly: Can't load '/home/vbar/HANA/SAP_HANA_STUDIO/in