License for XE Client and non-XE server

Hi,
I want to use the XE Client to access a non-XE server. The license agreement states:
Any use of the Oracle Database Express Edition is subject to the following limitations;
1. Express Edition is limited to a single instance on any server;
2. Express Edition may be installed on a multiple CPU server, but may only be executed on one processor in any server;
3. Express Edition may only be used to support up to 4GB of user data (not including Express Edition system data);
4. Express Edition may use up to 1 GB RAM of available memory.
Does that mean that I cannot use the XE Client for accessing a non-XE database?
Or can I freely distribute the XE Client together with my application?
Thanks,
Nils-Olof Wilske

Here's the way I'd read it:
The XE client is freely distributable, but the intentions are that you're using that with the XE-server.
If your non-XE server is licensed by the processor, I don't think Oracle cares which kind of client you use with it. If your non-XE server is licensed by the named user, you would still need to have licenses for those connections, no matter which client they were using, whether it be XE, Instant, Standard, etc.
You can't use the XE client to get around named user licensing requirements.
Was that the intended question, or was it strictly a question about distributing the client with your applications?
~Jer

Similar Messages

  • Clarification about source and destination IPs for internal clients and Edge server

    I just wanted to get some clarification on the correct traffic flow between internal Lync clients and the Edge server.
    From all the diagrams I've looked at I was under the impression that if internal clients need to hit the Edge server to talk to external clients they should always do so through the Edge Internal interface which bridges to the Edge External interface and
    out to the internet.  Specifically port 3478 from the Edge AV External interface to the internal clients.
    We aren't seeing that in our environment.  When internal clients are talking to external clients we see the Edge AV External interface communicating directly with the internal client.  In fact we found this out because after the migration to Lync
    2013 external users couldn't created a AV connection to internal users on either the Lync servers.  We saw traffic on 3478 being dropped between the Edge AV External interface and the internal client.  Once we opened that port AV traffic worked.
    We never put this rule in until we introduced Lync 2013.  Lync 2010 didn't seem to require it.
    Is that the correct flow?

    I would also really love to know the outcome of this but it looks like the thread is marked as "Answered" and it is not so. 
    I've been working with a troublesome Lync deployment in which internal users are having issues sharing their desktop with external and federated users. After opening up all the 50000-59999 range for TCP/UDP on the A/V Edge external interface things are working
    much better, but we still see sporadic failures.
    It lead us to start digging into the network traffic. We see that UDP traffic on port 3478 is being routed back from the external client to the Edge A/V's external interface, inside of the DMZ's perimeter, then directly to the internal client on the internal
    network. It doesn't look like it's making a connection since the stream is so small, so I wonder if there is a design flaw in my topology?
    There are persistent static routes on the Edge server that use the internal interface to route internally directed traffic over the internal gateway. Tracert confirms the flow, but in wireshark traces, running during successful connections, UDP port 3478
    is still sending packets directly to the internal IP from Edge's A/V address. 
    We also see successfully connected sessions communicate on a different network route that we use to handle internet traffic rather than our Lync topology's route (the one defined for A/V traffic). The connection opens on ports in the 50000 range, but goes
    over a router that we have not configured for such traffic. Is that possible?
    Why is UDP traffic on 3478 trying to go directly to internal clients from external interface ?
    It sounds like it's happening elsewhere... Is this a legitimate issue to be diagnosing? Has it been observed and/or resolved by others?

  • Unable to initialize the Microsoft Exchange Information Store service because the clocks on the client and on the server machine are skewed

    Each time I restart this exchange server, the Information Store and System Attendant don't start. If It try to manually start the services, I get the follow errors:
    Event ID 5003:
    Unable to initialize the Microsoft Exchange Information Store service because the clocks on the client and on the server machine are skewed. This may be caused by a time change either in the client or the server machine, and may require a reboot of that machine. Other than that, verify that your domain is properly configured and is currently online.
    Event ID 1005:
    Unexpected error The clocks on the client and server machines are skewed. ID no: 80090324 Microsoft Exchange System Attendant  occurred.
    The clocks on the domain controllers and the exchange server are set to the same time zones. As well, all three clocks are in sync down to the second. Any ideas on what's causing this and how to fix it?

    Run this Command from the Exchange Server
    Net time \\ADServerName /Set
    and confirm the action,
    and then you need to restart the service
    Microsoft Exchange Active Directory Topology Service
    and confirm you are not getting the Error 4001 in the event Viewer.
    Thank you, it resolved my issue after being sweating looking for solution.
    How can I prevent this from happening? I cannot restart services on each server reboot nor lose 5 years of my life!!!
    Sokratis Laskaridis MCP, MCTS, MCITP, Small Business Specialist Netapp ASAP, Symantec STS

  • SAPB1: 64 bits Client and 32 bit Server compatibility

    Dear all,
    SAP B1 2007 A
    is it possible to install SAP B1 client on a 64 bits Windows 7 workstation and connect it to a 32 bits server having SAP B1 2007 and SQL Server 2005 installed?
    64 bit client and 32 bit server can work together?
    Regards
        Emanuele

    Dear Emanuele,
    Yes if you are on SP01 PL07 or higher. You may check SAP Notes 1434624  and 1435183 for more info.
    Thanks,
    Gordon

  • How to reduce configuration cache file Quota size located in ( C:\Windows\ccmcache ) for all client from SCCM 2012 server

    How to reduce configuration cache file Quota size located in ( C:\Windows\ccmcache ) for all client from SCCM 2012 server
    Thanks in Advance
    NTRao

    Hi,
    There are numerous ways to change the cache size.
    You could deploy a vbscript to a collection of the devices.
    On Error Resume Next
    Dim UIResManager
    Dim Cache
    Dim CacheSize
    CacheSize=20000
    Set UIResManager = createobject("UIResource.UIResourceMgr")
    Set Cache=UIResManager.GetCacheInfo()
    Cache.TotalSize=CacheSize
    Or you could use a configuration item.
    http://blog.coretech.dk/heh/configuration-items-and-baselines-using-scripts-powershell-example/
    You can also use the right click tools by Now Micro on a collection, if all the servers are on this would be the easiest / quickest way.
    http://www.nowmicro.com/recast/right-click-tools/
    http://www.david-obrien.net/2013/02/how-to-configure-the-configmgr-client/
    select SMS_R_SYSTEM.ResourceID, SMS_R_SYSTEM.ResourceType, SMS_R_SYSTEM.Name, SMS_R_SYSTEM.SMSUniqueIdentifier, SMS_R_SYSTEM.ResourceDomainORWorkgroup, SMS_R_SYSTEM.Client from SMS_R_System where SMS_R_System.OperatingSystemNameandVersion like '%6.2%'
    https://msdn.microsoft.com/en-us/library/windows/desktop/ms724832%28v=vs.85%29.aspx?f=255&MSPPError=-2147217396

  • Need help regarding Simple Data Client and Simple Data Server VIs

    Hi everyone.
    I have a simple objective. I just want to test the 2 example VIs, "Simple Data Client" and "Simple Data Server" between 2 computers. I just want to check whether is this working between the 2 computers.
    What I have done for now is that I changed the "address", from "localhost" in the "Simple Data Client.vi" to the IP address of the computer running the "Simple Data Server". I runned the "Simple Data Server" VI in one of the computers first followed by the "Simple Data Client" in the other computer. Nothing is received and the client just timed out.
    Can anyone please help me troubleshoot and tell me what are the possible problems for this? Are there any wires connections between 2 computers that I am missing or any other configurations I have to make before I can successfully do this?
    Thanks.
    Regards,
    Jonathan

    Hi Lee.P.
    I understand that. I was just feeling frustrated about the project not working. Sincere apologies from me.
    I was wrong about the error number. It is not Error 60. It is Error 59 - The network is down, unreachable, or has been reset.. Yes, I have tried changing the port numbers at the 2 computers when trying to send/receive.
    Could anything else be the problem?
    Regards,
    Jonathan  

  • One RMI client and mutliple RMI server implementation

    Hi,
    We are planning to implement a RMI. In the design approach we are planning to have 1 client and mutiple RMI server and each RMI server register to a system. All the RMI server will have the same functionality. The decision to call particualr RMI server is done at runtime based on some parameter. I am not clear on how to implement the same as I am new to RMI technology, so it would be great if you can suggest some good approach for doing the same.
    Thanks,
    Ramreddy

    greetings,
    your client and server are in the same class?
    i.e. server object (interface implementation instance)
    and lookup are within the same execution thread
    i believe this defeats the purpose of RMI
    the objective is to utilize object methods on different machines
    otherwise, you can just use a local method within your server/client mainline (of course, it ceases to become "remote" at that point)
    logistically, there is also the problem of the runtime not being able to resolve the skeleton/proxy components correctly (since it's probably searching for a client stub which doesn't exist...); maybe you could fake it out by compiling a phony client class - again, this won't provide any advantage but it might run
    perhaps if you shared your system/network setup and a bit more about your design objectives someone in this forum could provide some assistance
    good luck,
    D

  • 10.8 client  and 10.6 server email pop and imap problem

    Hi Guys ,
    My problem is 10.8 client and 10.6 server.
    10.6 server have email server running (pop and imap), when i configure same email account (pop) on 10.7 machine  and 10.8 machines , 10.7 machine works , but 10.8 pop does not working
    let me explaing further :
    when i use 10.8 mail application to  setup pop mail account it does not connecting . But  i used the same account to connect imap it connect on 10.8 machine.
    the same mail account connect to another 10.7 machine  with POP and IMAP for testing reason , it works with out any issues
    POP server is running and this email account's users profile enable POP and IMAP mail settings.
    thanks in advance.

    Try checking the Authentication Type for the POP account.  It is located in Mail > Preferences > Accounts > selected account > Advanced
    10.8 tends to use Apple Token.  I think you will need to use a type of MD5 Challenge-Response or Password.

  • My Acrobat 9 pro crashed on my PC using XP.  I deleted it and tried to reinstall.  It asked for my license for 9, 7 and 6.  I put in the 9

    My Acrobat 9 pro crashed on my PC using XP.  I deleted it and tried to reinstall.  It asked for my license for 9, 7 and 6.  I put in the 9 & 7 license which I have.  How do I get the version 6 license.  Is there a live person at Adobe & how do I reach them??

    You have the upgrade serial number for Acrobat 9that is why it is asking the previous qualifying serial number, I am sending you the serial number of Acrobat 6 & 7 by private messaging, you can your self find them by using Find your serial number quickly
    Regards
    Rajshree

  • I've designed a magazine prototype for a client and I need it to flip pages like a book on an i-pad. What software will do this?

    I've designed a magazine prototype for a client and I need it to flip pages like a book for her sales team to show on ipads. What software will do this?

    The max OS for all Macs with a PowerPC processor is Leopard OS 10.5.x.
    If you are going to consider getting a newer, but used, Mac, here's the requirements for Lion.
    Lion 10.7 System Requirements
        •    Mac computer with an Intel Core 2 Duo, Core i3, Core i5, Core i7, or Xeon processor (most models released since late 2006 - early Intel-based Macs with Core Solo or Core Duo processors aren't compatible)
        •    2GB of memory (recommend at least 4GB -- and ideally even more, as you'll see benefits in many computing tasks)
        •    OS X v10.6.6 or later (v10.6.8 recommended) for Lion download from Apple App Store; or Leopard 10.5.x if using Lion on USB drive
        •    7GB of available space (10GB recommended)
     Cheers, Tom

  • Park document approach for all PO and Non u2013 PO based vendor Invvoices

    Hello Experts,
    I want to use park document approach for all PO and Non u2013 PO based vendor Invoices.SAP
    Allows park document facility for FB60 ( Non-Po Based vendor Invoice)but doesnt allow the
    Same functionality for MIRO ( Logistics Invoice Verfication).Can anyone suggest a wayout for Park
    Document functionality for MIRO
    Thanks and Regards
    Urmila

    Hi,
    Transaction MIR7 can be used to park PO-based invoice. The same can be posted through MIRO.
    Regards,

  • I have three licenses for Adobe Illustrator and just made a fresh installation on the Windows 10 preview.  On this particular

    I have three licenses for Adobe Illustrator and just did a fresh installation on the
    new Windows 10 preview.  When I tried to update Illustrator - a totally routine
    task- the update process failed and subsequent efforts failed again.  The "error log"
    is copied below.  Any idea what is going on?  For what it's worth, this doesn't really
    have anything to to with Windows 10 versus 8.1 or whatever.
    Extension Manager 6.0.8 Update
    There was an error downloading this update. Please quit and try again later. Error Code: U43M1D204
    Adobe Application Manager
    There was an error downloading this update. Please quit and try again later. Error Code: U43M1D204
    Adobe Illustrator CS6 Update (version 16.0.3)
    There was an error downloading this update. Please quit and try again later. Error Code: U43M1D204
    Photoshop Camera Raw 8.6(CS6)
    There was an error downloading this update. Please quit and try again later. Error Code: U43M1D204
    Touch App Plugin Update
    There was an error downloading this update. Please quit and try again later. Error Code: U43M1D204
    Adobe Bridge CS6 5.0.2 Update
    There was an error downloading this update. Please quit and try again later. Error Code: U43M1D204
    Adobe CSXS InfrastructureCS6
    There was an error downloading this update. Please quit and try again later. Error Code: U43M1D204

    wtt.math,
    Please install the latest adobe application manager and try applying the available updates again.
    Here is the link  to download adobe application manager(AAM):
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=4773
    Download AAM from the above link and install it.
    Launch Updates again and try applying them.
    -Pragya

  • I would like to upload a file for a client and have it expire (lock them out of it) at a prescribed time

    I would like to upload a file for a client and have it expire (lock them out of it) at a prescribed time, say, 2 days after delivery. Any way to put a time limit on a file?

    No.
    Mylenium

  • 10.6 Client and 10.7 Server Open Directory

    I´ve got an Mac Mini running Lion Server. It´s configured as an Open Directory Server.
    And I´ve got some 10.6 Clients running on the same local network.
    All Clients have the Mini Server as DNS Server.
    And now I want to use NetworkAccounts form the 10.7 Server on the 10.6 Clients.
    I´ve connected the 10.6 Clients to the Server (without SSL) and all Clients say "Network Accounts available".
    But if I try to log in on the Client it just shakes the login window. I´ve tried it on all my Clients with different Accounts but nothing worked.
    It just won´t work! But why? Can you please help me?
    What I´m doing wrong? Or is the combination of 10.6 Clients and 10.7 Server not Supported by OpenDirectory on 10.7 Server ?
    Thank you !

    Check your authentication against the server from one of the clients using the following command:
    dscl /LDAPv3/<server name or IP> authonly <shortname of an account that cannot login>
         The server name should be the same name or IP you used when binding your 10.6 client to a 10.7 server.
    If you get the response "Failed to authenticate user <shortname> (tDirStatus: -14103)" you are having the same issue I was having. I found an answer to this, but you are not going to like it.
    Apparently Workgroup manager and Server.app deal with accounts differently. If you are using Workgroup Manager to import a long list of accounts, don't. Server.app needs to write an addition setting that is not part of Workgroup manager or in Passenger I doesn't work correctly with accounts that have home folders that are not local. Here are the steps I used to resolve the issue:
    Export all your accounts and groups
    Using Server Admin, demote your OD to a standalone directory
    Once the demotion is complete, use Server.app to promote your server to an OD Master
    Update: I've not found it to make a difference if you use server.app or Server Admin to configure your Open Directory Master.
    Once the server is again an Open Directory Master, import the users that you exported using Server.app instead of Workgroup Manager.
    If you are importing groups, set the Home Directory by editing the account in Server.app before importing groups to avoid overwriting your group settings. Thankfully, you can select multiple accounts at a time.
    Import your groups using Server.app
    Verify group membership and test the loginsIf you test the login using the dscl command from above, you should get no error after entering the password, but as long as you have a bound client, you should be able to login at this point.
    Hope this reaches you in time to help.

  • I designed a website for my client and he had already purchased a hosting package with a company, Mu

    I designed a website for my client and he had already purchased a hosting package with a company, Muse is asking for the Business Catalyst in order to use the contact us form. What can I do in order to fix this and avoid having to purchase the Catalyst service. Please advise can the code be alter?

    Yesterday Adobe announced updates to all the creative cloud products, including Muse. One of the new features for Muse is Forms that work on most hosting providers(not just BC).
    The new version of Muse will be publicly available in June. Prerelease builds are available now for users who have joined the prerelease program (http://www.adobekb.com/participating_in_muse_beta.html)
    http://www.adobe.com/products/muse.html
    http://adobe.ly/17IojFs
    http://youtu.be/RrXHhiY4-a0

Maybe you are looking for

  • 3DES decryption with SHA1 hashed key

    Hello all, I've been given the task of rewriting an existing VB application in Java, and one routine makes use of the Microsoft Cryptography API. The VB code decrypts a string using TripleDES decryption, using a string key that's been hashed with a S

  • Want Mac mini and G4 to share Display and USB keyboard and mouse

    I bought a KVM switch at a local electronics store. I got the only one that claimed Mac compatibility (PPA Int'l). I can't plug the switch into the G4 Cube. No such ports. With the adapter that accompanied my brand new Mac Mini, I can plug the KVM mo

  • Select more than 1000 APs Prime 2.0

    Is there a way to create an ap group in cisco prime 2.0 so that I can select more than 1000 APs for a wireless template?

  • Oracle 9i SCM

    Is this possible to merge 2 versions of forms using Oracle 9i SCM. In Oracle 9i SCM , we have a MERGE Options.What is the use of Merge in SCM? Can u pls explain this ? This is an urgent issue.

  • Illustrator CC Crashes at Launch even after the updates, anyone know what is going on?

    I recently got Illustrator CC and made all of the updates, unfortunately, it repeatedly crashes upon startup. I have no issues with Photoshop CC or Flash CC, just Illustrator CC. Does anyone have any suggestions on problem solving?