4507R+SUPII_Plus Redundancy Problem

Dear Professionals
I have
4507R + 2 X SUPII_Plus + cat4000-i9s-mz.121-19.EW1.bin
Following dump seems to be not configured correctly to redundancy.
What can I do to fix this problem.
------------------ show running-config --------------
redundancy
mode rpr
main-cpu
auto-sync startup-config
auto-sync standard
7507R_SUPII_Plus#show redundancy stat
my state = 13 -ACTIVE
peer state = 1 -DISABLED
Mode = Simplex
Unit = Primary
Unit ID = 1
Redundancy Mode (Operational) = RPR
Redundancy Mode (Configured) = RPR
Split Mode = Disabled
Manual Swact = Disabled Reason: Simplex mode
Communications = Down Reason: Simplex mode
client count = 4
client_notification_TMR = 60000 milliseconds
keep_alive TMR = 9000 milliseconds
keep_alive count = 0
keep_alive threshold = 18
RF debug mask = 0x0
7507R_SUPII_Plus#redundancy force-switchover
There is no STANDBY present. Failed to force switchover
Best Regards

The problem is with the following missed commands in your global configuration... Assuming Active RSP in slot 2, Standby RSP in Slot 3 and both RSP's have Slot 0 flash memory cards.
R(config)#hw-module slot 2 image slot0:
R(config)#hw-module slot 3 image slot0:
R#hw-module sec-cpu reset
Refer the following links for more information...
http://www.cisco.com/en/US/products/sw/iosswrel/ps1612/products_feature_guide09186a0080080a6f.html
http://www.cisco.com/univercd/cc/td/doc/product/core/cis7505/rte_swit/6586rsp8.htm#213565

Similar Messages

  • I have a serious contacts redundancy problem.  First I have multiple email account formats, e.g., 2011 MacOutlook, 2008 Entourage, 2007 Window Outlook, iPhone Exchange and these are all connected to the same account.  The problem is I had up to 15 contact

    I have a serious contacts redundancy problem. 
    First I have multiple email account formats,e.g., 2011 MacOutlook, 2008 Entourage, 2007 Window Outlook, iPhone Exchange and these are all connected to the same account. The problem is I had up to 15 contacts for the same person. 
    I deleted the Entourage contacts as that seemed to be the program that was causing the problems.  When I synced this morning, now all my contacts are gone from every where. 
    How can I restore to my last back?  If I restore, it will ask to restore to the back that was just made… which has no contacts?  
    Help would be greatly appreciated !!

    I have a serious contacts redundancy problem. 
    First I have multiple email account formats,e.g., 2011 MacOutlook, 2008 Entourage, 2007 Window Outlook, iPhone Exchange and these are all connected to the same account. The problem is I had up to 15 contacts for the same person. 
    I deleted the Entourage contacts as that seemed to be the program that was causing the problems.  When I synced this morning, now all my contacts are gone from every where. 
    How can I restore to my last back?  If I restore, it will ask to restore to the back that was just made… which has no contacts?  
    Help would be greatly appreciated !!

  • XSLT Redundancy Problem

    Hi all,
    I have a serious problem with redundancy in XSLT. In my conversion XML input file, I have many tags like that:
    <tag1 name="..." date1a="..." date1b="...">
    </tag1>
    <tag2 name="..." date2="..." date2b="...">
    </tag2>
    All with different tag names and different attribute names (although the attributes hold similar information).
    Now what I need is a template that could be applied to a combination of tag-attribute, e.g. to tag1, using the values of date1a.
    My current solution has a template for each combination - which is very redundant.
    Any idea how to optimize this without changing the input file? I thought of global variables to store the attribute value but they are "final", so that does not work. Local variables seem to be limited to a single template, so they cannot be used either.
    Any help will be appreciated,
    Ralf

    Hi,
    This is a typical line from the input file:
    <WebAppM3.SingleInfo xmi.id="a71" xmi.uuid="7e33f8b02e0f30f5:00a981ca:000000f425774313:8181" Name="StaticPage" Entity="a67 a66" SubView="a72 a73">
    </WebAppM3.SingleInfo>
    This is a typical transformation rule for it (the relevant rules are for Entity and SubView:
    <xsl:template match="WebAppM3.SingleInfo">
    <!-- Each instance of SingleInfo gets its own class using as much of its old values as
    possible-->
    <Model.Class annotation="" isRoot="false" isLeaf="true" isAbstract="false"
    visibility="public_vis" isSingleton="false">
    <xsl:copy-of select="@xmi.id"/>
    <xsl:copy-of select="xmi.uuid"/>
    <xsl:attribute name="name">
    <xsl:value-of select="@Name"/>
    </xsl:attribute>
    <Model.Namespace.contents>
    <xsl:apply-templates select="descendant::WebAppM3.M2Attribute"/>
    <xsl:apply-templates select="attribute::Entity" mode="link"/>
    <xsl:apply-templates select="attribute::SubView" mode="link"/>
    </Model.Namespace.contents>
    </Model.Class>
    </xsl:template>
    <xsl:template match="@Entity" mode="link">
    <!-- References to the new Associations of type DBConnection -->
    <xsl:variable name="data" select="stringhelp:tokenize(.)"/>
    <xsl:variable name="anc_id" select="ancestor::WebAppM3.SingleInfo/@xmi.id"/>
    <xsl:variable name="targets" select="../WebAppM3.DataSet"/>
    <xsl:for-each select="$data/token">
    <Model.Reference annotation="" scope="instance_level"
    visibility="public_vis" type="a23" isChangeable="true">
    <xsl:attribute name="name">Entity_<xsl:value-of select="."/></xsl:attribute>
    <xsl:attribute name="xmi.id">
    <xsl:value-of select="$anc_id"/>_<xsl:value-of select="."/>
    </xsl:attribute>
    <xsl:attribute name="xmi.uuid">
    <xsl:value-of select="$anc_id"/>_<xsl:value-of select="."/>
    </xsl:attribute>
    <xsl:attribute name="referencedEnd">
    TEST
    </xsl:attribute>
    <Model.StructuralFeature.multiplicity>
    <Model.MultiplicityType lower="0" upper="-1" is_ordered="false" is_unique="false" />
    </Model.StructuralFeature.multiplicity>
    </Model.Reference>
    </xsl:for-each>
    </xsl:template>
    <xsl:template match="@SubView" mode="link">
    <!-- References to the new Associations of type DBConnection -->
    <xsl:variable name="data" select="stringhelp:tokenize(.)"/>
    <xsl:variable name="anc_id" select="ancestor::WebAppM3.SingleInfo/@xmi.id"/>
    <xsl:variable name="targets" select="../WebAppM3.DataSet"/>
    <xsl:for-each select="$data/token">
    <Model.Reference annotation="" scope="instance_level"
    visibility="public_vis" type="a23" isChangeable="true">
    <xsl:attribute name="name">Entity_<xsl:value-of select="."/></xsl:attribute>
    <xsl:attribute name="xmi.id">
    <xsl:value-of select="$anc_id"/>_<xsl:value-of select="."/>
    </xsl:attribute>
    <xsl:attribute name="xmi.uuid">
    <xsl:value-of select="$anc_id"/>_<xsl:value-of select="."/>
    </xsl:attribute>
    <xsl:attribute name="referencedEnd">
    TEST
    </xsl:attribute>
    <Model.StructuralFeature.multiplicity>
    <Model.MultiplicityType lower="0" upper="-1" is_ordered="false" is_unique="false" />
    </Model.StructuralFeature.multiplicity>
    </Model.Reference>
    </xsl:for-each>
    </xsl:template>
    Cheers,
    Ralf

  • DLSw redundancy problem

    | |
    ****** ******** | |
    * *--CPA1--*7206-1*--| ******** |
    *IBM * ******** |--*7206-3*--|
    * * | ******** |
    *HOST* | |
    * * ******** |--******** |
    * *--CPA2--*7206-2*--| *7206-4*--|
    ****** ******** | ******** |
    | |
    7206-1 and 7206-2 manage the the connection to the IBM host with a CPA card eich other.
    7206-3 and 7206-4 manage the connection between the central site and the remotes sites via frame-relay network, they are border peer and DLSw load balancing coded. also manage the connection between a LAN of the central site and with bridge-group to reach an IBM HOST via 7206-1 and 7206-2.
    The following is the configurations:
    7206-3:
    dlsw local-peer peer-id 3.3.3.3 group 3 border keepalive 0 promiscuous
    dlsw load-balance round-robin
    dlsw remote-peer 0 tcp 1.1.1.1 timeout 90
    dlsw remote-peer 0 tcp 2.2.2.2 timeout 90
    dlsw cache-ignore-netbios-datagram
    dlsw bridge-group 1
    7206-4:
    dlsw local-peer peer-id 4.4.4.4 group 3 border keepalive 0 promiscuous
    dlsw load-balance round-robin
    dlsw remote-peer 0 tcp 1.1.1.1 timeout 90
    dlsw remote-peer 0 tcp 2.2.2.2 timeout 90
    dlsw cache-ignore-netbios-datagram
    dlsw bridge-group 1
    The probleme is:
    In the central site, i see a slowness in the connection, and it is random, sometime a connction is very fast, other time it is very slow, and it can take up to 1,5 minute to connect.
    After all that, i coded a dlsw redundancy in the 7206-3 and 7206-4 FastEthernets, the problem still exist in the LAN, and it cause a trouble in some remotes sites connected with frame-relay, that loose a connection to HOST.
    Thank You for your help.

    1. To make load balancing work you will have to add the following commands:
    dlsw timer explorer-wait-time ...
    source-bridge ring-group ...
    Ring-group number must be the same on 7206-3 & 7206-4 - it prevents unnecessary explorer flooding.
    2. If bridge-group 1 on 7206-3 & 7206-4 shares the same Ethernet domain you must use DLSw+ Ethernet Redundancy feature.
    3. Border peers in the same group must be in full-mesh and all members in the group must peers with all border peers in this group. On 7206-3 & 7206-4 you will have to add the following commands:
    (7206-3)# dlsw remote-peer 0 tcp 4.4.4.4 ...
    (7206-4)# dlsw remote-peer 0 tcp 3.3.3.3 ...

  • Redundancy Problems

    I am trying to implement redundancy on two computers using Lookout v6.0.2.  One computer (primary) has an unlimited development license, and the other (secondary) has a unlimited runtime license.  The computers also have client licenses installed on both.  The server process is loaded on both machines using the same name.  When I developed the client process I used a full pathname for everything versus Symbolic Link, because I have a large amount of discrete controls (pushbuttons, etc.) connected to field devices that I wanted both computers to access. 
    The client and server processes work fine during normal operation with no problem. 
    I have created a process called "redundancy" on the client machine per the developer's manual.  This process is setup to load the server process in the event of a failure on the primary, but it doesn't work.  My state file is being updated from machine to machine properly, but the server process never loads on the client machine.
    I have tried to check for syntax or other errors in the loader and monitor blocks and everything looks OK.  I have tried shutting down the process only, Lookout, and powering down the primary computer with no success.
    Any suggestions would be appreciated.

    Has anyone had any success with having the process files (*.l4p) on a shared volume? (and using redundency using the Loader and Monitor objects)
    I tryed this and it did not work...
    Create a test process, and name it Master. Save Master on a network drive/folder.
    Create a test process, and name it Monitor. Save Monitor on a network drive/folder. (yes, the loader is pointed to the Master file on the shared network drive/folder, and yes, i can open/run Master by clicking File/Open on this computer).
    Run Master on one computer
    Run Monitor on another computer
    Shut down Master
    Observations: Monitor notices that Master is not running any more, but Loader doesn't do anything, and no alarm is generated.
    Make these changes:
    copy process file Master to the local c:\program files\national instruments\lookout 6.1\
    change the loader to run the Master file from the local hard drive.
    Try experiment again.
    Everything works as expected
    any ideas? Can anyone duplicate this issue?
    thanks
    Rich

  • Cisoc 4507R-E redundant sup card issue

    Hi All,
    I have cisco 4507R-E switch with sup6-E. I have recently upgraded IOS on same switch. After IOS upgradation, active and redundant sup card redundancy mode is RPR. I want SSO mode for redundancy. How can I do that?
    Please suggest.

    Hi,
    Have a look at this doc on how to make the sups redundant
    You need to have the same exact IOS and license in both sups.
    http://www.cisco.com/c/en/us/td/docs/switches/lan/catalyst4500/15-1-2/XE_340/configuration/guide/config/RPR.html#wp1125437
    HTH

  • Power Redundancy problem for cisco 3750 stack switches

    Hi Team,
    I have installed and configured cisco 3750X series switches in stackwise. Those are having dual power supply.
    Power redundancy test performed:
    1. Removed one of the power supply and inserted it back.
    2. once the first power supply is ready, removed another power supply and switch got rebooted.
    please find the below stack-power output:
    JP2-RDC-DIS-02#sh stack-power detail
    Power Stack           Stack   Stack    Total   Rsvd    Alloc   Unused  Num  Num
    Name                  Mode    Topolgy  Pwr(W)  Pwr(W)  Pwr(W)  Pwr(W)  SW   PS
    Powerstack-2          SP-PS   Stndaln  700     477     223     0       1    2
    Powerstack-1          SP-PS   Stndaln  700     477     223     0       1    2
    Power stack name: Powerstack-2
        Stack mode: Power sharing
        Stack topology: Standalone
        Switch 2:
            Power budget: 223
            Power allocated: 223
            Low port priority value: 22
            High port priority value: 13
            Switch priority value: 4
            Port 1 status: Not connected
            Port 2 status: Not connected
            Neighbor on port 1: 0000.0000.0000
            Neighbor on port 2: 0000.0000.0000
    Power stack name: Powerstack-1
        Stack mode: Power sharing
        Stack topology: Standalone
        Switch 1:
            Power budget: 223
            Power allocated: 223
            Low port priority value: 22
            High port priority value: 13
            Switch priority value: 4
            Port 1 status: Not connected
            Port 2 status: Not connected
            Neighbor on port 1: 0000.0000.0000
            Neighbor on port 2: 0000.0000.0000
    Can anyone help what went wrong here?
    Thanks
    Manish

    Cosmetic bug
    CSCui21029    3750X Stack no standalone stays in running configureation as standalone
    Symptom:
    When you are configuring a 3750x stack and initially putting it into a stack ring topology by configuring the following.
    Switch(config)#stack-power switch 1
    Switch(config-switch-stackpower)#sta
    Switch(config-switch-stackpower)#no stan
    Switch(config-switch-stackpower)#no standalone
    You will see that in the running configuration it shows up as standalone mode
    stack-power switch 1
    switch mode: standalone
    stack-power switch 2
    switch mode: standalone
    Conditions:
    3750X stacks with any license level
    Workaround:
    none

  • Redundancy Problem!

    How Clear the Session After we complete the Execution..
    session.invalidate();
    is not working ...
    rs2=st.executeQuery("select deptname from department where collid='"+coll1+"' ");
    while(rs2.next())
    //deptname= rs2.getString(1);
    data1.add(rs2.getString(1));
    i++;
    out.print("dept"+dept);
    s.setAttribute("dep", data1);
    HEre am setting array values,and getting session on another page..here am facing issue as it filling up my drop down box when am using previous dropdown box
    in first dropdown am using submit button..so when i use change dropdown it automatically moves servlet page,and again it appending the same values againg,so redundancy occurs here..
    so i want to clear Session..how it is possible

    you only give us suggestion for filling another drop down by selecting one drop down value in jsp..
    its ur suggestion..
    First of all: there is no such thing as a combo box (an editable dropdown) in HTML. You probably mean a plain vanilla dropdown (the HTML <select> element).
    That said, you should not mingle raw Java code in a JSP file. Use Java classes for raw Java code.
    There are several ways to achieve this:
    1) Submit form to a servlet during the onchange event of the 1st dropdown (you can use Javascript for this), let the servlet get the selected item of the 1st dropdown as request parameter, let it obtain the associated values of the 2nd dropdown from the database, let it store them in the request scope. Finally let JSP/JSTL display the values in the 2nd dropdown.
    2) Print all possible values of the 1st and 2nd dropdown out as a Javascript array and make use of a Javascript function to fill the 2nd dropdown based on the selected item of the 1st dropdown during the onchange event of the 1st dropdown. No form submit and no server cycle is needed here.
    3) Make use of XMLHttpRequest in Javascript to fire an asynchronous request to a servlet during the onchange event of the 1st dropdown, let the servlet get the selected item of the 1st dropdown as request parameter, let it obtain the associated values of the 2nd dropdown from the database, return it back as XML or JSON string. Finally let Javascript display the values in the 2nd dropdown through the HTML DOM tree (the Ajax way, as suggested before).
    Edited by: BalusC on 2-mrt-2009 0:04 (typo)
    http://javascript.gakaa.com/table-cols.aspx

  • RAC redundancy problem

    Hi,
    We have a RAC system which is running on Windows Server 2008 R2 and the oracle version is 11g.
    When we close one of the nodes, other node can not take the sessions and loads then our database becomes unavailable.
    What could be the reasons?

    what version 11g??? ALWAYS POST THE FULL VERSION NUMBER. (and yes, I was yelling!!).
    Did you properly configure SCAN? https://www.lmgtfy.com/?q=oracle+scan+pdf
    Proper DNS configuration
    Proper {local | remote}_listener parameters. And RAC on Windows?? Seriously????

  • I have a problem for cisco catos 4232 switch.

    i have entered the enable mode in cisco catos 4232 switch,but always there have been a remarks appearing all the time as follows:
    2006 Feb 23 14:23:34 %SYS-4-P2_WARN: 1/Host 02:01:00:00:00:00 is flapping betwee
    n port 3/34 and port 3/33
    why?
    thank you!
    Best Respects!
    guominquan

    Hi Friend,
    The message indicates that your Catalyst 4500/4000 switch has learned a MAC address that already exists in the content-addressable memory (CAM) table, on a port other than the original one. This behavior repeatedly occurs over short periods of time, which means that there is address flapping between ports.
    If the message appears for multiple MAC addresses, the behavior is not normal
    If the error message appears for one or two MAC addresses, locate these MAC addresses in order to determine the cause. Issue the show cam mac_addr command in order to identify from where these MAC addresses have been learned. In this command, mac_addr is the MAC address that the error reports as flapping.
    After you determine between which ports this MAC address is flapping, track down the MAC address. Connect to the intermediate devices between your Catalyst 4500/4000 and the device that has the problem MAC address. Do this until you are able to identify the source and how this device connects to the network.
    Note: Because the MAC address is flapping between two ports, track down both of the paths.
    These are other issues that can cause this message to appear
    1) Server NIC redundancy problem
    2) HSRP
    3) EtherChannel misconfiguration
    4) Host reflects packets back onto the network
    Check this link for complete details of this problem and how to troubleshoot
    http://www.cisco.com/warp/customer/473/176.html#subtopic1k
    HTH, if yes please rate the post.
    Ankur

  • Distiller 9 issue after a new update to Adobe Acrobat Pro (version 9.3)

    After installing the update, I was asked to reboot my HP Pavilion dv9617nr Notebook Computer (Windows Vista Home Edition). After the reboot, I was given an error message which explained that the ICC Color profiles in Adobe Distiller 9 could not be found and that I should reinstall my Adobe Acrobat 9 software. My question is: Yes I probably should reinstall my software but this will only be a temporary solution that will become a redundant problem when I again attempt the same update that caused the probllem initially. How can I simply back out the update? What if anything has been done to replace the update that caused the problem. Has there been any posts to this or other forums about this update problem? Please help me resolve this issue.

    Adobe Tech support was most helpful on this.  First download the updated
    Distiller ICC profile files at:
    http://www.adobe.com/support/downloads/thankyou.jsp?ftpID=4075&fileID= 3790
    Unzip the file and copy only the *.icc files (without regard to the subfolders that they are in - in other words, take the files out of each of the subfolders) to the followng folder in Windows 7:
    c:\windows\system32\spool\drivers\color
    These new files will probably overwrite some old ones.
    This solved the problem for me.
    This is actually the best solution though I found that instead of copying all the .icc files to the windows\sys...  folder, all you need to do is copy the 3 Video files from the RGB folder (VideoHD.icc, VideoNTSC.icc, and VideoPAL.icc).  Once you add these three files to  c:\windows\system32\spool\drivers\color  you will be good to go.
    It seems that this was an error on the part of Adobe in that there is no reason to include Video files for printing.  Nevertheless, the distiller will look for these and return the ICC profile error message if those files are not present.

  • Macbook is always trying to connect to an other one which is not switched on

    Hello,
    I have a redundant problem :
    My Mac Book is always trying to connect to an other one which is not  switched on.
    I used Drive mounter, but I deleted the device that my Mac has tryed to connect with.
    Have you a solution to stop this behavior
    Thanks

    This sounds like it may be a question for the developers of Drive Mounter, as it sounds like that may still be trying to connect to that remote volume.
    You could rule out other things before contacting them by checking your login items in System Preferences -> Users & Groups. Make sure that volume is not in that list. Also, check any other apps or services that may be automatically making use of that volume, such as Time Machine.

  • Dynamic Link Blending Modes

    Hello Premiere Pro´s
    Is there a way where an After Effects Dynamic Linked comp imported into Premiere Pro can preserve its blending modes to the outside layers in a sequence?
    A little like the logic of the continuously rasterize option that exists in After Effects.

    That´s what i was suspecting, but that feature would be a great add. ( Plus solving another workflow issue i´m having also with dinamic lynk. )
    My feature is very heavy on the use of dynamic linking. And in this case i have a Premiere sequence "edit" that i would like to be imported into AFX via dinamic link - then compose FX on top and then re-import that AFX Comp into the same Premiere Project into a "final" sequence. But this workflow gives me loop redundancy problem that makes Premiere dont update its dynamic linking, unless i close and open the app.
    So my second try was importing the "effects ae comp" into premiere and hope there could be some workaround where the blending modes could pass into dinamic link, like the logic of the continuously rasterize option.
    But thanks for the reply and help, Jo.
    Regards

  • Rman optimization conflicting with obsolete backups?

    Hello,
    Suppose I have the following configuration.
    I have a partitioned table with each (month-)partition on a different tablespace. I need to keep 10yrs of data. Switch a tablespace with e.g. April2008 data to read-only.
    Rman set REDUNDANCY 1 and OPTIMIZATION ON.
    Now redundancy 1 should keep only 1 backup of each file wouldn't it?
    I do a backup database: it backups every file.
    I do a backup database again: it backups every file again.
    I do a backup database third time: it says "skipping file n allready backed up 2 times".
    Now I do a report obsolete: it marks one of the backups op my file with April2008 data as obsolete.
    After performing a delete obsolete, it is gone.
    Next day I do a backup database: it backups every file again, so I have two!! backups of file n.
    I would like to have only 1 and just 1 backup of the file, and it should never be backed up anymore. The redundancy cannot be set to zero.
    How to deal with this?

    I think we disagree on this. I can make a single-partition rman backup if:
    It is on it's own tablespace, on it's own datafile. No problem with that. It is only the redundancy-problem I have.
    Even if I configure redundancy to 1, it makes two backups, and one of these is obsolete. This obsolete gets deleted in a 'delete obsolete' action, and a new obsolete will be created with the next backup.
    How would you backup the database with 120 partitions as I described above? Each day a full backup??

  • Ping failes for fqdn with two records, first record unavailable

    Scenario is:
    10.80.56.147 = DOWN (unavailable)
    10.80.56.148 = UP (available)
    bash-2.05# nslookup cscs.floreffe.se
    Server: idns.floreffe.se
    Address: 10.80.56.186
    Name: cscs.floreffe.se
    Addresses: 10.80.56.147, 10.80.56.148
    bash-2.05# ping cscs.floreffe.se
    no answer from cscs.floreffe.se
    Why does ping fail? Why does not secondary IP address being used.

    BadboyRune wrote:
    Hi,
    Thanks for your answer, I have alredy disabled nscd on the system. So Solaris doesn't make some kind of check if the first IP is reachable, or saves both addresses? No. That is uncommon in most UNIX applications. The application is usually trying to operate on a single address, and uses names just to look up the address that it will use.
    There are more robust applications that become more complex with dynamic name changes supported, real-time failover support, etc, but that's not an OS feature, it's handled per-application. 'ping' does not do so. TCP connections are bound to a specific address. For an application to use TCP and multiple addresses, it has to recognize the problem, then re-establish a new connection with the host, etc... This is not commonly done.
    The reason for the question in the first place are the redundancy problems we have faced. If the first address isn't reachable, the second one has to be used...
    What's the application? Why is the address going down? In some cases this could be handled through the use of IPMP or maybe through a load-balancer application/appliance. But that would depend on your network topology and the actual problem that you're encountering.
    Darren

Maybe you are looking for

  • How do I book mark a page in a downloaded book?

    I downloaded this book in PDF form but I cannot bookmark the last page I read so I have to constantly scroll through all the read material to try and find my place.  This is a real pain.  I cannot get the usual tool page of Adobe so I could even high

  • Unwanted name in Mail

    A few weeks ago, Mail started calling me by "Friends of ECSONG"<address> instead of what I want, "John Sankey"<address>. I can't find where this unwanted name is stored or how to get rid of it. I've gone through the preferences (full name in Account

  • Stop weblogic services using StartStopServices.xml parameter leaves cmd.exe

    When using the "Start > All Programs > Oracle Business Intelligence > Stop BI services" function it calls the StartStopServices.cmd file. This file then references the StartStopServices.xml file using the following statement; <target name="stop_all"

  • HOST Command in oracle forms 10g

    Hi, I need to use HOST command to run an OS(Unix) command in Oracle Forms 10g. Its throwing a non-oracle exception during run time. Is there any kind of configuration/settings that I need to check before using HOST command? Is there any way to captur

  • Flash doesn't work on mac 10.9

    i install flash several times and i showed finished. but when i want to watch video , it shows Missing plug-in. so what should i do ?