High performance in memory database supporting C++ and JAVA

Hi,
I am considering to build a Java compatible In memory database to speed up the application of JAVA. We have now the C++ version of the database, named MTDB, which is hundreds of times faster than phisical database. The in memory database runs on solaris, linux and windows system. MTDB supports load sharing, data distribution, and realtime data synchronizing. MTDB shows large capacity, great performance, stability, and scalability in telecom applications. Add JAVA access interface to MTDB is very valuable. Please send me email if you have interest in this.
Thanks.

Are you selling it? In which case advertisements are not appropriate here.
There are a bunch of existing in-memory databases for Java which offer significant performance enhancements - unless yours outdoes them considerably I think you'll find a very limited market.
Check out hsqldb.org for one example.

Similar Messages

  • Check if client browser supports javascript and java

    Hi everybody,
    I would like to know if there is any means by which we could check on the server side, if the client's browser supports Javascript and java.
    bye
    Praveen

    It would be a bit of a hack, but you could embed a Javascript snippit in the actual HTML that would use document.write() to output a hidden tag. If your server recieved the hidden tag on a GET or POST request, you would know that Javascript was enabled.
    - Saish

  • Performance differce calling Procedure from sqlplus and Java

    Hi ,
    I have one procedure which is called from java application and its called only once from java and the entire process is running from procedure itself.Once its called there is no dependency from java to PL/SQL.Its taking long time from java.But if I execute the same procedure from SQL plus then its running in seconds.Also only one session is running in entire database.
    My Oracle version 11g.
    Please guide me if you get some thing based on below session event.
    This is the session status for running from SQL plus
    SID     EVENT                    TOTAL_WAITS          TOTAL_TIMEOUTS     TIME_WAITED     WAIT_CLASS
    2191     SQL*Net message from client     954                              0                    1319633          Idle
    2191     direct path read                    860                              0                    702               User I/O
    2191     db file sequential read               2605                         0                    550               User I/O
    2191     SQL*Net break/reset to client     24                              0                    460               Application
    2191     SQL*Net more data from client     3                              0                    159               Network
    2191     direct path write temp               214                              0                    74               User I/O
    2191     direct path read temp               314                              0                    67               User I/O
    2191     db file scattered read               78                              0                    42               User I/O
    2191     db file parallel read               71                              0                    21               User I/O
    2191     log file sync                         36                              0                    12               Commit
    2191     SQL*Net message to client          955                              0                    0               Network
    2191     Disk file operations I/O          8                              0                    0               User I/O
    2191     events in waitclass Other          15                              7                    0               Other
    This is the session status for running from Java
    SID     EVENT     TOTAL_WAITS     TIME_WAITED     WAIT_CLASS
    1718     SQL*Net message from client     21208     7046039     Idle
    1718     direct path read     2742     2327     User I/O
    1718     log file sync     3748     1121     Commit
    1718     db file sequential read     1533     1082     User I/O
    1718     enq: TX - row lock contention     6     423     Application
    1718     buffer busy waits     1     100     Concurrency
    1718     log buffer space     1     30     Configuration
    1718     direct path write temp     92     21     User I/O
    1718     direct path read temp     138     16     User I/O
    1718     log file switch (private strand flush incomplete)     6     16     Configuration
    1718     SQL*Net message to client     21209     2     Network
    1718     db file scattered read     2     1     User I/O
    1718     SQL*Net more data from client     17     0     Network
    1718     Disk file operations I/O     11     0     User I/O
    1718     SQL*Net more data to client     1     0     Network
    1718     events in waitclass Other     15     0     Other
    Sorry I am not able to paste in proper alignment for my plain text.

    Hi,
    you need to find which SQL is running slower, using some tools as dbms_profiler, dbms_hprof, ASH, extended SQL trace and real-time SQL monitor (caution: some of the tools may require Diagnostic Pack License).
    Then you need to pinpoint difference in the plans and understand its origin -- post plans here if you need help with that (use tags to preserve formatting).
    Best regards,
      Nikolay                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • User parameter are not show in database using Servlet and java Bean

    Hello Sir,
    when I insert the parameter in run time, weblogic server and JSP show that parameter are saved.
    Allthough row increment in database but they not show in database.
    Here My Code:
    login.html:
    <html>
    <head>
    <title>A simple JSP application</title>
    <head>
    <body>
    <form method="get" action="tmp" >
    Name: <input type="text" name="user">
    Password: <input type="password" name="pass">
    <input type="Submit" value="Submit">
    </form>
    </body>
    </html>LoginServlet.java:import javax.servlet.*;
    import javax.servlet.http.*;
    public class LoginServlet extends HttpServlet{
    public void doGet(HttpServletRequest request, HttpServletResponse response)
    throws ServletException{
    try
    String user=request.getParameter("user");
    String pass=request.getParameter("pass");
    co.SimpleBean st = new co.SimpleBean();
    st.setuserName(user);
    st.setpassword(pass);
    request.setAttribute("user",st);
    request.setAttribute("pass",st);
    RequestDispatcher dispatcher1 =request.getRequestDispatcher("submit.jsp");
    dispatcher1.forward(request,response);
    catch(Exception e)
    e.printStackTrace();
    }SimpleBean.java:
    package co;
    import java.util.*;
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.sql.*;
    import java.util.*;
    public class SimpleBean {
    private String user="";
    private String pass="";
    private String s="";
    public String getuserName() {
    return user;
    public void setuserName(String user) {
    this.user = user;
    public String getpassword() {
    return pass;
    public void setpassword(String Pass) {
    this.pass= pass ;
    public String issueData()
    try
    System.out.println("Printed*************************************************************");
    Class.forName("oracle.jdbc.driver.OracleDriver");
    System.out.println("Connection loaded");
    Connection con=DriverManager.getConnection("jdbc:oracle:thin:@VijayKumar-PC:1521:XE","SYSTEM","SYSTEM");
    System.out.println("Connection created");
    PreparedStatement st=con.prepareStatement("insert into vij2 values(?,?)");
    System.out.println("~~~~~~~~~~~~~~~~~~~~");
    String NAME=getuserName();
    st.setString(1,NAME);
    String PASSWORD=getpassword();
    st.setString(2,PASSWORD);
      st.executeUpdate();
    System.out.println("Query Executed");
    con.close();
    s=  "Your logging is saved in DB ";
    System.out.println("Your logging is saved in DB *****************");
    return(s);
    catch(Exception e)
    e.printStackTrace();
    return "failed";
    }submit.jsp:This is Submit page
    <jsp:useBean id="st" class="co.SimpleBean"/>
    <jsp:setProperty name="st" property="*" />
    <jsp:getProperty name="st" property="userName" /> <br>
    <jsp:getProperty name="st" property="password" /> <br>
    <% st.issueData();%>
    <%
    out.println("Ur data is saved in DB");
    %>Please Help me.
    Thanks.

    Ok, this seems to be a long and convoluted path to do absolutely nothing.
    You submit the form.
    You run a servlet that gets the parameters correctly (good), creates a SimpleBean (good) and then sets this into request attribute space under the names "user" and "pass" - (why?)
    You then forward to the jsp: submit.jsp.
    Submit.jsp creates a new SimpleBean, and attempts to populate it with <jsp:setProperty>. You then call the issueData method on it.
    Your complaint: Rows are being created in the database which have empty string values instead of the parameters you have passed.
    So, why are the values blank? Where do you think these values should be coming from?
    Looking at SimpleBean we find one mistake - you have mis-named your get/set methods.
    To properly follow java beans standards, you should use camel-case for your methods.
    Rather than getuserName() the method should be getUserName(). getpassword() should be getPassword() etc etc.
    The method getUserName() defines a property "userName" for the bean.
    Once that is fixed, lets go to submit.jsp. The <jsp:setProperty> statement will try and set all properties of the bean from the request parameters.
    There are no request parameters "userName" or "password" so those values don't get set in the bean, therefore it uses their default value of empty string - "".
    There ARE request parameters called "user" and "pass" but because they aren't properties of the bean, they get ignored.
    As a result, the values are empty string, and that is exactly what gets inserted into the database.
    Ways to fix this
    1 - rename your parameters on your form to be "userName" and "password" to match the bean. That way the <jsp:setProperty> tag will populate them properly.
    or
    2 - Call issueData() method from your servlet after you have created the SimpleBean. Better in my opinion as you then don't have any scriptlet code on a JSP page.
    Cheers,
    evnafets

  • Oracle Database Support on Twitter and Facebook

    Stay current on the latest Oracle Database Support news and events including important product announcements, alerts, updates, new releases, and patches.
    Follow us on Twitter https://twitter.com/OracleDBsupport
    Like our Facebook page https://www.facebook.com/OracleDatabaseSupport

    Yes, i have already put a micro SIM. I ve read about other people with the same problem..
    Regards!
    El rojo y el blanco me vuela la mente!

  • Cannot use Higher Performance graphic settings

    Hello,
    When I originally bought my Macbook Pro three weeks ago, I had no issues with going to system preferences and selecting and saving the "Higher Performance" setting for the graphics for the Power Adapter. This visibly improved graphics performance for some programs I use.
    However, recently, I noticed graphics performance wasn't as expected when running on house power, and I noticed that in system preferences < Energy Saver, my graphics settings have been placed back to "better battery life" for the Power Adapter setting...I keep trying to change it back to "Higher Performance;" when I log out and back in, and re-check the Energy Saver settings, there's a message box saying that I still need to log out for the changes to save. I can log out multiple times and they never seem to save, with that message continuing to be there. If I reboot altogether, and go back to system preferences < energy saver, its back to "better battery life," as if I never made an attempt to select "Higher Performance." Ive tried repairing permissions, and I've tried repairing the disk using the start up DVD during the boot cycle, and nothing seems to help. Since this is a new computer with few items on it, I even did a clean install of the OS....still to no avail.
    Any ideas?
    Thanks.

    my problem is simalar but different.
    my new macbook pro summer 2009 2.53 has no option to switch beetween low and high performance in the energy saver pref pane.
    googling i found that this is not a isolated case.
    someone solved the problem extracting from a leopard dvd with pacifist the 4.0 version of the energy saver pref pane.
    all this situation may be caused by the 10.5.8 update.
    Hope tha someone at apple try to reserve some working hour to solve this problem with an update instead of pushing hard on the snow leo launch
    Max

  • Random power shutdowns when there is high performance

    Hey guys
    I am using a refurbished Macbook purchased in late 2011, its running on Mac OS-X version 10.6.8.
    I had to change my laptop's old hard drive to a new one after I experienced the 'grey screen of death' two weeks ago. I also bought a new battery for my laptop as the old one was starting to go bad.
    Even after that, I am experiencing random shutdowns. This happens only when there is high performance involved - when browsing the Internet and I have a lot of Safari tabs open, or when I am transferring files from my portable hard disk drive.
    The guy at the shop says the fans are working fine, even though iStat says the fans are running at 0 RPM.
    Any suggestions?

    its most likely shutting down to prevent the mac from overheating and getting damaged.  Since this only happens during high performance.

  • Nokia 5800XM High Performance Battery

    Nokia 5800XM High Performance Battery
    I saw this advertisement and also some of my friends in Malaysia using high performance battery on their Nokia 5800XM phone. Whereby the standard power output allowed to the device is 3.7volts @ 1320mAH. However, these users bought higher performance battery (linked example below). My question is:
    1. Does this allowed by Nokia to be used by end-users on the device?
    2. Any side effects technically on long term use?
    3. Does Nokia covers warranty on this issue?
    Example seller link: http://www.valuemax.co.uk/product_details.php?id=15835
    Note: I prefer some senior members / Nokia staff to reply on this topic.
    TQ .. XM
    I'm an Xploit - Please feel free to post your issues, feedbacks in this discussion forum and I'll do my level best to help, otherwise my knowledged friends whom are around willing to help you. Thank you !

    Using this battery in and of itself will not have any impact on your warranty.
    However, if the phone is damaged through use of this battery (eg. electrolyte leakage or explosion!) then it will not be covered by the warranty.
    I actually have one of these batteries and I'm pleased with it. Please do note, however, that the camera window is poorly designed making flash photography impossible. There is no insulation between the flash and the lens meaning that light from the flash floods any photo taken using it. It has no discernable impact on daylight photography, though.
    http://www.flickr.com/photos/grshorwich/sets/72157622653165321/
    Was this post helpful? If so, please click on the white "Kudos!" star below. Thank you!

  • MSI GS60 Ghost Pro Golden Edition - A Combination of Stylish and High Performance.

     I have no idea who can say no to this shining and charming beauty....
    The BackStory
        When I studied at graduate school, I bought my first laptop, Asus F3J, of my life and brought it to school everyday. Actually it was a 2.9kg around laptop for gaming and I felt like carry a heavy brick. It was quite inconvient and kind of suffer for a person like me who was not doing fitness. After I graduated from school and was being a member of society, I decided to find a  laptop that was much lighter and easier to bright to work. Toshiba R830 was what I chose, but this time, the performance of playing some hardcore game wasn’t good enough since it doesn’t have a discrete graphics card.
    I started to believe there is a trade off between perforamnce and weight of laptop with these two experience. Until one day, I came across with MSI GS60 Ghost Pro at Computex 2014, it was a notebook weigh just around 2kg and uncompromising with high performance. In more detail, It had core I7 CPU、High-end GTX graphics card and two 256MB SSD within it. From that day, I know it is the notebook am looking for, it is a note book I can bring to work and also play game at home. Furthermore, MSI is going to issue the limited Golden edition of it around the end of year, it gave me one more reason to buy this “good stuff”, because both me and my girl think gold is the most fashion color in recent year, just like iphone. So that is the backstory, now i just have the golden one and is going to unbox it for you.
    The Main Specification
    MSI GS60 Ghost Pro 2QE Golden Edition:
    •   CPU: Core i7-4710HQ (2.5GHz – 3.5GHz)
    •   OS: Windows 8.1
    •   Display: 15.6″ WQHD+, IPS (2880*1620)
    •   Memory Supplied: 16G 2*8GB DDR3L 1600
    •   Graphics: NVIDIA GeForce GTX970M GDDR5 3GB
    •   Storage: 2 x 256GB M.2 SSD + 1TB 7200RPM HDD
    •   Wireless Lan: Killer 802.11 a/c
    The Unboxing
    It is a really big one, please do drive your car while buying this NB from the shop.
    Inside the main brown shipping box, there are MSI stylish back bag and the a black branded carry case.
    The back back is grey color with good material quality, it also a simple and fashion design which is suitable for young or stylish worker. The sense of touch is also good.
    There are several layers inside the bag, even more, a shock-absorbing laptop sleeve in it. What a surprise!!
    In the big black branded carry case. There are two black box, one is for accessory. One is for the main role “GS60” with sponge to protect it as you can see in the photo.
    Let see the accessory box first, a MSI gaming mouse、a MSI/SteelSeries Flux headset、a keyboard protector and a mouse pad.
    The mouse has red light shining on both side when it connect to the laptop. It’s really a gaiming stuff! We can also see the double braided cord that improved the durability.
    As “+” and “-“ these buttons in the middle of the mouse, user can adjust the sensity of the mouse instantly by these two bottons in the game. No need to waste your time finding the adjument UI within the game. It is such a good benefit for a gamer.
    The Flux headset has ear cushions with mesh-cloth material it let you feel comfortable when wear it. You also can find out the color of the shell beside the headset can be changed, one pair is MSI design in red color, the other one is pure black one.
    It also has a convenient design that the earmuff can be folded, in order to make the headset into a plat one and easy to put in your bag.
    The performance of the headset is high-end and highs that don’t get brittle. About the deep bass, it also quite stunning. Overall, it can make the music carry listener’s heart.
    It deserves you to put it on the top of your gaming headset list.
    Here we open another black box, the GS60 is packaging by the non-woven cloth.
    There are also the power adaptor、power cord and mini displayport to D-sub cable.
    By the way, the power adapter is 25.53 mm thick and 0.52kg. weigh, 19.5V and 7.7A output.
    Moreover, there are instruction manuals、several driver CDs and even two military dog tag with MSI logo, actually I am not a military lover, so I am going to use them as a key ring but not to hang on my neck.
    Finally, let us see a royal-like GS60 Ghost Pro Golden…
    Using Mg-Li alloy as the material, its chasis gains the advantage of both ultra-light and solid.
    According to MSI official website, the idea of design comes from the stealth fighter, so it shows dynamic streamline in its design. Beside the visual effect, it makes you feel comfortable when typing due to the slimmer front edge and solid palm rest. The high gloss finish and bright gold will reflect light, so it change color slightly in different lighting condition. Overall, it delivery supreme visual treat.
    To see a more apparent golden color, I put it on my sofa with yellow background.
    Shinging and charming….
    The fancy muscle curve and hire line surface make it elegant and gorgeous.  
    The shield and the MSI logo, they are delicated design without roughness.
    The black color keycap contrast with the golden chasis apparently.
    The touchpad looks cool as well, the material it made let the surface being anti-skidding and you wont leave your fingerprint on it.
    It has Dynaudio speaker and Steelseries keyboard these two famous brand as it high-end equipment. 4 channel speakers and comfortable tactile keyboard. Moreover, the Graphics card it equiped is GTX 970M,
    One of the lastest high-end Nvidia GTX graphics card. It is the first gaming notebook to equip GTX 970M .No doubt MSI regard themselves as the leader brand of gaming.
    Sound Blaster Cinema 2+Dyanudio, Bravo~~
    Let’s check the connectivity of this beauty.
    No ports but seried of cooling vents at the rear panel,in order to let air flow and palm rest feeling.
    being better.
    The left side of it located the microphone (line out) and headphone (line in) jack, two USB 3.0 ports, the power connector socket and a security port. Also the vent close to the rear panel. The metal golden jack can isolate much more noice and enhance the reality of music as not being distortion.
    The right side of GS60 located an USB 3.0 port, card reader, Mini DisplayPort, HDMI port, and GB LAN (RJ45). GS60 Ghost Pro can support 2 external moniotr with mini display and HDMI port. When playing PRG game, you can use the main one to play game, the other one can show a walkthrough. The last one, you can even use skype or outlook to connect others.
    The front side you can see the LED to show some fuction status. Such as the battary status and bloothtooth has been turned on or not..etc.
    From bottom of this notebook you can see the battery is not removable, I guess the idea probably come from iphone. In fact, I seldomly remove the battery when I using a laptop, unless it really heavy to carry. But this time, GS60 is not heavy, so it wont be a problem to me.
    I used the scaler to measure the actual weight and ruler to see how thin it is, the result cames out 19.95mm thin and 2.1kg weight. Is it really a gaming machine I used to think of?! Such an ultra-book style.
    As I know, all the gaming notebook used to be black and silver color, there are few gaming notebook with others color. MSI this time has find its way to make a breakthrough. Of course, the creative thinking and the adventurous action is what we need in gaming world!!  
    In a word, as you can see from the picture above ,the metallic feel of it is so attractive!!It is the most stylish and creative gaming notebook I have ever seen.
    All of above are the unboxing of hardware part.let’ talk about some function and feature of this treasure.
    Dragan Gaming Center which is preinstalled in this MSI laptop. With this application, you can monitor the status of the important elements in the system. You can also quick start a game or an utility through it.
    Fn+F7="Shift", according to the official website, the key can be used to change the mode of the notebook in 3 status, the default "Sport"mode、"Comfort" mode and "Green mode", it is a adjustment function to control the CPU and GPU workload in order to balance the performance and temperature
    Use "Shift" to switch the mode you prefer.
    Green- System locks both GPU and CPU chip temp.
    Comfort- System locks GPU chip temp and dynamic adjusts the GPU chip temp
    Sport- Defaut and without any control.
    I am not afraid about the high temperature and noise from fans, so I like to use the default one, Sport mode~
    If you are playing a game in the library, please do choose Green mode to keep the fan from being busy.
    The "Shift" is MSI exclusive function, the idea comes from the shifting gear in automobile.
    Here comes another interesting feature, which is called Killer Double Shot Pro.With this function,
    the GB LAN and Wireless LAN act like combined togather and user can acquire the bandwith from both.
    Killer Netwok Manager UI
    This network technology also offers you a smooth background when playing game, because you can set the gaming applications as higher priority to use the bandwith than others. What a bravo feature!!
    The highest resolution of GS60 Ghost Pro is 2880*1620 which is also called 3K,
    as you can see from the screenshot below, when playing game you gain much more visual delight.
    With the HDMI and mini display output, you can enjoy a 1+2 matrix display function.
    With the XSplit Gamecaster preintalled in GS60, you can share your game just in time through live streaming while playing it. however, I won't use this function because I don't wanna share my skill to the others, hahaha~~
    The Steal Series Engine, it is my favorite. You can set the keypress macro、text macro or lauch application just in one key. For example, while playing Leaque of Legend, we always need to press Q、W、E、R、T
    immediately, but with keypress macro function, you can trigger them just in one key. Quite convient, isn't it?
    You can also choose the color you want for the keyboard backlit with Steal Series Egine. This function shows the gaming feature indeed.  
    That's see the multi-color backlit of it. What a show off!!!
    Below is the hardware information showed by Nvidia Experience UI and GPU Z
    GeForce GTX 970M with DDR5 3G and I7-4710HQ!!
    I can't wait to see the 3D MARK 11 P score...
    Here it got P9272 at sport mode. Outstanding!!
    For 3D MARK Fire Strike, it got 6515 at sport mode. I have to say that GS60 Ghost Pro punches above its weight.
    The result of Valley Benchmark 1.0 is below, score 1560 and FPS is 37.3.
    Testing the Call of duty Ghost with FRAPS, while play the game, it goes smoothly and the fps showed at top-left is around 100~200. As you can see the delicated scenery and character there, it seems like act in the reality.
    The sequencial read of these two SSD is 1022MB/s, it features from the Super RAID technology. Applying the RAID 0 technical usually used in server into SSD to make the IOPS much better.
    Take a look at its outward appearance again, bring it oudoor to see its color under natural light.
    Fantastic~~
    I would like to say, the GS60 Ghost Pro Golden is Lamborghini in gaming laptop!! It will be all the rage.

    This year, GTX970M performance is even better than 880M, with GS60's slim design, I can only say the advance of technology is so amazing!!!

  • Select data from database tables with high performance

    hi all,
    how to select data from different database tables with high performance.
    im using for all entries instead of inner joins, even though burden on data base tables is going very high ( 90 % in se30)
    hw to increase the performance.
    kindly, reply.
    thnks

    Also Check you are not using open sql much like distict order by group by , use abap techniques on internal table to acive the same.
    also Dont use select endselect.
    if possible use up to n rows claus....
    taht will limit the data base hits.
    also dont run select in siode any loops.
    i guess these are some of the trics oyu can use to avoid frequent DATA BASE HITS AND ABVOID THE DATA BASE LAOD.

  • I have both the 250 gb high performance hard drive and a 1 ter byte hard drive.  What happens when the 250 gb hardrive is full?

    I have both the 250 gb high performance hard drive and a 1 ter byte hard drive.  What happens when the 250 gb hardrive is full? This on Imac desktop

    Never let a drive get more than 80% to 85% full.
    AND keep 50-100 GB of free space on a startup drive to allow proper function of virtual memory in all OS X versions from 10.5x to current versions.
    10.4x can get by with 20 GB of free space on the boot drive, but more is always better.
    I try and keep all boot drives between 50 and 60% of capacity.
    Beyond 60% and up to 90% capacity, seek times increase almost exponentially; performance suffers.

  • I Can't Switch between 'power-saving GPU' and 'High-Performance GPU' in Catalyst Control Center

    Hi,
    Whatever if my computer was only on the battery or was only plugged in to the main power supply. In Catalyst Control Center, I noticed that 'High-Performance GPU' was always selected', although the 'automatically select power-saving GPU when on battery' was enabled. Also, When I tried to switch into the 'power-saving GPU', there was no response at all. However, when my laptop was only on the battery, I noticed the the try of switching into 'Power-Saving GPU' results in shutting down my computer suddenly.
    Thus, I had to open the Device Manager, then I disabled 'Radeon HD'. After that,  'power-Saving GPU' was selected(Screen shot below), regardless of whether my laptop was on only the battery or was only plugged in to the main power supply. To switch it into 'High-performance GPU' again, I only must enable 'Radeon HD' in the Device Manager since clicking on 'High-performance GPU' in the Catalyst Control Center didn't respond.
    As conclusion, 'High-performance GPU is always selected, regardless of whether my computer was only the Battery, or was only plugged in to the main power supply. To let 'power-saving GPU' is selected, then 'Radeon HD' must be disabled in the Device Manager.

    Hi @cooperator ,
    Welcome to the HP Forums!
    It is a terrific place to find answers.
    For you to have the best experience in the HP forum I would like to direct your attention to the HP Forums Guide Learn How to Post and More
    I see from your post that you have switchable graphics and are experiencing a difficulty with them.
    Have you checked your power plan.  Here is a link to Using the HP Power Plan Utility.
    Here are two documents on switchable graphics that should also assist you. 
    Overview of Switchable Graphics or Dual GPUs
    Switchable Graphics on Notebooks Configured with Dual AMD GPUs
    If you are still having an issue, I suggest contacting HP support for further assistance.
    Please call our technical support at 800-474-6836. If you live outside of the US/Canada Region, please click the link below to get the support number for your region. Phone Assist Worldwide
    Sparkles1
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom right to say “Thanks” for helping!

  • Chirping "Whistling" sound when playing games and high performance general

    Hi.
    My brand new MacBook pro 13" 2012 juli "new HD4000 version" is making a wierd chirping sound when playing ex. Diablo 3 and just running higher performance generally. It is comming from the left inside of the computer, and it doesent have anything to do with the sound system. It is still there when i turn the speakers off. My fan ofcourse begins to spin faster when i play, and maybe that have something to do with it ?  Anything i could do to fix this, or should i send it to repar/service ?
    Simon

    Yes.
    MBP is in limited warranty for 1year from the date of purchase.
    MBP comes with 90 days of free tech support from AppleCare from the date of purchase.
    AppleCare: 1-800-275-2273
    Best.

  • Looking for a high-performance and reliable NAS

    Hi,
    I have been searching for a high-performance and reliable SOHO NAS storage but I have seen very mixed and contradicting reviews for the products I have looked at so far. From QNAP to Synology to etc.
    However I've not found a good review for Promise SOHO NAS devices such NSx700 and NSx600.
    Is anybody here using them? If so how would you rate these devices?
    Thanks in advance,
    Behrang

    My g/f is using a Synology 1511+ with 2TB WB black drives - set up for 2 disk redundancy.
    http://www.synology.com/us/products/DS1511+/index.php
    She has her lightroom images on there and it works very well with her MBP 10.6.8
    If you have specific questions, please ask
    Michael

  • Specific part number of decription/name of adapter required to use my iPad Air to my PNY High Performance 64GB High Speed microSDXC Class 10 UHS-1 up to 40MB/sec Flash Memory Card -P-SDUX64U1-GE-A

    Specific part number or decription/name of adapter required to use my iPad Air to a PNY High Performance 64GB High Speed microSDXC Class 10 UHS-1 up to 40MB/sec Flash Memory Card -P-SDUX64U1-GE-A

    I think you need this.

Maybe you are looking for

  • HP printer problem with Leopard

    Just upgraded to 10.5.5 and now can't get HP2015d printer to print off any Office documents (Word, Excel or Powerpoint). Othe HP printers work fine. I have installed updated driver and still can't solve. Help!

  • File structure and Multi-user access/control

    Hi All Currently evaluating RH. Our plan is to use RH HTML with RoboServer and either SourceSafe or Team Foundation for source control. We will be producing the "printed" manual (PDF) and publishing online help (hopefully html via RH server) from the

  • Merge two mono files to one stero file

    i want to make two mono tracks into one stereo track where one is the left part of the the stereo track and the other the right part...i thought i had done that a long time ago...if possible, how do i do that? thx, Brick

  • Date and timestamp code

    Hi Experts, I've a table which contains date and timestamp in single field. Now I need to do look up on this table. But this table can contain multiple records on same day.  I need to take record which has lower data and timestamp. How can I write a

  • Validating against XML Schema

    Hi, does someone know how to validate a XML file against a XSD File (XML Schema) in ABAP. Iam using the IXML Package. Thanks. Jim