HANA and geospatial data

Hi experts,
When will it be possible to load geospatial data into SAP HANA? Within Alliander we have two operational datastores in oracle and a BW datawarehouse. We want to combine the operational datastores and BW into one "in memory" evironment. One of the operational datastores containes geospatial data.
For the short term we can use Oracle exadata to combine the two operational datastores. For the midterm we would like to integrate the operational datastores and BW into HANA. This requires however that HANA can be loaded with geospatial data and HANA is able to handle geospatial data.
kind regards,
Frank Gubbels
Alliander (dutch utilities company)

Gregory, Can you please give some reference on how this is implemented, i would like to do the same. I have done it in Ipad with explorer(without fp3) but with FP3 on web ididnt get the interface as in the link you provided. Any help or links to related documentation is much appreciated.
-Thanks
Vinod Nair

Similar Messages

  • HANA and Cassandra data integration

    Hello Guys
    What interesting data integration possibilities are available between hana and cassandra ?

    Hi Safdar,
    It looks like the hadoop controller is not installed. Please refer to the step 1 of my blog:
    Hadoop MapReduce as Virtual Functions in HANA
    Regards,
    Eric Du

  • Geospatial data in Oracle and xMII

    Hello xMII team and enthusiasts,
    I have had a request to store and retrieve geospatial data into an Oracle database using xMII. The basic idea was to be able to transfer a file containing geospatial data from a mining survey application and store it into an Oracle database. Has anyone handled this type of application? I am interested to know your thoughts on the best way to tackle it.
    I understand that Oracle has GIS specific data types like SDO_GEOMETRY (for coordinates), and of course has BLOBs. Can xMII handle these types natively? (I am guessing no, since these are fairly database specific making it difficult to handle generically in JDBC, but would like to confirm if anyone has handled such cases).
    I guess stored procedures can be developed to import data from files and insert it into the database. Do you think this would be the best approach?
    Sorry for asking multiple questions in one forum post, am trying to lay out my thought processes and these questions have just popped up :).
    Thank you in advance for any insight that you can provide.
    Kind regards,
    Sidney Shek

    Also, if you're a developer, you can either create custom "actions" that plug into the xMII business logic services environment or you could wrap the activities in a web service that is callable by xMII.
    - Rick

  • How Do I Filter a Report Using a Multi Select List Box and Specifying Date Between Begin Date and End Date

    Hope someone can help.  I have tried to find the best way to do this and can't seem to make sense of anything.  I'm using an Access 2013 Database and I have a report that is based on a query.  I've created a Report Criteria Form.  I
    need the user to be able to select multiple items in a list box and also to enter a Begin Date and End Date.  I then need my report to return only the records that meet all selected criteria.  It works fine with a ComboBox and 1 selection but can't
    get it to work with a List Box so they can select multiple items.  Any help is greatly appreciated while I still have hair left. 

    The query should return all records.
    Let's say you have the following controls on your report criteria form:
    txtStart: text box, formatted as a date.
    txtEnd: text box, formatted as a date.
    lbxMulti: multi-select list box.
    cmdOpenReport: command button used to open the report.
    The text boxes are used to filter the date/time field DateField, and the list box to filter the number field SomeField.
    The report to be opened is rptReport.
    The On Click event procedure for the command button could look like this:
    Private Sub cmdOpenReport_Click()
    Dim strWhere As String
    Dim strIn As String
    Dim varItm As Variant
    On Error GoTo ErrHandler
    If Not IsNull(Me.txtStart) Then
    strWhere = strWhere & " AND [DateField]>=#" & Format(Me.txtStart, "yyyy-mm-dd") & "#"
    End If
    If Not IsNull(Me.txtEnd) Then
    strWhere = strWhere & " AND [DateField]<=#" & Format(Me.txtEnd, "yyyy-mm-dd") & "#"
    End If
    For Each varItm In Me.lbxMulti.ItemsSelected
    strIn = strIn & "," & Me.lbxMulti.ItemData(varItm)
    Next varItm
    If strIn <> "" Then
    ' Remove initial comma
    strIn = Mid(strIn, 2)
    strWhere = strWhere & " AND [SomeField] In (" & strWhere & ")"
    End If
    If strWhere <> "" Then
    ' Remove initial " AND "
    strWhere = Mid(strWhere, 6)
    End If
    DoCmd.OpenReport ReportName:="rptMyReport", View:=acViewPreview, WhereCondition:=strWhere
    Exit Sub
    ErrHandler:
    If Err = 2501 Then
    ' Report cancelled - ignore
    Else
    MsgBox Err.Description, vbExclamation
    End If
    End Sub
    If SomeField is a text field instead of a number field, change the line
            strIn = strIn & "," & Me.lbxMulti.ItemData(varItm)
    to
            strIn = strIn & "," & Chr(34) & Me.lbxMulti.ItemData(varItm) & Chr(34)
    Regards, Hans Vogelaar (http://www.eileenslounge.com)

  • Need urgent on installation of Spatial and R12 data in the same server

    Hi
    This is Hanumantha. I am getting problem with Geo Spatial data type objects manuplating from Apps.
    Geo spatial data is installed in Navteq database in one server. R12 application is installed in another server. Through data base link in APPS, I am able to access Navteq tables data, procedures etc. But I can't manuplate the objects data like Varrays and object types from apps throgh db link from navteq.
    Instead created the procedure which will decompose the object type to "primitive types" (number, date, varchar2,.) which is accessing from apps. But hz_locations , Geometry column will have data type SDO_GEOMETRY and I cant update with primitive data type (number, date, varchar2..).
    Kindly please help us reconstucting to the SDO_GEOMETRY object using primitive data types.
    OR
    Is there any possiblity of installing Navteq database(GeoSpatial data) and R12 applications data together in the one server.
    Could please any help on the above as soon as possible?
    Thanks in Advance.
    Thanks,
    Hanumantha

    Could you give me an example of this update rutine?

  • SAP HANA as a data source for Analysis Services

    I tried to use SAP's .net provider for HANA as a data source for an Analysis Services cube but to no avail.   I can connect, create a named query and preview data from the data source view designer but when SSAS actually tries to run the query,
    it wraps the named query in another query and produces a syntax error.  
    For example,  if the named query is "select * from ENTHANA.MARA", 
    SSAS sends a query like this "SELECT [test].* FROM (select * from ENTHANA.MARA) AS [test]"   (Test is the name of the named query).
    I know SSAS wraps queries and that's fine - except that brackets are not a valid way to quote an identifier in HANA.  HANA uses double quotes like Oracle. 
    Is there any setting in SSAS that can affect this behavior?   Will HANA ever be a fully supported data source for SSAS?  If so, when?

    Hi David,
    According to your description, you are creating a SQL Server Analysis Services project, now what you want is using SAP HANA as the data source, right?
    SSAS support many type of data source. However, as you can see on the link below, SAP HANA data source was not listed on that link. So this type of data source is not supported in current version of SSAS. Microsoft will update that document when it is supported.
    http://msdn.microsoft.com/en-IN/library/ms175608.aspx
    Thank you for your understanding.
    Regards,
    Charlie Liao
    TechNet Community Support

  • What are  Pre Database Copy and Post data base copy activity list, Pre Migration and Post Migration activity list from SAP BW 7.0 to SAP BW 7.4 SPS6.

    BW on HANA :  Pre Database Copy and Post data base copy activity list, Pre Migration and Post Migration activity list from SAP BW 7.0 to SAP BW 7.4 SPS6.
    We are trying to copy database from SAP BW7.0 to SAP BW on HANA 7.4 SPS6 so we are in search for list of steps or activities during database copy both pre and post steps.
    Along with the above we are in search of Pre and post migration steps ones database is transferred successfully from oracle to HANA on 7.4 SPS6.
    Kindly help us in getting the exact course of action as requested.
    Thanks and Regards,
    Lavina Joshi

    Hi Lavina,
    try this link for starters: Upgrade and Migration - BW on HANA | SAP HANA
    Points to remember are:
    Preparation:
         -- Hardware Sizing
         -- Preparation of Data Centres
         -- HANA Hardware preparation
         -- System Landscape Readiness (upgrade software downloads, system readiness checks, etc)
         -- House Keeping activities on BW system (data clean up, etc)
    Post Installation:
         -- Sanity checks / Preparation and License checks
         -- JAVA Configurations
         -- Infoprovider conversions 
    Overall Stages are described below:
    # Environmental setup (HANA box)
         -- Initial system checks and Building Activities (system copy, Appln server setups, etc)
    # System readiness
                   - ZBW_HANA_COCKPIT Tool
                   - ZBW_HANA_CHECKLIST Tool
                   - ZBW_ABAP_ANALYZER Tool
                   - ZBW_TRANSFORM_FINDER Tool
                   - SIZING Report
                   - System Clean up Activities
                   - Impact of 7.4 on source system checks
                   - Java Upgrade for portal
    # DMO Stages
                   - Preparation & Pre Migration checks
                   - Execution / Migration
                   - Post Migration Activities
    # Testing Phase
                   - Source system checks/Activities
                   - System and Integration Testing
                   - End to End Testing
                   - Performance testing
                   - Reports
                   - BO reports / Interfaces
    Do let me know if you require any further information.
    Regards,
    Naren

  • Accessing/processing geospatial data types in Azure cloud services using Python

    Hi
    We are creating a cloud-services in Azure using Python and Django,
    and are trying to store the geospatial data into SQL Database,
    however Django doesn't not have a built-in spatial data support (unless we use GeoDjango, which doesn't support sqlserver through odbc)
    scenario:
    1. user saves current location, stored in column (geography/geometry type)
    2. user will also do some geospatial query (intersect)
    what is the preferred solutions for this? Python or .Net for azure ?

    Based on what you wrote, my understanding is that you will need to craft the queries yourself no matter whether you use Python or .Net (C#). Python might appear to be a simpler approach because you can stay in the same development environment. The benefit
    of the Microsoft .Net/C# approach that I can see is that both layers in your stack are then officially supported by Microsoft.
    This posting is provided "AS IS" with no warranties, and confers no rights.

  • Built in support for MapReduce in SAP Hana and SQLSCRIPT

    Is it possible to define Pure functions in SQLSCRIPT explicitly as a Mapper or a Reducer?
    In Monday, April 20th I was reading this document : http://help.sap.com/hana/sap_hana_sql_script_reference_en.pdf and it was mentionning this feature with code examples.(In chapter 3 "What is SQLSCRIPT ?")
    But starting from Tuesday, April 21st it is no longer mentionned as it seems that the document as been updated.
    This is very confusing.
    Does this mean that the feature is dropped?

    Checking the version of the file I saved to my hard drive (V1.1 from 2015-02-16) I cannot find anything in the "What is SQLScript" chapter that even talks about MAP/REDUCE.
    In fact, there is nothing about this in the whole document.
    From a programmer point of view, you actually don't have to do that yourself.
    While SAP HANA internally uses concepts similar to MAP/REDUCE in order to parallelise and distribute data processing, this is not something you can or should build in SQLSCRIPT.
    - Lars

  • Pre-populate data and current date only when it routes to that person

    Hi,
    Can  any one please advise how to pre-populate the manager's name when it routes to the manager but not when the user fills the form.
    Example: user fills the form and submit it to the manager, the process has the query to look up for the manager to route it to him for approve/deny. How can I have the manager's name to pre-populate so he/she does not have to type their name and current date to approve/deny the form.
    Thanks in advance,
    Han Dao

    Paul,
    If I have the codes to execute the WS at the initialize event then it does populate the manager info when the user fills the form but when I try to move the code to the pre-submit event which try to execute WS when it route to the manager. I know I did not do it right but have no idea how to make it work.
    Is there a way to execute the WS when it routes to the next person rather than when the user fills the form?
    Thanks,
    Han

  • Time and GPS data windows

    Hello all
    I was presented this sample 1080 frame and was asked if I can do this if time and GPS metadata were part of the video recording. In other words, how do you burn in this data in the video itself. I have P Pro CS 6 @ home and am a complete novice to video editing. Final product may or may not need this, more curious as to how its done - special camera system or in post processing?
    Thanks!

    If whoever shot the video recorded time of day timecode synced from a GPS receiver that was close to the camera (in your case that looks like it would mean mounted in the helicopter), you can use the time code data to match your GPS metadata to the video. I use an automated process to incorporate the the metadata into the video, but the process is all done with custom software that the CEO of our company wrote. The other people I've seen incorporating GPS metadata into video are also using customized, proprietary processes. If you're adding the data in post, you will have to translate the data into Premiere titles or After Effects text keyframes or something else that you can overlay on the video.
    You can also use hardware during your shoot to overlay the GPS data onto the video. I don't use any products that do this, and I don't know how easy they are to find for purchase, but there definitely are people in the geospatial sector who feed video through a GPS-aware piece of video processing hardware that overlays time and position data in real time. In this case you would feed video (most likely through HD-SDI) from your camera to the GPS overlay hardware and then to a recorder.
    There certainly aren't any GPS features built into Premiere Pro. If you want to add titles manually, you'll have to match the time code with your GPS data and make a new title each time the GPS info is supposed to update. GPS data is usually some form of table or spreadsheet with time, coordinates, and other positional data, so you can find the correct time in the video and make a title that includes the corresponding coordinates for that time. If you're doing this for more than a few seconds of video, it will be an unreasonably long and tedious process, but it is possible.

  • BW DSO DB Partitions can be used in HANA Non-active data concept?

    Hello,
    In BW we can do the DB partitioning of the Standard DSOs based on the time characteristic (0calmonth or 0fiscper). Will these
    partitions be considered for the early unload based on the usage pattern in HANA Non-active data concept (Early unload / Displacement
    etc,). ?
    Thanks

    Hi Vijay Patki,
          Standars DSO tables are not marked as Non Active by default.
    see the note for more details " 1767880 - Non-active data concept for BW on SAP HANA DB ".
    And one more thing I would like to mention is the beauty of BW on HANA is :BW Uses HANA's Memory In A Smarter Way  .Its not really necessay for the user to do partitioning at object level because HANA redistribution takes care of it automatically.
    check teh below links:
    http://scn.sap.com/people/thomas.zurek/blog/2012/10/15/how-bw-uses-hanas-memory-in-a-smarter-way
    http://help.sap.com/saphelp_hanaplatform/helpdata/en/22/888f9344954f258284d2dd936d0d0a/content.htm
    The very New Data warehouse Foundation Tool:
    http://help.sap.com/hana_options_dwf
    Hope this helps you..
    Thanks & Regards
      A.Dinesh

  • Activation / Supending of Trial for ABAP on HANA and BW 7.4 time out

    Hi altogether,
    until today, the CLOUD solution ABAP on HANA and Netweaver BW 7.4 on HANA worked  perfectly.
    But today (22/01/2015) I get either Time-out Problems when activating or supsending.
    Currently one instance is active and is not suspending. Error message: Suspending did not complete in 1200s. Could you please invest the reason?
    Regards,
    Jürgen

    Hi Juergen,
    According to Error Codes - Amazon Elastic Compute Cloud the description of IncorrectInstanceState is:
    The instance is in an incorrect state, so the requested action can't be completed. For example, some instance attributes, such as user data, can only be modified if the instance is in a 'stopped' state.
    If you are associating an Elastic IP address with a network interface, ensure that the instance that the interface is attached to is not in the 'pending' state.
    Could you check for errors in the AWS management Console or contact Amazon?
    Best regards,
    Stanimir

  • Hana AND Sybase IQ

    Hi there
    Not sure if this is the right place where to post this question, but anyway. I'm well familiar with both technologies and have smth like 5+ years experience with IQ and a bit more than year with Hana. I read somewhere or saw the presentation that SAP is going to develop DWH solution where these 2 technologies will be merged as single one: HANA will take care of real time data and let's say 3 month roll-back of DWH data and IQ will store rest of data history, if my memory serves me well then this technology is being called Extended tables of Hana.
    Question: is there a documentation available which describes this process more in details, or even architectural approach etc?
    I understand that in future this is gonna be implemented in hana with few clicks, but at the moment i believe that extra supervision is needed, in case if it's possible at all!
    Mike

    Hi There,
    Please find the below text from the documentation:
    Description
    The CREATE EXTENDED STORAGE statement defines an external Sybase IQ database connection for the SAP HANA database. The Sybase IQ database will automatically be used to transparently archive and query data stored in extended tables. Only database users having the system privilege CREATE SOURCE or DATA ADMIN are allowed to create extended storage.
    Note: You need to create a extended storage configuration:
    You can create an extended table on extended storage
    CREATE TABLE T (C1 INT PRIMARY KEY, C2 DATE) USING EXTENDED STORAGE; 
    You can create an delta-enabled extended table on extended storage
    CREATE TABLE T (C1 INT PRIMARY KEY, C2 DATE) USING EXTENDED STORAGE ENABLE DELTA 
    Regards,
    Krishna Tangudu

  • HANA and the Overall Confusion

    HI All,
    We just got back as well and boy are there so many opinions on HANA, the roadmap, etc. We decided to place this topic and group all questions we've read from earlier posts along with what other customers were saying and asking.
    1. Does SAP HANA replace BI?
    The way we look at this is BWA came out around 4-6 years ago (if we recall correctly).  Of the 15,000+ customers that have BI installed, how many adopted BWA (have implemented and using)?  Can this same conversion rate be said for HANA (meaning only a certain % of customers that either have BWA already or don't have BWA (so never implemented BWA) will implement HANA)?
    It sounds like there will almost be 2 Data Warehouse solutions with SAP going forward.  Traditional BI the way it exists now and then HANA.  With HANA you get real-time data and instant query performance.  From what we've read and heard this past week a "HANA BI" will be a new set of tools to develop reporting solutions.  Now, how about all the transformation that currently occurs in traditional BI.  Updating to a cube there is most of the time some transformation, lookups, that happen to create a record.  Sure, HANA is in memory, but this same type of data transformation must happen to create a single record in some type of "InfoProvider" that BOBJ can read from and display in, for example, SAP Dashboarding, Crystal, Webi.
    I have not seen or heard one explanation into the "SAP HANA" Data Warehouse approach.  Can someone comment regarding this most important point 1?
    2. Will SAP continue 5-10 years down the road to support "Traditional BI"?
    We don't see moving to HANA.  Sure concept sounds great, but we didn't see the need for BWA (data volume just not there) and we don't see the need for HANA.  We have less than 1% of our BI applications we need updated more regular than nightly.  So these exception solutions we load several times throughout the day.  This works for us.
    3. What does this mean for our RDBMS, meaning ORACLE?
    Does HANA mean customers using ORACLE, for example, can remove this hardware piece altogether in the future?  Side note:  If your ORACLE, what in the world are you thinking?
    4. Is HANA going to be adopted and implemented more quickly on the ECC side than BI side first?
    We assume SAP will concentrate on the ECC side first, thus maybe making a decision to go to HANA a possibility.  We really only hear what it does for BI, not ECC.
    We could be confused, as everyone else, but I think the above would really clarify things for many.
    Please comment.
    Thanks!

    Hi everyone,
    Many have added what they know and it's been a great discussion.  Based on reading more blogs, forums, presentations, etc...  Here are some more thoughts:
    We see one presentation that states basically the vision is HANA will replace the DB (in time) for your ERP, CRM, BI, APO, etc solution to run on (everything really).  All real-time data and of course great query performance (like BWA and now Sybase IQ that we just read about).   So the questions are:
    1. What is the difference between BWA, Sybase IQ and HANA?  Are BWA and Sybase the same (column storage for query performance) only (and the answer we believe is yes for both (we know BWA is) and HANA delivers this query performance advantage along with real-time data that BWA and Sybase IQ cannot deliver?
    2. Why would SAP position HANA as a, eventual, DB replacement and build the Information modeler where you can build a data warehouse?  Is it a end-all solution for your entire ERP and BI solutions?  If it's a DB basically, or positioned this way, why spend the time building tools to build a EDW?  Wouldnt' they want you to puchase HANA as the "DB" and put BW on top? 
    3. Why would any new customer purchase BW with HANA available (maybe some time before it delivers exactly what a BW does), but with HANA having modelling tools you can build the EDW there, no need for a BW "on top".  We don't get the BW "on top" we seen in presentations from SAP themselves.
    4. With building a EDW in HANA itself, it appears the fontend tools would have to be BOBJ related like Crystal, Xcelsius (or dashboarding we think it's called now) and Webi?  BEX, WAD, Query Designer are BW tools specifically.  So is this a way to get the BOBJ licenses increased.
    We've never seen a roll-out of the same, yet different, yet the same products before like this.  The Sybase IQ we just read about from the earlier post.  This in-memory technology has been around for some time it appears, it's nothing brand new.  How are these 3 products working together, or don't they? 
    5. We brought this up before in that BWA has been out for around 5+ years now.  Of the around 15,000 BW customers how many actually adopted/implemented BWA?  We don't see much demand out there as far as companies looking for this skillset.  Having said this, how many of the 15,000 existing BW customers will move to HANA?  Just a guess, but something for conversation.
    6. Finally, and disagree if you'd like, there is no doubts that there is no single solution that will fit every customer and their specific needs.  We think, but not sure, that there is a place for all these solutions.  Some being the following:
    a. Standalone HANA for BW (mainly new customers with no existing BW)
    b. HANA + BW "on top" (new solutions developed in HANA and either existing solutions left in BW as is or over time migrated to HANA
    c. Standalone BW as it stands today (this is basically what we said earlier about how many existing BW customers will adopt HANA or stay on BW because the nightly dataloads meet their business needs).  Not every customer, like a smart metering, airlines, retail need real-time data analysis.
    Everyone please comment on some or all of the above.
    Enjoy!

Maybe you are looking for

  • How to convert logical standby database to Physical Standby Database

    Hi, Does anyone know how to convert logical standby database(10.2.0.3) to Physical Standby Database(10.2.0.3)? Is this possible? If so,please give me steps for it. Thanks. Regards, RJ.

  • Gallery/slideshow widget with no yellow border around thumbnails?

    Hi, Does anyone know of a hack to get rid of the yellow border around Gallery thumbnails? Or, do you know of a third-party Gallery/Slideshow widget that has a cleaner look: thumbnails but no garish border? Thanks!

  • I have a big mess-most of my files in purchased tab have exclamation point

    Most of my files in purchase tab have exclamation point and will not play. However they are in my library and I can play. Most files in my library are duplicate or even triplicate and at least one of the duplicates has an exclamation point. Also seem

  • Problema iphone 5s bateria

    buenas tardes soy gomez federico de Argentina Compre ONU 5s apple iphone Hace Meses y Tengo Grandes Problemas con la bateria q uiero sable si USTEDES me pueden Recomendar algun tienda de aplicaciones en buenos aires PORQUE Estoy desepcionado pense Qu

  • INOB Issue

    Hi All, I am using PS_PROJECT archiving object for archiving WBS Elements and Networks. But during Write phase, below error message was dislplayed: Error Message There is no entry for instance 000000000001489184 in either INOB or IBase Job cancelled