Multi-tenant and different charactersets

It is possible to have different files with different charactersets PDB is a CBD?

No, this is not possible. All PDB files have the same charactersets as the CBD:

https://docs.Oracle.com/database/121/NLSPG/ch2charset.htm#NLSPG1035

Tags: Database

Similar Questions

  • Everything was fine until my Windows 10, lost the start feature, if I ever go back to Windows 7, in this process, I lost my Adobe Reader software, I tried about ten times with different versions and different locations, all with the same download error

    Please forgive me for not knowing how to use this forum, I am an old man and not good at computers, I called Adobe, they said it was my only hope!

    Sorry to repeat

    Everything was fine until my Windows 10, lost the start feature, so I had to go back to Windows 7, in this process, I lost my Adobe Reader software, I tried about ten times with different versions and different locations, all with the same error message that is download "the feature you are trying to use is on an unavailable network resource"... are looking for It seems that it does not find when I search there, and I no longer seem to have the AcroRead.msi... the most difficult file, I try, I get deeper and deeper into things I don't know... I am looking for a simple solution!

    When it gets to this point, it is probably better to start from scratch.

    First of all, download, install and run Adobe Reader cleaning tool to get rid of all remains little. Here is a link to the tool: Download Adobe Reader and Acrobat tool - Adobe Labs

    Then go to the following link to download the full installer for the reader.

    https://get.Adobe.com/reader/Enterprise/

  • See multi-tenant

    I'm sure there must be a discussion, I'm not finding on this, but here's what I'm looking for:

    Currently, view (5 or 6) can belong only to a single domain.

    VCloud multi tenant implementations are OK with having more than one domain (or subdomain) within the tenant space, but as far as I can see, ONLY supports files with different permissions and roles within each of records (or higher level).  It is possible to configure a trust between the domains for authentication, but which places a burden on the 'original' area if you want to configure domain based prominent roles.

    Has anyone seen or heard any information that points to it becomes a true multi domain or solution tenant multi outside the incorporation of views in a cell vCloud?

    Thank you

    Roger

    You're right, view of the Horizon is not intended to be used in an environment when you need to multi-tenant real, there are ways to get it to work this way, but generally require a lot of manual steps and you could get in configurations not supported.

    Fortunately, there's a solution to this, its called VMware DaasS (formerly Desktone), it is built for shared all along.

    Linjo

  • How to set up a multi-lingual and multi-currency site

    I've been reding this article

    How to set up a multi-lingual and multi-currency site to installing a multilingual and Multicurrency site

    I want to know if I have 3 or more areas:

    • www.yourcompany.pt- Portugal
    • US.yourcompany.com - United States
    • UK.yourcompany.com - United Kingdom
    • www.yourcompany.com - China
    • www.yourcompany.fr-France

    do I have to create 5 versions of the site in five different languages?

    Also I have to create five different versions of a product for the corresponding five languages?

    Hello

    Please take a look at the following site,

    Tutorials

    Let me know if you have any question.

  • Question of design on unique constraints while moving to multi-tenant

    Hi all

    Please see the definition of this simple table:
    CREATE TABLE emp 
        ( 
         id INTEGER  NOT NULL , 
         name VARCHAR2 (30 CHAR)  NOT NULL , 
         birthdate DATE  NOT NULL , 
         username VARCHAR2 (10 CHAR) ,
         CONSTRAINT PK_ PRIMARY KEY ( id ) ,
         CONSTRAINT UC_emp_username UNIQUE ( username )
        );
    In this framework, each user can (not essential, authorized NULL) have a user name. A user name can only be used once. An application that uses this type of table is not multi-tenant capable.

    Now if I run the application of several tenants, I add a column tenant_id like this:
    CREATE TABLE emp 
        ( 
         id INTEGER  NOT NULL , 
         name VARCHAR2 (30 CHAR)  NOT NULL , 
         birthdate DATE  NOT NULL , 
         username VARCHAR2 (10 CHAR) ,
         tenant_id INTEGER  NOT NULL ,
         CONSTRAINT PK_ PRIMARY KEY ( id ) ,
         CONSTRAINT UC_emp_tenant_username UNIQUE ( tenant_id, username )
        );
    I have archived almost my goal:
    However, a user can (not essential, authorized NULL) have a user name. A user name cannot be used once BY the TENANT (see changed CPU). Of course, each tenant must be provided with an account named 'administrator', so the CPU must include the tenant_id. But what does not work:

    As soon as I add a 2nd employee for a tenant and this user doesn't have a login name (and therefore no user name), the UC has banned the addition of this user.
    It was no problem in the 1st case, because the CPU included a single column and a row in the base table with a NULL value in this column is simply ignored in the index.
    In the 2nd case, each row in the base table is included in the CPU, because the tenant_id column is NOT NULL. If the combination {tenant_id:1, username: NULL} cannot exist only once. This means that almost all employees must have a user name.

    What is the solution here?
    Drop the CPU is not a solution.
    Is it really necessary to move the user name column to a new table, as in the following? It just doesn't feel good to introduce a table of relationship for a 1:1 relationship.
    CREATE TABLE emp 
        ( 
         id INTEGER  NOT NULL , 
         name VARCHAR2 (30 CHAR)  NOT NULL , 
         birthdate DATE  NOT NULL , 
         tenant_id INTEGER  NOT NULL ,
         CONSTRAINT PK_emp PRIMARY KEY ( id )
        ) ;
    
    CREATE TABLE username 
        ( 
         id INTEGER  NOT NULL , 
         emp_id INTEGER  NOT NULL , 
         username VARCHAR2 (30 CHAR)  NOT NULL , 
         tenant_id INTEGER  NOT NULL ,
         CONSTRAINT PK_username PRIMARY KEY ( id ) ,
         CONSTRAINT UC_username_emp UNIQUE ( emp_id ) ,
         CONSTRAINT UC_username_username_tenant UNIQUE ( username , tenant_id ) ,
         CONSTRAINT FK_username_emp FOREIGN KEY ( emp_id ) REFERENCES emp ( id ) 
        ) 
    ;
    Any ideas or links to books that are greatly appreciated.

    Thank you
    Blama

    Hi, Lawrence.

    Sorry, I'm not sure you understand the problem. It would be useful that you posted some INSERT statements that should be allowed, and some that must fail because they violate the rule of oneness. Or by post at least a scneario of business that you might neeed to model. For example "tenant 1 has 3 employees: 11, 12 and 13." Employee 11A username "FFL". 12 has no username. 13 should be able to choose any username except "Elf", or not having a (just like the 12). 2 a 2 employees... »

    You can create an index based on a single function. For example, if the user name is optional:

    CREATE UNIQUE INDEX emp_name_unique ON
    username ( NVL2 (username, tenant_id, NULL)
             , username
             );
    

    If username is NULL, then the two expressions of the index will be NULL and no index entry will be. So there may be a number any lines with the same tenant_id, but no user name, but only one line for each (tenant_id, username) combination when there is a user name.

    Laurent wrote:
    ... Is it really necessary to move the user name column to a new table, as in the following? It just doesn't feel good to introduce a table of relationship for a 1:1 relationship.

    Good instinct; It's weird (but not necessarily bad) to have a one-to-one relationship between the tables, but do you? When you say things like

    ... A user name cannot be used once a TENANT...

    or

    ... As soon as I add a 2nd employee for a tenant...

    Looks like you have a one-to-many relationship, or maybe a many-to-many relationship, or maybe even two relationships, neither of which is unequivocal.

    Published by: Frank Kulash, October 26, 2012 09:15

  • multi, search and replace

    Hi all

    I have tons of paintings including 50 different sizes in metric sizes 55 mm

    I need to convert them into another size-> inches

    the best thing I can do is to create a multi find and replace the conditions:

    find "2.54 mm" change "1 inch".

    find "5mm" change "2 inches.

    etc.

    question 1:

    How to create this multi find and replace in cs4?  Maybe grep?

    question 2:

    can anyone create a simple javascript like dan rodney proper fractions

    will change all the selected items to a custom replacement?

    can be done using an indesign script for easy flow interface?

    need help

    Gil Halevi

    Tavlit

    Well, it's quite different from what you asked initially.

    You're right: blindly all "22mm" does not change "222mm" as well. (Hey! There you go again, it is not "mm" after the number!)

    There are ways around it - use "Find whole words - but, in fact, the script isn't so bad.

    With your specifications change, it now looks like this:

    //DESCRIPTION: Find mm, change to inches
    // By Jongware, 6-Dec-2009
    
    // step 0: verify selection
    if (app.selection.length != 1)
    {
         alert ("Well, I warned you to select something!");
         exit();
    }
    
    // step 1: find mm values
    app.findChangeGrepOptions = null;
    app.findGrepPreferences = null;
    app.findGrepPreferences.findWhat = "\\b\\d[\\.\\d]*\\b";
    
    mmList = app.selection[0].findGrep(true);
    // alert ('found '+mmList.length);
    
    // step 2: convert mm to inches
    var inList = new Array;
    
    for (a=0; a
    

    Be sure to run on a selection only. So simply select the part of the table where you have mm values and run the script.

    Values that I receive on your sample table are a bit different from what you show, but personally, I'm 100% convinced that I had the right to calculation.

    [Edit] No need to yell. Use FindChangeByList, with whole word options. It.

  • Is the old HPAL now analyse multi-hearts and Sparse Matrix Toolkit

    I am trying to find a download for the HPAL used be offered by laboratories OR.  This is supposed to be an addon for LabView now NEITHER and I am looking for the download.

    Appears it in two possible addons that HRT has become; either the Toolbox of advanced treatment, which costs around $1500 or multi-hearts and Toolkit of sparse matrix analysis I think that it's free. No one knows what has become the HPAL?

    Yes, you are right...

    the High Performance analysis library was packed to be called analysis of LabVIEW Multicore and SPARC Matrix:

    http://sine.NI.com/NIPs/CDs/view/p/lang/en/NID/210525

    And it is always free to use.

    I hope this helps.

  • VCAC 6.0.1 issues with setting Active directory on tenants and pointers for install

    Hello

    So I finished the installation of the VCAC 6.0.1 (published on 13-02-14) and all its components in my test harness.  I am able to connect using [email protected] no problem.  I wanted to give my ad 'Domain Admins' group to the default tenant rights.  I ran the test on connectivity to my AD domain successfully and added to the group Admins in the field of infrastructure and tenant administration Articles and updated.  After review of the tenant defaults remained all (I saw problems with AD administrators you do not add save but remove the "alias" solved this problem.)  When I logout of the VCAC and tried to log in using one of my accounts of Member of the domain admin ([email protected]) seems not to authenticate.  I tried to reboot the device identity thinking maybe it was an AD replication or sync problem but no luck.

    I tried to created a second tenant and populated with the same parameters except of course the name of the tenant by default but not having also no luck there either.  Include some screenshots showing the configurations, but it is really strange behavior and don't know if it's just because it is such a release again or I'm doing something wrong... any suggestions on the place where to even try to troubleshoot it would be appreciated.  I even went so far as to restart the 3 servers, thinking it was a synchronization delay or something but still the same issue

    Note aside a few things I learned the hard way on this facility where people run it for the first time

    - Do not install .net 4.5.1 on your server of iaas.  I had to uninstall it and download version 4.5, included in the page install a device vcac https://your-vcac-appliance server: 5480/Installer /.

    -If your tenant administrator accounts save after hitting the update try to remove the name of the alias for your domain as it seemed to solve my problem (and native AD did not work at all for me at least)

    - Found this excellent article of Kendrick Coleman, which is a step by step guide for installation complete... very thanks and well presented.  Also has links to some useful tools like the AD Explorer to help with DN names as well as a PS script to prepare your server, IAAS, which has been a lifeline for http://www.kendrickcoleman.com/index.php/Tech-Blog/how-to-install-vcloud-automation-center-vcac-60-part-1-identity-appliance.html

    Well, what I thought about it.  It turns out that delete and then re-create the identity store for the tenant to vsphere.local (the default when first created), I was finally able to include the correct information to AD, then a final reboot of the environment and I was able to authenticate to AD.  Also for those of you who did not default that there no store identity for the first tenant then please make sure that create you an and save yourself a lot of headaches and frustration :-)

  • Orchestrator and multi-tenant

    I use Orchestrator in a multi-tenancy environment.  What I try to do is:

    Set up a master orchestrator instance where I can centralize workflow execution.

    Implemented the slave instances in environments different tenant I can call with the plugin multiple nodes.

    The problem is that the environments are separate and accessible only via a vpn tunnel.

    How should I configure master orchestrator and the slave to connect via vpn?

    I must:

    1. use a "plugin of VPN connection' if there is one, to establish a connection via vpn?
    2. use the plug-in of HTTP-rest and give the two VCOs, one IP address public and some time to public web interface, if it can be done safely, perhaps to paste the slave vCO in the DMZ?

    3 another way?

    Thanks for the input!

    If you have an always on the VPN connection to the remote/slave instances then just opening the firewall ports to allow the master to connect to the instance of remote/slave.

    Ports are listed on page 38 & 39:

    http://pubs.VMware.com/vSphere-55/topic/com.VMware.ICbase/PDF/vCenter-Orchestrator-552-install-config-Guide.PDF

    Documentation of the plugin of several nodes:

    http://pubs.VMware.com/Orchestrator-plugins/topic/com.VMware.ICbase/PDF/using-multi-node-plugin-10-Guide.PDF

    From what I can tell, you would need the following ports open between the master (source) and remote/slave (destination):

    • TCP - 8230 - the main port to communicate with the server Orchestrator (JNDI port).
    • Trust TCP - 8250 - for SSL (multi-noeuds plugin documentation - "Activate Orchestrator for the remote execution Workflow")
  • Multi-tenant IOS Firewall and security even subinterfaces 9.0

    Hi all

    I'm so used to< 8.3="" and="" am="" having="" great="" difficulty="" getting="" an="" environment="" working="" properly="" so="" i'm="" now="" going="" to="" leverage="" the="" cisco="">

    We set up a network with clients behind a pair of 5510 s.  All of these clients will have their own dedicated sous-interface in their own VLAN.  Out the door, I got inter - allowed security-same interface and all networks communicate with each other.  I certainly don't want that, so I have disabled this command and now each network client is unable to communicate with each other, as expected.

    The problem now lies in networks where a customer have 2 VLANS separated (say a staging and a prod environment) where they need to communicate.  Is it feasible if they are of the same security level and even security allowed inter-interface is disabled?  I just need to create an ACL for the networks to talk?  Is there a better way to do this with the same security allowed active inter-interface?

    8.3 pre, I have same security allowed active inter-interface, but traffic could not speak to the other interface unless I created an exemption NAT and ACLs.  Always create a NAT exemption?

    Hello

    The basic problem that you run with different software levels is the parameter 'nat-control' that exists in 8.2 (or earlier version), but does not exist in version 8.3 (or subsequent version of the Software ASA).

    In the 8.2 and pre software you got with the nat configuration change 'control' of requiring a connection to have a NAT configuration to be able to pass traffic through the ASA. Of course this coupled with the 'security level' gave you more changes to control traffic without resorting to the ACL.

    However, in the new software of 8.3 and later the "nat-control" level no longer exists and that a connection has a NAT configuration that be applied or not ASA still allows the connection (subject other ASA controls allow) so basically you won't need NAT configurations between your local interface. The most common NAT configurations should be between your local interface and the "external" ASA interface.

    If you try to control traffic between interfaces with the global configuration commands you mention, you will eventually be 'juggling' with the 'security level' configurations autour constantly so that the correct rules for traffic is applied.

    This question came up on these forums every now and then, and I almost always offer the same approach which is to set up an ACL on EACH interface of the ASA.

    • Remember to leave the 'same-security-traffic"on the SAA configurations. It is because even if you have interface ACL allowing traffic, if they are for some reason any left with identical "security level"custom ACL be sufficient to allow the traffic. "
    • Configure each interface an ACL
    • Initially to configure the ACL to create a "object-group" that will contain EACH network behind your local interface of firewall (except the "outside" ofcourse)
    • Use this category 'object' at THE start of ACL interface to BLOCK ALL traffic behind this interface to these networks
    • After that allow or block different/Out Internet - linked as usual traffic
    • In the same networks 2 (or more) behind the need of different interfaces to communicate with each other, set up a statement that allows early each ACL. The already existing 'decline' exposed with the 'object' group already will ensure that other traffic between networks are blocked

    A very simple example, you might want to consider the following

    Networks:

    • LAN1: 10.10.10.0/24
    • LAN2: 10.10.20.0/24
    • DMZ1: 192.168.100.0/24
    • DMZ2: 192.168.200.0/24

    permit same-security-traffic inter-interface

    Interface GigabitEthernet0/0

    Description box

    interface GigabitEthernet0/0.10

    VLAN 10

    nameif LAN1

    security-level 100

    IP 10.10.10.1 255.255.255.0

    interface GigabitEthernet0/0.20

    VLAN 20

    nameif LAN2

    security-level 100

    IP 10.10.20.1 255.255.255.0

    interface GigabitEthernet0/0.100

    VLAN 100

    nameif DMZ1

    security-level 100

    IP 192.168.100.1 address 255.255.255.0

    interface GigabitEthernet0/0,200

    VLAN 200

    nameif DMZ2

    security-level 100

    192.168.200.1 IP address 255.255.255.0

    object-group network BLOCK-LOCAL-NETWORKS

    object-network 10.10.10.0 255.255.255.0

    object-network 10.10.20.0 255.255.255.0

    object-network 192.168.10.0 255.255.255.0

    object-network 192.168.20.0 255.255.255.0

    access-list LAN1 - IN note allow HTTP / HTTPS in the DMZ1 Server

    access-list LAN1 - permit tcp 10.10.10.0 255.255.0 host 192.168.100.100 eq www

    access-list LAN1 - permit tcp 10.10.10.0 255.255.0 host 192.168.100.100 eq https

    LAN1-IN access-list note block traffic to another local network

    access-list LAN1 - deny ip any object-group NETWORK-LOCAL-BLOCK

    Note LAN1-IN access list allows any outbound

    access-list IN LAN1 ip 10.10.10.0 allow 255.255.255.0 any

    LAN1-IN group access to the LAN1 interface

    And of course all other ACL would follow the same model in one form or another. You would really have to worry about traffic is allowed between interfaces, but rather the most work would probably add "allowed" in the upper part of each ACL when required for communication inter-interface. But I guess that the amount of these additions would remain also to a manageable level for FW admins.

    Naturally in environments the biggest you would probably get a high-end ASA and virtualize it and separate each customer environment in their own security context where you would avoid this situation together. Naturally the biggest points against this solution usually can be fresh and the fact that virtualize the ASA multiple context mode disables some essential operational capability of the SAA, which the most important is probably the Client VPN connections (VPN L2L is supported in the software in multiple context Mode 9.x)

    Hope this helps

    Don't forget to mark the reply as the answer if it answered your question. And/or useful response rates

    Request more if needed

    -Jouni

  • How to get the same result on different characterset?

    Hello experts,

    I use

    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    PL/SQL Release 11.2.0.3.0 - Production
    "CORE 11.2.0.3.0 Production"
    TNS for 64-bit Windows: Version 11.2.0.3.0 - Production
    NLSRTL Version 11.2.0.3.0 - Production
    
    

    Needing a result even on my example.

    SELECT ASCII('ˆ') -- when characterset is -NLS_CHARACTERSET WE8MSWIN1252
    FROM DUAL;
    --result 136
    
    

    SELECT ASCII('ˆ') -- when characterset is -NLS_CHARACTERSET AL32UTF8
    FROM DUAL;
    --result 52102 but need 136
    
    

    I need same result.

    Thanks for your time...

    EDITED RESULT.

    Ask2Learn

    You test something that you call "encrypted" data, which are not at all encryption.

    For example speaking of letter t.

    The CHR (ASCII('t') + 20) operation is pretty useless. You try to find the character that has the code binary and longer than 20 that the letter 't'. This can work with single-byte as WE8MSWIN1252 character sets, but it does not work with variable width as AL32UTF8 character sets. The letter 't' a code 0 x 74 in WE8MSWIN1252 and AL32UTF8. If you add 20 (decimal), you get 0 x 88. Byte 0 x 88 is a valid code in the WE8MSWIN1252, but is not a valid code in AL32UTF8. Bytes in this range may bytes of continuation in AL32UTF8, i.e. a second, third or the fourth byte of a multi-byte sequence.

    The "circumflex accent" character code 0 x 88 (in WE8MSWIN1252) has the code of two bytes 0xCB 0 x 86 in AL32UTF8.

    So, why not take a look at DBMS_CRYPTO integrated


    Hope this helps


    Hamid

  • problem with multi-cam and camera angles

    Hello

    I used 3 cameras for a project with free run time code,

    I imported the files of each camera, and I have them renamed with a suffix like cam1 and cam2 cam3

    in first pro, I put a different color of the label of each camera to have an own chronology

    and when I create a multi-cam with time code sequence, I have thousands of tracks (his pro as Prime Minister understand that each item I have a different cam)

    I tried a lot of things, but I can't find a way to group each cam on a track :/

    someone has an idea for me please?

    Thank you

    Premiere Pro treats each element as from a separate camera.  No way around that.

    When you photograph of muticam, do not start and stop the cameras.  Leave them running for the complete event.  Floors and ceilings are better than trying to synchronize dozens of clips.

  • When Fire Fox support (again!) for display of multi column (and navagable) Favorites (bookmarks)?

    I always use rev 31. This is the last version that is compatible with the add-in on, "Multicolumn Bookmarks 1.5', I have several brands of books collected over the years and the single column format is frustrating and not helpful."

    Asked to provide a current version, which is compatible with "MultiColumn Bookmarks 1.5' Fire Fox, or provide a favorite navigable multi-column as option display in a near future program revision Fire Fox.»

    Sincerely,

    Pierre Arnold

    Sorry, to complete the thought:

    (1) install Stylish from the Mozilla Add-ons site

    https://addons.Mozilla.org/firefox/addon/stylish/

    (2) then back to the user page of style to get the style (the button should be green instead of blue right here)

    https://userstyles.org/styles/119797/bookmarks-menu-in-multiple-columns

  • My internet connection is lost at home after a few minutes. I re - turn on the wifi disabled, ten and it works again for a few minutes and then repeats. It works fine everywhere else?

    Relatively new MacBook OSX El Cap 11.4

    My internet connection is lost at home after a few minutes. I stop the wifi, then turn it back on and it works again for a few minutes and then repeats. It works fine everywhere else?

    Please see recommended settings of WiFi routers and access Apple points.

    Despite these recommendations, some routers will work better with the latest Mac models if you turn the radio 2.4 GHz mode in settings and only use the 5 GHz. Note, however, that very old devices Apple and some third-party devices can then not connect at all.

    Some third party routers have advanced that you may need to change the settings:

    The encryption algorithm must be AES.

    The group key interval must be 3200.

    I can't give you specific instructions on how to change these settings, because all routers are different. Refer to the documentation for the provider.

  • Satellite-C55-A-1N1-multi touch and download Toshiba living space

    Hello people,

    My laptop is a Toshiba Satellite C55-A-1N1 and the multi-touch feature has stopped working. It's not to recognize all slides or pinches or turning movements.

    In addition, I would like to know how I can download Toshiba living space on this laptop please.

    I really appreciate your time and support in this case, if you please.

    Thank you very much!

    Hello

    Check please settings (Synaptics properties) touchpad and touchpad features. Make sure that all the options you need are enabled.

    Living space of Toshiba
    I assume you want to use the Bulletin Board and real time, right? If I m remembering well, gave a few years ago and he has worked with the old machines and Windows 7. These applications can be downloaded from Toshiba support and download page, but I don't know if they will work with Win8.

Maybe you are looking for

  • Is there a GOOD reason that rename bookmarks can not be made intuitive?

    You know what I mean. Right click on the effing thing and type the name. It's already enough you converted in an alphabetical order scrambled mess when I imported of IE8 today but now try to clean and sort into folders is made a lot more painful than

  • LaserJet M127fn MFP Pro: Printer not connected

    Hi all trying in vain to connect the printer to a wireless router. USB connection to the router; router, Asus DSL N55U; configuration of the router page lists the active printer. That's all. Printer shows on self-esteem / Test as "unrelated", no IP a

  • Detect connected lines

    I'm trying to understand the best way to do something.  It is led in TestStand using Switch Executive. I have a line of 213 column x 4 2-wire Matrix.  4 rows connect up to 4-channel PXI-5105.  I've defined logical names for each column to go to each

  • Windows xp has not updated for two months and will not open internet explore.

    Remember - this is a public forum so never post private information such as numbers of mail or telephone! Ideas: who can I cotact to solve this problem? You have problems with programs Error messages Recent changes to your computer What you have alre

  • 5.1 surround Sound speaker system does not work in Windows 7 Professional 64-bit edition

    My problem is about the same as other users who cannot get their surround sound speaker system to work properly in Windows 7. I have a subwoofer and 5 speakers (2 front, 2 rear, 1 for the centre).  Connection to the RealTek HD Audio embedded is simpl