Wierd behaviour in 10.2.0.2

Hi Guys,
I have this wierd behaviour.
I have the parameter *.sessions=885 in my spfile.
However few days back when i do a query in my db "show parameter sessions", the output is 1105.
can advise?
thanks

SESSIONS doesn't have to be explicitly set, most DBAs would only set PROCESSES and let Oracle auto-compute SESSIONS.
Since SESSIONS is not modifiable in memory, it is likely that it was modified when the instance was running with
ALTER SYSTEM SET SESSIONS=885 SCOPE=SPFILE;which would have updated the SPFILE but not changed the value for the instance currently running.
Go through your alert.log to see if any ALTER SYSTEM has been issued since the database instance was started up.
Hemant K Chitale

Similar Messages

  • Wierd Behaviour of IF then ELSE standard function

    Hi All,
    I am facing a very wierd behaviour of the IF then ELSE function in a mapping.
    Condition to be checked:   if GDS_id = 1, then (condition 1 -  RFC lookup ) ElSE (condition 2 - JDBC Lookup followed by an RFC  lookup).
    Issue:  The input payload is 0-unbounded with a possibility of a different GDS_id values.
    Case 1 :
    As shown below, in case the input payload has 3 repitions of the RECORD, with the Fit set having GDS_ID = 01, the mapping runs perfectly fine . All the If then Else branches are getting executed.
    Case 2:
    Where as iF the first GDS_ID != 01 (not 01) , thenthe target value is not getting populated properly .
    I have tried all the possibilities and combinations but i am unable to resolve this. Please help.
    Attached the screen shot of the message mapping, and sample test results of both the use cases.
    For instance, below is a sample payload:
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:mt_EMERGO_common xmlns:ns0="http://sabreEMERGO_common.com">
    <Record>
          <booking_date>08012013</booking_date>
          <iata_code>2325540</iata_code>
          <gds_id>01</gds_id>
          <pos_code>RD3A</pos_code>
          <gds_code>01</gds_code>
          <net_booking>11</net_booking>
       </Record>
    <Record>
          <booking_date>08012013</booking_date>
          <iata_code>2325540</iata_code>
         <gds_id>02</gds_id>
          <pos_code>54S8 </pos_code>
          <gds_code>02</gds_code>
          <net_booking>11</net_booking>
    </Record>
      </ns0:mt_EMERGO_common>

    Hi All,
    I have changed the message mapping like below. Even though i am not getting my target filed as value. As per my requirement if GDS_ID=01  then perform the RFC lookup and pass the value to target fields KUNNR and else GDS_ID=02 then perform the JDBC LOOKUP and JDBC LOOKUP output to RFClookup .RFC LOOKUP output pass to my target field KUNNR.
    Result of my mapping is 1st record only populated KURNNR in Target side and 2nd record not showing as KUNNR filed in target side .But I have taken look on display queue in If then else out showing 2 values but it is not passing to target filed.
    Please provide any suggestion to resolve this issue.
    Please find the mapping logic:
    Please find the test screen:
    Please find the test Data:
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:mt_EMERGO_common xmlns:ns0="http://sabreEMERGO_common.com">
       <Record>
          <booking_date>08012013</booking_date>
          <iata_code>2325540</iata_code>
         <gds_id>02</gds_id>
          <pos_code>54S8 </pos_code>
          <gds_code>AA</gds_code>
          <net_booking>11</net_booking>
       </Record>
       <Record>
          <booking_date>08012013</booking_date>
          <iata_code>2325540</iata_code>
          <gds_id>01</gds_id>
          <pos_code>RD3A</pos_code>
          <gds_code>AA</gds_code>
          <net_booking>11</net_booking>
       </Record>
    </ns0:mt_EMERGO_common>
    Regards,
    Ramesh

  • Forms 6i, Stacked & Tabbed Canvas- Wierd behaviour

    Hi,
    I am having a wierd problem:
    Scenario:
    I have a datablock of 40 columns.
    I put 1 (say col-1 on page_1 and col-21 on page_2) column each on two different TAB pages.
    I created 2 stacked canvases: page_1_stacked & page_2_stacked
    I put col-2 to col-10 on page_1_stacked
    and col-22 to col-40 on page_2_stacked
    I used the following code to show/hide the appropriate cols/stack canvases when the users changes Tab pages:
    [when-tab-page-changed
    if (:system.tab_new_page ='PAGE_1')
         then
         show_view('PAGE_1_STACKED');
         hide_view(''PAGE_2_STACKED'');
    elsif (:system.tab_new_page ='PAGE_2')
         then
         hide_view('PAGE_1_STACKED');
         show_view(''PAGE_2_STACKED'');
    end if;
    Problem:
    Everything seems to work fine, the stacked canvases show/hide as expected, but --->as soon as I put my cursor in any column on TABBED PAGE (here col-1 or col-21), all the stacked canvases vanish
    -->if as a result of above case where I put the cursor in a tabbed-page col and canvas vanished, I navigate to the next field (which is on canvas), the canvas shows up (which is normal)....but then this canvas wont get hidden with my hide view... and end up with all stacked canvases shown together or none at all
    I have played around with all the properties and am really trapped.
    Please help!
    Thanks.

    Devang, are you aware that if you put the cursor focus in a field, Forms will ignore any show_view or hide_view commands if they cause the cursor to disappear? And if your cursor focus is in a field in a stacked view, hide_view will not work. Forms will not let you hide or cover up what ever item is identified by :System.Cursor_Item.
    I do not know why you need Col_1 or col_21 on the tab canvas. Put them on your stacked canvasses, too.
    Use a when-new-item-instance block-level trigger to determine which tab page should be displayed. If :System.trigger_item = col_1 through col_20, make sure Page_1 is displayed, and for col_21 through col_40, make sure Page_2 is displayed.
    Similarly, use a when-tab-page-changed trigger to move the cursor to the correct canvas. You wouldn't even need to use show_view or hide_view, Forms will do that for you each time you move into an item on either canvas.
    And why are you using two canvases anyway? Since you are using a horizontal scrollbar, why not put them all on a single canvas? (And then you wouldn't need the tab pages.)

  • Wierd behaviour of BufferedInputStream.available.

    Hi All.
    I've something that has me stumped.
    I have the code below. It connects to a ScriptServlet, passes in some commands and expects to read back the output of the servlet. The servlet sets the content type to "text/xml" and the data is source from a DB2 database.
                codeBase = new URL("http://localhost:9080/dial/softphone/");
                URL url = new URL(codeBase, "../ScriptServlet?cmd=" + command);
                URLConnection urlConnection = url.openConnection();
                InputStream in = urlConnection.getInputStream();
                BufferedInputStream bis = new BufferedInputStream(in, 32768);
                int available1 = bis.available();
                int available2 = bis.available();
                int available3 = bis.available();
                int available4 = bis.available();
                AgentApplet.println("Bytes Available 1: " + available1);
                AgentApplet.println("Bytes Available 2: " + available2);
                AgentApplet.println("Bytes Available 3: " + available3);
                AgentApplet.println("Bytes Available 4: " + available4);Most of the time, everything works. I see the correct number of bytes output by the servlet, and I see the expected output of:
    AgentApplet [    31] :: Bytes Available 1: 7524
    AgentApplet [    32] :: Bytes Available 2: 7524
    AgentApplet [    33] :: Bytes Available 3: 7524
    AgentApplet [    34] :: Bytes Available 4: 7524I read the 7524 bytes and I'm all happy.
    However, sometimes something really silly happens, and this is the output that I do not understand:
    AgentApplet [    41] :: Bytes Available 1: 9936
    AgentApplet [    42] :: Bytes Available 2: 18121
    AgentApplet [    43] :: Bytes Available 3: 19209
    AgentApplet [    44] :: Bytes Available 4: 0The 19209 is the correct figure, as output by the servlet.
    There are no reads occurring in between the successive calls to avail().
    So what is going on?
    I'm stumped!
    Help!
    -Chris

    With TCP you can rely on it, that was the wholepoint
    of it. If it was UDP, then yes, I'd totally agree
    with you.Other way around. With UDP you can rely on datagrams
    being sent and received the same way, with message
    boundaries preserved. TCP is a byte-stream protocol
    without message boundaries and you cannot rely on any
    particular received-size behaviour.Ok, now I get you. You were talking "receive-size". I agree. I was talking "received at all".
    What I don't get, is why/how the bytes available
    suddenly drops to zero. Where do they go?
    You must have read the buffer before the zero
    reading. I can't think of any other explanation.Nope. And that is what has me stumped.
    This is the complete routine:
        private String sendCommand(String command)
            try
                codeBase = new URL("http://localhost:9080/dial/softphone/");
                AgentApplet.println("codeBase = " + codeBase);
                URL url = new URL(codeBase, "../ScriptServlet?cmd=" + command);
                URLConnection urlConnection = url.openConnection();
                InputStream in = urlConnection.getInputStream();
                BufferedInputStream bis = new BufferedInputStream(in, 32768);
                int available1 = bis.available();
                int available2 = bis.available();
                int available3 = bis.available();
                int available4 = bis.available();
                AgentApplet.println("Bytes Available 1: " + available1);
                AgentApplet.println("Bytes Available 2: " + available2);
                AgentApplet.println("Bytes Available 3: " + available3);
                AgentApplet.println("Bytes Available 4: " + available4);
                byte data[] = new byte[bis.available()];
                int read = bis.read(data);
                AgentApplet.println("Bytes Read: " + read);
                if (read == 0)
                    read = bis.read(data);
                    AgentApplet.println("Bytes Read (1): " + read);
                bis.close();
                in.close();
                String str = new String(data);
                return str;
            catch (MalformedURLException me)
                AgentApplet.println("MalformedURLException: " + me);
                return null;
            catch (IOException ioe)
                AgentApplet.println("IOException: " + ioe);
                return null;
        }

  • Wierd behaviour

    Recently bought a copy of fireworks, like it so far except
    for a very annoying behaviour when working with library buttons.
    If I set the size of the button to be say 100x100... and then
    resize it to 60x60....
    How come when I drag the button onto the main screen it still
    thinks that the size of the button is 100x100 but the shape of the
    button is 60x60
    is this a bug? or am I resizing it improperly...

    Jo.CMP wrote:
    > Hi Linda,
    >
    > Thanks for replying.
    > Let me just clarify what I've been doing. I have been
    editing it in the button
    > editor (double clicking on library of buttons)
    Not the library of buttons. Once you have imported a button
    from the
    library, double click on it to open the button editor.
    Linda Rathgeber [PVII] *Adobe Community Expert-Fireworks*
    http://www.projectseven.com
    Fireworks Newsgroup:
    news://forums.projectseven.com/fireworks/
    CSS Newsgroup: news://forums.projectseven.com/css/
    http://www.adobe.com/communities/experts/

  • Creative T4 wierd behaviour, help wanted from another owner please

    Hi there
    Got a set of these a month ago. If you alter the volume with the remote, the unit then responds to any other IR remote when you press and hold a key down. Eventually got the unit replaced under warranty to find the new unit does the exact same thing. I am looking for a helpful T4 owner to try to replicate this please.
    If anyone could please do the following and report back, it would help a lot....
    Set the T4 to digital input
    Reduce the volume to zero using the creative remote
    Increase the volume slightly using the creative remote
    Point a different remote at the unit and press and hold a key
    On mine the volume increases and the orange light flashes indicating it is receiving a signal.
    This behaviour can be cancelled by pressing a key other than volume on the creative remote.
    My thinking is that the chances of 2 units having the same fault is quite small and am wondering if this is a design fault.
    Many thanks in advance to anyone who can help.

    I thought I would post my thoughts on Creative as a company. I purchased their flagship speaker system back in February and the system has a fault with the remote volume control. Communication with Creative CS is slow and laborious but eventually they offer a firmware update that renders the speakers inoperable. I am requested to send the speakers back which are replaced with a set that has the exact same problem. I have been waiting ever since for a reply from the so called technical people.
    My thoughts are 2 sets with the exact same problem is far more than coincidence. It is not my environment that is to blame as I have tested the speakers in different buildings (work and home), same problem. I have tried to communicate this to Creative but at every point, I am just told to be patient. I have had the speakers too long now to return and as yet, no one can or wants to answer my question.
    My point is be very careful buying Creative products, especially the T4 speaker system. If you need help, I'm sorry to say, the assistance is very poor.
    I feel sorry for the poor bloke within Creative who is acting as the go between on this one. He seems a nice chap but I think he is experiencing the same thing as I am, in that no one seems to care about the customer.
    I had expected much better from Creative and their flagship product.

  • ServletInputStream - wierd behaviour

    I have following code inside servlet. Response times are not consistent at all. I don't see any problems in the code except that it might be something inside ServletInputStream that's slow. Below is the code and the result. Results below are so wierd sometimes it takes longer to read for smaller file size as compared to the file that has larger size. There are plenty of available threads and resources, memory etc. on box
    Please help!
        public byte[] getBytes(HttpServletRequest req) {
            InputStream inp = null;
            ByteArrayOutputStream ostr = null;
            byte[] data = null;
            try {
                long l = System.currentTimeMillis();
                ostr = new ByteArrayOutputStream();
                inp = req.getInputStream();
                logger.info("Took 1 " + (System.currentTimeMillis() - l));
                int c = 0, cnt = 0;
                byte[] b = new byte[1024 * 4];
                while (-1 != (c = inp.read(b))) {
                    ostr.write(b, 0, c);
                    cnt += c;
                logger.info("Took 2 " + (System.currentTimeMillis() - l));
                data = ostr.toByteArray();
                logger.info("Took 3 " + (System.currentTimeMillis() - l) + " for length " + cnt);
            } catch (Exception e) {
                logger.error("Couldn't read Input Stream ", e);
            } finally {
                try {
                    if (null != inp) {
                        inp.close();
                    if (null != ostr) {
                        ostr.close();
                } catch (Exception e) {
                    e.printStackTrace();
            return data;
        }Results:
    09-02-25 11:33:06,123 INFO [:http-8080-12] - Took 2 33719
    2009-02-25 11:33:06,123 INFO [:http-8080-12] - Took 3 33719 for length 234934
    2009-02-25 11:33:06,162 INFO [:http-8080-7] - Took 1 0
    2009-02-25 11:33:06,168 INFO [:http-8080-7] - Took 2 6
    2009-02-25 11:33:06,168 INFO [:http-8080-7] - Took 3 6 for length 228412
    2009-02-25 11:33:06,183 INFO [:http-8080-11] - Took 1 0
    2009-02-25 11:33:06,188 INFO [:http-8080-11] - Took 2 6
    2009-02-25 11:33:06,188 INFO [:http-8080-11] - Took 3 6 for length 228370
    2009-02-25 11:33:06,640 INFO [:http-8080-11] - Took 1 0
    2009-02-25 11:33:06,643 INFO [:http-8080-11] - Took 2 3
    2009-02-25 11:33:06,643 INFO [:http-8080-11] - Took 3 3 for length 111169
    2009-02-25 11:33:06,682 INFO [:http-8080-7] - Took 1 0
    2009-02-25 11:33:06,685 INFO [:http-8080-7] - Took 2 3
    2009-02-25 11:33:06,685 INFO [:http-8080-7] - Took 3 3 for length 111232
    2009-02-25 11:33:06,749 INFO [:http-8080-4] - Took 2 1177
    2009-02-25 11:33:06,750 INFO [:http-8080-4] - Took 3 1178 for length 239050
    2009-02-25 11:33:06,779 INFO [:http-8080-1] - Took 2 2233
    2009-02-25 11:33:06,779 INFO [:http-8080-1] - Took 3 2233 for length 111104
    2009-02-25 11:33:08,232 INFO [:http-8080-10] - Took 2 4628
    2009-02-25 11:33:08,232 INFO [:http-8080-10] - Took 3 4628 for length 225770
    2009-02-25 11:33:08,419 INFO [:http-8080-9] - Took 2 4811
    2009-02-25 11:33:08,420 INFO [:http-8080-9] - Took 3 4812 for length 232581
    2009-02-25 11:33:08,451 INFO [:http-8080-8] - Took 2 4633
    2009-02-25 11:33:08,451 INFO [:http-8080-8] - Took 3 4633 for length 225509
    2009-02-25 11:33:09,123 INFO [:http-8080-5] - Took 2 4631
    2009-02-25 11:33:09,123 INFO [:http-8080-5] - Took 3 4631 for length 228427
    2009-02-25 11:33:10,169 INFO [:http-8080-3] - Took 2 15257
    2009-02-25 11:33:10,170 INFO [:http-8080-3] - Took 3 15258 for length 239099
    2009-02-25 11:33:14,248 INFO [:http-8080-6] - Took 2 20500
    2009-02-25 11:33:14,248 INFO [:http-8080-6] - Took 3 20500 for length 146626
    2009-02-25 11:33:02,889 INFO [:http-8080-7] - Took 3 2282 for length 111165
    2009-02-25 11:33:03,107 INFO [:http-8080-9] - Took 2 2231
    2009-02-25 11:33:03,107 INFO [:http-8080-9] - Took 3 2231 for length 111257
    2009-02-25 11:33:03,192 INFO [:http-8080-10] - Took 1 0
    2009-02-25 11:33:03,194 INFO [:http-8080-10] - Took 2 2
    2009-02-25 11:33:03,195 INFO [:http-8080-10] - Took 3 3 for length 111079
    2009-02-25 11:33:03,202 INFO [:http-8080-7] - Took 1 0
    2009-02-25 11:33:03,205 INFO [:http-8080-7] - Took 2 3
    2009-02-25 11:33:03,205 INFO [:http-8080-7] - Took 3 3 for length 111196
    2009-02-25 11:33:03,211 INFO [:http-8080-8] - Took 1 0
    2009-02-25 11:33:03,224 INFO [:http-8080-8] - Took 2 13
    2009-02-25 11:33:03,225 INFO [:http-8080-8] - Took 3 14 for length 234934
    -----

    session is not getting replicated. I noticed that the class name of          HttpSession
              > is weblogic.servlet.internal.session.MemorySessionData on solaris servers
              and
              > its weblogic.servlet.internal.session.ReplicatedSessionData on windows
              clustered
              > servers. So the fail over doesn't really work correctly
              It sounds like you need to double/triple check the configuration of the
              servers in the cluster. The servers apparently don't know to use the
              clustered sessions, and that is a configuration item, not part of the app.
              Peace,
              Cameron Purdy
              Tangosol, Inc.
              http://www.tangosol.com/coherence.jsp
              Tangosol Coherence: Clustered Replicated Cache for Weblogic
              "Praveen Peddi" <[email protected]> wrote in message
              news:3f09e877$[email protected]..
              >
              

  • Custom Table wierd behaviour

    Hi All,
    I have a custom table. when i view this custom table in SE11, it looks somewhat different than what i see in SE16n. When I see in SE16n, it shows one field to be non-primary, although it shows it that field primary when viewed in SE11.
    That particular field is also non-primary when viewed in SM30.
    Please help me understand why this is happening.
    Thanks
    Rohit

    Hi Rohit,
    Did you activated the Custom Table multiple times. You can have a check at the following SE11-> Table name and then Display -> Utilities-> Runtime Object -> Check .
    It will give you the status of the generate object and will let you know if there is any problem with the table. You can once again make a small change in the table ( Change description) and then can again activate it.
    Hope this will help.
    Thanks,
    Samantak.

  • Wierd behaviour in Sample Edit

    In Logic Pro 8 in the sample edit window logic start cycling from the begining of the region with cycle off. and the only way to get it to stop is to close the window. And then when you open it up it starts cycling again. And btw whats up with no key command to play what you've highlighted in the sample edit window?

    Well it turned out my preferences got corrupted, but still whats up with no play selection command in the sample edit window. And who thought it was a good idea to remove the output selector from the edit window and make a prelisten object in the environment?

  • 10.6.4 update - my mac is showing some wierd behaviour

    Hi,
    After this update I've noticed my mac is behaving strange like, this morning it took it 5 min to boot, it never takes more then 30 seconds, it even showed up a bar indicator at the bottom ive never seen before.
    Browsing on Safari doesnt take much CPU but it took up to 80% suddently and I wasnt even playing HD video at the time, it was just normal browsing.
    Has anyone else noticed something like this?

    Hi,
    First, open System Preferences/Accounts, select the Login Items tab. If there are any apps there set up to launch when you startup your Mac, delete them.
    Also go to ~/Library/Startup Items. Move any files there to the Desktop.
    Restart your Mac. If it's still a slow boot and video on Safari was an issue, try uninstalling then reinstalling the newest version of the Flash Player Plugin.
    Uninstall Flash
    Install the most recent version of Flash here.
    Then repair disk permissions...
    Launch Disk Utility. (Applications/Utilities) Select MacintoshHD in the panel on the left, select the FirstAid tab. Click: Repair Disk Permissions. When it's finished from the Menu Bar, Quit Disk Utility and restart your Mac. If you see a long list of "messages" in the permissions window, it's ok. That can be ignored. As long as you see, "Permissions Repair Complete" when it's finished... you're done. Quit Disk Utility and restart your Mac.
    Hopefully that wil help..
    Carolyn

  • RPD merge wierd behaviour 11g

    Hi,
    I'm trying to merge two 11g RPDs, using RPD merge(patch option)-
    and in following scenario-
    A->DEV Baseline RPD,
    B->DEV updated RPD,
    C->Prod RPD.
    I added a few columns in B.
    Created patch comparing B with A.(The patch generated reflected all the added columns)
    Applied patch on C, considering A as original RPD and used the patch generated.
    Now here the utility is giving strange results, sometime it adds all normally.
    Sometime it ignores all the changes, and sometime Phy layer is added and BMM changes are ignored.
    Has someone faced similar issue? Any work around?
    Regards,
    Prateek

    Hi,
    I'm trying to merge two 11g RPDs, using RPD merge(patch option)-
    and in following scenario-
    A->DEV Baseline RPD,
    B->DEV updated RPD,
    C->Prod RPD.
    I added a few columns in B.
    Created patch comparing B with A.(The patch generated reflected all the added columns)
    Applied patch on C, considering A as original RPD and used the patch generated.
    Now here the utility is giving strange results, sometime it adds all normally.
    Sometime it ignores all the changes, and sometime Phy layer is added and BMM changes are ignored.
    Has someone faced similar issue? Any work around?
    Regards,
    Prateek

  • Sudo doesn't work, reporting error in sudoers file, wierd behaviour

    Trying to do something with sudo, it returns:
    >>> /etc/sudoers: syntax error near line 5 <<<
    sudo: parse error in /etc/sudoers near line 5
    sudo: no valid sudoers sources found, quitting
    My /etc/sudoers:
    Defaults env_reset
    root ALL=(ALL) ALL
    alex ALL=(ALL) ALL
    Defaults:alex timestamp_timeout=0
    Where is my error?
    Last edited by Mr. Alex (2010-10-29 14:20:42)

    this is my current sudoers.pacnew....looks a bit weird. the early versions have been more clear...
    ## sudoers file.
    ## This file MUST be edited with the 'visudo' command as root.
    ## Failure to use 'visudo' may result in syntax or file permission errors
    ## that prevent sudo from running.
    ## See the sudoers man page for the details on how to write a sudoers file.
    ## Host alias specification
    ## Groups of machines. These may include host names (optionally with wildcards),
    ## IP addresses, network numbers or netgroups.
    # Host_Alias WEBSERVERS = www1, www2, www3
    ## User alias specification
    ## Groups of users. These may consist of user names, uids, Unix groups,
    ## or netgroups.
    # User_Alias ADMINS = millert, dowdy, mikef
    ## Cmnd alias specification
    ## Groups of commands. Often used to group related commands together.
    # Cmnd_Alias PROCESSES = /usr/bin/nice, /bin/kill, /usr/bin/renice, \
    # /usr/bin/pkill, /usr/bin/top
    ## Defaults specification
    ## You may wish to keep some of the following environment variables
    ## when running commands via sudo.
    ## Locale settings
    # Defaults env_keep += "LANG LANGUAGE LINGUAS LC_* _XKB_CHARSET"
    ## Run X applications through sudo; HOME is used to find the
    ## .Xauthority file. Note that other programs use HOME to find
    ## configuration files and this may lead to privilege escalation!
    # Defaults env_keep += "HOME"
    ## X11 resource path settings
    # Defaults env_keep += "XAPPLRESDIR XFILESEARCHPATH XUSERFILESEARCHPATH"
    ## Desktop path settings
    # Defaults env_keep += "QTDIR KDEDIR"
    ## Allow sudo-run commands to inherit the callers' ConsoleKit session
    # Defaults env_keep += "XDG_SESSION_COOKIE"
    ## Uncomment to enable special input methods. Care should be taken as
    ## this may allow users to subvert the command being run via sudo.
    # Defaults env_keep += "XMODIFIERS GTK_IM_MODULE QT_IM_MODULE QT_IM_SWITCHER"
    ## Uncomment to enable logging of a command's output, except for
    ## sudoreplay and reboot. Use sudoreplay to play back logged sessions.
    # Defaults log_output
    # Defaults!/usr/bin/sudoreplay !log_output
    # Defaults!/usr/local/bin/sudoreplay !log_output
    # Defaults!/sbin/reboot !log_output
    my current sudoers file:
    # sudoers file.
    # This file MUST be edited with the 'visudo' command as root.
    # Failure to use 'visudo' may result in syntax or file permission errors
    # that prevent sudo from running.
    # See the sudoers man page for the details on how to write a sudoers file.
    # Host alias specification
    # User alias specification
    # Cmnd alias specification
    # Defaults specification
    # Runas alias specification
    # User privilege specification
    root ALL=(ALL) ALL
    # Uncomment to allow people in group wheel to run all commands
    # %wheel ALL=(ALL) ALL
    # Same thing without a password
    # %wheel ALL=(ALL) NOPASSWD: ALL
    # Samples
    # %users ALL=/sbin/mount /cdrom,/sbin/umount /cdrom
    # %users localhost=/sbin/shutdown -h now
    Last edited by linux-ka (2010-10-29 14:34:59)

  • Wierd behaviour of  MS-DOS Editor while practising Java Programs

    Hi
    I use the MS-dos editor at my office for practising Java programs. I have three systems connected to one monitor,keyboard and mouse using a switch of Avocent make. I launch MS-dos editor and maximize it using (Alt + Enter). I now switch to some other machine and after say 5 minutes, again switch back to the machine where I launched MS-DOS editor for practice. But the machine does not respond and the screen goes dark without any display. I am forced to hardboot the machine. I am running windows xp. Can anyone please tell me what could be the problem.
    Regards
    Srinivas

    or the videocard has problems maintaining fullscreen text mode superimposed on graphical mode when there is no destination for its output signal.
    Whichever, it's hardware.
    Of course using the old DOS editor under Windows is foolish to say the least. Use VI instead, or notepad if you have to.

  • Wierd behaviour on Discussions ?

    I opened this account on my iPhone, because with Safari from Book it always gave an error. Even after i reset Safari (4) twice.
    Now, when account / Alias is ok, i can't log in from Safari - now i have logged in with Firefox 3.0.8 and Forums seem to work.
    Any ideas ?
    I talked with support and they said that reset should do the trick. Can this be a Safari 4 issue ?
    Kari

    Welcome To  Discussions Kari!
    Does your Apple Account ID, contain any accent characters, such as an umlaut:ö, a grave: ò, or an acute:ó?
    You can Log-In to Your Info to check.
    If so, you will find more info, and how to correct the issue, in This Thread.
    ali b

  • Odd SocketPermission behaviour

    Hi,
    I've been trying to use SocketPermissions to restrict the IP addresses from which a ServerSocket will accept a connection and am getting some wierd behaviour.
    The ServerSocket will reject and close the first connection attempt from a disallowed address. Subsequent connections from the same host (using telnet) are not rejected/accepted or closed - they just 'hang there'.
    The SecurityManager is also really slow at deciding whether a connection can be accepted or rejected.
    Is this usual ? Or is there a way to setup SecurityManager to behave 'nicely' ?
    regards
    Tony Seebregts

    Just spent about an hour playing around with various things and now it seems to have resolved itself. Odd... Marking this topic as answered now.

Maybe you are looking for