How to implement long-distance box-box Redundant for CSS product?

I want to config box-box redundancy for CSS,but It's about 1200+ meters from one to the other,
so it couldn't implement using crossover UTP cable.
(DOes it work well when link with Fiber optical transceiver between the two Content Switches ?)
or
Would you pls. give your solution for this ?
Thanks,
thomas

As far as my knowledge goes I think cross over cable is the only option.When the CSS are too far apart, Box-to-Box
redundancy cannot be used.A gige-cable cannot be used for failover.
Have a look at this:
http://www.cisco.com/univercd/cc/td/doc/product/webscale/css/advcfggd/redndncy.htm#xtocid145103

Similar Messages

  • Case #0184579519 not resolved. How do you intend to fix my situation for a product i have purchased?

    Case #0184579519 not resolved. How do you intend to fix my situation for a product i have purchased?

    Contact Adobe direct http://helpx.adobe.com/contact.html
    These are user-to-user forums frequented by Adobe customers.
    Only Adobe Staff can assist you with a case number and they only visit these forums occasionally.

  • How to implement optemistic locking in pl/sql for oracle database

    i have search the net to find example of how i can do the optimistic locking in pl/sql, all the resources i found were old , for example "Optimistic Locking with Concurrence in Oracle.
    As " by Graham Thornton Snr. Database Architect / Oracle DBA in 2001, but at the end he said that the approach will not work fine if the update being made is a relative update, this apprach includes:-
    1.add a timestamp column to an exsiting table.
    2.add a preinsert trigger on the table to set the timestamp.
    3.add a preupdate trigger to comapre the old time stamp with the new one.
    So where i can find updated resources about this issue.
    Edited by: 812643 on 17-Nov-2010 12:39

    totally plagiarized from expert oracle database architecture 9i, 10g, 11g by Tom Kyte pg201
    one popular implementation of optimistic locking is to keep the old and new values in the application and upon updating the data use and update like this
    update table
    set column1 =: new_column1, column2 = : new_column2, ...
    where primary_key = :primary_key
    and decode( column1, :old_column1, 1 ) = 1
    and decode( column2, :old_column2, 1 ) = 1
    another implementation
    optimistic locking using a version column
    add a single column to each database table you wish to protect from lost updates. this column is generally either a number or date/timestamp column
    It is typically maintened via a row trigger on the table, which is responsible for incrementing the number column or updating the date/timestamp column
    every time a row is modified.
    another one on page 204
    optimistic locking usin a checksum
    similiar to the version column implementation but it uses the base data itself to compute a virtual version column.
    the ones suggested where owa_opt_lock.checksum, dbms_obfuscation_toolkit.md5, dbms_crypto.hash, ora_hashEdited by: pollywog on Nov 17, 2010 3:48 PM
    might be a good book for you to look into getting it has a whole chapter on locking and latching.
    Edited by: pollywog on Nov 17, 2010 3:54 PM

  • How to implement the input help at web for the input ready query?

    Dear all,
    As you konw when we create the input ready query for Planning, we can insert the new record for plan with Analyzer tool. We also can use input help(double clike the space) for input the master data.
    I want to konw when I use Web Appliaction Designer to run the query at the web, How can I use the input help for planning data.
    My customer request me must implement the input help function at web.
    Thanks a lot
    best regards,
    Leon
    Message was edited by: Leon Wang
    Message was edited by: Leon Wang

    Hello,
    It seems Input Help is not possible with WEB.
    Check out the link below -
    http://help.sap.com/saphelp_nw2004s/helpdata/en/43/f234619e3c4c5de10000000a155369/frameset.htm<a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/43/f234619e3c4c5de10000000a155369/frameset.htm">Input Help - with Web application designer</a>
    <b>Bex Analyzer -</b> You access input help for a cell by double clicking on it or choosing the F4 button.
    <b>Web Appln Designer</b> - Input help is not available
    Hope it Helps
    Chetan
    @CP..

  • How to view long chapter titles without abbreviation for audiobooks in music app?

    Many of the names of the chapters of the audiobooks I listen to in the music app are extremely long (i.e., more than 22 characters).  However, I cannot find a way to display more than the first ~22 characters.
    When I start playing an audiobook, I click the little button in the upper right corner of the screen.  This displays all of the chapter titles.  However, it displays only one line per title, and if the title is longer than ~22 characters, it abbreviates with an ellipsis.  Clicking on the title just causes it to play.  Side scrolling doesn't seem to be available.  I can find no way to display the whole title.  This is extremely frustrating, because I like to know what I'm listening to, and I sometimes like to be able to choose a chapter based on the title.
    Is it possible to display long chapter titles for audiobooks on iOS, or is this a missing feature that I need to ask Apple to incorporate into a future iOS build?
    PS It would also be nice if the app displayed the chapter titles on the playback screen (i.e., on the screen one sees without having to click the button in the upper right hand corner). I'll suggest this to Apple as well.  If others do the same, athttp://www.apple.com/feedback/ perhaps they'll listen.
    PPS It would also be nice if audiobooks could be displayed by author, the way music can be displayed by artist, on iOS.  Another piece of feedback I'll be giving Apple.  Please do the same if you'd also like this feature.

    Submit your feedback directly to Apple using the appropriate link on the Feedback page:
    http://www.apple.com/feedback

  • How to implement index array inside case structure for searching a 3D array?

    Well I have a 3D array and I want to index certain elements from that array. And I have thought of one way of doing this is to have multiple index array functions on the block diagram to search the array simultaneously, but that would be messy. Or I could setup some kind of case structure and place each index array function into individual cases. I've tried the latter, but when I connect the 3D array to the case structure at the"?" it doesn't give me permission because it says I'm hooking up two different types of data. Case Structure is for T or F and 3D array is not a boolean.
    So how can I setup the Case Structure to work for a 3D array?

    A case structure's selection tunnel cannot accept an array.  What exactly are your search criteria?  It sounds like a few FOR loops will be needed.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • How to insert long text data in oracle for LONG column type??

    Anybody who can tell me what is best way to store long text (more than 8k) in Oralce table.
    I am using Long datatype for column but it still doenst let me insert longer strings.
    Also I am using ODP.Net.
    Anybody with a good suggestion???
    Thanks in advance

    Hi,
    Are you getting an error? If so, what?
    This works for me..
    Greg
    create table longtab(col1 varchar2(10), col2 long );
    using System;
    using System.Data;
    using Oracle.DataAccess.Client;
    using Oracle.DataAccess.Types;
    using System.Text;
    public class longwrite
    public static void Main()
    // make a long string
    StringBuilder sb = new StringBuilder();
    for (int i=0;i<55000;i++)
    sb.Append("a");
    sb.Append("Z");
    string indata = sb.ToString();
    Console.WriteLine("string length is {0}",indata .Length);
    // insert into database
    OracleConnection con = new OracleConnection("user id=scott;password=tiger;data source=orcl");
    con.Open();
    OracleCommand cmd = new OracleCommand();
    cmd.CommandText = "insert into longtab values(1,:longparam)";
    cmd.Connection = con;
    OracleParameter longparam = new OracleParameter("longparam",OracleDbType.Long,indata .Length);
    longparam.Direction = ParameterDirection.Input;
    longparam.Value = indata ;
    cmd.Parameters.Add(longparam);
    cmd.ExecuteNonQuery();
    Console.WriteLine("insert complete");
    //now retrieve it
    cmd.CommandText = "select rowid,col2 from longtab where col1 = 1";
    OracleDataReader reader = cmd.ExecuteReader();
    reader.Read();
    string outdata = (string)reader.GetOracleString(1);
    Console.WriteLine("string length is {0}",outdata.Length);
    //Console.WriteLine("string is {0}",outdata);
    reader.Close();     
    con.Close();
    con.Close();
    }

  • How to Implement Abap Object and Access Key for se24 developers.

    Hi every One,
    This is Abdul Rahman, Started Learning Abap Objects i want a simple program to be executed i.e. in Local class (Abap program)and as well in global class(class builder).
    Also i would like to know  When ,Were and Why Abap Object should be used.
    prob to Me :- When i wanted execute F8 a Class in se24 Class Builder it is asking me AcessKey , plz if this is required plz any one send Me.
    I have this key 36687663221261278694 it is already used in Abap editor , it is not accepting in se24 .
    plz help Me , waiting for response ..
    thankyou so much
    Abdul Rahman.

    Hello Abdul
    Here are my answers to your questions:
    (1) <b>Local classes</b>: <i>Do not use them.</i>
    - As long as your class is rather small (few attributes and methods), local classes  are ok yet as soon as they become larger you will loose the overview
    (2) <b>Global classes</b>: <i>Do use them.</i>
    - Make use of global classes even if they are only used for your training. The big advantage over local classes is that you will get used to the classe builder (SE24) which has a plethora of functions.
    (3) <b>Executing global classes</b>: <i>Can be done if you have defined an OO-transaction.</i>
    - An OO-transaction has a class and one of its public methods as parameters (similar like report transactions). When you all the OO-transaction an instance of you class is created and the public method is called.
    (4) <b>Where and Why use ABAP Objects?</b> <i>Everywhere. Anytime.</i>
    - ABAP objects is about stability, maintainability and re-usability of coding. These developer aims can be much more fulfilled using ABAP OO means than in classical programming.
    Regards
       Uwe
    PS: There are situations where local classes are quite appropriate and, using ABAP Unit testing, are obligatory.

  • How to implement message throttling in DB adapter for outbound message

    Hi all,
    In my current we need to insert huge amount of data in the Oracle database. But the database will provide us limited amount connection. As per our observation number of total incoming request will exceed the total number available connection. In this case we have to throttle the incoming message. I know message throttling can be done very easily using OSB. But in this project we are not using OSB. We are using BPEL Process Manager and Mediator. I tried to specify the number of thread in the outbound DB adapter but it seems there is no such property in oracle.tip.adapter.db.DBWriteInteractionSpec or oracle.tip.adapter.db.DBStoredProcedureInteractionSpec.
    Can anybody inform me what is the possible solution. Thanks in advance.

    Check http://docs.oracle.com/cd/E21764_01/core.1111/e10108/adapters.htm#BABDJIGB
    Unfortunatly currently valves are not supported by JMS or Database Adapter – only for file and ftp. Maybe you could use it on the incomming side check http://technology.amis.nl/blog/13849/soa-suite-file-adapter-pre-and-post-processing-using-valves-and-pipelines
    little off topic; would it be possible to use ODI? Seems more suitable for the job...
    hth,
    Peter Paul

  • British Columbia BC users - how are you dealing with the PST Exemption for Youth Products?

    Hi BC Community,
    Reaching out to everyone and anyone to help with this.  Has anyone had any luck (in British Columbia) dealing with PST Exemption for Youth product? More specifically if a product has a full tax item (12%) and a Youth Exempt Item (5%) in the cart, at the same time.
    As you know, if you add to British Columbia Tax Codes (BC-12% and BC-5%) and you have product in your cart, like the above mentioned - the Destination State overrides any product level Tax Codes.
    Looking for some help with this one.
    Thanks,
    Aaron

    Hi BC Community,
    Reaching out to everyone and anyone to help with this.  Has anyone had any luck (in British Columbia) dealing with PST Exemption for Youth product? More specifically if a product has a full tax item (12%) and a Youth Exempt Item (5%) in the cart, at the same time.
    As you know, if you add to British Columbia Tax Codes (BC-12% and BC-5%) and you have product in your cart, like the above mentioned - the Destination State overrides any product level Tax Codes.
    Looking for some help with this one.
    Thanks,
    Aaron

  • Something software related prevented me from being able to boot up my iMAC. The remedy was to wipe the computer of all soft wear and re-inatall everything via my time capsule. All good there.. but now I cannot open Ai and a box stating"Licensing for this

    Something software related prevented me from being able to boot up my iMAC. The remedy was to wipe the computer of all soft wear and re-inatall everything via my time capsule. All good there.. but now I cannot open Ai and a box stating"Licensing for this product has stopped working" and to reference error code 150:30. How do I get my Ai to open?

    Run the cleaner tool and reinstall it properly.
    Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6
    Download CS6 products
    Mylenium

  • How to implement select all files (Ctrl-A) in open file dialog??

    I successfully created file open dialog. However, in most windows file open dialog,
    if you press "Ctrl-A," it will select all the files in the directory. If you press "Ctrl"
    key with arrow key, it will highligh the files you want. ie. It allows users to open
    more than one files at the same time. How to implement it in Java??

    For doing this, you have to enable the file multiselection.
    If you have created a JFileChooser as :
    JFileChooser fileChooser = new JFileChooser();
    Add the following statement to set the multiselection property.
    fileChooser.setMultiSelectionEnabled(true);
    Manish.

  • How to implement isTokenValid in JSF ?

    Hi guys,
    How to implement a same function in JSF for the org.apache.struts.action.Action.isTokenValid in struts ? Please help, Thanks !
    cheers,
    Mark

    Put your question in a Struts forum.

  • How to tackle long processing threads ?

    Hi All,
    I have a requirement where it will take couple of minutes to complete a process. Well, I made that method to be "synchronized" so that none of the other threads can do anything(since all other activities are dependant on this thread, the others have to wait till this important threads completes it's process).
    Now the problem is that other threads goes into problem and all of them are in MW(monitor wait) state and sometime kills/hangs the wls-instance. We are using wls6.1+sp2.
    please suggest me with some example for how to tackle these kind of problems.
    -sangita

    What is this process doing?this process gets some information from an external DB source. Basically, it does some search on a given field. We can't do anything with this DB resource as we don't have any hold on this, some legacy old crap.
    All we need to do is to handle this long runnig process through java. could you please suggest how to handle long processes, intelligently ?
    Thanks for your time on this.
    -sangita

  • In 3.6.8 I no longer see the box that lets me accept/reject cookies before they are sent by a website. How do I restore this feature?

    == Issue
    ==
    I have a problem with my bookmarks, cookies, history or settings
    == Description
    ==
    Using Firefox 3.6.8 I no longer see the box that lets me accept/reject cookies before they are sent by a website. How do I restore this feature?
    == Troubleshooting information
    ==
    Application Basics
    Name Firefox
    Version 3.6.8
    Profile Directory
    Open Containing Folder
    Installed Plugins
    about:plugins
    Build Configuration
    about:buildconfig
    Extensions
    Name
    Version
    Enabled
    ID
    CinemaNow Plugin for Firefox 1.4.0.5 true {3112ca9c-de6d-4884-a869-9855de680400}
    DictionarySearch 3.6.5 true
    fluxDVD Download Manager 0.5 false {400F0BDB-6C49-43A4-BE1F-76D7327A604D}
    ForceField Toolbar 1.5.152.10 true
    Java Console 6.0.02 false
    Microsoft .NET Framework Assistant 1.2.1 true {20a82645-c095-46ed-80e3-08825760534b}
    Pronto 0.9.8 false {6aec4bf7-c16a-4e5c-a65a-114a57157969}
    Amazon Wish List 1.1 true [email protected]
    Java Console 6.0.20 true
    TV-Fox 1.5.6 true {2f17f610-5e97-4fed-828f-9940b7b577a4}
    CookieSafe 3.0.5 true {9D23D0AA-D8F5-11DA-B3FC-0928ABF316DD}
    BetterPrivacy 1.48.3 true
    Modified Preferences
    Name
    Value
    accessibility.blockautorefresh true
    accessibility.typeaheadfind true
    accessibility.typeaheadfind.flashBar 0
    browser.history_expire_days.mirror 180
    browser.history_expire_days_min 5
    browser.places.smartBookmarksVersion 2
    browser.startup.homepage http://www.google.com/
    browser.startup.homepage_override.mstone rv:1.9.2.8
    extensions.lastAppVersion 3.6.8
    general.useragent.extra.microsoftdotnet ( .NET CLR 3.5.30729)
    network.cookie.cookieBehavior 2
    network.cookie.lifetimePolicy 2
    network.cookie.prefsMigrated true
    places.last_vacuum 1280804078
    privacy.sanitize.migrateFx3Prefs true
    security.warn_viewing_mixed false
    == Firefox version
    ==
    3.6.8
    == Operating system
    ==
    Windows Vista
    == User Agent
    ==
    Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.2.8) Gecko/20100722 Firefox/3.6.8 ( .NET CLR 3.5.30729)
    == Plugins installed
    ==
    *-6.0.12.1739
    *np-mswmp
    *MPDRM License Acquisition Plugin
    *1.9.0009.1
    *The QuickTime Plugin allows you to view a wide variety of multimedia content in Web pages. For more information, visit the QuickTime Web site.
    *Adobe PDF Plug-In For Firefox and Netscape "9.3.3"
    *Default Plug-in
    *Shockwave Flash 10.1 r53
    *4.0.50524.0

    Are you talking about CookieSafe, which you have installed? See: https://addons.mozilla.org/de/firefox/addon/2497/
    If so, Is your Status Bar displayed? Click View, if no check mark next to Status Bar, click on Status Bar to place a check mark. Does it show now?

Maybe you are looking for

  • Import dimension and member via maxl, how to create data file and rule file

    Hi I have a task to import dimension and member into Essbase, for project requirement, I have to use text file or spreadsheet file. I wonder which format can be imported into Essbase? I tried to create them, failed. Do you have any samples to help me

  • Spaces - Window disappears when I turn Spaces off

    After using Spaces for a while I decided it was not a feature I care for. I turned it off and found that every so often a window I am working in (so far Mail and MS Word) will disappear. It is not minimized in the dock but the application is still ru

  • Set Document Actions

    Hi, I simply want to notify a user that a required field is blank when they print or save the PDF. Based on other posts in the forum, I added the following JavaScript in Set Document Actions > Document Will Save and Document Will Print. function chec

  • Adobe Media Encoder and Timecode

    Does Media Encoder retain timecode? I'm doing 23.98 to 29.97 Quicktime trnascodes and the timecode always starts at 00:00:00 on the transcoded file.

  • Editing onClick attribute of an ActionLink

    Hi, I want to create a Disconnect link on my JSF application. I would like to have a JavaScript confirmation of the disconnection before it is done. The problem is that JSC automatically generates the onClick method of my actionLink and so I cannot o