How beneficial it is to have EP system database on HANA?

Dear HANA Experts,
I would like to know the benefits of implementing EP 7.4 on HANA.
As far as I know, there will be less Database accesses during Java Enterprise Portal system operations.
How beneficial it is to have EP 7.4 database on HANA?
Please provide pointers to know more information regarding this topic.
During POC, one benefit which we have observed is that Portal system came up in less than 2 minutes on HANA DB where as it is taking around 7 minutes in MSSQL DB !!
Thanks,
John Prabhakar

I currently have 11 1G system files which I'd like to combine into say 3 4GB system data files, or 2 6GB system data files.WHY is any change needed?
What is gained by doing so?
Do you suffer from CTD?
Never confuse movement with progress.
Going around in circles is movement, but most folks do not consider it to be progress,

Similar Messages

  • How to upload the data from legacy system database to SAP data base

    Hi.
    We are doing analysis of Legacy system and which needs to be converted to SAP system i.e. SAP implementation.
    I just want to know , how we migrate the existing whole data( from legacy system) into SAP system.
    and which method is the best method to use data migration from legacy to SAP system if data legacy data amount is huge.
    Please suggest me.
    Thanks.

    Hi
    We can either use the BDC or BAPI or LSMW  or Direct Input techiniques for the data transfers.
    The combination of both Session and Call transaction can be used to achieve this that includes the error handling also. This invloves the screen interaction.
    These days, BAPIs are used to overvome some upgrade problems. For easy upgradation, we cna go for BAPIs. Here ther is no screen intercation.
    LSMW mainly used for master data transfers using some standrad programs.
    As per your client or company desicions  we can choose any of them.
    Please refer to these links for more understanding -
    BDC Vs LSMW -
    BDC VS LSMW
    BDC Vs BAPI -
    BDC VS LSMW
    Thanks & Regards,
    Chandralekha.

  • How many tasks can I have in NI-DAQmx system?

    I am working out of the office this week - please send your response to [email protected] as well as my normal email [email protected].
    I am designing a new test platform that will run on C# (because we like object oriented text based programming and because the IDE is free).  For hardware we'll use your PXI modules (because your hardware is ultra-reliable).  I'm starting with the following PXI modules 6259, 4072, 6509, 2575, and 2569, but we made add other modules later as future requirements demand.  I am doing the system software architecture now.  I've done some dabbling with Ni_daqmx, and I loathe "tasks" and "channels", but am determined to make them work.
    The difficulty I'm having revolves around the overhead with setting up tasks and channels and with the concept of tasks and channels.  Help hasn't helped much.  Tasks seem to work great if you intend to always collect the same large amount of data from many sources and always will do it in exactly the same way. 
    We want something much more akin to random access memory.  We'll have UUTs of different kinds coming on and off at random times.  Sometimes a test will need a simple DC voltage, and other times another test will need 2 seconds worth of data at 1MS/s.   It can cost around 150msec to make that change (stop the current task, creat another one, configure anohter channel, start up a new task, blah, blah, task this, channle that - for the life of me I can't understand what this damn taks concept does for me but make matters more complicated and bog down my system).
    I can just barely glean from the help that I can have only one analog input task at once, but I can have sevferal taks of several different kinds running at the same time ( a digital output task and another task for digital input, and another task for analong input, etc.) .  It does seem that I can set realys without having to put them into a channel and a task (Thank goodness for that - I just wanna turn on a relay I have no idea what a relay "channel" might be.)
    In the PXI system I described above I'll have two devices that are analog input devices, the DMM and the Daq.  Even with two devices, can I only have one analog input task running?  Does that mean I've got to waste 150msec just to switch from the DMM to the Daq? (Do you understand my frustration with "tasks"? - I should be able to say "read DMM" and turn around and say "read Daq channel 0" without having to jump thru task and channle hoops and waste a bunch of time doing it).
    I'll also have Daq digital IO and two 6509 digital io modules.  Do I have to cram all of that into some "task" concept too?  The Daq card has got many other kinds of wonderful capability (frequency measurement, counters, analog output).  How many tasks can I have for that stuff?  On the DMM card I can measure capacitance amoung other things.  Will I have a capacitance task?  The idea of a "capacitance task" hurts my head.
    Golly I hate tasks.  Please help.
    I am working out of the office this week - please send your response to [email protected] as well as my normal email [email protected].
    Dave

    Dave,
    Thanks for posting to the NI Forums.
    For the good of the community we like to keep conversations that start of the forums on the forums rather than moving to email.  If you want to move to email support I recommend contacting NI through the email route.
    I will answer your questions here.  If you need more direct contact please feel free to contact us through [email protected].
    For some the concept of tasks may seem daunting, however, for many applications it makes life a lot more simple.  A task at a very fundamental level is simply a collection of channels with a single type (AI, DI, DO, etc.)  and a single timing configuration (sampling rate, continuous vs. finite, etc.).  It is a way to organize configuration data.  
    The concept of a task is an abstraction like OO programming.  Like OO programming it may take some time to understand but can be a time saver in the end.  Also like OO programming it does add some initial programming overhead.  It is much more simple to simply type a printf statement in C than to have to create a bunch of classes just to output text to the screen. You can accomplish the same thing not using OO programming, but in the end OO programming is extremely useful, because it groups useful information and methods together in one place.
    With very simple applications OO programming sometimes does not make sense.  But as a program gets more and more complex OO programming becomes more and more useful.  It takes some learning but it is worth it.
    I believe the concept of a task does the same thing.  It does not change the actual functionality of the device or add excessive overhead.  It is just an abstraction that pulls configuration data about a specific "task" and methods the task can perform into a single logical place.
    Unlike the entirely abstract concept of an Object, a Task is run on a physical device and therefore has physical limitations.  You can create multiple tasks of the same type, but you can only run a one timed task of each type on a single board at a time.  In other words you can have multiple AI tasks running at the same time but they need to run on different boards or only one can be timed (have a rate).  You can also have multiple timed AI tasks configured for a single board but only one can actually be running at a time.
    The reason you can only have a single timed task running at a time is because the M-Series boards (and many other boards as well) have a single timing engine for each type of acquisition or generation.  There is a single timing engine for AI, one for AO, and so forth.  You cannot have channel 1 running at 1 MS/s and another running at 50 kS/s.
    However, tasks can exist even when they are not being actively run.  You can create all the tasks you need at the beginning of your program and simply start and stop them as you need.  After the task is stopped you do not need to clear the task until the end of your program.  You can further increase performance by moving the Task into the latest state possible without actually starting the task.  This can be done by calling myTask.Control(TaskAction.Action).  The Task states are further explained in the NI-DAQmx Help Manual.
    The concept of a  task will need to be used with any device that is being programmed using NI-DAQmx.  The 6259 and 6509 will need to be programmed using DAQmx.  With the 2575 and 2569 you have the choice of either using the NI-DAQmx API or the NI-SWITCH API.  The SWITCH API does not use the concept of tasks.  For the 4072 you will need to use the NI-DMM API.  This API also does not use the concept of tasks.
    Hopefully this information is helpful.  Let me know if you have any additional questions or concerns.
    Regards,
    Neil S.
    Applications Engineer
    National Instruments

  • My system preferences have suddenly disappeared! I have the language and text icon but that is the only icon that is displayed! where have my system preferences gone and how do i get them back??

    I went to my system preferences today and they are all gone except for my language and text icon! I have the language and text icon but that is the only icon that is displayed! where have my system preferences gone and how do i get them back??

    Double click on the picture of the HD on your desktop, then look at the bottom of the window that opens.
    First check the S.M.A.R.T. status on your HD: Applications > Utilities > Disk Utility > in the panel at left, select the first item in the list/your HD mechanism > look atthe bottom of the main window next to S.M.A.R.T. status and see if it says “Verified” or something more ominous like “Failing.”
    If S.M.A.R.T.status is "Verified," run Repair Disk: Boot from install disc (insert disc > restart > immediately hold down c key and keep holding it until you see “Preparing Installation”) > at first screen select the language and click Continue > click on the Utilities Menu in the menu bar > open Disk Utility > select your HD in the panel on the left side > click Repair Disk at bottom of main window. Run this at least twice, and keep running it until it says “appears ok” twice in a row. If that doesn’t happen, you may need a stronger utility such as DiskWarrior or if the directory is damaged beyond repair, you may need to reinstall the OS, or you may have a damaged HD (repair utilities can only repair the directory structure, not the HD itself). When this is finished, quit Disk Utility, quit the installer, and restart. Once booted normally, go to Applications > Utilities > Disk Utility and run Repair Permissions.

  • Have Operating System 10.6.8, Mail Program 4.6.  How can I prevent the next email in the que from automatically opening after I act on the previous email ? It creates big organizational problems for me. My computer changes this mode from self opening to m

    Have Operating System 10.6.8, Mail Program 4.6.
    How can I prevent the next email in the que from automatically opening after I act on the previous email ? It creates big organizational problems for me. My computer changes this mode from self opening to manually opening every few month with no ? action from me.
    Help

    Have Operating System 10.6.8, Mail Program 4.6.
    How can I prevent the next email in the que from automatically opening after I act on the previous email ? It creates big organizational problems for me. My computer changes this mode from self opening to manually opening every few month with no ? action from me.
    Help

  • How do i verify i have sufficient privileges to start system services?

    How do I verify I have sufficient privileges to start system services?  This comes up as an error when trying to install the newest iTunes version.  It says Service 'Apple Mobile Device' (Apple Mobile Device) failed to start. Verify that you have sufficient privileges to start system services.

    Try the following user tip:
    Troubleshooting issues with iTunes for Windows updates

  • HT4436 I do not have I Cloud on my Mac..I have checked system pref and its not there. how do I add I cloud to my applications?

    I do not have I Cloud on my Mac..I have checked system pref and its not there. how do I add I cloud to my applications?

    Upgrade the computer to at least Mac OS X 10.7.2.
    (78079)

  • How am I suppose to check my system requirements? Everytime I download the Photoshop CC, it says I do not have some requirements.

    How am I suppose to check my system requirements? Everytime I download the Photoshop CC, it says I do not have some requirements.

    See http://helpx.adobe.com/photoshop/system-requirements.html

  • Hallo, i have a problem with the intallation about after effects. I have a mac 10.6.8 and they told me I can't installete it because i don't have a system with 64 bit. how can i do? someone told me i can .. but i don't know how. thank you

    hallo, i have a problem with the intallation about after effects. I have a mac 10.6.8 and they told me I can't installete it because i don't have a system with 64 bit. how can i do? someone told me i can .. but i don't know how. thank you

    You cannot.  If someone else told you there is a way then they will need to show you.  After Effects requires a 64-bit system and the latest release requires Mac OS X v10.8 or v10.9 minimum

  • I installed Lion and now have 2 system preferences(1 original and 1 alias). How to fix?

    I installed Lion and now have 2 system preferences(1 original and 1 alias). I'm trying to clean up Launchpad and I have 2 system preferences and 2 iTunes apps. How can I merge or remove the unecessary files?

    No. It's perfectly safe. An alias is just a pointer to the actual file, not the file itself.
    BTW, the icons in the Dock are also just aliases, so it's safe to remove those as well, and just keep the ones you use often.

  • I made a mistake by saving a web page and moving it to ical on my mac air. now i can open ical but cant access it as it says i have a systems error . how do i fix it ?

    i made a mistake by saving a web page and moving it to ical on my mac air. now i can open ical but cant access it as it says i have a systems error . how do i fix it ?

    Changing body text is not simple. It's a desperate last resort. You need to buy the exact font. Acrobat will not let you edit in a font you don't own. Even then, it's undertain. Consider preparing an overlay in InDesign.

  • How do I restore Firefox base after reinstalling Windows , but I have file system safe(all program folders)?

    How do I restore Firefox base after I reinstalled Windows , but I have my system and program old folders safe. ( exact Firefox Application and Program Files folders etc)?
    == This happened ==
    Every time Firefox opened
    == I reinstalled Windows

    What I mean is I have saved passwords and some website adresses in my Firefox that was on deleted windows ( but I saved the file system so it works from there using another computer) but all I need is passes and saved links . just the complete copy of my old setups and such . is that possible?

  • How do I find out which operating system I have on the IPOD touch

    How do I find out what operating system I have on my IPOD Touch?

    I suspect you have a 2G iPod. Those can only go to iOS 4.2.1.
    Identifying iPod models
    iPod touch (3rd generation)
    iPod touch (3rd generation) features a 3.5-inch (diagonal) widescreen multi-touch display and 32 GB or 64 GB flash drive. You can browse the web with Safari and watch YouTube videos with Wi-Fi. You can also search, preview, and buy songs from the iTunes Wi-Fi Music Store on iPod touch.
    The iPod touch (3rd generation) can be distinguished from iPod touch (2nd generation) by looking at the back of the device. In the text below the engraving, look for the model number. iPod touch (2nd generation) is model A1288, and iPod touch (3rd generation) is model A1318.

  • System Preferences quits suddenly. I have lost the dock, including the trash and ability to change desktop image. How can I replace this part of System Preferences? Where can I find Trash?

    System Preferences quits suddenly. I have lost the dock, including the trash and ability to change desktop image. How can I replace this part of System Preferences? Where can I find Trash? All other aspects of System Preferences work.

    just that that is one method, and lacks provision for working boot image and for an emergency - Lion gives a small minimal emergency boot environment but may lack all the utilities you need to use and run, even some drivers that your mac requires for add on PCIe.
    Just grab and look through Help in Carbon Copy and SuperDuper, both excellent and each has their use - together - for cloning.
    And do you have two TM backup sets? ought to consider that also, rotate daily or make a weekly set. Otherwise you are putting all your eggs in the proverbial one basket.

  • How to delete a company in the system?

    Hi all,
            i am create three companies in the same B1 system. Now i just want to know how to delete one company from the system?
    thanks,
    Suresh Yerra.

    Hi Rajesh,
                  It's very simple.
    1. login to SQL Server
    2. In the databases u can find the three companies
    3. delete the particular company database from the SQL databases.
    Let me know if u have any queries regarding this?
    Thanks,
    Suresh Yerra.

Maybe you are looking for

  • Windows 8.1 install, partition won't format / install

    I'm having lots of problems installing Windows on my iMac (Retina 5K, 27-inch, Late 2014), OS X Yosemite (10.10.1) I've install windows on it before, but after a drivers issue I had to do a fresh install of windows... that turn into a fresh install o

  • Every time I start up my computer and load firefox, the theme I was using is not showing up.

    Every time I start up my computer and load Firefox, the theme I was using has gone back to the default one. The theme is still on my computer and it works if I change it back, I just don't know why it won't show up when I first load Firefox. == This

  • How to restore ipad 2 to fabric

    How can ia restore the iPad 2 3G, my camera doesnt work, and it start to malfunction when i upgrade to iOS7...

  • Problem resizing Viewport with WebDeveloper in WinXP and Vista

    I'm having a problem resizing the Viewport with WebDeveloper running in FF10 & FF11 on my WinXP and Vista machines. Quite simply, I'm trying to resize the Viewport to 320x420pixels (to represent an iPhone) but can't get it to go below 510px. There's

  • Hibernate SessionFactory in a cluster?

    I have been developing an application on WLS 8.1.4 with hibernate 3.1.2 .           On WLS I created           - adminServer on localhost:7001           - MyCluster group           - manageServer1 on localhost:7021           - manageServer2 on localh