MSSQL driver: getInt() and getResultSet() are mutually exclusive?

Hello,
I have a problem with a stored procedure which returns out
parameter (integer) and a result set produced by "select" sql. If i'm
doing
sth.registerOutParameter(1, Types.INTEGER);
sth.execute();
sth.getInt(1);
following
while (true) { ResultSet rsh = sth.getResultSet; if (rsh != null)
break; sth.getMoreResults(); }
never leaves the cycle. If i'm trying to sth.getInt() as i scrolled to
ResultSet (and even if next() if issued to ResultSet), the last is
immediately closed (each following operation with ResultSet throws
exception).
Is there way to use ResultSet and out parameters simultaneously?
Indeed i need that badly.
Thank you in advance
Artiom

Whose MS SQLServer driver are you using?
When SQLServer executes a stored procedure, it
sends the output parameter values after all the
result set data and/or update counts. With our
driver, you should be able to get the result set
first, and then get the output parameter.
Here is a code example that shows how to handle
the returns from an arbitrarily complex procedure.
boolean isResultSetFirst = cstmt.execute();
while (true)
int updateCount = cstmt.getUpdateCount();
rs = cstmt.getResultSet();
// If there are no more results or counts, we're done.
if (rs == null && updateCount == -1)
break;
// Check to see if there is a ResultSet
if (rs != null) {
while (rs.next()) {
System.out.println("Get first col by id:" + rs.getString(1));
rs.close();
} // Otherwise, there will be an update count
else {
System.out.println("Update count = " + cstmt.getUpdateCount());
cstmt.getMoreResults();
// Best to retrieve status after all result sets and update counts
// have been retrieved.
System.out.println( "Output status: " + cstmt.getInt(1));
System.out.println( "Output param: " + cstmt.getString(2));
Artiom wrote:
Hello,
I have a problem with a stored procedure which returns out
parameter (integer) and a result set produced by "select" sql. If i'm
doing
sth.registerOutParameter(1, Types.INTEGER);
sth.execute();
sth.getInt(1);
following
while (true) { ResultSet rsh = sth.getResultSet; if (rsh != null)
break; sth.getMoreResults(); }
never leaves the cycle. If i'm trying to sth.getInt() as i scrolled to
ResultSet (and even if next() if issued to ResultSet), the last is
immediately closed (each following operation with ResultSet throws
exception).
Is there way to use ResultSet and out parameters simultaneously?
Indeed i need that badly.
Thank you in advance
Artiom

Similar Messages

  • Are "Back to my MAC" and "Port Forwarding" mutually exclusive?

    I have been using APExtreme and Port Forwarding successfully for several weeks now. The PF is to allow access to game players on a PC which acts as a server on the web. All Good.
    One more thing, I have a ISP provided wireless modem/router to talk to the cable and the world. It seems to work either bridged or un-bridged.
    I have disabled the wireless on the ISP's modem/router. (Actually the ISP's device doesn't hold a candle to the APE.)
    Still all good.
    So the firewall is on in the APExtreme and none on the modem router, and I have a port defined for my gamers to get access to my server in the APExtreme.
    I now want to implement Back to my MAC on my MBP and my other Apple devices. I believe these use iCloud for which I have an account and it seems to be working well with my iPhone.
    In Properties, when I select BtmM, iCloud says communications will be slow if I have port forwarding on. Also I will not be able to use the router function in my Modem/router.
    I'd really like to have the modem/router firewall up, and do the port forwarding there, but the BtmM will likely not get through.
    So what does anyone suggest?
    Can I use BtmM and port forwarding without too much degradation?
    Please advise.
    Thanks
    Barry

    To best answer your question on whether the two are "mutually exclusive," let take a look at how Back to My Mac (BTMM) basically works.
    BTMM - General Requirements
    OS X Leopard 10.7.3+
    Active iCloud account. Each Mac & the AirPort router, that will be relying on BTMM, needs to be configured with the same account.
    A publicly reachable IP address for your router.
    A router that supports either NAT-PMP or UPnP. For AirPorts, be sure it is running 7.6.1+ firmware.
    BTMM uses TCP port 5354 and UDP ports 4500 & 5353 for communications.
    BTMM - Basic Communication Flow
    For a computer connected to the Internet via a router, BTMM "asks" the router for its configuration information. For a router, like your AirPort, that uses NAT-PMP, BTMM will ask the router to assign arbitrary public ports. In turn, the router will provide these port assignments (& the router's Public IP address) back to BTMM.
    BTMM then sends this information to the iCloud account. In background iCloud updates a special set of DNS entries to be used by BTMM. These entries are then made available to all BTMM clients using your iCloud account. When a computer, with BTMM enabled, uses your iCloud credentials, it automatically retrieves a list of all other computers/routers that are registered with the same account. All these devices should then appear under the SHARED section of the Finder.
    When attempting to connect to a remote computer (or router), BTMM creates a secure connection to that remote device using the information from the iCloud account.
    Once the connection is established, the devices can then communicate with each other.
    So potentially, unless you are using Port Mapping for any of the ports BTMM uses, they should not conflict.

  • Oci8 and oracle extensions mutually exclusive?

    Does anybody know if the following extensions are mutually exclusive.
    php_oci8.dll
    php_oracle.dll
    I can't getting both to load.
    They can be uncommented in the php.ini and loaded individually but if both are used this causes a fatal error and apache fails to start and doesn't leave anything in the log file.
    I am currently using php4.3.6 / NT / Apache 1.3.12 (Win32)
    I am fairly new to php and don't seem to be getting anywhere fast, any help would be appreciated.
    thanks
    Neil W.

    I have them both uncommented and usable. I'm using Apache 1.3.28.
    Maybe your four-year old Apache version is the problem?
    -- CJ

  • Jack and normal audio are mutually exclusive

    When I start qjackctl, I get this output and jack stops:
    21:21:12.718 Statistics reset.
    21:21:12.719 ALSA connection change.
    Cannot connect to server socket err = No such file or directory
    Cannot connect to server request channel
    jack server is not running or cannot be started
    21:21:12.727 ALSA connection graph change.
    21:21:14.590 JACK is starting...
    21:21:14.591 /usr/bin/jackd -dalsa -dhw:0 -r48000 -p1024 -n2 -Xseq -D -Phw:SB,0
    Cannot connect to server socket err = No such file or directory
    Cannot connect to server request channel
    jack server is not running or cannot be started
    21:21:14.598 JACK was started with PID=29115.
    no message buffer overruns
    no message buffer overruns
    no message buffer overruns
    jackdmp 1.9.10
    Copyright 2001-2005 Paul Davis and others.
    Copyright 2004-2014 Grame.
    jackdmp comes with ABSOLUTELY NO WARRANTY
    This is free software, and you are welcome to redistribute it
    under certain conditions; see the file COPYING for details
    JACK server starting in realtime mode with priority 10
    self-connect-mode is "Don't restrict self connect requests"
    audio_reservation_init
    Acquire audio card Audio0
    creating alsa driver ... hw:SB,0|hw:0|1024|2|48000|0|0|nomon|swmeter|-|32bit
    ATTENTION: The playback device "hw:SB,0" is already in use. Please stop the application using it and run JACK again
    Cannot initialize driver
    JackServer::Open failed with -1
    Failed to open server
    21:21:14.799 JACK was stopped
    21:21:16.736 Could not connect to JACK server as client. - Overall operation failed. - Unable to connect to server. Please check the messages window for more info.
    Cannot connect to server socket err = No such file or directory
    Cannot connect to server request channel
    jack server is not running or cannot be started
    This is part of my settings (I don't think I have changed anything else).
    If you need more information to help me (I bet you do), then please tell me. I'm unsure what information I need to give and how to obtain it.
    Thanks!

    A step is the smallest transaction which can be committed in application engine. In a step if you have call section then a new transaction starts which leads to problems in committing the previous transaction if you want to commit step by step hence Call Section and SQL should not be there in same step.
    In small application engine will have problems in step by step commit if we have Call Section and SQL in same step.
    Jayaprakash Tedla
    Sr. Architect - PeopleSoft

  • Moving to an external Ethernet Drive - Libraries and Photos are a mess - Cant Find Images

    I am in the process of wanrting to consolidate my LR3 files to an 2TB external ethernet drive (connected via airport extreme).  First, are there any issue with using the networked drive.  I've heard that there may be.
    Second, my libraries and photos are all over the place.  I cant seem to find the proper catalgues and sometimes files go missing or offline.  So, duringn this move to the new 2TB drive, I want to use this opportunity to find and move all the LR3 "stuff" i can and make the workflow better organized.
    How can I simply do that???
    Thanks!

    First, let me suggest that there are two issues here ... Storage (exactly where your photos and catalog file are located) and organization (how do you find/search for the photo(s) of interest. These are different issues.
    First ... storage:
    You can move your photos and catalog file anywhere to meet your storage needs. You move the catalog file simply by moving it in Windows or Mac Finder to the internal HD (or any other non-network drive). Recommended: put the catalog file on your fastest hard disk. Recommended: move the previews (that are located in subfolders where the catalog is) along with the catalog file. Once moved, you open it by double-clicking on it.
    You can move your photos anywhere you want them to be, including a network drive. Although I recommend you move them in Lightroom so as to not break the links, you can also move the folders outside of Lightroom and then reconnect (in the folder panel, right-click on a folder and select "Update Folder Location").
    Now, you have your files whereever you want them to be. They are stored properly. It makes sense to consolidate your photos on a single drive if possible, and it makes sense to set things up for ease of backup (i.e. all photos in subfolders under a single parent folder) but other storage schemes are fine if they meet your needs.
    Next ... Organization
    This is how you set things up so that you can find a specific photo(s) quickly. I strongly recommend that this be done in Lightroom, using keywords, metadata and collections. I strongly dis-recommend that you do this by moving this folder to that location or folder hierarchy to help you be able to find things. I strongly dis-recommend that you do this by renaming photos or folders. Leave them whereever they are (after you have met your storage needs above), and organize via keywords. Assign keywords and metadata religiously to your photos. Keywords give you much more organizational power than folders, because you can have many many keyworkds assigned to a photo, but a photo can be in only a single folder.
    I strongly recommend consolidating things into a single catalog. This will enable you to search for any photo, because you have one catalog. If you have multiple catalogs, and catalog A is open, you cannot search for a photo in catalog B.
    Once all of this is complete, your photos are where you want them (storage) on your networked drive, your catalog (singular, not plural) is on your fastest disk (storage) and your photos are completely well organized in Lightroom, enabling you to search for them quickly, using the Lightroom filter bar, the keyword panel, or smart collections.

  • Why having displayed both generic icons for the PDF and JPEG files and automatic preview of the JPEG files in an ordinary folder are mutually exclusive in Win7?

    In Win7 Pro all my:
    PDF documents, with the 'Large Icons' option chosen in the View tab, display contents of their first page with a tiny thumbnail in the icon's lower right corner, instead of a generic PDF icon.
    JPEG files show Icon size photos, instead of a generic Nero 9 PhotoSnap Essentials icon.
    Folders containing the JPEG photos, however, automatically show preview, when opened, which is desirable feature.
    I found that the Win7 option "Always show icons never thumbnails" in the View tab: Windows Explorer -> Tools -> Folder Options, (where ironically the present 'thumbnails' have nothing to do with 'Thumbnails' from the View option in WinXP), causes the unwanted effects described in points 1 & 2, when unchecked.
    Checking this option solves the problem of the PDF and Nero icons. This time, however, I can only see a Nero 9 PhotoSnap Essentials icons, instead of photos preview on opening of any standard folder with the JPEG photos.
    Did I make a mistake somewhere or maybe Microsoft made changes in Win7 with respect to WinXP, which make it impossible to have both the features working at the same time?

    Hi,
    You can install the Win 8.1 software drivers using this link.
    http://h10025.www1.hp.com/ewfrf/wc/softwareCategory?cc=us&dlc=en&lc=en&product=4323648&task=&
    Once installed, it should have the same features as the Win 7 drivers for scanning.
    Please click the “Kudos Thumbs up” on the left if this has helped you and “Accept as solution” if this has helped solved your problem.

  • Why SQL and CALL SECTION are mutually exclusive in App Engine

    Please give some other reason than deadlocking, as I already know about this.....and if this is the reason, please confirm it....

    A step is the smallest transaction which can be committed in application engine. In a step if you have call section then a new transaction starts which leads to problems in committing the previous transaction if you want to commit step by step hence Call Section and SQL should not be there in same step.
    In small application engine will have problems in step by step commit if we have Call Section and SQL in same step.
    Jayaprakash Tedla
    Sr. Architect - PeopleSoft

  • Waveform streaming and waveform scripting - Mutually exclusive?

    Hello All,
    I was looking at doing some tricks with the streaming capabilities of the new PXIe-5442 plus NI RAID extension. Is there a way to script multiple waveforms together if the total sample size exceeds the hardware capacity of the AWG (in other words can one of the waveforms be stremed to the memory) ?
    If not are there any scripting or sequence "type" abilities that allows multiple waveforms be stored off board and let each waveform be hardware triggered (load, wait for ext trig, run waveform1, loop through first/last eight samples, wait ext trig, run waveform2, etc..)?
    The looping functionalities are less of an issue with what is essentially a 1TB AWG but the triggering still poses a problem.
    CVI examples are preferred but any example that shows the hardware feasibility exist should point me in the right direction.
    Note: In a perfect world, I would to see a scripting solution that would allow different our experiment types to be more easily executed within the same project.
    Thanks in advance.
    Solved!
    Go to Solution.

    Hi,
    You can do Waveform Streaming and Scripting in the same session.
    To Stream to a waveform in script, you would need the streaming waveform name.
    An example scenario is where you want to configure your board for 3 different waveforms (WfmA, WfmB and Streaming Waveform).
    You can download WfmA and WfmB using "niFGEN Write Named Waveforms" and name the waveforms accordingly.
    e.g., niFgen_WriteNamedWaveformI16 (vi, "0", wfmA, numPoints, wfmData)); /**Notice that these names will be used in script******/
    We cannot assign name directly to a streaming waveform, however we can get information from the driver about the name it set to the streaming waveform.
    Streaming Waveform:
    1) Allocate Streaming Memory using niFgen_AllocateWaveform function
    2) Pass the "Waveform Handle" output of niFgen_AllocateWaveform function to "niFGEN Streaming Handle" attribute
    e.g.,
     checkErr(niFgen_AllocateWaveform(vi, VI_NULL, streamingWaveformSize, &wfmHandle));
     checkErr(niFgen_SetAttributeViInt32(vi, VI_NULL, NIFGEN_ATTR_STREAMING_WAVEFORM_HANDLE,
              streamingwfmHandle));
    3) Fill the Streaming Memory Buffer with data using niFgen_WriteBinary16Waveform  and Streaming Waveform Handle
    4) Then read the attribute "Streaming Waveform Name". You can use this name now in script.
     niFgen_GetAttributeViString (vi, "0",  NIFGEN_ATTR_STREAMING_WAVEFORM_NAME, 512, streamingwfmname);
    To generate these sequence of waveforms, a sample script would be:
    script myscript
    generate wfmA
    generate wfmB
    repeat <repeat count>
    generate <streamingwfmname>
    end repeat
    5) Download the script using  niFgen_WriteScript function
    6) After you start the generation, inside a while loop continuously monitor the "Space Available in Streaming Wfm" and transfer the data using "niFgen_WriteBinary16Waveform  and Streaming Waveform Handle.
    I have a sample application in LabVIEW, I can post it if it would help. Let me know if I am not clear on anything....
    Thanks,
    Kalyan
    Kalyanramu Vemishetty
    Automated Test Systems Engineer
    National Instruments

  • Dual monitor and hw accel mutually exclusive (using Awesome WM)

    Hi I've been using Arch for some months now and I have laptop (Lenovo x220 with integrated intel graphics) with an occasional dual monitor setup. Things were smooth, but I was having issues with video tearing, so I went trough the intel graphics arch wiki page and I was able to turn on hw acceleration and get rid of the video tearing by putting this in my /etc/X11/xorg.conf.d
        # /etc/X11/xorc.conf.d/20-intel.conf
        Section "Device"
           Identifier  "Intel Graphics"
           Driver      "intel"
           Option      "AccelMethod"  "sna"
           Option      "TearFree"     "true"
        EndSection
    The problem is that I add that file I no longer have proper dual monitor with extended desktop, the second monitor kind of mirrors the main one.
    kind of, because I can move the pointer between the two monitors and is not duplicated, but the desktop (widows and awesome menu) is duplicated on the second monitor, but I can only interact with the windows using the mouse from the main monitor.
    I usually do `$ xrandr --mode 1920x1080 --output HDMI1 --right-of LVDS1` to output to the second monitor, and it was working allright.
    I've been trough arch and gentoo wiki looking for dual monitor/xorg config stuff to no avail yet.
    Last edited by vermelho (2012-08-01 20:18:50)

    I found a fix in this thread: http://forums.gentoo.org/viewtopic-p-71 … c9ec76f8b8
    Adding `i915.semaphores=1` to my boot params allows me to use the TearFree option in xorg config, without X crashing and with a dual monitor setup.

  • What is Plug-in, SUpport Package, Add in and how R3 and BW are interdep

    Hello Every One,
    Can some one explain me in simple words about the terms, Plug-ins, SUpport Packs, Service Packs, Add-in's, SAP Notes and how R3 and BW are interdependant in the above mentioned terms? Can anyone give a simple example?
    regards,
    kishore

    Hi,
    <b><u>Plug-ins:[/</u>b]
    Additional program which enhances the functionality of an existing program. Additional functions which may not be needed or are mutually exclusive are often implemented as plug-ins.
    For example ICMAN contains various plug-ins for the various network protocols which it supports (HTTP, SMTP, FTP,...).
    The interface between mySAP.com components (for example, SAP APO, SAP BBP, SAP BW, SAP CRM) and one or more SAP R/3 systems.
    The SAP R/3 Plug-In unites the plug-ins APO-CIF, CRM-R3A, BW-BCT and B2B-PRO-PI. This simplifies maintenance significantly and guarantees compatibility between the individual mySAP.com components. With SAP R/3 Plug-In, you can use several mySAP.com components simultaneously in a single system. SAP R/3 Plug-In supplies the mySAP.com component transaction data and master data in real time.
    Technically, there are two versions of each release of the SAP R/3 Plug-In, a PI version and a PI-A version.
    The technical names of the software components are PI and PI_A
    <b><u>SUpport Packs</u></b>
    A set of corrections for serious software errors in the SAP system.
    Support Packages are compiled periodically and made available in the SAP Service Marketplace.
    <b><u>Service Packs</u></b>
    A grouping of different services for a quotation.
    A service package can be agreed between a service provider and a customer within a service contract or as part of a complex service plan, which can also be additionally agreed in a service contract.
    EXAMPLE
    A "Winter Car Check" service package containing the following services is agreed in a contract:
    Cooling water check
    Brake fluid check
    Battery inspection
    Light inspection
    <b><u>Add-in's</u></b>
    add-ins are enhancements to the standard version of the system. They can be inserted into the SAP System to accommodate user requirements too specific to be included in the standard delivery. Since specific industries often require special functions, SAP allows you to predefine these points in your software
    http://help.sap.com/saphelp_erp2004/helpdata/en/e6/d54d3c596f0b26e10000000a11402f/content.htm
    <b><u>SAP Notes</u></b>
    Documentaion Prepared by SAP for publishing clarity in case of corrections or changes happening to the SAP Software.
    <b><u>R3 and BW are interdependant</u></b>
    Then BW takes the Data from R/3 : so there has to be Support Pluggins which are mapped to the BW server.So the SAP Supported R/3 Versions should be used.
    Eg: SAP Stoped the Support for r/3 4.0 series
    regards
    Happy Tony

  • Mutually exclusive set of items

    Hi,
    I have 5 check boxes. check box 5 - should not be available if any of the 4 check boxes are checked. and also if check box 5 is checked, none of the other 4 check boxes should be enabled. Could any one give me a suggestion about how to achieve this? Thanks,
    Lakshmi

    Hi Lakshmi,
    If I'm interpreting your question correctly, you don't have a simple case of 5 mutually exclusive choices (1 or 2 or 3 or 4 or 5) - if you do then use a Radio Group.
    I'm thinking, however, that your user can choose multiples from 1-4 but, if they do then 5 is not available e.g. they can choose (1 and 3 and 4 but not 5) or they can choose (5 only).
    One approach would be to define a Validation and check at submit time. Another approach would be to code some Javascript to enable/disable the checkboxes.
    My preference would be for the Validation (and not just because I don't know Javascript).
    Looking at it from a useability perspective, I'd prefer to give the user an explanation on the screen - say a label that indicates which combinations are valid or put checkboxes 1, 2, 3, and 4 in a different region and indicate that the regions are 'mutually exclusive' - and then 'trap' any error they make. Essentially, I'm advocating enabling the user to give the correct response rather than controlling their every mouse click. If it's not obvious what an appropriate choice is, they'll get very confused if a checkbox suddenly become unavailable because they've clicked somewhere else.
    I'd be keen to see what the Javascript coders can come up with, though.
    Cheers,
    Bryan.

  • Mutually exclusive authorisations with RSECADMIN

    Hello,
    I am using the new SAP BI 7.0 RSECADMIN security tools and want to know if it is possible to create authorisations that are mutually exclusive. With the old RSSM tool it was possible to create an auth object with several fields such as "ACTIVITY" and other auth relevant characteristics. When adding the auth objects to a role twice with different values in the fields it was possible to grant mutually exclusive authorisations.
    I would like to know if this is still possible with the new RSECADMIN tool?
    Thanks

    Hi Ali,
    the below are some of the SAP notes which can help you
    668520, 921820, 557924, 820183, 653383
    Thanks and regards,
    kishore

  • Mutually exclusive parameters

    Hi,
    I have 3 parameters in one concurrent request namely Employee, Organization and Project.
    Employee and Organization parameters are mutually exclusive. Project parameter is dependent on either employee or organization depending upon which one is entered. In other words the project parameter valueset is refering to employee and organization using :$FLEX$.employee and :$FLEX$.organization. Now the problem that I am facing here is that the system expects both employee and organization parameters before enabling project parameter on SRS screen. But I want them mutually excluisive and at any point in time only one should be entered in.
    Any pointer towards how to solve this problem is highly appreciated?
    Thanks in advance
    Bhavesh

    Hi,
    I have 3 parameters in one concurrent request namely Employee, Organization and Project.
    Employee and Organization parameters are mutually exclusive. Project parameter is dependent on either employee or organization depending upon which one is entered. In other words the project parameter valueset is refering to employee and organization using :$FLEX$.employee and :$FLEX$.organization. Now the problem that I am facing here is that the system expects both employee and organization parameters before enabling project parameter on SRS screen. But I want them mutually excluisive and at any point in time only one should be entered in.
    Any pointer towards how to solve this problem is highly appreciated?
    Thanks in advance
    Bhavesh

  • CRIO 9068 eth0 / eth1 acting mutually exclusive....

    Found some cRIO-9068s that are acting like the primary NIC and secondary NIC are mutually exclusive. I cannot get them to simultaneously respond to pings.
    New rack - power on.
    Use NI MAX to find it via Link local address.
    Set Primary:
    192.168.3.13
    255.255.128.0
    Set Secondary
    192.168.4.100
    255.255.128.0
    Save.
    Change Laptop to primary sub net (.3.). Reconnect. See that the secondary is still only set to link local. Re-set per above, save.
    Laptop #1 on primary (via one dumb switch) it's set for static on .3.
    Laptop #2 on secondary directly connected it's set for static on .4.
    Both have WiFi disabled, proxy off, Windows foirewall off, symantic disabled etc.. to cut down on the cinfusion.
    Laptop #1: Refresh Chrome and cRIO web page says secondary nic is indeed 4.100. 
    Laptop #2: Cannot ping it (secondary NIC).
    Laptop #1: I change the primary NIC from 3.13 to 3.53 (any change will do) Save.
    BAM! Laptop #2 can now ping 4.100. But wait, now Laptop #1 can't Ping 3.53. So.....
    On Laptop #2: I change the secondary NIC from 4.100 to 4.99
    BAM! Laptop #1 can now ping 3.53. and...as you may have guessed Laptop #2 can't ping 4.99.
    I created a ticket with NI: But thought I would ask here just in case, possibly, someone else has seen this.
    I have seen this on two racks. The first had a full application on it, and in the course of troubleshootin I wiped the disk and re-deployed software via MAX. The second rack I didn't even go so far as deploying SW via MAX - it was left in safe mode, and it also did it. I did however flash the firmware of both to 1.1.0f0.

    Hi Nick,
    You were told correctly that the new Linux RT OS on the cRIO 9068 and 903x series do not have this issue. The KnowledgeBase article I linked does not apply to the 9068 or 903x series. With either the 9068 or one of the 903x cRIOs, you would be able to ping the cRIO with both laptops on the same subnet. The only thing to be aware of for this is that device discovery in MAX uses eth0. So the laptop connected to eth1 would be able to communicate with the cRIO just fine, but it would not see the cRIO in MAX.
    Hope this helps!
    Robert R. | Applications Engineer | National Instruments

  • On a 3750 enhanced services port, are hierarchical queueing and standard queuing features mutually exclusive?

    When you configure hierarchical queueing on an enhanced services port, should one also configure the egress queue chararcteristics such as buffer space and thresholds, shaped/shared weights, egress priority queue, etc., that is all of those characteristics that one would configure if one were configuring a port for standard QOS.  In other words, on an enhanced services port, are the hierarchical queueing features using the modular QOS CLI and the standard egress queueing features supposed to be used together or are they mutually exclusive?

    Hi Christine,
    Answer to your confusion is in the following document.
    http://www.cisco.com/en/US/docs/switches/metro/catalyst3750m/software/release/12.1_14_ax/release/notes/OL464603.html#wp58682
    On an ES port, you can use LLQ (enabled with the priority policy-map class configuration command) and the egress priority queue (enabled with the priority-queue out
    interface configuration command). By using these two features, you can
    give priority to a class of traffic and avoid losing traffic when the
    switch is congested. In previous releases (before the egress priority
    queue was supported), you could put a traffic class into the
    strict-priority queue, but congestion at the egress queue-sets could
    result in the dropping of that priority traffic. The priority-queue out
    interface configuration command enables you to prioritize the same
    traffic class at the egress queue-sets, ensuring that priority traffic
    reaches the hierarchical queues and is processed with priority.
    you can also fine tune the Queue-sets for your desired results.
    http://www.cisco.com/en/US/docs/switches/metro/catalyst3750m/software/release/12.2_50_se/configuration/guide/swqos.html#wp1162303

Maybe you are looking for