What is the errror

2006-06-27 20:19:53 Thread-1132 WARN http: snmehl_connect: connect failed to
(<hostname>:5501): Connection refused
(error = 79)
2006-06-27 20:19:53 Thread-1132 ERROR pingManager: nmepm_pingReposURL: Cannot connect to
can someone telme about this error?

Please read this thread http://forums.oracle.com/forums/ann.jspa?annID=718
and stop abusing this forum.
Sybrand Bakker
Senior Oracle DBA

Similar Messages

  • What are tools used by the xi/pi system ,to bug the errrors

    hi gurus,
    what are tools used by the xi/pi system ,to bug the errrors.
    regards,
    subba reddy

    For all kind of errors the only tool available which bugs or say alerts for the error is Alert Management.
    Alerts are messages which can be raised in case of failure.
    Alerts - used for system errors, u can send a mail or msg whenever there is any failure. alert configuration can be done in t-code - ALERTCATDEF.
    Alert Categrory can be defined in transaction ALRTCATDEF on abap stack. we can assign receipients to every alert category which specifies who will receive alert in case of error.
    Alert rules can be defined in RWB.
    for configuring alerts u need follwing roles first for defining or creating alertcategory
    the roles reuired to access the RWB are:
    1. SAP_XI_RWB_SERV_USER
    2. SAP_XI_RWB_SERV_USER_MAIN
    The roles for the Alert Management are:
    1. SAP_ALM_ADMINISTRATOR
    2. SAP_ALM_CUSTOMIZER
    3. SAP_BC_ALM_ALERT_USER
    Once this is done
    alert category is defined and then tested
    For Alert please see
    The specified item was not found.
    http://help.sap.com/saphelp_nw04/helpdata/en/56/d5b54020c6792ae10000000a155106/content.htm
    For details follow this link,
    http://help.sap.com/saphelp_nw70/helpdata/en/80/942f3ffed33d67e10000000a114084/frameset.htm

  • What is the replacement for design view in in flex builder 4.7 for cs extension builder?

    Because design view is not available in flash builder than what is the use of extension builder in UI designing now we have to do design UI with xml which is very time consuming and boring  if there is any replacemnt for it than please help me .1 more thing i want to know is that when i make new default project in extension builder(flash builder 4.6) than it also not able to load design mode errror is
    C:\Program Files\Adobe\Adobe Flash Builder 4.6\eclipse\plugins\com.adobe.cside.libsinstaller_2.0.0.4-33034\archive\cslibs\2.0\4.5\re lease\apedelta.swc- not respondingSWC file failed to load. Any component dependent on this SWC file will not be displayed in the Design Mode.The SWC may have failed to load because of:
    *  Incompatible definitions caused by usage of a different SDK version
    *  Missing referred class definitions

    I have researched this quite considerably and my understanding is that Adobe have no intention of supporting Design View any more for Extension Builder.  In my opinion a very disappointing decision and one that is hard to comprehend.
    The best workaround I can find is to create the majority of your design in a parallel, non Extension Builder, project and then convert/import your design into your Extension.  This is by no means as satisfactory as having Design View for the Extension you are writing but it is better than simply creating your layout by guess work/trial and error.
    Although this has not been announced by Adobe, I have a suspicion that the reason they have decided not to put any further resources into fixing Design View is that Extension Builder as we know it is going to be abandoned soon, probably replaced with an HTML5/JavaScript method of building extensions.  My concern with this is that, other than wanting reassurances that there will be backward compatibility support for old extensions, There will not be a way of compiling an extension in a way that prevents people from seeing your code.
    This is all speculation and I guess we will have to wait and see what happens.  Hope this has helped.

  • Grafhic not work...  what is the reason ?

    hello,
    In the foolowing code I reproduced an "anomalous" behavior that I get when I use graphic functions.
    In the JPanel "PanelToDiplayGraphic", I simply write some words....
    This usually works;
    but if I (before to create the panel) read some data from a database, then the words are not displayed...._
    (I need to get informations from the database to use in the grafhic functions).
    I am not able to understand the reason why this can happen .
    Same one is able to explain me what is the reason ???
    // To use this program requires to have a valid connection to a database.
    // Here the connection comes from MakeConnectionToDataBaseMedident class and his the getConnection() function.
    // Of course, the String sqlStr in the accessToDataBase() function have to be properly changed too...
    package prove.volanti.storePicImages;
    import databaseManagement.MakeConnectionToDataBaseMedident;
    import java.awt.BorderLayout;
    import java.awt.Graphics;
    import java.sql.Connection;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import java.sql.Statement;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    public class TestForBug extends JFrame {
        public TestForBug() { // constructor
            setTitle("title");
            setVisible(true);
            setSize(200, 150);
            this.setDefaultCloseOperation(EXIT_ON_CLOSE);
            // ======== part of program to chang to apply the test ...
            accessToDataBase(); // To test the anaomalus behavior put this row in comment
            // ======== part of program to chang to apply the test ...
            PanelToDiplayGraphic panelToDiplayGraphic = new PanelToDiplayGraphic();
            setLayout(new BorderLayout());
            this.add(panelToDiplayGraphic, BorderLayout.CENTER);
        }  // constructor
         * Simple function to access to tatabase
        private void accessToDataBase() {
            MakeConnectionToDataBaseMedident makeConnectionToDataBaseMedident = new MakeConnectionToDataBaseMedident();
            Connection connection = makeConnectionToDataBaseMedident.getConnection();
            Statement statement = null;
            ResultSet resultSet = null;
            String sqlStr = "Select * from skdPzPicsDetails   ";
            boolean validState = true;
            try {
                statement = connection.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_UPDATABLE);
                resultSet = statement.executeQuery(sqlStr);
                validState = resultSet.last();
                int rowsNmbr = resultSet.getRow();
                System.out.println("Nmbr. rows = " + rowsNmbr);
                validState = resultSet.first();
                System.out.println("validState = " + validState);
                String tit = resultSet.getString("picTitle");
                System.out.println("Title =  " + tit);
            } catch (SQLException e) {
                System.out.println("Errrore = " + e.getMessage());
                e.printStackTrace();
        }  // accessToDataBase()
        static public void main(String[] args) {
            TestForBug xxxx =
                    new TestForBug();
        } // main()
         * Panel to display graphic
        class PanelToDiplayGraphic extends JPanel {
            @Override
            public void paintComponent(Graphics g) {
              g.drawString("TEST for use of the Graphic " , 10, 20);
    //            g.drawImage(image, 0, 0, this.WIDTH, this.HEIGHT, null);
        }// DiplayGraphicPanel
    } // TestForBugthank you regards
    tonyMrsangelo.

    thank you Encefophalopathic...
    The window seem to be normal (not froze), but I understand now that the cause of the anomaly could
    came from the parallelism of the threads ....
    I'll look in this way...
    Thank you
    By the course... I remember you gave me an advice some days ago ..
    you said :
    Finally, don't add a mouse listener to a JButton when an action listener,
    a class specifically built to capture button presses, is available.
    There are exceptions to this rule, but I don't see any here. I didn't answer then, but I should like know where I could learn more about how and where to use the listener class...
    I see this tip is more complex than it seemed to be...
    Now, for example, I need to catch event when an element in a checkBox is selected..
    I use event listner for this purpouse, but in this way I get the attivation of the event also
    when the comboBox component is created...
    How I sayd, I only should like to have a good link to read more about..
    thank you again
    regards
    tonyMrsangelo

  • What are the common errors we get in supporting project

    can any body reply what are the common errors we get in supporting project
    for abapers tickets will get or not.
    what type of tickets generally get regarding reports.

    <b>SAP Tickets</b> are nothing but problems or issues raised by the end
    customer in a company where end users are running SAP project.
    Once the SAP project is implemented, support phase begins. Support
    team is responsible for solving the tickets/issues in day-to-day
    business.
    For any support project, customer will set up Help Desk. If any
    problem occurs customer will call Help Desk and register the
    issue/Ticket.
    Different companies use different software products to manage SAP
    Tickets. Remember this software is not provided by SAP. It is third
    party software. There are many software products in the market like
    Manage Now et c. You can call these software products as tools.
    All tools will provide the common attributes which are listed below-
    1) Every user will be provided with user name and password to enter
    into the tool
    2) We can see the tickets assigned for a particular user name.
    3) You can list all open tickets by giving the Date Range
    4) You can list all closed tickets by giving the Date Range
    5) You can list out all the open tickets assigned for an User
    6) You can list out all the closed tickets assigned for an User
    7) You can see the description of the Ticket, by entering the Ticket
    Number. You can see who had raised the Ticket, what is the problem.
    What is the severity of the Ticket?
    There are lot many other attributes like you can transfer the Ticket
    to another user etc.
    <b>What is the severity of the problem Ticket?</b>
    When a Ticket is raised, it will be given severity. There are
    following severities. It may vary from company to company.
    Severity 1
    Severity 2
    Severity 3
    Severity 4
    The severity will be decided based on the business critical impacts.
    If there is large impact on the business it
    will be given 1 severity, if it is having least impact then it will be given 4.
    Severity 1 problem tickets should be solved in 8 hours.
    Severity 2 problem ticket should be solved in 16 hours.
    Severity 3 problem ticket should be solved in 15 working days.
    Severity 4 problem ticket should be solved in 30 working days.
    Again the no of days may vary from one company to another.
    All these things will be decided when giving the contract to the IT
    company. The agreement is called as "SLA".
    SLA stands for Service Level Agreement.
    What happens if a particular ticket is not solved by the IT company
    according to the SLA/Contract?
    The Customer imposes fine on IT company as per the contract/SLA.
    <b>Errors in Extraction</b>
    1) RFC connection lost.
    2) Invalid characters while loading.
    3) ALEREMOTE user is locked.
    4) Lower case letters not allowed.
    5) While loading the data i am getting messeage that 'Record
    the field mentioned in the errror message is not mapped to any
    infoboject in the transfer rule.
    6) object locked.
    7) "Non-updated Idocs found in Source System".
    8) While loading master data, one of the datapackage has a red light
    error message:
    Master data/text of characteristic ZCUSTSAL already deleted
    1)extraction job aborted in r3
    2) request couldnt be activated because theres another request in the
    psa with a smaller sid
    3) repeat of last delta not possible
    4) datasource not replicated
    5) datasource/transfer structure not active
    <b>Issues faced during the implementation :</b>
    1. Slippage of milestones
    2. Incorrect or wrong design
    3. Reporting format problems
    4. Data not matching or reconciling problems
    5. Issues discovered during testing leading to redesign
    6. Performance issues
    7. Requirements misinterpretation
    9)check the data same in source system and target system ( i mean
    suppose u are extarcting from r/3 after loading check ur data r/3 and
    bw same or not.
    10)that is abap code, i didnt understand ur question properly.
    11)
    12) generic extarction, if ur businees contect satisfy ur requirement
    u go for generic, suppose u need data from different tables go generic
    with view with 1:1 relation 1:M relation for function module.
    13)v3 update back groud job is in lo
    14)its superior info object, u can find this in master data tab .
    15)
    16)tuning we will go for improve query performance (compression,
    aggregates, partation, index, rollup, precalculated web tneplates.)
    17) rsa7(check with some one)
    18)bw statics for find data base time and olap time and frontend
    time(based on u can improve query performance create like aggra comp ,
    indices etc..)
    19) direct chain only one chain , meta chain if u have more than one chains
    load errors u can solve manually, other than load errors u can wait
    right click and repeat.
    20)
    21) u cn cteate other cube and traansfer, but data space waste.(bec
    structures will be deffi)
    22) u mean data source enhancement.or not(let me know)
    23)rsap0001( for customer exit variables) 001 for transaction data 001
    attributes, 003 text 004 hierchies.
    24)web application design , its like same bex, but report will execute
    in browser.
    25)
    26) arrangement of process are called process type and we can use
    varient and start process for back ground jobs.
    <b>Don't forget to asign points</b>
    regards
    ravish

  • What are the mandatory fields while creation of material master in differen

    what are the mandatory fields while creation of material master in different views?

    Hi Gopi,
      This is purely depends on the function configuration, which would be done MM consultants.  Kindly check with them.
    thanks & regards
    Kishore Kumar Maram

  • When would I use an if, for or while statement in Small Basic and what is the difference between the three?

    I have a Y9 Computer Science Exam next week and I know that this will probably be one of the questions on it so I need to know the answer. What is the difference?

    An If statement executes once IF the statement is true:
    If 1 = 2/2 Then
    Textwindow.writeline("True")
    EndIf
    A While statement executes WHILE the statement is true:
    While 4 = 2+2
    'Will keep looping while it is true
    EndWhile
    A For statement loops a number in increment:
    For i = 1 to 10
    'Every time through, i gets bigger by one until it equals 10
    EndFor
    It is written: "'As surely as I live,' says the Lord, 'every knee will bow before me; every tongue will acknowledge God.'" Romans 14:11

  • What is the diffrence betweensy-tabix and sy-index

    hi
    can any one suggest me
    what is the diffrence betweensy-tabix and sy-index
    Thanks & Regards
    kalyan.

    Hi Kalyan,
    This question has been answered many times on SCN. Please make a search before posting a thread.
    Read the Rules of Engagement.
    Happy Posting.
    Regards,
    Chandra Sekhar

  • I just updated to 10.9.3. I now cannot open Mail - it comes up with an error window and suggests it may be incompatible with this OS. What is the fix for this? Thanks

    When I try to open Mail from the launchbar it won't open and comes up with a window saying it may be incompatible with this version of OS X.
    What is the answer to fix this?!

    Backup for safety on at least two reliable drives.
    Reinstall using the combo update at http://support.apple.com/kb/DL1746
    You would be wise to quit all apps, disconnect all peripherals and preferably delete all email accounts before upgrading.

  • How can I use 2 Apple IDs in Itunes? I have 2 IOS Devices. They each have there own AppleID. What is the proper way to sync both of them to Itunes?

    How can I use 2 Apple IDs in Itunes? I have 2 IOS Devices. They each have there own AppleID. What is the proper way to sync both of them to Itunes? I wanted my teenager's AppleID to be different from mine so that she couldn't charge stuff to my AppleID, therefore I created me another one. Now when I go to Sync either device, it tells me that this IOS device can only be synced with one AppleID. Then I get a message to erase it, not going to do that, lol. If I logout as one ID and login as the other, will it still retain all synced information on the PC from the first IOS device? If I can just log in out of the AppleID, then I have no problem doing that as long as the synced apps, music, etc stays there for both. I am not trying to copy from one to the other, just want to make sure I have a backup for the UhOh times. If logging in and out on the same PC of multiple AppleIDs is acceptible then I need to be able to authorize the PC for both devices. Thanks for the help. I am new to the iOS world.

    "Method Three
    Create a separate iTunes library for each device. Note:It is important that you make a new iTunes Library file. Do not justmake a copy of your existing iTunes Library file. If iTunes is open,quit it.
    This one may work. I searched and searched on the website for something like this, I guess I just didn't search correctly, lol. I will give this a try later. My daughter is not be back for a few weekends, therefore I will have to try the Method 3 when she comes back for the weekend again. "
    I forgot to mention that she has a PC at her house that she also syncs to. Would this cause a problem. I am already getting that pop up saying that the iPod is synced to another library (even though she is signed in with her Apple ID to iTunes) and gives the pop up to Cancel, Erase & Sync, or Transfer Purchases. My question arose because she clicked on "Erase & Sync" by mistake when she plugged the iPod to her PC the first time. When the iPod was purchased and setup, it was synced to my PC first. When she went home, she hooked it up to her PC and then she erased it by accident. I was able to restore all the missing stuff yesterday using my PC. However, even after doing that it still told me the next time I hooked it up last night that the iPod was currently synced with a different library. Hopefully, you can help me understand all this. She wants to sync her iPod and also backup her iPod at both places. Both PCs have been authorised. Thanks

  • What is the best way to set up iTunes on our home network so all family members have access to all of our itunes library, even music we don't have on the cloud?

    I have five different people using 10 different apple devices on one itunes account in our family.  We have had trouble sharing.  What is the best way to set up itunes on our home network?  We have purchased music that sits on icloud, but we also have music we have imported from our previous cd library.  Our itunes program keeps crashing and dumping everyone's playlists.  So far we have all been using just the one desktop computer to sync to because we can't figure out how to share the same librarly and playlists on multiple computers in our home so devices can be synced at any location as well as playlists and purchases be made. 

    What is the best way to set up itunes on our home network? 
    One iTunes library per person.  One iTunes account per person.
    If people wish to share songs, they can make copies.
    When the inevitable day comes when the kids get older, you will not have to come back here and post asking how all that stuff can get separated!

  • What is the Best Safari Version for OS 10.9.5 Maverick on a MacBookPro, 2.4Ghz, 8 GB Mem.?

    What is the best Safari Version for OS 19.9.5 Maverick on a MacBook Pro. 2.4 Ghz, with 8 gb memory?

    The best version for Mavericks, in fact the only version, is an integral part of OS X. In other words you already have it.
    Its version number is 7.1.5.
    Keep OS X up to date: Update OS X and App Store apps on your Mac - Apple Support

  • When I click on 2014 month view in calendar iPhone 5 s stucks, lagging. What is the problem I don't know????

    When I click on 2014 month view in calendar iPhone 5 s stucks, lagging. What is the problem I don't know????

    Should read 'When I '''clicked''' on your update this a.m......

  • While defining a columnar table, what is the purpose of column store type

    Hi folks
    I have two questions related to columnar table definition.
    1. What is the purpose of column store type.
    While defining a columnar table, what is the purpose of column store type (STRING ,CS_FIXEDSTRING,CS_INT etc) , when I define a table using the UI I see that the column is showing STRING but when I goto EXPORT SQL it does not show.  Is this mandatory or optional ?
    2.VARCHAR Vs. CHAR - In the UI when I create the table I do not see the CHAR option , but I do see lot of discussion where people are using CHAR for defining the columnar table. Not sure why UI dropdown does not show it. I also read that we should avoid using VARCHAR as those columns are not compressed, is that true, I thought the column store gives compression for all the columns. Are there certain columns which cannot be compressed .
    Please let me know where I can find more information about these two questions.
    Poonam

    Hi Poonam
    the CS_-data types are the data types that are used internally in the column store. They can be supplied but it is not at all required or recommended to do so.
    SAP HANA will automatically use the correct CS_-data type for every SQL data type in your table definitions.
    To be very clear about this: don't use the CS_-data types directly. Just stick to the SQL data types.
    Concerning VARCHAR vs CHAR: fixed character data types are not supported anymore and don't show up anymore in the documentation.
    I have no idea why you believe that VARCHAR columns are not compressed but this is just a myth.
    create column table charcompr (fchar char(20), vchar varchar(20));
    insert into charcompr (
        select lpad ('x', to_int (rand()*20), 'y'), null from objects cross join objects);
    -- same data into both columns
    update charcompr set vchar = fchar;
    -- perform the delta merge and force a compression optimization
    merge delta of charcompr;
    update charcompr with parameters ('OPTIMIZE_COMPRESSION' ='FORCE');
    -- check the memory requirements
    select COLUMN_NAME, MEMORY_SIZE_IN_TOTAL, UNCOMPRESSED_SIZE, COUNT, DISTINCT_COUNT, COMPRESSION_TYPE
    from m_cs_columns where table_name ='CHARCOMPR'
    COLUMN_NAME    MEMORY_SIZE_IN_TOTAL    UNCOMPRESSED_SIZE   COUNT   DISTINCT_COUNT  COMPRESSION_TYPE
    FCHAR       3661                    70285738            6692569 20              RLE
    VCHAR       3661                    70285738            6692569 20              RLE
    We see: compression and memory requirements are the same for both fixed and variable character sizes.
    - Lars

  • I wonder to know what is the enterprise solution for windows and application event log management and analyzer

    Hi
    I wonder to know what is the enterprise solution for windows and application event log management and analyzer.
    I have recently research and find two application that seems to be profession ,1-manageengine eventlog analyzer, 2- Solarwinds LEM(Solarwind Log & Event Manager).
    I Want to know the point of view of Microsoft expert and give me their experience and solutions.
    thanks in advance.

    Consider MS System Center 2012.
    Rgds

Maybe you are looking for

  • Ipod shuffle with integrated cable?!?

    My son came home from school with what to all appearances is a 2nd gen ipod shuffle (bought from a friend that upgraded to the standard ipod). The only problem is that this shuffle has a 36"cable coming out of the side opposite the headphone jack. I

  • ELive TAB is missing. PSE 13

    I installed Photoshop Elements 13 form a original DVD, but there is no eLive tab. Only -quick, guided and expert. I have the Dutch version. How can I get the eLive tab on my menu bar?

  • IPhone 4 will not charge by wall outlet

    My IPhone will only charge on my Laptop. It will not charge by wall outlet. It use to, then it stopped. I have bought new plugs and everything but doesnt work. I have charged my Ipod by the same plugs and they work, so I am puzzled. any ideas?

  • HT204409 Many People Report Improved Performance Turning off WMM.

    I am confused by http://support.apple.com/kb/TS3727 On my NetGear WNR834 router I turned off WMM and got dramatically improved download speeds - from <1MBps to over 20MBps.  No other changes - just that one setting.  I got the same improvement on my

  • Can a person hold 2 position, where do you show in PA

    Hi All, In PPOM_OLD I can set up 50% for 2 position, for 1 person. How will you say 1 person is holding 2 position in PA.