Best method to move data from ArcSDE to Oracle Spatial/Mapviewer environment?

If ArcGIS Geodatabase is the standard data store for GIS data, but business IT wants to make use of an Oracle Spatial/Mapviewer environment, what is the best practices recommended approach for interfacing between the two data stores.  (perhaps this is an Oracle Spatial question, but tools exist here as well.)

Yes, This question is more suited for the Oracle Spatial Forum.
And about the question, you must use Esri's owns products like ArcCatalog or Arcmap to connect to oracle and change the format of your geometries. Arcgis is capable of storing geometrical data in oracle in SDO_Geometry format.
If you have question about the procedure of this action, don't hesitate to ask.
Regards,
Farid

Similar Messages

  • Best LKM to move data from with in Oracle from one schema to another Schema

    Hi Gurus,
    What is the best KM to move data from one schema to another schema within same oracle database.
    Thanks in advance

    Dear,
    If your source and target are on the same database server then you dont need LKM.
    You have to 1. create one data server for the database server
    2. Create one physical schema for your source and another physical schema for your target under the above created data server.
    3. Then create models for each above created physical schema
    In this case you just need IKM knowledge module
    Please refer http://oditrainings.blogspot.in/2012/08/odi-interface-source-target-on-same.html
    If your source and target are on different server then you must create two different data servers in topology. You have to use LKM.
    The best LKM to use is LKM oracle to Oracle dblink. But you should have proper grants to use it
    If your source has very few records you can go with LKM SQL to Oracle other wise use LKM oracle to Oracle dblink

  • Best way to move data from page to page inside app

    Hi all I started writing this and it got way to complicated to explain in full without a novel.
    Breif description. I am using query string that starts in the parent window (from href in json file) it then has to be moved into the iframe url when moving to other pages to avoid security as page and iframe are conflicting http and https. and cannot be accessed.. it seems there must be a better way.
    So my question is what is the best way in open platform to move data from one page to another?

    Hi Liam
    Small data just a webapp ID and I am using the URL. But if you pass a ID say from Json ie "href":"/Admin/AppLoader.aspx?client_id=dev-name&ID=111111" it gets passed to the page url. This can be referenced using document.referrer initially. As the app is inside another frame and url that is https there is security issue using parent.location between https and http. Fine but then if you move to a new page referrer is no longer as there is no real referrer and you have to use location but you cannot. Now the work around is to pass the value from the page url to the app url at the start. and then you get around http https security issue when using parent.location but this seems convoluted and like a work around. Is this really the only way or the best way or a bad way. without using other ways that seem over kill for 6 odd characters.

  • What is the best way to move data from one array to another

    I'm going to be moving data from one array to a larger array on the same RAID but different controller. (I have some extra extra drives I'm also going to be installing Retrospect so I can't just restore from a backup.)
    The RAID has 450GB of production files, fonts etc.
    What is the best way to move the data over?
    I saw that someone had suggested using ditto. Would that be better than MacMV?
    I also own Bru LE so I could use that.
    Any advice would be appreciated.
    Thanks,
    Paul

    Ditto is a great option -- probably the best.
    ditto -rsrc src_folder /Volumes/targetvolume/targetfolder

  • What is best method to retrieve data from two databases

    I'm writing a report that needs data from two sql databases. Not the same brand. Grouping and sorting fields come from both databases, so I can't just read one and retrieve data from the other. It seems to me I have to extract data from each data base using crystal reports, merge the two files using crystal reports and feed the merged file into crystal reports. I've not found a simpler or better method in the Crystal Reports documentation. Is there documentation about doing this process on the web site or with crystal reports documentation? My method seems cumbersome so I'm wondering if there is a better method.

    Jeffrey,
    A cheap and effective solution, for a periodic transfer would be using XML.
    If you have the DDL for all of the objects in the database, you can just duplicate it on whatever RDBMS engine you want, and then, extract the data, table per table into XML files from the target server, and then load the files into the target server.
    Otherwise, if you are going to do this in an ongoing basis, then, use SAP Replication Server. The best asynchronous, real time, heterogeous replication solution in the industry, exploited with a great deal of success by many critical mission financial applications with global topologies and sub second latency.
    My two cents.
    I hope they help.
    Regards,
    Jean-Pierre

  • Best way to move data from table to a file

    Hi,
       I have a two tables in ecc, And I need to read the data and copy to a file and ftp to another server.
    One table is really huge. What is the best approch to move this data using PI. I can not avoid PI, since it needs some mapping.
    1. Proxy-PI-FTP
    2. Dump the data to a file and use FTP_PI_FTP
    3. Any other.
    Thank you
    Moni

    it is really a project decision but I can give you some pro's and con's.
    Proxy --> File
    You cab communicate directly with the XI pipeline which means you don't have to go through the adapter engine.
    RFC --> File
    This is very standard SAP and most ABAP programmers will be able to utilize this.
    IDoc --> File
    Standard SAP ALE technology but can get very big due to useless segments
    Dump File
    The biggest positive of this is the fact that you wouldn't have to convert to XML which will ensure that the message doesn't grow in size as is the case with all of the above.
    This is very brief but should give you a good idea....

  • Best method for transferring data from one database to another?

    There is an 8i database I have to deal with on a regular basis. Besides being completely outdated and unsupported, in my opinion the database has not been well-maintained--for a table with 25 million records, should ‘select count(*) from table;’ take 5 minutes to run? I don’t really know, but that seems long to me. Many complex queries (most including only tables with less than a million records) take a ridiculously long time to run, to the point that I can’t even run some of them.
    I am not the DBA; I don't have the authority to fiddle with the database (nor would I feel comfortable doing that), and the powers that be will not put effort into improving functionality of this database due to an alleged plan to update/replace it within the next year. However, in the mean time, I still have to get data out of this database on a regular basis.
    I have XE 10g installed on my local machine, and I have set up a database link in it to the 8i database. I have found that I can pull in basic data (simple queries) from the 8i database into tables in my XE database (e.g. create table tbl1 as select data from tbl1@8idb) and then query those tables to get the information I need much, much faster (including creation of the tables). While this option does not allow me to create queries/reports that other people can run, it makes work I’m doing only for myself much faster.
    What I’m wondering is, what is the best way to bring the information I need over to my database? I usually don’t need entire tables, and I can probably identify a number of key tables (or parts of tables) I need. What I’ve been doing up until now is writing CREATE TABLE statements on the fly, but then I end up forgetting what all I’ve done, and each time I want up-to-date data, I have to drop the tables and re-create them. It seems to me that there should be an easier way to do this than to copy and paste from a text document into SQL*Plus.
    Does anyone have any suggestions for me on how best to do this?

    Sorry, I guess I posted this in the wrong forum. I re-posted in the database-general forum.

  • Best Method to move CATSDB from 4.6 C to ECC 6.0

    Hi....
    Please share your experience or Knowledge base or Best Practice in the area of CATSDB Migration from 4.6C to ECC 6.0
    Thanks & regards,
    Rao

    Edited by: Rao on Mar 31, 2009 12:47 PM

  • What is the best way to move data from an old G3 to a new iMac?

    The G3 does not recognize a USB flash drive. Will an external hard drive work if we have software to install drivers?

    Use an ethernet cable to connect the two computers, and set up file sharing. After that copying files from one computer to the other is exactly like copying from one hard drive to another:
    http://docs.info.apple.com/article.html?artnum=106658

  • Preferred Method to Move iTunes from PC to Mac

    I have read for a few hours and seen several threads about this particular topic, but have also seen several different suggestions. I realize that the best method to move songs from a PC to a new MAC will vary based on other factors (use of an external hard drive, iTunes/music backed-up to CDs, etc.), so I feel that I should present my situation and see what the experts recommend. Here's my current set-up:
    1) I have a windows-based PC with 3 user accounts and 3 different iPods with 3 different libraries.
    2) I keep the iTunes folder on one drive (C) and all of the music on a second hard drive (L).
    3) I intend to buy a new Macbook Pro and want to migrate 1 or more of these PC-based iTunes libraries and corresponding music files to the new Mac.
    4) I have iTunes 7 and have recently backed-up each of my iTunes libraries onto CDs (just being a little cautious).
    5) I also have a USB external drive with all of my iTunes info and songs.
    6) I have two 20gb 4G iPods models and one very new 8gb Nano. I intend to upgrade my two 4G iPods to new classics or new Nanos soon, too.
    7) I don't have migrate all 3 libraries to the new Mac, but would likely want to move two.
    From what I have read, I could use the CD back-up's, the iPod itself (after consolidating libraries), the external hard-drive, or a 3rd party software.
    My confusion stems from the fact that I have multiple PC-based accounts, iTunes libraries and keep my iTunes folder in one drive and my music in another. So, I am hoping that some guru's here can take my scenario and suggest the most efficient, user-friendly approach for me to migrate my iTunes libraries and songs from the PC to the new Mac.
    I'd also want to know if there's anything special I should do given that I want to get two new iPods, too. Thanks!

    bump (seeking input, please)

  • How to move data from 2 internal table to 1 internal table

    Can any body send me code that how to move data from 2 internal table into one internal table.
    Moderator message : Read ABAP documentation. Thread locked.
    Edited by: Vinod Kumar on Jun 13, 2011 11:45 AM

    Hi Mohdarif92;
    I don't know your full needs. But general method should be as below code.
    Please check exam below code.
    Best regards.
    data : begin of gt_result.
                ... like mkpf-...
                ... like mkpf-...
                ... like mseg-...
                ... like mseg-...
              end of gt_result
    select *
    into table gt_mkpf
    from mkpf where ...
    select *
    into table mseg
    from mseg where ...
    loop at gt_mkpf.
         loop at gt_mseg where ... = mkpf-...
            move-corresponding gt_mkpf to gt_result.
            move-corresponding gt_mseg to gt_result.
            append gt_result
         endloop.
    endloop.

  • Move data from one table to another

    Hi,
    I need to move data from work space -1 to work space -2. I need to move only selected data. From work space -1 to work space -2
    Work space -1
    Table -1_
    ID NAME Description
    1 xyz one
    2 abc two
    3 mnk three
    Table -2_
    ID PID NAME Description
    1 1 x1 -
    2 1 x2 -
    3 2 a1 -
    4 2 a2 -
    5 3 m1 -
    Table -1 is parent table and Table-2 is child. Here PID is parent key of table-1 and ID's in both the table are primary keys.
    Now i need to move data from work space-1 to work space -2
    Work Space -2 table structure
    Table - 1
    ID INDUSTRY_TYPE DATE DESC
    1 TNT - -
    2 MTN - -
    Table - 2
    ID T_ID NAME DATE DESC
    1 1 T1 - -
    1 1 T2 - -
    2 2 E1 - -
    2 2 E3 - -
    I need to migrate data from work space -1 of table 1 and 2 to work space - 2 of table 1 and tabe 2
    Please suggest me a query to migrate. Please let me know if the steps mentioned above is not clear.
    Thanks
    Sudhir

    Hi Sudhir,
    since data tables are not located in work-areas but in schema's I presume you mean the latter.
    A simple conversion statement would be something like :
    insert into table s1.newtable ( column1, column2, ... )
    select column1a, column2a, ...
    from s2.oldtable
    where ...
    First the master table, then the child table.
    This works using a user-id having al least read-access to schema s2. If no such user exists then use some export method.
    No relation to APEX though.
    Hope this helps.
    Daniel

  • How to move data from a staging table to three entity tables #2

    Environment: SQL Server 2008 R2
    I have a few questions:
    How would I prevent duplicate records, when/ IF SSIS is executed many times?
    How would I know that all huge volume of data being loaded in the entity tables?
    In reference to "how to move data from a staging table to three entity tables ", since I am loading large volume of data, while using lookup transformation:
    which of the merge components is best suited.
    How to configure merge component correctly. (screen shot is preferred) 
    Please refer to the following link
    http://social.msdn.microsoft.com/Forums/en-US/5f2128c8-3ddd-4455-9076-05fa1902a62a/how-to-move-data-from-a-staging-table-to-three-entity-tables?forum=sqlintegrationservices

    You can use RowCount transformation in the path where you want to capture record details. Then inside rowcount transformation pass a integer variable to get count value inside
    the event handler can be configured as below
    Inside Execute SQL task add INSERT statement to add rowcount to your audit table
    Can you also show me how to Check against destination table using key columns inside a lookup task and insert only non
    matched records (No Match output)
    This is explained clearly in below link which Arthur posted
    http://www.sqlis.com/sqlis/post/Get-all-from-Table-A-that-isnt-in-Table-B.aspx
    For large data I would prefer doing this in T-SQL. So what you could do is dump data to staging table and then apply
    T-SQL MERGE between tables (or even a combination of INSERT/UPDATE statements)
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • Best Practice on querying Data from Database

    Hello and I was wondering what is the preferred and best practice for querying data from an SQL database inside a JSP page. Is it using the JSTL library or another method? Thanks

    It depends on the size of the application really.
    The "correct and preferred" approach in a large MVC app would be to have a seperate class that does all the database access, retrieving the data into java objects.
    Check out [url http://java.sun.com/blueprints/corej2eepatterns/Patterns/DataAccessObject.html] DAO pattern
    You then "save" the data into request/session attributes, and forward to a jsp page to render the result.
    Most approaches recommend a separation between JSP (the view) and SQL code.
    The JSTL sql tags are provided more for "quick and dirty" code applicable in small applications, or for fast prototyping. That approach is not really robust for large scale applications.
    Cheers,
    evnafets

  • What could be the best way to Export data from 11.5.8 instance to 12.1.2?

    Hi All
    What could be the best way to Export data from 11.5.8 instance to 12.1.2?
    Release: 11.5.8
    OS: Oracle Solaris on SPARC (32-bit) verison 9
    DB: 9.2.0.1
    Thanks in advance

    What kind of data you are looking to move?
    Database export/import is only supported for full database export/import and the application release should be the same on the source/target nodes.
    You can move the setup using iSetup or FNDLOAD.
    Thanks,
    Hussein

Maybe you are looking for

  • How to transfer files from MacBook Pro pages app to iPad mini pages app?

    How to transfer files from MacBook Pro pages app to iPad mini pages app?

  • AW01N - COMPUTE_BCD_OVERFLOW (SAPLAFAR)

    Hi, After having implemented a new depreciation area (AFBN) In TCODE AW01N or in TCODE AFAR, I get the following error message COMPUTE_BCD_OVERFLOW, saying that in the include LAFARF05, the calculation exceeded 31 decimals. The exception trigerred is

  • Help ipad 1 won't start up ?

    My Ipad 1 won't start up, after the apple sign I just get a scrolling circle in the middle of the screen. It eventually switches itself off. Any ideas what I can do or is it finished ?

  • Solid State Drive (SSD) on Recent Mac Book Pro

    I bought a non-retina 15 inch MacBook Pro in late August / early September, with a 1 TB hard drive. Originally my intent was for the largest hard drive so I could keep my itunes music libarary (Approximatley 60 GB) on there. I've only used about 115

  • Problem query inside a function

    Hi, I'm trying to create a function that returns me a value after I pass 2 input parameters, a number and a string. I've written the function in this way: create or replace PACKAGE BODY WORKFLOW_STATISTICS AS FUNCTION JOB_MEAN_TIME(workflowID IN NUMB