Install Access 2010 Full and Runtime together on one machine?

Hi,
a client at my company has many access database projects. They run mostly fine with Access Runtime. We provide the Apps with a Server 2008 R2 via Terminal Services as RemoteApp. Is there a way to install the Full Access Version parallel to the Runtime? So
if i publish a RemoteApp i just can choose between the two paths for Runtime or Full and provide the AccessApp either with one of both?
AFAIK if i install the full Version of Access 2010, it overwrites the Runtime and uses the same paths as the Runtime used before (something like C:\Program Files (x86)\Microsoft Office\Office14\MSACCESS.exe)
Thanks in advance for your hints,
Rolf

Hi,
Yes, of course you could install the Access 2010 and Access Runtime 2010 in the same machine.As you know the Access Runtime 2010's detail imformation, you could choose to distribute those Access 2010 solutions so that they run without requiring
a full installation.
And the Access 2010 full version is also included in Office 2010, you could choose only install the Access 2010 and change the install path by using OCT.
Regards,
George Zhao
TechNet Community Support

Similar Messages

  • Can Oracle 10g and Oracle 9i coexist and run together in one machine

    Dear Friends,
    I have installed Oracle 10g on my machine which already had Oracle 9i - 9.1.2.0 Release. Now the problem is that when i try to create a service name it gives me this error- ORA-12514: TNS:listener does not currently know of service requested in connect descriptor. To overcome this what i have done is that i have stopped the Oracle 9i listner and started the Oracle 10g listner, it is working after this but Oracle 9i service stpooed. Does this mean that Oracle 9i & 10g listner can't run together ? Or one has to stop the listner for one version to start another. The port number is same 1521 for both the listner. When i tried to change the port number still the same error comes as described above.
    Kindly enlighten me,
    Thanks & Regards,
    Vinay

    if you want to configure both listener (oracle 9i and 10g listener)
    then u configure
    listener9i on 1521 port
    and other
    listener10g is on 1522 port
    also make changes in tnsnames.ora file
    as
    ora9i =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.16.1)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = ora9i)
    ora10g =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.16.1 )(PORT = 1522))
    (CONNECT_DATA =
    (SERVICE_NAME = ora10g)
    thanks
    Kuljeet pal singh

  • What is the best way to have access to OSX and OS9 from the same machine?

    What is the best way to have access to OSX and OS9 from the same machine?
    Do I need to partition the hard drive? Installed both Tiger and OS 9 on the G5 and it is having problems starting up properly.
    G5   Mac OS X (10.4)  

    And here is the prove for Edwin's message: Macintosh: Some Computers Only Start Up in Mac OS X

  • Access 2010 warn "System Resources Exceeded" when change machine

    My Access file has 1.2GB and need to run a lot of simple Update SQLs. The program run well on my old PC.
    I recently change the PC from Core 2 Due to I5-4570S. The Access
    warn "System Resources Exceeded" when running. I use the old PC to run and it is ok. 
    My old PC is E7500 2 GB ram, Win 7 (64bit) + Office 2010 (64bit). New PC is I5-4570S with 8GB ram, with same OS and Office. Why the system resources would exceeded on my new machine?
    I searched many websites for this and cannot find a well solution. Does anyone know how to solve it?
    I have posted this question on Access 2010 help forum before, please refer to:
    http://social.msdn.microsoft.com/Forums/office/en-US/60810447-2f18-452e-b752-c23bda4a67aa/access-2010-warn-system-resources-exceeded-when-change-machine?forum=accessdev

    I don't use ODBC. I use ADO with ACE connection string to connect database.
    The Access version of new pc is newer than my old pc already.
    I tried in different PCs with different setting and found that in 2GB ram, the program is stable. If 4GB or above, the error appeared. 
    The error does not appear at the same command all the time. It may not appear sometimes. If I try to compact the database and re-run the command, it may pass, but not always. 

  • How to install oracle817 and form6i on the one machine

    How to install oracle817 and form6i on the one machine?
    Machine is P4/W2K
    Thanks a lot

    You can do this as long as you install them in different Oracle homes.

  • Icon and text together in one column in alv list

    Hello Everyone,
    I want to display icon and text together in one column in ALV list.
    I am using reuse_alv_grid_display function module.
    Currently, i am able to see icon only in the column but i want to see both icon and text in one column in ALV.
    Please let me know if this scenario is possible in ALV and how.
    Thanks in advance.
    Regards, Tarun

    Hi,
    Check this code....
    REPORT  ZTEST_ALV_CHECK     MESSAGE-ID ZZ           .
    TYPE-POOLS: SLIS,icon.
    DATA: X_FIELDCAT TYPE SLIS_FIELDCAT_ALV,
          IT_FIELDCAT TYPE SLIS_T_FIELDCAT_ALV,
          L_LAYOUT TYPE SLIS_LAYOUT_ALV/
    DATA: BEGIN OF ITAB OCCURS 0,
          VBELN LIKE VBAK-VBELN,
          POSNR LIKE VBAP-POSNR,
          ICON(1),
         END OF ITAB.
    SELECT VBELN
           POSNR
           FROM VBAP
           UP TO 20 ROWS
           INTO TABLE ITAB.
    loop at itab.
    if sy-tabix = 1 or sy-tabix = 2.
    itab-icon = '1'.
    elseif sy-tabix = 10 or sy-tabix = 20.
    itab-icon = '2'.
    else.
    itab-icon = '3'.
    endif.
    modify itab index sy-tabix.
    endloop.
    X_FIELDCAT-FIELDNAME = 'VBELN'.
    X_FIELDCAT-SELTEXT_L = 'VBELN'.
    X_FIELDCAT-HOTSPOT = 'X'.
    X_FIELDCAT-TABNAME = 'ITAB'.
    X_FIELDCAT-COL_POS = 1.
    APPEND X_FIELDCAT TO IT_FIELDCAT.
    CLEAR X_FIELDCAT.
    X_FIELDCAT-FIELDNAME = 'POSNR'.
    X_FIELDCAT-SELTEXT_L = 'POSNR'.
    X_FIELDCAT-TABNAME = 'ITAB'.
    X_FIELDCAT-COL_POS = 2.
    APPEND X_FIELDCAT TO IT_FIELDCAT.
    CLEAR X_FIELDCAT.
    L_LAYOUT-lights_fieldname = 'ICON'.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
      EXPORTING
        I_CALLBACK_PROGRAM       = SY-REPID
        IS_LAYOUT                = L_LAYOUT
        IT_FIELDCAT              = IT_FIELDCAT
      TABLES
        T_OUTTAB                 = ITAB
      EXCEPTIONS
        PROGRAM_ERROR            = 1
        OTHERS                   = 2.
    IF SY-SUBRC <> 0.
      MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Regards
    vijay

  • Raw and jpg together as one picture in Lightroom 3

    When I import the pictures from my camera I get my raw and jpg together as one image. But the pictures I already have in Lightroom 3 are divided into separate folders and show up as separate pictures. Is it possible to merge the raw and jpg together without importing them anew? I have put keywords on almost all my jpg in Elemenst 8 and don't want to do it again if I don't have to. It took me weeks to do.
    Any help appreciated.

    I have so much disc so t
    he space they fill up is no problem. Also like to have the jpg's if a friend or so want's
    to make copies of some of them.
    But thanks for the link. Handy little program.

  • CAN I INSTALL BOTH (ORACLE 9IAS AND ORACLE DATABASE )INTO SAME MACHINE.

    oracle 9ias and oracle 9i database in same machine Feb 25, 2003 11:22 PM
    Reply
    Dear Friends,
    I installed oracle 9ias. and then i hosted my form,report into that server . All was working properly.
    at this time my database was into another machine.
    then i installed oracle 9i database into the same machine
    (as the oracle 9ias was installed)
    at the instalation of oracle 9i database one error comes
    and shows that Agent configuration Assistant Installation
    fail.
    but After installation of database it work properly.
    there is no problem.
    but when I try to run from through web(by using oracle 9ias)
    it gives Internal error(500).
    i check and find that my appache server for 9ias is working properly and in services of windows 2000 no error comes.
    HOW CAN I INSTALL BOTH (ORACLE 9IAS AND ORACLE DATABASE )INTO SAME MACHINE.
    With regards
    Siddharth Singh
    [email protected]

    Hi James,
    Have u ever tried ORACLE 9iAS R2 on Redhat Linux ?
    If yes what is the version of RH Linux you were using ?
    Any docs for that ?
    [email protected]
    Regards
    Amudharasu

  • Mac and windows together on one computer

    is it true that you can use both Mac OS X tiger v10.4 and microsoft windows in one computer, and do i have to buy a certain computer. im looking at either macbook or macbook pro. does it work on those?

    Well I found with version 2.5 of parallels I was getting incredible amount of slow downs. I use parallels (and Fusion) for work, so 90% of my time is connected via a VPN connection. I'm not sure what was causing the slow downs but when I selected an explorer window or a IE window, the computer would freeze for about a minute. Additionally I had parallels crash my entire system, that is take out OSX too.
    With VMware's Fusion (while still in beta), I'm getting better speed, better stability and none of that lockup/freeze up that I was getting from parallels. I was even using the same installed OS because vmware has a converter utility to create its own VM from a windows environment which I did within parallels so I'm comparing apples to apples, that is Fusion is not on a brand new installation.
    I've been reading a lot of stuff on the parallels board about 3.0 which scared me completely away of trying that and I generally don't use the cohesion (or what ever they call it) technology for either VM.
    Finally the support issue, parallels has a very bad reputation of not having good support where as VMware does.

  • Installing All (9iDB,9iDS and report server) in same machine

    I want to use one machine only.
    I have installed 9i database, and on same 9iDS.
    and created a report server on same machine
    i am facing a problem
    all application runs very fine but on running report from
    forms by using webs.show_document()
    a new page comes and states
    Opening page http://server1:8888/reports/rwservlet/getjobid..
    and hangs there only.and it hang such that after closing the page
    application also does not work.i have to restart OC4J
    i have seen in trace file report finished successfully
    and also in report\cache directory report file is alreasy made.
    now when i install 9iDS in another machine and use the other machine as application server,report server be in
    any machine it work fine.
    all report are displayed. no problem comes in that case.
    But i have to use only one machine .
    pls state me solution
    thanks a lot
    regards
    raj

    I HAVE SEEN IN JINIT CONSOLE
    trace level 5
    on server where (9iDS and database both installed)
    Opening http://server1:8888/forms90/l90servlet;jsessionid=c995d4251dd849878b75cf8649b1d477
    Connecting http://server1:8888/forms90/l90servlet;jsessionid=c995d4251dd849878b75cf8649b1d477 with no proxy
    Opening http://server1:8888/forms90/l90servlet;jsessionid=c995d4251dd849878b75cf8649b1d477
    Connecting http://server1:8888/forms90/l90servlet;jsessionid=c995d4251dd849878b75cf8649b1d477 with no proxy
    Opening http://server1:8888/forms90/l90servlet;jsessionid=c995d4251dd84987
    and so on..
    on another machine
    from where reports comes
    this is trace file
    Connecting http://pdc:8888/forms90/l90servlet;jsessionid=db17d7a493484cb8ac2ac70498be1448 with no proxy
    Connecting http://pdc:8888/forms90/l90servlet;jsessionid=db17d7a493484cb8ac2ac70498be1448 with cookie "getfileauthid=c0roXNhhSA=="
    Opening http://pdc:8888/forms90/l90servlet;jsessionid=db17d7a493484cb8ac2ac70498be1448
    now i see in first stage it is not connecting with
    cookie

  • HT4623 I updated my to ios7 and now I am locked out of the phone.  Now I need to put in a passcode to access my phone and I never set one.  Help....

    I just updated my ios to the most recent and now I am asked for a password to access my phone but I never set one.  How can I set one now?

    Hi there brucedalton,
    You may find the information in the article below helpful.
    iOS: Forgotten passcode or device disabled after entering wrong passcode
    https://support.apple.com/kb/ht1212
    -Griff W. 

  • Using a wired AND wireless network on one machine for better security

    It occurs to me that if I could separate my Internet traffic from my LAN traffic, I could have the best security setup, so that machines on my network would only have file sharing enabled for the WIRED connection and I would use the Internet over the WIRELESS connection.
    How do I configure my PowerBook and Mac Mini to do this? In the Sharing preference pane, it doesn't allow me to specify which network port the sharing will be active on.
    And once I am conncected to both a wireless and wired network, giving each machine 2 IP addresses, how does the computer know to route the IP addresses to the right port?
    I'm using an Airport Extreme Base Station (connected to a cable modem) configured to distribute IP addresses to the wireless ports on the computers for Internet and a Linksys router distributing IP addresses to the ethernet ports on the computers with sharing turned on.

    in the Thinkvantage Access software, you can set the network preferences. So you can set the Ethernet to be your most preferred network connection method, while your wireless as the second most preferred method. Or which way you prefer.
    So for example, when you dock and the computer detects the ethernet network connection, it will automatically switch to the ethernet as it becomes available. And when you undock, your computer will switch back to wireless as ethernet is not available.
    Regards,
    Jin Li
    May this year, be the year of 'DO'!
    I am a volunteer, and not a paid staff of Lenovo or Microsoft

  • Install Final Cut Stdio 2 on more than one machine?

    Hi,
    anyone knows if it'll be possible to install FCS2 on more than one machine? I have different macs (desktop, laptop) I'd like to install FCS2 on.
    thanks.

    Hi there,
    legally you can only install 1 copy of FCS onto 1 desktop & 1 laptop. any more than that you need to but more copies.
    as to the requirements of FCS2, check out apples FCS2 webpage for exact details but roughly, as it is a PRO app, it requires PRO machines (not mac minis, macbooks or any machine with an integrated graphics chip)
    hope this helps
    andy

  • DTRShell and 2 DTRs on one machine

    Hi,
    I'm playing around with the DTR and have two DTRs sitting on one machine in two instances. One is on instance 00 and the other one on 03. When I open the dtrshell it connects to the instance 00 by default. How can I connect to the DTR on instance 03???
    Kind regards,
    Heiko

    Hello Heiko,
    the DTRs on the 00 and 03 instance listen to different HTTP ports, i.e. 50000 for instance 00 and 50300 for 03 by default ( 50000 + instance_number*100 ).
    Localize the files servers.xml and clients.xml on your system (usually in the .dtr folder in your home directory) and create corresponding entries for your second instance. The <client> entry with attribute "active=true" is the default client.
    Best Regards
    Michael

  • Clean Install of Mountain Lion and restore from NAS Time Machine

    Dear all
    Sorry if this question was answered elsewhere but I could only find basic information.
    Seek your advice on this. I am currently running Lion 10.7.4 on my mid-2009 MBP and now that Mountain Lion update 10.8.1 has been released, I am thinking of doing a clean install of the OS to clear out all the previous clunk. My Time Machine backups are stored on an NAS and with the clean install of of Mountain Lion intend to do the following:
    a. Restore the applications and data from the NAS Time-machine backup
    b. Keep/retain the backup history as per the NAS Time Machine for future backups
    How can I do this in the most efficient, painless and safest way, please?
    Thanks for your kind advice.
    Stan

    I did a mountain lion install (to clean new Hard Drive) and restored everything (including Applications) from time machine on my ReadyNAS Duo. It did not override applications. It actually seemed to have realised that they were old and imported NONE of the applications from my time machine back up.
    I've had to manually access it and go through...that said time machien doesnt see the back ups as my own so i
    've had to log in manually and such....

Maybe you are looking for