the rate limit for door to an event in memory buffer request count?

Specifications for a card PCI-6221 or a 6251 tell me a frequency external clock for the counters/timers can be up to 20 MHz. But there is nothing that says that the maximum rate of the door (sample clock) for an event in the buffer demand metering. I find that on the 6221 I put the sample up to 2.6 MHz, but at 2.8 MHz clock, nothing happens. In other words, no error is generated, but the counties in the data buffer do not change either.

Can anyone tell me anything about the limits of this application?

Thank you, Aaron.

One reason, I took it was because my client talked with an engineer NOR, but they got confused between the input clock and the door (which is sometimes called by NOR as "sample clock"). If my client believed that my code did not give him the best possible performance.

He is now convinced that I'm just doing and he found another solution to his problem.

Tags: NI Hardware

Similar Questions

  • The "64K limit for the total size of all the values in a registry key" rule - not more valid?

    http://support.Microsoft.com/kb/256986
    - more information -> Description of the register article, it is said:

    Note There is a 64K limit for the total size of all values of a key.

    I don't see that this rule can be valid any longer?

    In my Windows 7 SP1 x 64, I have at least 15 keys with values that add up to more than 65 535 bytes.
    In fact, I have more than 15 values (strings, binary and multiple channels) which, by themselves, have some sizes larger than 65 535 bytes.

    Here are a few examples.

    Native Instruments Kontakt 5 installation;
    [HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products\B354255567BB3E5479D39FE554E87D08\Features]
    -This key contains 91 string values, where 90 are under 250 bytes, but the last of them. "FE923650A" has a length of 67 401 bytes of data.

    Autodesk 3ds Max Design 2011 installation;
    [HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products\FFECC85A69B39040E99BEA59BF78957B\Features]
    -This key contains 14 values of string, ranging from 1 (the 'P' value) byte to 75 426 bytes (value "max7"), bringing the total size of 116 944 bytes.

    Installation of Windows 7 by default.
    [HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\AppCompatCache]
    -This key contains a binary value of monkey 'AppCompatCache' that has a length of 259 768 bytes of data.

    Another installation of Windows 7 by default;
    [HKLM NT\CurrentVersion\Perflib\CurrentLanguage]
    -This key contains 2 channels multiple values: 'Meter' (87 950 bytes) and 'Help' (418 345 bytes), a total of 506 295 bytes for this key.

    Finally, once again Windows 7 installation by default.
    [HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\StartPage2]
    -This key contains 3 DWORD and 5 binary values with the value "ProgramsCache" being the most important of all with its 795 404 bytes
    either a sum of 807 639 bytes for this key.

    Hello

    Check this box:

    http://social.msdn.Microsoft.com/forums/en-us/windowsgeneraldevelopmentissues/thread/84944bfe-4bf5-47cd-93ac-4d09076fcd40

    This problem can also be published on MSDN Forum.

  • What is the member limit for BSO and asked ASO to 11.1.2.2?

    Hi gurus,

    I need to know what is the maximum member limit requests for BSO and output 11.1.2.2 ASO (which means that the maximum number of members can we have in the outline for BSO/ASO). Also, I need to know what is the maximum limit membership to a Hyperion Planning application?

    We are planning on creating a hyperion, planning an application that could be partitioned with ASO (target). Could you gurus please tell me is it possible? I know that oracle does not support and recommend this right now.

    Thank you

    Hello

    Please see the documentation from the link below:

    Topic:
    Database of global storage limits
    Block storage of database limits

    http://docs.Oracle.com/CD/E17236_01/EPM.1112/esb_dbag.PDF

    ASO: Please see: Page 1048.
    For the BSO: Please see: Page 1050.

    I hope this helps!

    Kind regards
    Priya

  • How to set the date limit for the whole process

    How to configure dynamically.
    For example, the date limit is different in each case and can be defined by a user so changed in the middle.

    Published by: YE may 6, 2009 18:09

    The deadline for the whole process is determined by what you set the variable preset 'deadline '. This interval can be set inside the process as soon as the activity to Begin.

    To set differently for different instances use a time interval variable or a parameter of the company. Here is an example. You have different levels (SLA) different service level agreements in the category of customers. Platinum level customers are 2 days, gold-level clients are 4 customer days silver are six days. In a method, you then have the logic:

    if customer.level = "Platinum" then
        // DEADLINE_HOURS_PLATINUM is an integer Business Parameter set initially to 2 days
        deadline = 'now'.addHours(i : DEADLINE_HOURS_PLATINUM)
    elseif customer.level = "Gold" then
        deadline = 'now'.addHours(i : DEADLINE_HOURS_GOLD)
    elseif customer.level = "Silver" then
        deadline = 'now'.addHours(i : DEADLINE_HOURS_SILVER)
    else
        // no deadline for the process
        deadline = null
    end
    

    If make you a business setting, a business owner could change later ALS a developer need to change the process and by redeploying the it.

    If you want to use an instance time interval variable instead to do this, the logic would be just:

    deadline = 'now' + someTimeIntervalVariable
    

    Hope this helps,
    Dan

  • Current limit for the PXI-4110

    I'm a PXI-4110 with LabWindows programming. I'm trying the current limit. I have an output to 5V with a load resistance of 1 K; This makes the current 5mA. I put the current limit of 2mA to work. When I read the voltage and current is 5V 5mA. Here is my code:

    g_voltageLevel_ch0 = 5.0;

    g_currenLimit_ch0 = 2.0E - 3;

    status = niDCPower_ConfigureOutputFunction (vi_4110_0, channel0Name, NIDCPOWER_VAL_DC_VOLTAGE);
    niDCPower_error_message (vi_4110_0, status, errorMessage);
    status = niDCPower_ConfigureSense (vi_4110_0, channel0Name, NIDCPOWER_VAL_LOCAL);
    niDCPower_error_message (vi_4110_0, status, errorMessage);

    status = niDCPower_ConfigureVoltageLevel (vi_4110_0, channel0Name, g_voltageLevel_ch0);
    niDCPower_error_message (vi_4110_0, status, errorMessage);
    status = niDCPower_ConfigureCurrentLimit (vi_4110_0, channel0Name, NIDCPOWER_VAL_CURRENT_REGULATE, g_currenLimit_ch0);
    niDCPower_error_message (vi_4110_0, status, errorMessage);

    I find that if I put my current limit to channel 0 to 10mA, above the error message disappears. However, I can put the current limit for channels 1 and 2 to 2mA, and I do not have an error message with them. I see nothing in the power supply on a valid range on the current limit. To be clear on what happens if I do this:

    status = niDCPower_ConfigureCurrentLimit (vi_4110_0, channel0Name, NIDCPOWER_VAL_CURRENT_REGULATE, 8-3);

    I get the error "Invalid value for the parameter or property."

    However, if I do this:

    status = niDCPower_ConfigureCurrentLimit (vi_4110_0, channel0Name, NIDCPOWER_VAL_CURRENT_REGULATE, 10th-3);

    I don't get an error.

    Channels 1 and 2 do not have this limit. I went down to 1mA on these channels and no problems.

  • failure of the preliminary checks for Oracle Real Application Cluster 12 C.

    Hi all. Please, help to investigate and resolve. Thank you.

    [grid@orac1 grid] $./runcluvfy.sh stage pre - crsinst - orac1, orac2 n - correction-verbose

    Conducting due diligence to install cluster services

    Audit accessibility of node...

    Check: Accessibility of node of the node 'orac1 '.

    Accessible destination node?

    ------------------------------------  ------------------------

    orac1                                 yes

    orac2                                 yes

    Result: Check accessibility node from node 'orac1 '.

    Verify the equivalence of the user...

    Check: Equivalence for the user "grid."

    Status of node name

    ------------------------------------  ------------------------

    orac2 spent

    orac1 spent

    Result: Use CONTROL passed to user equivalence "grid."

    Verify node connectivity...

    Checking the configuration of the hosts file...

    Status of node name

    ------------------------------------  ------------------------

    orac1 spent

    orac2 spent

    The hosts config file verification successful

    Interface of the node information to "orac1".

    Name address IP subnet gateway Gateway bat HW address MTU

    ------ --------------- --------------- --------------- --------------- ----------------- ------

    eth0 10.154.137.101 10.154.137.0 0.0.0.0 10.0.4.2 08:00:27:28:D1:1F 1500

    eth1 10.154.138.101 10.154.138.0 0.0.0.0 10.0.4.2 08:00:27:51:E8:B9 1500

    eth2 10.0.4.15 10.0.4.0 0.0.0.0 10.0.4.2 08:00:27:5 B: D7:29 1500

    Interface of the node information to "orac2".

    Name address IP subnet gateway Gateway bat HW address MTU

    ------ --------------- --------------- --------------- --------------- ----------------- ------

    eth0 10.154.137.102 10.154.137.0 0.0.0.0 10.0.4.2 08:00:27:7F:C8:70 1500

    eth1 10.154.138.102 10.154.138.0 0.0.0.0 10.0.4.2 08:00:27:9 D: 27:D8 1500

    eth2 10.0.4.15 10.0.4.0 0.0.0.0 10.0.4.2 08:00:27:6E:92:43 1500

    Check: Subnet node connectivity "10.154.137.0."

    Source Destination connected?

    ------------------------------  ------------------------------  ----------------

    orac1 [10.154.137.101] orac2 [10.154.137.102] Yes

    Result: Connectivity node passed to subnet "10.154.137.0" with one or more nodes orac1, orac2

    Check: The subnet '10.154.137.0' TCP connectivity

    Source Destination connected?

    ------------------------------  ------------------------------  ----------------

    orac1:10.154.137.101 orac2:10.154.137.102 failed

    ERROR:

    PRVF-7617: node connectivity between "orac1: 10.154.137.101" and "orac2: 10.154.137.102" failed

    Result: Check failed for the '10.154.137.0' subnet TCP connectivity

    Check: Subnet node connectivity "10.154.138.0."

    Source Destination connected?

    ------------------------------  ------------------------------  ----------------

    orac1 [10.154.138.101] orac2 [10.154.138.102] Yes

    Result: Connectivity node passed to subnet "10.154.138.0" with one or more nodes orac1, orac2

    Check: The subnet '10.154.138.0' TCP connectivity

    Source Destination connected?

    ------------------------------  ------------------------------  ----------------

    orac1:10.154.138.101 orac2:10.154.138.102 failed

    ERROR:

    PRVF-7617: node connectivity between "orac1: 10.154.138.101" and "orac2: 10.154.138.102" failed

    Result: Check failed for the '10.154.138.0' subnet TCP connectivity

    Check: Subnet node connectivity "10.0.4.0."

    Source Destination connected?

    ------------------------------  ------------------------------  ----------------

    orac1 [10.0.4.15] orac2 [10.0.4.15] Yes

    Result: Connectivity node passed to subnet "10.0.4.0" with one or more nodes orac1, orac2

    Check: The subnet '10.0.4.0' TCP connectivity

    Source Destination connected?

    ------------------------------  ------------------------------  ----------------

    orac1:10.0.4.15 orac2:10.0.4.15 failed

    ERROR:

    PRVF-7617: node connectivity between "orac1: 10.0.4.15" and "orac2: 10.0.4.15" failed

    Result: Check failed for the '10.0.4.0' subnet TCP connectivity

    Interfaces available on subnet "10.0.4.0" who are likely candidates for VIP are:

    orac1 eth2:10.0.4.15

    orac2 eth2:10.0.4.15

    CAUTION:

    Could not find an appropriate interface for the private interconnection range

    Checking consistency of subnet mask...

    Verification of consistency for the subnet mask for subnet "10.154.137.0."

    Verification of consistency for the subnet mask for subnet "10.154.138.0."

    Verification of consistency for the subnet mask for subnet "10.0.4.0."

    Verification of consistency for the last subnet mask.

    ERROR:

    GLWB-1172: the IP "10.0.4.15" is on more than one interface 'eth2, eth2' nodes 'orac2, orac1 '.

    Result: Check the node has no connectivity

    Checking for multicast communication...

    Verification of the subnet "10.154.137.0" for multicast with "224.0.0.251. multicast group communication

    GLWB-11138: Interface '10.154.137.101' on 'orac1' node is not able to communicate with interface '10.154.137.101' on 'orac1' node to the multicast group "224.0.0.251.

    GLWB-11138: Interface '10.154.137.101' on 'orac1' node is not able to communicate with interface '10.154.137.102' on 'orac2' node to the multicast group "224.0.0.251.

    GLWB-11138: Interface '10.154.137.102' on 'orac2' node is not able to communicate with interface '10.154.137.101' on 'orac1' node to the multicast group "224.0.0.251.

    GLWB-11138: Interface '10.154.137.102' on 'orac2' node is not able to communicate with interface '10.154.137.102' on 'orac2' node to the multicast group "224.0.0.251.

    Verification of the subnet "10.154.138.0" for multicast with "224.0.0.251. multicast group communication

    GLWB-11138: Interface '10.154.138.101' on 'orac1' node is not able to communicate with interface '10.154.138.101' on 'orac1' node to the multicast group "224.0.0.251.

    GLWB-11138: Interface '10.154.138.101' on 'orac1' node is not able to communicate with interface '10.154.138.102' on 'orac2' node to the multicast group "224.0.0.251.

    GLWB-11138: Interface '10.154.138.102' on 'orac2' node is not able to communicate with interface '10.154.138.101' on 'orac1' node to the multicast group "224.0.0.251.

    GLWB-11138: Interface '10.154.138.102' on 'orac2' node is not able to communicate with interface '10.154.138.102' on 'orac2' node to the multicast group "224.0.0.251.

    Verification of the subnet "10.0.4.0" for multicast with "224.0.0.251. multicast group communication

    GLWB-11138: Interface '10.0.4.15' on 'orac1' node is not able to communicate with interface '10.0.4.15' on 'orac1' node to the multicast group "224.0.0.251.

    GLWB-11138: Interface '10.0.4.15' on 'orac1' node is not able to communicate with interface '10.0.4.15' on 'orac2' node to the multicast group "224.0.0.251.

    GLWB-11138: Interface '10.0.4.15' on 'orac2' node is not able to communicate with interface '10.0.4.15' on 'orac1' node to the multicast group "224.0.0.251.

    GLWB-11138: Interface '10.0.4.15' on 'orac2' node is not able to communicate with interface '10.0.4.15' on 'orac2' node to the multicast group "224.0.0.251.

    Checking configuration ASMLib.

    Status of node name

    ------------------------------------  ------------------------

    orac1 spent

    orac2 spent

    Result: Check the configuration of ASMLib passed.

    Check: Total memory

    Requested State available node name

    ------------  ------------------------  ------------------------  ----------

    orac2 GB 5,714 (5991520,0 KB) increased from 4 GB (4194304,0 KB)

    orac1 GB 5,714 (5991520,0 KB) increased from 4 GB (4194304,0 KB)

    Result: The total past memory check

    Check: Available memory

    Requested State available node name

    ------------  ------------------------  ------------------------  ----------

    transmitted orac2 Go 5,2293 (5483324,0 KB) 50 MB (51200,0 KB)

    transmitted orac1 Go 5,1456 (5395600,0 KB) 50 MB (51200,0 KB)

    Result: Available past memory check

    Check: Swap space

    Requested State available node name

    ------------  ------------------------  ------------------------  ----------

    orac2 GB 6,125 (6422520,0 KB) from GB 5,714 (5991520,0 KB)

    orac1 GB 6,125 (6422520,0 KB) from GB 5,714 (5991520,0 KB)

    Result: Check the Swap space past

    Check: Disk space for "orac2: / usr, orac2: / var, orac2: / etc, orac2: / sbin, orac2: / tmp '.

    Path node name Mount point available requested State

    ----------------  ------------  ------------  ------------  ------------  ------------

    orac2/usr / 37,8398 GB GB 1,0635 spent

    orac2/var / 37,8398 GB GB 1,0635 spent

    orac2/etc / 37,8398 GB GB 1,0635 spent

    orac2/sbin / 37,8398 GB GB 1,0635 spent

    orac2/tmp / 37,8398 GB GB 1,0635 spent

    Result: Free past to check the disk space ' orac2: / usr, orac2: / var, orac2: / etc, orac2: / sbin, orac2: / tmp '.

    Check: Disk space for "orac1: / usr, orac1: / var, orac1: / etc, orac1: / sbin, orac1: / tmp '.

    Path node name Mount point available requested State

    ----------------  ------------  ------------  ------------  ------------  ------------

    orac1/usr / 32,4382 GB GB 1,0635 spent

    orac1/var / 32,4382 GB GB 1,0635 spent

    orac1/etc / 32,4382 GB GB 1,0635 spent

    orac1/sbin / 32,4382 GB GB 1,0635 spent

    orac1/tmp / 32,4382 GB GB 1,0635 spent

    Result: Free past to check the disk space ' orac1: / usr, orac1: / var, orac1: / etc, orac1: / sbin, orac1: / tmp '.

    Check: Existence of user for "grid".

    Name of State comment node

    ------------  ------------------------  ------------------------

    orac2 past exists (1100)

    orac1 past exists (1100)

    Check for multiple users with the value of the UID 1100

    Result: Check for multiple users with the value of the UID 1100 spent

    Result: Use existence CONTROL passed to 'grid '.

    Check: Existence of group 'oinstall '.

    Name of State comment node

    ------------  ------------------------  ------------------------

    orac2 passed exists

    orac1 passed exists

    Result: Existence of group check passed for "oinstall".

    Check: Existence of group for "dba".

    Name of State comment node

    ------------  ------------------------  ------------------------

    orac2 passed exists

    orac1 passed exists

    Result: Existence of group check passed for "dba".

    Check: the members of the user 'grid' group 'oinstall' [primary]

    Name of node user is group is user group primary status

    ----------------  ------------  ------------  ------------  ------------  ------------

    orac2 Yes Yes Yes Yes past

    orac1 Yes Yes Yes Yes past

    Result: Membership search for "grid" user in the group 'oinstall' [as Primary] spent

    Check: Membership of the user "grid" in a group 'dba '.

    Name of node user is group are users in a group situation

    ----------------  ------------  ------------  ------------  ----------------

    orac2 Yes Yes Yes past

    orac1 Yes Yes Yes past

    Result: Check for user "grid" in group membership 'dba' spent

    Tick: Run level

    Name of the node run status level required

    ------------  ------------------------  ------------------------  ----------

    orac2         5                         3,5                       passed

    orac1         5                         3,5                       passed

    Result: Run control the level of the past

    Check: Hard limits for "file descriptors open maximum".

    Node name Type requested State available

    ----------------  ------------  ------------  ------------  ----------------

    4096, 65536 failed hard orac2

    4096, 65536 failed hard orac1

    Result: Hard limits check failed for 'file descriptors open maximum.

    Check: Limits Soft for "file descriptors open maximum".

    Node name Type requested State available

    ----------------  ------------  ------------  ------------  ----------------

    1024 1024 soft orac2 spent

    sweet orac1 4096 1024 spent

    Result: Soft limits check passed for "file descriptors open maximum".

    Check: Hard limits for "maximum user processes.

    Node name Type requested State available

    ----------------  ------------  ------------  ------------  ----------------

    46654 16384 hard orac2 spent

    46654 16384 hard orac1 spent

    Result: Verification of limits hard to last for "maximum user process.

    Check: Limits Soft for "maximum user process.

    Node name Type requested State available

    ----------------  ------------  ------------  ------------  ----------------

    orac2 1024-2047 soft failed

    orac1 1024-2047 soft failed

    Result: Limits Soft check failed for 'maximum process of the user.

    Control: System Architecture

    Requested State available node name

    ------------  ------------------------  ------------------------  ----------

    orac2 x86_64 x86_64 spent

    orac1 x86_64 x86_64 spent

    Result: Verification of the system architecture past

    Control: Kernel Version

    Requested State available node name

    ------------  ------------------------  ------------------------  ----------

    orac2-2.6.32 - 279.el6.x86_64 2.6.32 spent

    orac1-2.6.32 - 279.el6.x86_64 2.6.32 spent

    Result: Last kernel version control

    Check: Parameter of kernel for 'semmsl.

    Current name configured node comment of the requested State

    ----------------  ------------  ------------  ------------  ------------  ------------

    orac1 250 250 250 spent

    orac2 250 250 250 spent

    Result: Check of kernel parameter passed to "semmsl.

    Check: Parameter of kernel for 'semmns.

    Current name configured node comment of the requested State

    ----------------  ------------  ------------  ------------  ------------  ------------

    32000 32000 32000 orac1 spent

    32000 32000 32000 orac2 spent

    Result: Check kernel parameter passed to "semmns.

    Check: Parameter of kernel for 'semopm.

    Current name configured node comment of the requested State

    ----------------  ------------  ------------  ------------  ------------  ------------

    orac1 100 100 100 spent

    orac2 100 100 100 spent

    Result: Check kernel parameter passed to "semopm.

    Check: Parameter of kernel for 'semmni.

    Current name configured node comment of the requested State

    ----------------  ------------  ------------  ------------  ------------  ------------

    orac1 128 128 128 spent

    orac2 128 128 128 spent

    Result: Check of kernel parameter passed to "semmni.

    Check: "Package" kernel parameter

    Current name configured node comment of the requested State

    ----------------  ------------  ------------  ------------  ------------  ------------

    4398046511104 4398046511104 3067658240 orac1 spent

    4398046511104 4398046511104 3067658240 orac2 spent

    Result: Check of kernel parameter passed to 'package '.

    Check: Parameter of kernel for "shmmni(5)."

    Current name configured node comment of the requested State

    ----------------  ------------  ------------  ------------  ------------  ------------

    4096-4096-4096 orac1 spent

    4096-4096-4096 orac2 spent

    Result: Check of kernel parameter passed to 'shmmni(5) '.

    Check: "Shmall" kernel parameter

    Current name configured node comment of the requested State

    ----------------  ------------  ------------  ------------  ------------  ------------

    4294967296 4294967296 599152 orac1 spent

    4294967296 4294967296 599152 orac2 spent

    Result: Check kernel parameter passed to "shmall.

    Check: Parameter of kernel "file-max.

    Current name configured node comment of the requested State

    ----------------  ------------  ------------  ------------  ------------  ------------

    6815744 6815744 6815744 orac1 spent

    6815744 6815744 6815744 orac2 spent

    Result: Check of kernel parameter passed to 'file-max.

    Check: "Ip_local_port_range" kernel parameter

    Current name configured node comment of the requested State

    ----------------  ------------  ------------  ------------  ------------  ------------

    orac1 between 9000 & 65500 between 9000 & 65500 between 9000 & 65535 passed

    orac2 between 9000 & 65500 between 9000 & 65500 between 9000 & 65535 passed

    Result: Check of kernel parameter passed to «ip_local_port_range»

    Check: Parameter of kernel for "rmem_default."

    Current name configured node comment of the requested State

    ----------------  ------------  ------------  ------------  ------------  ------------

    262144 262144 262144 orac1 spent

    262144 262144 262144 orac2 spent

    Result: Check of kernel parameter passed to 'rmem_default '.

    Check: "Rmem_max" kernel parameter

    Current name configured node comment of the requested State

    ----------------  ------------  ------------  ------------  ------------  ------------

    4194304 4194304 4194304 orac1 spent

    4194304 4194304 4194304 orac2 spent

    Result: Check of kernel parameter passed to «rmem_max»

    Check: Parameter of kernel for "wmem_default."

    Current name configured node comment of the requested State

    ----------------  ------------  ------------  ------------  ------------  ------------

    262144 262144 262144 orac1 spent

    262144 262144 262144 orac2 spent

    Result: Check of kernel parameter passed to 'wmem_default '.

    Check: "Wmem_max" kernel parameter

    Current name configured node comment of the requested State

    ----------------  ------------  ------------  ------------  ------------  ------------

    1048576 1048576 1048576 orac1 spent

    1048576 1048576 1048576 orac2 spent

    Result: Check kernel parameter passed to "wmem_max.

    Check: Parameter of kernel for "aio-max-nr.

    Current name configured node comment of the requested State

    ----------------  ------------  ------------  ------------  ------------  ------------

    1048576 1048576 1048576 orac1 spent

    1048576 1048576 1048576 orac2 spent

    Result: Check of kernel parameter passed to "aio-max-nr.

    Check: Existence of package for "binutils".

    Requested State available node name

    ------------  ------------------------  ------------------------  ----------

    binutils - 2.20.51.0.2 - 5.34.el6 orac2 binutils - 2.20.51.0.2 spent

    binutils - 2.20.51.0.2 - 5.34.el6 orac1 binutils - 2.20.51.0.2 spent

    Result: Package of checking for "binutils".

    Check: Existence of package for "compat-libcap1.

    Requested State available node name

    ------------  ------------------------  ------------------------  ----------

    orac2 compat-libcap1 - 1.10 - 1 compat-libcap1 - 1.10 spent

    orac1 compat-libcap1 - 1.10 - 1 compat-libcap1 - 1.10 spent

    Result: Package of checking for "compat-libcap1.

    Control: Existence of package for "compat-libstdc ++-33 (x86_64).

    Requested State available node name

    ------------  ------------------------  ------------------------  ----------

    orac2 compat-libstdc ++ - 33 (x86_64) - 3.2.3 - 69.el6 compat-libstdc ++ - 33 (x86_64) - 3.2.3 spent

    orac1 compat-libstdc ++ - 33 (x86_64) - 3.2.3 - 69.el6 compat-libstdc ++ - 33 (x86_64) - 3.2.3 spent

    Result: Package of checking for "compat-libstdc ++-33 (x86_64).

    Control: Existence of package for 'libgcc (x86_64).

    Requested State available node name

    ------------  ------------------------  ------------------------  ----------

    orac2 libgcc (x86_64) - 4.4.7 - 11.el6 libgcc (x86_64) - 4.4.4 spent

    orac1 libgcc (x86_64) - 4.4.7 - 11.el6 libgcc (x86_64) - 4.4.4 spent

    Result: Package of checking for 'libgcc (x86_64).

    Control: Existence of package for 'libstdc ++ (x86_64).

    Requested State available node name

    ------------  ------------------------  ------------------------  ----------

    orac2 libstdc ++ (x86_64) - 4.4.7 - 11.el6 libstdc ++ (x86_64) - 4.4.4 spent

    orac1 libstdc ++ (x86_64) - 4.4.7 - 11.el6 libstdc ++ (x86_64) - 4.4.4 spent

    Result: Package of checking for 'libstdc ++ (x86_64).

    Control: Existence of package for 'libstdc ++ - devel (x86_64).

    Requested State available node name

    ------------  ------------------------  ------------------------  ----------

    orac2 libstdc ++ - devel (x86_64) - 4.4.7 - 11.el6 libstdc ++ - devel (x86_64) - 4.4.4 spent

    orac1 libstdc ++ - devel (x86_64) - 4.4.7 - 11.el6 libstdc ++ - devel (x86_64) - 4.4.4 spent

    Result: Package of checking for 'libstdc ++ - devel (x86_64).

    Check: Existence of package for "sysstat".

    Requested State available node name

    ------------  ------------------------  ------------------------  ----------

    sysstat - 9.0.4 - sysstat - 9.0.4 spent 20.el6 orac2

    sysstat - 9.0.4 - sysstat - 9.0.4 spent 20.el6 orac1

    Result: Package of checking for "sysstat".

    Check: Existence of package for 'gcc '.

    Requested State available node name

    ------------  ------------------------  ------------------------  ----------

    4.4.7 - gcc - 11.el6 orac2 gcc - 4.4.4 spent

    4.4.7 - gcc - 11.el6 orac1 gcc - 4.4.4 spent

    Result: Package of checking for "gcc".

    Check: Package of existence 'gcc - c++.

    Requested State available node name

    ------------  ------------------------  ------------------------  ----------

    orac2 gcc - c++ - 4.4.7 - 11.el6 gcc - c++ - 4.4.4 spent

    orac1 gcc - c++ - 4.4.7 - 11.el6 gcc - c++ - 4.4.4 spent

    Result: Package of checking for "gcc - c++.

    Check: Existence of package for 'ksh '.

    Requested State available node name

    ------------  ------------------------  ------------------------  ----------

    ksh-20120801 - 21.el6.1 orac2 spent ksh...

    ksh-20120801 - 21.el6.1 orac1 spent ksh...

    Result: Package of checking for "ksh".

    Check: Existence of package to 'make it '.

    Requested State available node name

    ------------  ------------------------  ------------------------  ----------

    make orac2 make - 3.81 - 20.el6 - 3.81 spent

    make orac1 make - 3.81 - 20.el6 - 3.81 spent

    Result: Package of verification of existence moved to 'make it '.

    Control: Existence of package for 'glibc (x86_64).

    Requested State available node name

    ------------  ------------------------  ------------------------  ----------

    orac2 glibc (x86_64)-2, 12 - 1.149.el6 glibc (x86_64)-2,12 spent

    orac1 glibc (x86_64)-2, 12 - 1.149.el6 glibc (x86_64)-2,12 spent

    Result: Package of checking for "glibc (x86_64).

    Control: Existence of package for 'glibc-devel (x86_64).

    Requested State available node name

    ------------  ------------------------  ------------------------  ----------

    orac2 glibc-devel (x86_64)-2, 12 - 1.149.el6 glibc-devel (x86_64)-2,12 spent

    orac1 glibc-devel (x86_64)-2, 12 - 1.149.el6 glibc-devel (x86_64)-2,12 spent

    Result: Package of checking for "glibc-devel (x86_64).

    Control: Existence of package for "libaio (x86_64).

    Requested State available node name

    ------------  ------------------------  ------------------------  ----------

    orac2 (x86_64) - 0.3.107 - 10.el6 libaio libaio (x86_64) - 0.3.107 spent

    orac1 (x86_64) - 0.3.107 - 10.el6 libaio libaio (x86_64) - 0.3.107 spent

    Result: Package of checking for "libaio (x86_64).

    Control: Existence of package for "libaio-devel (x86_64).

    Requested State available node name

    ------------  ------------------------  ------------------------  ----------

    orac2 libaio-devel (x86_64) - 0.3.107 - 10.el6 libaio-devel (x86_64) - 0.3.107 spent

    orac1 libaio-devel (x86_64) - 0.3.107 - 10.el6 libaio-devel (x86_64) - 0.3.107 spent

    Result: Package of checking for "libaio-devel (x86_64).

    Check: Existence of package for 'nfs-utils '.

    Requested State available node name

    ------------  ------------------------  ------------------------  ----------

    orac2 nfs-utils - 1.2.3 - 26.el6 nfs-utils - 1.2.3 - 15 past

    orac1 nfs-utils - 1.2.3 - 26.el6 nfs-utils - 1.2.3 - 15 past

    Result: Package of checking for 'nfs-utils '.

    Check the availability of the "6200,6100" ports required for the component 'Oracle Notification Service (ONS)'

    Name of the node Port number protocol status available

    ----------------  ------------  ------------  ------------  ----------------

    orac2 6200 TCP successful Yes

    orac1 6200 TCP successful Yes

    orac2 6100 TCP successful Yes

    orac1 6100 TCP successful Yes

    Result: Availability of Port Control passed to ports '6200,6100 '.

    Check for multiple users with the value of the UID 0

    Result: Check for multiple users with the value of the UID 0 past

    Check: The current group ID

    Result: Control of current past group ID

    Check the consistency of the main group of the root user from

    Status of node name

    ------------------------------------  ------------------------

    orac2 spent

    orac1 spent

    Check the consistency of the primary group of the user root past

    Starting synchronization check by using the Network Time Protocol (NTP)...

    Of NTP Configuration file check has started...

    The NTP configuration file "/ etc/ntp.conf" is available on all nodes

    Of NTP Configuration file check passed

    Checking delay of the devil...

    Check: Time for 'ntpd '.

    Node name race?

    ------------------------------------  ------------------------

    orac2                                 yes

    orac1                                 yes

    Result: Check time-out for 'ntpd '.

    Check for NTP daemon or service life spent on all nodes

    Check if NTP daemon or service using the 123 UDP port on all nodes

    Search the NTP daemon or service uses the port UDP 123

    Name of the node Port open?

    ------------------------------------  ------------------------

    orac2                                 yes

    orac1                                 yes

    Common NTP Time Server checks began...

    Time server NTP "193.27.209.1" is common to all nodes on which runs the NTP daemon

    Time server NTP "194.29.130.252" is common to all nodes on which runs the NTP daemon

    Registration of time server common NTP spent

    The clock offset record time server NTP began...

    Audit on the nodes '[orac2, orac1] "...

    Check: The Offset of the time clock to the time server NTP

    Time server: 193.27.209.1

    Time limit offset: 1000,0 ms

    Name of node time shift status

    ------------  ------------------------  ------------------------

    orac2 - 355.25 spent

    orac1 - 124.19 spent

    Time server "193.27.209.1" has time shifts that are within acceptable limits for the nodes "[orac2, orac1].

    Time server: 194.29.130.252

    Time limit offset: 1000,0 ms

    Name of node time shift status

    ------------  ------------------------  ------------------------

    orac2 - 358.87 spent

    orac1 - 109.63 spent

    Time server "194.29.130.252" has time shifts that are within acceptable limits for the nodes "[orac2, orac1].

    The clock offset check past

    Result: Control of synchronization using Network Time Protocol (NTP) spent

    Base file name consistency check model...

    Check the consistency of spent Core file name pattern.

    Check to make sure that the user "grid" is not in the group "root".

    Name of State comment node

    ------------  ------------------------  ------------------------

    There is no such thing as orac2 spent

    There is no such thing as orac1 spent

    Result: User "grid" is not part of the "root" group Check the past

    Audit default user file creation mask

    Name of node available comment required

    ------------  ------------------------  ------------------------  ----------

    0022-0022 orac2 spent

    0022-0022 orac1 spent

    Result: Mask by default user file creation passed Verification

    Checking the integrity of the file "/ /etc/resolv.conf ' overall of nodes

    Check the file "/ /etc/resolv.conf" to ensure that the only area and search for entries is defined

    CAUTION:

    PRVF-5640: both search and domain entries are present in the file ' / /etc/resolv.conf ' on the following nodes: orac1, orac2

    Checking if entry field in the file ' / /etc/resolv.conf ' is constant in knots...

    Check the file "/ /etc/resolv.conf ' to ensure that single domain entry is defined

    There is no more than a 'domain' entry in any ' / /etc/resolv.conf ' file

    All nodes have the same 'domain' entry defined in the file "/ /etc/resolv.conf.

    If control search entry in the file "/ /etc/resolv.conf ' is constant in knots...

    Check the file "/ /etc/resolv.conf ' to ensure that research that one entry is defined

    Several topics 'research' does not exist in any ' / /etc/resolv.conf ' file

    All nodes have the same order of 'search' defined in the file "/ /etc/resolv.conf.

    Checking the time of DNS response for an unreachable node

    Status of node name

    ------------------------------------  ------------------------

    orac1 spent

    orac2 spent

    The time of DNS response for an unreachable node is consistent with the acceptable limit on all nodes

    Check the integrity of the file "/ /etc/resolv.conf ' past

    Check: consistency of zone

    Result: the zone past consistency check

    Verifying the integrity of the name service switch configuration file ' / /etc/nsswitch.conf '...

    Check if "hosts" entry in the file "/ /etc/nsswitch.conf" is consistent in all nodes...

    Check the file "/ /etc/nsswitch.conf" to ensure that the single entry "hosts" is set

    More of an entry "hosts" does not none "/ /etc/nsswitch.conf ' file

    All nodes have even entered 'hosts' defined in the file "/ /etc/nsswitch.conf.

    Check the integrity of the name service switch configuration file ' / /etc/nsswitch.conf ' past

    Control the demon "avahi-daemon" is not configured and running

    Check: Daemon "avahi-daemon' not configured

    Name of the configured node status

    ------------  ------------------------  ------------------------

    orac2 Yes failed

    orac1 Yes failed

    Demon not configured has no process "avahi-daemon."

    Check: Daemon "avahi-daemon" does not

    Node name race?                  Status

    ------------  ------------------------  ------------------------

    orac2 Yes failed

    orac1 Yes failed

    Demon of the control does not have to process "avahi-daemon" works not

    From check for/dev/SHM mounted as a temporary file system...

    Check for/dev/shm mounted as a temporary last file system

    ******************************************************************************************

    Here is a list of pre-requisites fixable chose to fix at this session

    ******************************************************************************************

    --------------                ---------------     ----------------

    Check has failed.                 Failed on nodes of reboot needed?

    --------------                ---------------     ----------------

    Limit: maximum orac2 opened, orac1 not

    file descriptors

    The soft limit: maximum user orac2, orac1 not

    process

    Demon 'avahi-daemon' not orac2, orac1 not

    configured and running

    Run "/ tmp/CVU_12.1.0.1.0_grid/runfixup.sh" as root user on the nodes 'orac1, orac2' to perform correcting operations manually

    Press the ENTER key to continue after execution of ' / tmp/CVU_12.1.0.1.0_grid/runfixup.sh ' has finished on the nodes 'orac1, orac2 '.

    FIX: Strict limit: file descriptors open maximum

    Status of node name

    ------------------------------------  ------------------------

    orac2 failed

    orac1 failed

    ERROR:

    GLWB-9023: manual fixed command "/ tmp/CVU_12.1.0.1.0_grid/runfixup.sh" has been issued by the superuser on the node 'orac2 '.

    GLWB-9023: manual fixed command "/ tmp/CVU_12.1.0.1.0_grid/runfixup.sh" has been issued by the superuser on the node 'orac1 '.

    Result: "strict limit: file descriptors open maximum" could be fixed on nodes 'orac2, orac1 '.

    FIX: Soft limit: maximum user process

    Status of node name

    ------------------------------------  ------------------------

    orac2 failed

    orac1 failed

    ERROR:

    GLWB-9023: manual fixed command "/ tmp/CVU_12.1.0.1.0_grid/runfixup.sh" has been issued by the superuser on the node 'orac2 '.

    GLWB-9023: manual fixed command "/ tmp/CVU_12.1.0.1.0_grid/runfixup.sh" has been issued by the superuser on the node 'orac1 '.

    Result: "soft limit: maximum user process" could be fixed on nodes 'orac2, orac1 '.

    FIX: Daemon "avahi-daemon' not configured and running

    Status of node name

    ------------------------------------  ------------------------

    orac2 failed

    orac1 failed

    ERROR:

    GLWB-9023: manual fixed command "/ tmp/CVU_12.1.0.1.0_grid/runfixup.sh" has been issued by the superuser on the node 'orac2 '.

    GLWB-9023: manual fixed command "/ tmp/CVU_12.1.0.1.0_grid/runfixup.sh" has been issued by the superuser on the node 'orac1 '.

    Result: "Demon"avahi-daemon' not configured and running"could not set on the nodes 'orac2, orac1 '.

    Difficult operations for some prerequisites fixable failed nodes 'orac2, orac1 '.

    Check prior to the installation of cluster service failed on all nodes.

    SOLVED!

    The root cause was in iptables service works.

    Just forgot to arrest him and take off chkconfig!

    Issue can be closed.

  • Character limit for ESX server name

    Hey everybody-

    Is could someone please tell me what the character limit for the server host of naming for ESX 3.5 Update 4 host computers?     I'm trying to figure whether to apply the limits of Unix (we have a new company naming convention)

    Thanks in advance!

    Steve

    see this KB article

    http://KB.VMware.com/kb/1000064

  • I have installed the latest updates for my Compaq desktop computer and the DVD/CD drive bay door will not work.

    I have installed the latest updates for my Compaq desktop computer and the DVD/CD drive bay door will not work. I can get the led light will stop flashing when I open the door all the way, the machine detects the drive but do not read or close on its own, how can I get this disc surgery? Downloading updates, I installed a software disc, when I ejected the disc, the drive comes of is stopped. The computer still sees the drive, but will not read or even close on its own. I also had been using my computer in mode mute until I tried to increase the volume and now the computer tells me no playback device installed. Device Manager acknowledges the Harmon/Kardon soundsticks connected to it, but nothing does, how it works? The Control Panel also sees the soundsticks, but still when I try to move the volume the computer says there is no playback device installed.

    Hello

    1. do you get any error code or error message?

    2. what day you installed recently?

    It seems to be a problem with the hardware. I suggest you try to uninstall and reinstall the CD/DVD driver and check if it helps.

    Follow the steps to uninstall and re-install the drivers.

    a. click on start toreduce this includes this im and then click Control Panel.

    b. click system and Maintenance, click Systemand then click on Device Manager.
    Note If Control Panel is in Classic view, double-click System, and then click Device Manager.

    Reduce this includes this imageIf you are prompted for an administrator password or a confirmation, type the password, or click allow.

    c. in the Manager device, expand CD-ROM/DVD-ROM drives, right click on CD and DVD devices and then click Uninstall.

    d. When you are prompted to confirm that you want to remove the device, click OK.

    e. restart the computer.

    If the methods mentioned above did not help, then it would be best to contact the manufacturer of the computer/CD/DVD player.

    Hope the information is useful.

  • Whenever I connect to internet I get this message within seconds, Internet Explorer has stopped working the check online for a solution of the problem event name: the BEX Application name: IEXPLORE. EXE

    ExploInternet Internet exporer has stopped working

     

    Windows can check online for a solutiom to the problem

     

    -> OnlinCheck check online for a solution and close the program

     

    -> Close the don't

     

    PROBLEM ISEVIDENT

    Signature of the problem:

    Problem event name: BEX

    Application name: IEXPLORE. EXE

    Application version: 11.0.9600.18231

    Application timestamp: 56b8edd6

    Fault Module name: StackHash_d7b8

    Fault Module Version: 0.0.0.0

    Fault Module Timestamp: 00000000

    Exception offset: 1002ab36

    Exception code: c0000417

    Exception data: 00000000

    OS version: 6.1.7601.2.1.0.768.3

    Locale ID: 3081

    Additional information 1: d7b8

    More information 2: d7b83704f6db94e0c4619825a3362866

    3 more information: 6b 15

    Additional information 4: 6b153378e67b448e43ca3c57dc8920c9

    Then, I lose the page and have courses all over again.

    Can someone please help. It started only happening more than a week.

    Hello

    Thank you for your response. Check this link and follow the post SpiritX for troubleshooting steps.

    Please let us know how it goes for help us to you more.

  • What is the maximum memory limit for windows 7 ultimate?

    How GB Windows 7 Ultimate take on your drive hard when you perform a new installation?

    In addition, what is the maximum memory limit for windows 7 ultimate?

    Lefty

    Average size of a clean install of Windows 7 64-bit is around 20-30 concerts.

    Win 7 ultimate can handle as much as your motherboard can support.

  • Link to freeware to limit the total time used on a PC (not just at the moment where)-for real free, no demo

    HI everyone, I've seen several posts where people are asking for a free tool to limit the total time children are allowed on a PC by day.  I think that Windows 8 has this feature as part of its Parental controls, but I found this:
    http://www.romacocanada.ca/timeout/

    It is configured on a per-user basis, which means that you must log in as each individual and configure it.   A bit tedious, but you can customize it by kid I guess.

    It allows you to follow the total time per day and limit the time spent per session.  It will warn the user at a time you specify.  It also allows / the blocking program Web site, but I do not set up these features.

    I just installed it, so I can't guarantee how it works right now, so we'll see.

    Hello

    Thanks for sharing this valuable information. I suggest you to see the following links for parental control.

    What's new in Windows 8 family security
    http://msdn.Microsoft.com/en-us/library/Windows/desktop/jj155495 (v = vs. 85) .aspx

    Parental control
    http://Windows.Microsoft.com/en-us/Windows7/products/features/parental-controls

  • What is the best setting for H264 Blu Ray bit rate, which will play OK on most / all blu ray players.

    What is the best setting for H264 Blu Ray bit rate, which will play OK on most / all blu ray players. When you use CBR and VBR. What are the benefits of progressive and interlaced with regard to playback on all players.

    You don't need to worry about compatibility with Blu - ray playback.

    I prefer a variable bitrate for its effectiveness.  (Not necessary spending 25 MB on a framework in need of 10 right?)

    Using interlaced or progressive will depend on what you shot.  (Take note that 30 p is an atypical, so do not pull that.  Pull only 720 p/24, 720 p/60, 1080 p/24 or 1080i/30).

  • Is there a limit for research on the function of advanced search for files containing text matching. My search always ends with 500 discoveries but the folder contains several PDF files that match the criteria.

    Hello

    Is there a limit for research on the function of advanced search for files containing a text match? My search always ends with 500 discoveries but the folder contains several PDF files that match the criteria.

    Hi carls76936091,

    Open Acrobat, go to the Edit-> Preferences-> search & check if there is a limit to 500 set, in case if it is to increase it please.

    Kind regards
    Nicos

  • I still have to pay the 29.99 as I am an instructor and cannot afford the higher rate.  I see the rate for students and instructor is 19.99 per month, which is easier to handle.

    I still have to pay the 29.99 as I am an instructor and cannot afford the higher rate.  I see the rate for students and instructor is 19.99 per month, which is easier to handle.

    Adobe in education... Start here https://creative.adobe.com/join/edu

    Educational https://creative.adobe.com/plans?plan=edu

    When you purchase a subscription to education, the terms you "click to accept" should be clear about the first/last years

    -Intro price http://forums.adobe.com/thread/1448933?tstart=0 one can help

    http://www.Adobe.com/products/creativecloud/students.edu.html

    http://www.Adobe.com/education/students/student-eligibility-Guide.edu.html

    Redemption Code https://creative.adobe.com/educard

    Proof of ID http://www.adobe.com/store/au_edu/academic_id.html

  • Binds the exportXFAData(); method for the saveAs event

    I have an XFA form that was built with LiveCycle and I try to write javascript to Adobe who will export the form data to an XML file whenever a user manually saves the file in Acrobat. Preferably, this feature is easily sharable, because I have clients who need to have this ability.

    I'm a novice, but it seems that the interactive objects are grey and so I can not add a custom button. That's why I hope to link the exportXFAData(); method for the saveAs event. When a user does CTRL + S or file > save (sub)... the XML should be exported to the desktop.

    It seems that I have to use the exportXFAData() or exportAsXFDF() method.  I found something that says: " it is a very simple process to do this, use the method saveAs Doc object... " and copy the following code:


    this.saveAs ("/ c/temp/test.xml", "com.adobe.acrobat.xml - 1-00");

    I do not know where to write this code, or if it must be adapted (not to mention that the path) to accomplish what I asked above.

    Thank you very much,



    Carl


    It does not export form data, as far as I know, but another schema. There is a different method for acroforms export but I don't know for XFA forms. You should check the reference XFA JavaScript, not google.

    The example you found is not in any way binding to the SaveAs event. Rather, it uses a special feature of the document.saveAs method that allows you to save/export other formats instead of PDF, such as file options > save as. The code generally added to a button, but do not work (see below). I don't know if you can run this in an event WillSave or similar, that; s a separate exercise.

    Don't forget to read the XFA JavaScript document for this method since it will have security restrictions designed to stop incorporating any kind of back up/export to a file - because think havoc if a PDF file that you have downloaded begins to silently save/export the files to your computer. Do not try to use acroform rather documentation! And I see that what you quoted DC Acrobat SDK Documentation applies to the acroforms.

    For more specific help, I suggest the LiveCycle Designer forum. We are dealing here Acroforms.

Maybe you are looking for