Multiple Maps to load a Fact - Can it be consolidated?

We have a fact in which we do the following
- Insert from one set of source tables
- Insert from another set of source tables
- Update the inserted records with data from another table
At this time, we are planning to implement this as three different maps, and run these maps sequentially. Is there a better way of doing this, like doing it in one mapping?
Anand

That depends on your amount of data. An update is usually a bad option, because it is very slow. Bringing all etl-logic in one mapping will cause a complex mapping which also is not a good way.
An better idea would be to use "worktables" in which you write the intermediate results of the first to mappings. You should search for a way to transform that data while loading it from one table to the other, instead of updating it afterwards.
Tobias

Similar Messages

  • Nokia Maps not loading any new maps data on the fl...

    Hi,
    Just posted a thread on City lens not working properly with Maps, but now I notice that Maps seems to have problems of its own: without Wifi, I can't use satellite maps or indoors maps. As a matter of fact, even the plain vanilla street maps mode seems to work only because I've downloaded offline maps for my country. If try to zoom in on a neighbouring country without wifi, no detailed maps load.
    Nokia Drive doesn't seem to have this limitation, it will happily load detailed maps data over the air too. Using Lumia 920, original firmware, and Maps version 3.1.177.8.
    This can't be by design, or can it?

    Some more interesting symptoms from this issue:
    After restarting the phone, if I immediately launch Maps or City Lens, I can enjoy a short moment (maybe a minute or two) of having the features work over cellular data connection.
    The non-functionality of these features seems to correlate with how the Dialer tile on the start screen identifies my network (only medium-size or large tile will show the name). If the tile reads "Saunalahti" (the name of my operator), everything will work as it should. Some minutes after booting the id changes to "Oma verkko" (="Own network"), at which point cellular connection seems to stop working, but only for these very specific use cases. I can happily use IE10 or other apps which require data connection even with WiFi off.
    If I go to Settings / Network and choose my network manually from the list (i.e. I choose "Saunalahti"), the Dialer tile will for a short while again revert to showing "Saunalahti", and I get another 2 minutes of functionality.
    So yes, I guess it does look like a network issue, or perhaps an issue with how the device deals with roaming networks. My network provider told me it's probably something with the phone or its settings and suggested I contact Nokia. Nokia will probably tell me it's obviously something with the operator and direct me to them .

  • Is there a way to create multiple map tile layers at once?

    Hello experts,
    I have a small problem. It's mainly a matter of saving some time. I need to create 51 map tile layers in mapviewer, and I would like to this this at one time. I can go to the admin console-->Management-->Manage Map Tile Layers-->Create, and then I can create one at a time. But it really would be nice to create them all at once!
    I tried using the XML mode interface, and I can use the following code to create one map tile layer:
    <?xml version="1.0" standalone="yes"?>
    <map_tile_server_admin_request>
      <create_map_tile_layer data_source="xxxx">
        <map_tile_layer
            name="FOUNDATION"
            http_header_expires="168"
            image_format="PNG">
          <internal_map_source base_map="FOUNDATION"/>
          <tile_storage root_path="/scratch/tilecache" />
          <coordinate_system
              srid="8265"
              minX="-180" maxX="180" minY="-90" maxY="90"/>
          <tile_image width="250" height="250" />
          <zoom_levels levels="10" min_scale="5000" max_scale="10000000">
          </zoom_levels>
        </map_tile_layer>
      </create_map_tile_layer>
    </map_tile_server_admin_request> And it creates one layer. But when I try this:
    <?xml version="1.0" standalone="yes"?>
    <map_tile_server_admin_request>
      <create_map_tile_layer data_source="xxxx">
        <map_tile_layer
            name="FOUNDATION"
            http_header_expires="168"
            image_format="PNG">
          <internal_map_source base_map="FOUNDATION"/>
          <tile_storage root_path="/scratch/tilecache" />
          <coordinate_system
              srid="8265"
              minX="-180" maxX="180" minY="-90" maxY="90"/>
          <tile_image width="250" height="250" />
          <zoom_levels levels="10" min_scale="5000" max_scale="10000000">
          </zoom_levels>
        </map_tile_layer>
      </create_map_tile_layer>
      <create_map_tile_layer data_source="xxxx">
        <map_tile_layer
            name="FOUNDATION_WY"
            http_header_expires="168"
            image_format="PNG">
          <internal_map_source base_map="FOUNDATION_WY"/>
          <tile_storage root_path="/scratch/tilecache" />
          <coordinate_system
              srid="8265"
              minX="-180" maxX="180" minY="-90" maxY="90"/>
          <tile_image width="250" height="250" />
          <zoom_levels levels="10" min_scale="5000" max_scale="10000000">
          </zoom_levels>
        </map_tile_layer>
      </create_map_tile_layer>
    </map_tile_server_admin_request>...it creates only the first map tile layer in my xml request.
    Is there any way to create multiple map tile layers at once?
    Thank you!
    John

    Michael,
    It looks like you are right! Thank you for your help.
    I still have a small concern. I looked at the documentation and it reads,
    "The configuration settings for a cache instance are stored in the USER_SDO_CACHED_MAPS metadata view. You should normally not manipulate this view directly, but should instead use the MapViewer administration tool, which uses this view to configure map cache instances."
    But, I tried inserting records into USER_SDO_CACHED_MAPS and it works, and I can't really see any reason not to directly insert records into this table, so...
    Perhaps that warning is there simply because potentially you could screw things up tinkering with the table directly.
    Cheers!
    John

  • How do you get to the "Multiple Item Information" window so I can click "Part of a compilation:?

    How do you get to the "Multiple Item Information" window so I can click "Part of a compilation"?  When I transfer a CD to iTunes, and the CD has ten tracks, it loads as ten different albums.  Also, once this happens, do I have to delete the album and start over or is there a way to merge the albums in iTunes?  Using iTunes 10.04.08.

    And you've made me remember that using the compilation flag may only work in iTunes if you go into the Songs view, then use View > Column Browser > Show Column Browser and then View > Column Browser > Group Compilations to make sure this line is ticked.
    It is also best if View > Column Browser > Use Album Artists is also ticked.
    tt2

  • Multiple 'logical joins' between a fact table and one dimension table

    It appears that one cannot create multiple ‘logical joins’ between a fact table and one dimension table in OBIEE using the Oracle BI Administration Tool. For example, considering a Business Model with a dimension table TIMES and a fact table FACT containing START_TIME and END_TIME, we would like to create separate logical joins from FACT to TIMES for the START_TIMEs and END_TIMEs? Obviously, the underlying foreign keys can be created, but as far as I can tell the Oracle BI Administration Tool doesn’t support this. The workaround would be to replicate the TIMES table, but that’s ugly.
    I seek an alternative approach.

    Try this. Create an two aliases for the TIMES dimension (Start & End) in the Physical Layer and then remove foreign key to the "Parent" Times dimension. Create the Foreign Key in the Physical Layer to the new aliases and then create the complex joins in the BMM Layer to the new aliases as well. This will allow you to present both dates within the same table in the Presentation Layer. Not the most elegant solution but it works.

  • Multiple Mapping in XI 3.0

    Hi All,
    Any body tell that "HOW TO CREATE MULTIPLE MAPPINGS IN USING XI3.0"
    If you have any step by step procedure please provide me.
    Thanks & Regards
    Venkata

    Hi,
    There are "multi-mapping" and "executing multiple mapping programs".  Do not know which you are referring.
    The above reply refers to multi-mapping.  But, if you want to execute multiple mapping programs, you can develop each mapping program by itself, using Message Mapping, XSLT, java or ABAP.  Then, in Interface Mapping, you can assign those mapping programs in the order they should be executed.  The output of the 1st will be used as input to the 2nd, and so on.
    Regards,
    Bill

  • Cluster Apex MS's across multiple nodes for load balancing?

    Can Cluster Apex MS's across multiple nodes for load balancing? If Yes/No, any supportive doc's will be much appreciated.
    Here is what I did ..........
    I tried multiple MS's on different nodes for Apex Domain (clustered)
    Deployed apex.war, i.war with targets pointing to cluster.
    Apex listener techstack is shared filesystem $HOME/apex, where apex-config.xml and bdb are available
    Anyone of the MS's whichever started up first is locking up bdb and 500 server shows up when internal workspace is being launched with host specific url, where as it works fine for the host which actually locked up bdb (first MS that was started)
    2nd MS shows errors as below in log files ..
    Caused By: com.sleepycat.je.EnvironmentLockedException: (JE 4.0.103)$HOME/apex/bdb The environment cannot be locked for single writer access. ENV_LOCKED: The je.lck file could not be locked. Environment is invalid and must be closed.
    Its expected behavior until here .....
    ++++ I tried something to get it working ++++
    Whilst both MS's are up and running, delete $HOME/apex/bdb but let apex-config,xml be as it is...now the internal workspace urls for both hosts work fine. I logged into host specific urls and navigated, created/edited users.,etc and it is all looking good but it did not create new bdb directory under $HOME/apex ...!!
    Having said its working fine, the same issue repeats after the MS's bounce. So I did put a command line to delete bdb dir once the MS comes up to avoid the issue but really not sure if this is the right way at all?
    Geek's ...awaiting your advice!!

    Hey there,
    I managed to fulfill my requirement..
    If its a cluster on same machine or across machines, this should work
    1. Login to machine, cd $DOMAIN_HOME
    2. mkdir -p Apex_lsn_config/AdminServer Apex_lsn_config/<MS1> Apex_lsn_config/<MS2> # MS1 and MS2 are the Managed Server names as appropriate
    #If you are planning for cluster spawning MS's across machines, make sure you create the dir's on step 2 for each machine respectively. (in my case $DOMAIN_HOME is not shared)
    3. Copy apex-config.xml from the /tmp/apex or whatever location you have it currently to Apex_lsn_config/<MS1> Apex_lsn_config/<MS2>
    4. cd $DOMAIN_HOME/bin; cp -p SetDomainEnv.sh SetDomainEnv.sh.orig #Backup the file
    5. Append -Djava.io.tmpdir in SetDomainEnv.sh as below for JAVA_OPTIONS # Do it on both machine if you are not sharing DOMAIN_HOME and planning cluster across machines
    -Djava.io.tmpdir=$DOMAIN_HOME/APEX_CONFIG/${SERVER_NAME}
    Hint: Search for "iterativeDev" and append the same line with -Djava.jo.tmpdir
    6. Modify "java.io.tmpdir" from the web.xml file of apex.war as below and re-deploy the war
    <context-param>
         <param-name>config.dir</param-name>
         <param-value>${java.io.tmpdir}</param-value>
    </context-param>
    7. Bounce Weblogic Admin and Manged Servers. Make sure to tail the Managed Server log to see apex-config.xml is picked from the new location.
    8. Brew a Coffee for yourself :)
    - You find the instructions on creating a cluster from weblogic documentation, the steps mentioned above are only to overcome the bdb locking issue whilst creating a cluster.
    Did it help?
    Edited by: Oratime on Mar 25, 2013 2:44 AM

  • CRM business role - user mapping initial load

    Hi,
    I'm tyring to initial load the data from the CRM systems into IDM. I'm able to get all data of the users expect their business role mapping(parameter in CRM).
    in the read pass of the user from the abap initial load , the attribute for the parameter is as follows,
                        Target                                                                             Source
    sap%$rep.$NAME%Parameter1:Info:VARCHAR:255|                        parameter1
    but no data is stored in the parameter1 table though the user has some parameter mapped in the CRM system                 
    Can anyone plz help to load this user-business role mapping details.
    Thanks in Advance.
    Regards,
    Pricy

    Hello Pricy,
    can you just give me some hints on what you are trying to do exactly?
    My assumptions:
    - CRM business role is stored as user parameter in ABAP SU01 user data, right?
    - you want to read all the ABAP user data from your CRM system INCLUDING the user parameter data from ABAP SU01 user data, right?
    If that is the case at least the loading part should work pretty fine. I just tried this on my local system and had no issues, all user parameters of my existing ABAP users where loaded into one temporary table.
    -> Pass: ReadABAPUsers -> table "sap%$rep.$NAME%Parameter1:Info:VARCHAR:255|"
    Did you find this temp table created on your database correctly? My table is there and is called "sapT01_001Parameter1" (where my repository is named T01_001) and it contains all the existing user parameters.
    What exactly is your issue?
    Regards,
    René

  • Loading a fact table

    I am writing a stored procedure to load a fact table. Do we disable the primary key constraint on the fact table before we load the fact table.

    The oracle version is 10g"10g" isn't a version since that can include 10.1.x, 10.2.x and there are many differences.
    select * from v$version;
    How do you if a table is partitioned.select table_name, partitioned from all_tables;
    The partitioned column will have a 'YES'.

  • How to tell what maps are loaded?

    Please forgive me if this has been asked already:
    I have an N95 8GB, over the past few days, I've been playing around with the Map Loader program, loading different things up and deleting them. But, I can't remember where I left it, and which maps I have and haven't loaded yet. Is there any way of telling what maps have been loaded onto the device already? Maybe using the Map Loader or via the phone itself?
    Also, after I've loaded a few maps to the phone via map loader, is there any way to delete just some of the maps already loaded, but not all? When I was using the Map Loader, it didn't seem to give an option to delete some. It appears to be just a Delete All.
    Thanks!
    Kev

    That is the annoying thing about Map Loader. You have to delete all maps to delete just one.
    Anyway, it isn't all as bad as it sounds because Nokia Maps update their maps twice a year so you should reload your maps every 6 months to make sure you have the latest map anyway. So every 6 months I delete all maps and reload the ones I want.

  • Google Maps not loading on my iMac

    I can't get Google Maps to load on my iMac. Whenever I go to a web page that uses Google maps (i.e. http://connect.garmin.com/activity/29817682), the outline of the map loads and the scale, route etc. but the actual background map or satellite image doesn't load, it just sites there with a grey background and the status shows 'connecting to mt1.google.com'
    The number on the 'mt1.google.com' may be different as sometimes it is mt0.google.com, but it would seems as though my iMac can't connect to the Google servers.
    This happens in both Safari and Firefox and also any third party apps that use Google Maps.
    I thought it must have been an issue with my ISP or router, but I have a couple of PC's that connect to the internet through the same router on the same internet connection. These can all connect to Google Maps OK so it doesn't appear to be an issue with the ISP or the router, it is just my iMac that has this problem.
    Any ideas how to fix it? It does very occasionally manage to download the maps after about 10 minutes of trying but more often than not it doesn't.
    Thanks,
    Alan.

    Thanks William... That has certainly helped with diagnosis. Unfortunately I don't seem to be able to adjust any of those settings within my belkin router.
    Switching the firewall off in the router does allows Google Maps (and Google images that I was also having issues with) to load in both browsers and other applications. I'm a little reluctant to do this however as it doesn't really seem like a sensible 'fix'?
    Alan.

  • Blackberry map not loading!

    Hi all!
    BB maps not loading on my Z10. I wish to download official google map not developed by third party. It may be developed by either RIM or google for BB. Suggest me good one please
    By
    R Jagadeesan

    Bemaps 10 Pro
    Twitter: @ukmight
    1. Click on the " Like " button if you find anything helpful posted.
    2. If any of the replies in your post has resolved your problem, mark the reply(ies) as " Solution ", so that others can readily view the solution instead of creating another redundant post.

  • Multiple Mapping

    Hi All,
    I need some guidance on multiple mapping.
    Here is my scenario:
    Messages:Vendor_out****Vendor_middle****Vendor_Final
    Elements:****Zip -
    > Zip
    ****************City -
    > City
    ****************Street -
    > Street -
    > Street
    ****************Country -
    > Country -
    > Country
    **************************************Band -
    > Band
    (Note: Pls Ignore the asterix)
    Now how do I implement this mapping?
    When I implement triple mapping.
    i.e Step 1) Map Vendor_out --> Vendor_middle (Street,Country)
    Step 2) Vendor_middle -->Vendor_Final (Street, Country, Band)
    Step 3) finally Vendor_out -->Vendor_Final (City, Zip).
    When i perform step 3, I loose the mapping done for Vendor_Final in step 2 (Street, Country).
    Can someone help.
    Regards,
    Ashish

    Hi
    can you please provide the source structure and the target structure.
    Thanks
    Rinku

  • After closing the Firefox browser, a message appears "Severe error: Cannot load resource file; can not run". What could be wrong?

    The message: "Severe Error; Can 't load resourse file; can not run" appears after closing Firefox4. All other applications on my pc do not have this problem.

    I've found text of this error in npdjvu.dll plugin, remove it and error seems to disappear.

  • Since upgrading to Yosemite on my iMac, My Mail app refuses to open, Safari won't load, and I can't upload pictures from my iPad... Please help, any ideas very welcome. I've had my iMac since 2011, and have never had any issues to deal with before..

    Since upgrading to Yosemite on my iMac: My Mail app refuses to open, Safari won't load, and I can't upload pictures from my iPad...
    Please help, any ideas very welcome. I've had my iMac since 2011, and have never had any issues to deal with before..
    Thanks

    29/11/2014 20:17:01.315 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 11 seconds. Pushing respawn out by 49 seconds.
    29/11/2014 20:17:37.013 com.apple.backupd[616]: Finished scan
    29/11/2014 20:17:43.108 com.apple.backupd[616]: Saved event cache at
    /Volumes/Time Machine Backups/Backups.backupdb/Geoff Lambrechts’s iMac
    (2)/2014-11-29-200648.inProgress/9B453663-603F-40B8-AC21-24F05C724E15/.6162AD34- 38F8-30AB-98E0-4A22FB9D311F.eventdb
    29/11/2014 20:17:43.207 com.apple.backupd[616]: Not using file event
    preflight for Macintosh HD
    29/11/2014 20:18:01.561 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 11 seconds. Pushing respawn out by 49 seconds.
    29/11/2014 20:18:16.288 com.apple.xpc.launchd[1]:
    (com.apple.quicklook[715]) Endpoint has been activated through legacy
    launch(3) APIs. Please switch to XPC or bootstrap_check_in():
    com.apple.quicklook
    29/11/2014 20:18:23.705 com.apple.SecurityServer[56]: Session 100013 created
    29/11/2014 20:18:32.046 mdworker[718]: code validation failed in the
    process of getting signing information: Error Domain=NSOSStatusErrorDomain
    Code=-67062 "The operation couldn’t be completed. (OSStatus error -67062.)"
    29/11/2014 20:19:01.662 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 11 seconds. Pushing respawn out by 49 seconds.
    29/11/2014 20:19:45.458 com.apple.xpc.launchd[1]:
    (com.apple.imfoundation.IMRemoteURLConnectionAgent) The
    _DirtyJetsamMemoryLimit key is not available on this platform.
    29/11/2014 20:19:59.123 com.apple.xpc.launchd[1]:
    (com.apple.PubSub.Agent[725]) Endpoint has been activated through legacy
    launch(3) APIs. Please switch to XPC or bootstrap_check_in():
    com.apple.pubsub.ipc
    29/11/2014 20:19:59.123 com.apple.xpc.launchd[1]:
    (com.apple.PubSub.Agent[725]) Endpoint has been activated through legacy
    launch(3) APIs. Please switch to XPC or bootstrap_check_in():
    com.apple.pubsub.notification
    29/11/2014 20:20:01.138 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 10 seconds. Pushing respawn out by 50 seconds.
    29/11/2014 20:21:01.484 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 10 seconds. Pushing respawn out by 50 seconds.
    29/11/2014 20:21:13.430 com.apple.backupd[616]: Found 4529 files (1.1 GB)
    needing backup
    29/11/2014 20:21:18.786 com.apple.backupd[616]: 2.82 GB required (including
    padding), 1.24 TB available
    29/11/2014 20:21:31.775 Console[734]: Failed to connect (_consoleX) outlet
    from (NSApplication) to (ConsoleX): missing setter or instance variable
    29/11/2014 20:21:34.230 WindowServer[162]: disable_update_timeout: UI
    updates were forcibly disabled by application "Console" for over 1.00
    seconds. Server has re-enabled them.
    29/11/2014 20:21:36.898 WindowServer[162]: common_reenable_update: UI
    updates were finally reenabled by application "Console" after 3.67 seconds
    (server forcibly re-enabled them after 1.00 seconds)
    29/11/2014 20:21:36.971 coreservicesd[83]: SFLEntryBase::ListHasChanged
    mach_msg returned 10000004d
    29/11/2014 20:22:01.817 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 10 seconds. Pushing respawn out by 50 seconds.
    29/11/2014 20:23:02.170 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 10 seconds. Pushing respawn out by 50 seconds.
    29/11/2014 20:24:02.547 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 10 seconds. Pushing respawn out by 50 seconds.
    29/11/2014 20:25:02.168 CalendarAgent[218]:
    [Refusing to parse response
    to PROPPATCH because of content-type: .]
    29/11/2014 20:25:02.233 CalendarAgent[218]:
    [Refusing to parse response
    to PROPPATCH because of content-type: .]
    29/11/2014 20:25:02.236 CalendarAgent[218]:
    [Refusing to parse response
    to PROPPATCH because of content-type: .]
    29/11/2014 20:25:02.284 CalendarAgent[218]:
    [Refusing to parse response
    to PROPPATCH because of content-type: .]
    29/11/2014 20:25:03.059 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 10 seconds. Pushing respawn out by 50 seconds.
    29/11/2014 20:25:12.674 com.apple.xpc.launchd[1]:
    (com.apple.imfoundation.IMRemoteURLConnectionAgent) The
    _DirtyJetsamMemoryLimit key is not available on this platform.
    29/11/2014 20:26:03.464 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 10 seconds. Pushing respawn out by 50 seconds.
    29/11/2014 20:27:03.841 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 10 seconds. Pushing respawn out by 50 seconds.
    On 29 November 2014 at 19:29, Apple Support Communities Updates <

Maybe you are looking for

  • SOLVED:Portlet Producers not showing in directory structure

    Hey all, I'm building a portal site with WebCenter and Portlets. I have created a portlet and successfully deployed it to my WebCenter AS. Then I create a Portlet Producer in JDeveloper. It creates without errors, but it is not displayed in the appli

  • Public API's to create delivery for each delivery line

    I've requirement to create unique delivery for each delivery line using API. Can any body use public API to meet this requirement. Please ! any idea and thought ! R12. Thanks in Advance, Ramana

  • AudioBeam - Confidence value for multiple directions

    In the AudioBasics-D2D sample code, the Kinect is automatically setting the beam angle and then making available the selected angle and confidence value. // Get audio beam angle and confidence pAudioBeamSubFrame->get_BeamAngle(&fBeamAngle); pAudioBea

  • Mail v4.4 not working with Gmail

    Hey Guys, My Mail version does not seem to be working with Gmail. This issue seems to pop up from time to time after browsing the forums. I've tried going on gmail's website and making sure my mail app is configured correctly, and I've also re-instal

  • Could not initialize class com.crystaldecisions.reports.dataengine.DataSour

    Dear All, I am getting nuts and frustrated with Crystal Reports currently. One day or the other some problem is coming where there is no reference how to solve it. The support is very slow for java developers. Anyhow, i made to work the formula, i wa