Is there any way to find SHMMAX used by the system? sysdef is not useful.

Since the SHMMAX is obsolete we could not set it.
Also we are not able to find a way to current value that is used by system for SHMMAX(sysdef is not giving any value).
Is there any other way to find out it's current value?

You've asked this question multiple times. There's an answer here:
http://forum.sun.com/thread.jspa?threadID=25138&tstart=0

Similar Messages

  • HT201342 Is there any way to find a log of the send e-mail from ICloud.. to analyse how many email has been send and deleted within a day from send items

    Is there any way to find a log of the send e-mail from ICloud.. to analyse how many email has been send and deleted within a day from send items

    Thx Winston,
    I can count the send item. But let me try to explain why did I ask this question.
    I had a trouble in sending e-mails from icloud on 22/2 and when I saw in my send item there were no emails.
    But the mesgs to whom I emailed received and out of which only few of them didn't got the email. So I wanted to know the log abt the outflow of the mesg with subject and the receipants email id and the list with attachment or not.
    How and where will I get the information apart from send item and draft mesg and the outflow undelivered?
    Regards
    Sarfaraz

  • HT4759 Is there any way to find an iphone if the icloud isn't turned on?

    Is there any way to find an iphone is the icloud isn't turned on?

    Only by physically looking for it, or calling it and listening.

  • I just bought a new laptop because my old one died.  is there any way to sync my phone with the new machine and not lose all my data?

    i just bought a new laptop because my old one died.  is there any way to sync my phone with the new machine and not lose all my data?

    Copy everything from your backup copy of your old computer to your new one.
    Then sync.

  • Is there any way to find out who accessed the BW reports in Portal

    Hi! Experts
    We have some BW reports which are published through SAP Portal and access given to only Team Leaders, now we want to see who are accessed or trying to access those reports other then Team leaders. Is there any way we can generate a LOG file etc.  to see  those user IDs. Any suggestions will be highly regarded with points
    Syam

    Hi Syam,
    I reckon this SDN blog has all the information that you require:
    /people/damian.reyesdiaz/blog/2005/11/11/documents-hits-count-km-activity-reporting
    Hope it helps.
    Thanks,
    Michael

  • Is there any way in Finder I can get the window to show the amount of free space on a selected drive?

    I am not a fan of all the changes they have made to finder in Lion.

    Sorry, I didn't know this was so old when I replied. I hope it was helpful anyway.
    Go to desktop, click on hard drive, command+I or File ... Get Info.
    Then you will see the info for that drive and listing the available space.

  • Is there any way to find out where a standard text is used?

    Is there any way to find out where a standard text is used?
    We can see the text from SO10, but i want to find out where it is used.

    HI
    juct check out this thread
    How to find Standard Text
    a similar query is answered here
    hope this helps
    regards
    Aakash Banga

  • Is there any way to find a lost iPod Touch 4G without using Find My iPhone or MobileMe? By using the serial number or the iTunes account synced in it?

    Is there any way to find a lost iPod Touch 4G without using Find My iPhone or MobileMe? By using the serial number or the iTunes account synced in it?

    "Is there any way to find a lost iPod Touch 4G without using Find My iPhone or MobileMe? "
    Other than looking for it or luck, no.
    "By using the serial number or the iTunes account synced in it?"
    No.

  • Is there any way to find out a Tcode used by user in a particular interval.

    Hi
    Is there any way to find out a Tcode used by user between 10/8/2009 to 31/8/2009, in production?
    Satish.

    Yes i have been trying SE16N only. But i am unable to pull data based on dates (Aug/8 to Aug 21)... its showing list of users who have accessed the tcodes directly for entire month....
    Se16n ->Export mode->month->08/2009
      --->     Transacction profile -->Standard
    I want to find out only users who have used a particular tcode during those dates.....in august..
    Satish

  • Is there any way to find out wn was a table deleted apart from using audit

    Is there any way to find out wn was a table deleted apart from using audit
    Oracle version 9.2.0.7

    SQL> SHOW USER
    USER is "SCOTT"
    SQL> CREATE TABLE test_delete AS SELECT * FROM emp;
    Table created.
    SQL> DELETE FROM test_delete;
    14 rows deleted.
    SQL> COMMIT;
    Commit complete.
    SQL> conn sys@orclsb as sysdba
    Enter password: ******
    Connected.
    SQL> ALTER SESSION SET nls_date_format='DD-MON-RRRR HH24:MI:SS';
    Session altered.
    SQL> BEGIN
      2     DBMS_LOGMNR.START_LOGMNR (
      3           starttime => '02-FEB-2011 17:51:00',
      4           endtime   => '02-FEB-2011 17:54:00',
      5           options   => dbms_logmnr.DICT_FROM_ONLINE_CATALOG+
      6                        dbms_logmnr.continuous_mine +
      7                        dbms_logmnr.no_sql_delimiter +
      8                        dbms_logmnr.print_pretty_sql
      9                                  );
    10  END;
    11  /
    PL/SQL procedure successfully completed.
    SQL> set line 10000
    SQL> SELECT scn ,timestamp
      2         ,commit_timestamp, username
      3  FROM v$logmnr_contents
      4  WHERE
      5   username = 'SCOTT'
      6  AND  TABLE_NAME='TEST_DELETE';
           SCN TIMESTAMP            COMMIT_TIMESTAMP     USERNAME
       2309736 02-FEB-2011 17:53:20                      SCOTT
       2309739 02-FEB-2011 17:53:20                      SCOTT
       2309769 02-FEB-2011 17:53:59                      SCOTT
       2309774 02-FEB-2011 17:53:59                      SCOTT
       2309774 02-FEB-2011 17:53:59                      SCOTT
       2309774 02-FEB-2011 17:53:59                      SCOTT
       2309774 02-FEB-2011 17:53:59                      SCOTT
       2309774 02-FEB-2011 17:53:59                      SCOTT
       2309774 02-FEB-2011 17:53:59                      SCOTT
       2309774 02-FEB-2011 17:53:59                      SCOTT
       2309774 02-FEB-2011 17:53:59                      SCOTT
           SCN TIMESTAMP            COMMIT_TIMESTAMP     USERNAME
       2309774 02-FEB-2011 17:53:59                      SCOTT
       2309774 02-FEB-2011 17:53:59                      SCOTT
       2309774 02-FEB-2011 17:53:59                      SCOTT
       2309774 02-FEB-2011 17:53:59                      SCOTT
       2309774 02-FEB-2011 17:53:59                      SCOTT
       2309774 02-FEB-2011 17:53:59                      SCOTT
    17 rows selected.
    SQL>

  • I have lost my Macbook Air. Is there any way to track it using its serial number. I did not register it to find my iPhone before.

    I have lost my Macbook Air. Is there any way to track it using its serial number. I did not register it to find my iPhone before.

    If you had no installed http://www.apple.com/icloud/find-my-iphone.html  t
    then no,
    Change any vulnerable credit or bank info that might be got off your macbook.  Have you contacted the authorities about its theft?
    sorry for your loss

  • Is there any way to find number of addresses in to and cc list before fetch

    Hi,
    I am fetchig mails using IMAP.
    I want to fetch from,to cc addresses for each mail.
    But i foung a mail in my account having 35690 email addresses in to list.
    So fetching all these addresses is not worth full for me.
    So is there any way to find how many addresses are there in to and cc list before actually fetching them?
    Thanks in advance.
    -Prashanth.

    No.

  • I recently changed jobs and no longer have access to the computer that contained my Firefox bookmarks. I don't have a Firefox profile. Is there any way to find and transfer my bookmarks to my new computer?

    I recently changed jobs and no longer have access to the computer that contained my Firefox bookmarks. I don't have a Firefox profile. Is there any way to find and transfer my bookmarks to my new computer?

    If you don't have access to the old computer any longer, '''no'''. Unless you were using something like the Google Toolbar & Google Bookmarks or Xmarks, which would have your bookmarks in an online account that you could access. Firefox doesn't include an online storage feature for personal data, yet. That is coming in a future version.
    If you have a friend at your old job maybe they have access to that old PC and they could export your bookmarks to a file and email that file to you.

  • Is there any Way to find Which case is Executing in LabVIEW VI programmat​ically and Display it..

    Is there any Way to find Which case is Executing in LabVIEW VI programmatically and Display it..
    Solved!
    Go to Solution.

    I wrote this a few years ago: http://lavag.org/files/file/199-state-machine-foll​ower/
    This JKI RCF Plugin sets the Visible Frame property of a Case Structure while the owning VI is running. Use it to follow the execution through the cases in your string-based State Machine/Sequencer when Execution Highlighting isn't fast enough (and, it's never fast enough).
    The use-case I wrote this to improve is setting a Breakpoint on the Error wire coming out of the main Case Structure and probing the Case Selector terminal so I can float-probe wires during execution. The problem with this is that I had to manually select the current frame every time. This is boring, so I developed this plugin to automatically set the Visible Frame to the case most recently executed.
    You might be able to adapt it to your needs.  The basic idea is that a custom probe on the wire to the Case structure's selection terminal sends a notification to a VI that displays the appropriate case.
    We might be able to help you develop something easier if you'll give us more information.  Is it OK if the code to display the case is in the same VI?
    Jim
    You're entirely bonkers. But I'll tell you a secret. All the best people are. ~ Alice

  • Is there any way to find out what brush is applied to a path?

    I'm trying to write a script: select some paths, run the script, then each path that has a brush applied to it is changed to use a random brush whose name is sufficiently similar to its current brush. The application is pretty obvious - draw a bunch of lines in, say, 'ragged marker 1', then give it some extra liveliness by having five or six 'ragged marker' brushes that get randomly chosen.
    The problem I'm running against is that as far as I can tell, Illustrator only lets Javascript set what brush an object is using with brush.applyTo (artItem), but I can't seem to find any way to find out what path a brush is currently using via JS.
    Am I just not looking in the right place of the Javascript reference, or is this really a thing that only has a setter, with no corresponding getter?

    Just like you said earlier
    3.  Re: Is there any way to find out what brush is applied to a path?
           imagecollection     Apr 7, 2015 6:01 PM  (in response to Silly-V)   
    The skill of scripting in Illustrator is to (due to necessity) find the most difficult way to achieve the simplest of tasks...
    so to retort I say this;
    “I suppose it is tempting, if the only tool you have is a hammer, to treat everything as if it were a nail.”
      ― Abraham Maslow, Toward a Psychology of Being

Maybe you are looking for

  • SOAP: call failed: java.io.IOException: unable to create a socket ??

    Hi I am getting the following error in PI for one of my sync interfaces. SOAP: call failed: java.io.IOException: unable to create a socket The interface works most of the time, but i get this error couple of times a day. Regards, XIer

  • Sound output choices don't always stay fixed

    On my mac pro, when I select headphones as my output for sound in my preferences, some things do not respect this and instead play sound through my external speakers, most noticeably in flash player videos. In fact, playing some videos in a flash pla

  • Ipod Nano in disk mode

    Is it a bad idea to keep syncing my ipod using disk mode? This is the only way Itunes 9.1 will not crash when connected to my ipod.

  • App improvement suggestions

    For me the app seems pretty good but I have some ideas for improvements... Stream bitrate quality options. As YouTube does maybe an option to select higher or lower quality streams to suit varying broadband speeds In the fixture lists highlight which

  • App Store won't load on my Mac

    Since I installed the latest Yosemite update, app information pages are not loading in the app store. All tabs including search results load fine but when I click on an app to read about it, a blank page is displayed.