Find max and low  of resource_limit

Hi,
Version :10.2.0.1 and 11.2.0.1
OS :Aix 6
I want to find maximum number of sessions(High water mark) in a given period time and lowest level in a given time and also for processes.
Lowest usage of temp/undo tablespace in a given time period?and also highest usage a given time?
Is there any views?
Any suggestions
Thanks.

I want to find maximum number of sessions(High water mark) in a given period time and lowest level in a given time and also for processes.1.Database logon trigger
2.If auditing is enabled then DBA_AUDIT_SESSION;
3.You can get this information, if you had the statspack/AWR running at regular intervals (query PERFSTAT schema).
SELECT trunc (b.snap_time) day, max(value)
FROM stats$sysstat a, stats$snapshot b
WHERE a.name = 'logons cumulative' AND a.snap_id = b.snap_id
group by trunc (b.snap_time)
order by 1;
Satish @ session history information - oracle 10g
Lowest usage of temp/undo tablespace in a given time period?and also highest usage a given time?Different question, please open another thread.
Regards
Girish Sharma

Similar Messages

  • Thread use to find max and min in an array of objects??

    Hello everyone,
    I need to find the min and max int value in a array of Objects.
    This has to be done using threads--like divide the entire array into 10 or so blocks and find the local min and max in each block., Each block is run on a thread and finally comparing them to find the global max and min.How should I do this? I am new to Java programming and in particular to threads.
    Thanks for your time and patience in answering this newbie question.
    JP

    Hi,
    if i understand your problem, you have a big array with a lot of int values and you need to create a few arrays with a part of the big one in each, next each in a thread find the max and the min, next return the max and the min of each thread and compare these max and min to obtain the globals max and min?
    In that case you can create a class in which is your big array. you create a second class implementing Runnable, in its creator you put the instance of the
    first class and 2 int which are the beginning and the ending index. in this class add a method run in this method you create a loop to compare the current value to the max and min values, and you replace if you need to do. In the first class you put the main where you create a few instance of the second class in a thread :
         private Thread threadName = new Thread(new SecondClass(this, start, end));
    Next you start all these thread:
    threadName.start();
    At the end of the run method of the second class you have to write your result in the max and min fields of the first class(int type, you have to create it)
    Write it only if it's necessary (if the current max is > than the already existing max).
    I think it's complete!
    Sorry if it's not really easy to understand, I'm french, but you can answer if you have more questions.
    S�bastien

  • BEx Variables - Customer Exit - Find Max and Min of two values

    Hi Experts, I have two ID's at any given time in my InfoProvider. I'm trying to create two user exit variable on this ID. One should return the max of the two and the other should return only available one (i.e. the Min). The variable should not prompt the user for any value. Any time the variable is used in the report. max should the max of the two ID's and the Min should show the lower of the two values.
    I would appreciate if somebody could provide the code that I can use.

    you could use below:
    Variable for Max
    SELECT MAX ( ID Field )
    FROM <Source>
    INTO <wa_id>.
    Variable for Min
    SELECT MIN ( ID Field )
    FROM <Source>
    INTO <wa_id>.

  • Finding Max and Min values

    Hi Gurus,
    I have a table with one column as data type NUMC of lenth 5.
    Now, I have to get the max value and minimum value from that column into two variables of same type.
    Could you please help me with the logic and code in ABAP.
    Thanks,
    Regards,
    aarthi

    select single MAX( <field> ) from table into <variable>.
    select single MIN( <field> ) from table into <variable>.
    Message was edited by:
            S B

  • Find Upper and Lower Values Based On middle?

    I have a query...
    which gives output like.
    empcd at_date status
    SA0477 1-AUG-2007 A
    SA0477 2-AUG-2007 P
    SA0477 3-AUG-2007 P
    SA0477 4-AUG-2007 A
    SA0477 5-AUG-2007 WO
    SA0477 6-AUG-2007 A
    SA0477 7-AUG-2007 P
    SA0477 8-AUG-2007 P
    SA0477 9-AUG-2007 P
    SA0477 10-AUG-2007 A
    SA0477 11-AUG-2007 A
    SA0477 12-AUG-2007 WO
    SA0477 13-AUG-2007 A
    but i want those record, where 'WO' between two 'A'.means.
    i want
    SA0477 4-AUG-2007 A
    SA0477 5-AUG-2007 WO
    SA0477 6-AUG-2007 A
    and
    SA0477 11-AUG-2007 A
    SA0477 12-AUG-2007 WO
    SA0477 13-AUG-2007 A
    record if there r any solution plsz rply. ASAP.
    thanx wating for ur rply.

    check this..
    SQLPLUS> with test_tab as(
      2  SELECT 'SA0477' empcd,to_date('1-AUG-2007','dd-MON-yyyy') at_date, 'A' status from dual union all
      3  SELECT 'SA0477', to_date('2-AUG-2007','dd-MON-yyyy'),'P' from dual union all
      4  SELECT 'SA0477', to_date('3-AUG-2007','dd-MON-yyyy'),'P' from dual union all
      5  SELECT 'SA0477', to_date('4-AUG-2007','dd-MON-yyyy'),'A' from dual union all
      6  SELECT 'SA0477', to_date('5-AUG-2007','dd-MON-yyyy'),'WO' from dual union all
      7  SELECT 'SA0477', to_date('6-AUG-2007','dd-MON-yyyy'),'A' from dual union all
      8  SELECT 'SA0477', to_date('7-AUG-2007','dd-MON-yyyy'),'P' from dual union all
      9  SELECT 'SA0477', to_date('8-AUG-2007','dd-MON-yyyy'),'P' from dual union all
    10  SELECT 'SA0477', to_date('9-AUG-2007','dd-MON-yyyy'),'P' from dual union all
    11  SELECT 'SA0477', to_date('10-AUG-2007','dd-MON-yyyy'),'A' from dual union all
    12  SELECT 'SA0477', to_date('11-AUG-2007','dd-MON-yyyy'),'A' from dual union all
    13  SELECT 'SA0477', to_date('12-AUG-2007','dd-MON-yyyy'),'WO' from dual union all
    14  SELECT 'SA0477', to_date('13-AUG-2007','dd-MON-yyyy'),'A' from dual)
    15  , test_tab2 as(
    16  select a.*,
    17  case
    18   when status ='A' and lead( status ,1) over (partition by empcd order by at_date) = 'WO'  Then
    19       '1'
    20   when status ='A'   and lag( status ,1) over (partition by empcd order by at_date) = 'WO'  Then
    21      '1'
    22   when status='WO' then
    23     '1'
    24   else
    25      '0'
    26  end flag
    27  from test_tab a)
    28  select empcd,at_date,status from test_tab2 where flag='1';
    EMPCD  AT_DATE   ST
    SA0477 04-AUG-07 A
    SA0477 05-AUG-07 WO
    SA0477 06-AUG-07 A
    SA0477 11-AUG-07 A
    SA0477 12-AUG-07 WO
    SA0477 13-AUG-07 A
    6 rows selected.
    Elapsed: 00:00:00.00Good Luck

  • How to find min and max of a field from sorted internal table

    Hi,
    I have sorted Internal Table by field f1.
    How do I find max and min value of f1.
    For min value of f1 I am using,
    READ TABLE IT1 INDEX 1.
    IT1-F1 = MIN.
    Is this correct? And how do I find the max value of f1 from this table.
    Thanks,
    CD

    Yes, that is right, and you can get the max like this.
    data: lv_lines type i.
    * get min
    READ TABLE IT1 INDEX 1.
    MIN  = IT1-F1.
    * get max
    lv_lines = lines( it1 ).
    read table it1 index lv_lines.
    MAX  = IT1-F1.
    Regards,
    Rich Heilman

  • What is the max. cable length that the Differential TTL signals can run in both at high and low frequencies?

    Hello,
                I want to now the max. cable length that the Differential TTL signals can run in both at high and low frequencies.

    That is very dependant on the type of cable, its construction, and inherent impedance and capacitance. This may be of use:
    http://beiied.com/PDFs2/SSI_14-15-bit-encoder_addendum.pdf
    -AK2DM
    ~~~~~~~~~~~~~~~~~~~~~~~~~~
    "It’s the questions that drive us.”
    ~~~~~~~~~~~~~~~~~~~~~~~~~~

  • Best Way to find min and max

    Hi
    I wish to know is there any better way to get min(zseq) from a query statement?
    I have data as :
    00010 10 1 10/10/2006   - need to get tihs date (min)
    00010 10 2 12/10/2006
    00010  10 3 15/10/2006 - need to get this date(max-1)
    00010 10 4 18/10/2006 - need to get this date (max)
    My query :
    SELECT ZCDD FROM ZVI2D INTO S_1ST_ZCDD
          WHERE ZVBELN = WA_OUTPUT_ALL-VBELN AND ZPOSNR = WA_OUTPUT_ALL-POSNR
            AND ZSEQ IN ( SELECT MIN( ZSEQ ) FROM ZVI2D WHERE ZVBELN = WA_OUTPUT_ALL-VBELN AND ZPOSNR = WA_OUTPUT_ALL-POSNR ).
             AND ZDATUM = WA_OUTPUT_ALL-ZDATUM ).
        ENDSELECT
    I will reward points if you are able to give a good uggestion. Thanks.

    i think you can get max and min from the select query itself just check my previous posting for the min. But i dont think you can get the second maximum value from the select query. For that you have to store the data in itab and sort that by descending read thae table itab with index 1(max) and index 2(second largest) and last for min.
    suppose you have data inyour itab.
    data : lin type i.
    sort itab by <field name> descending.
    read table itab index 1."for max value.
    write : / itab-<field>.
    read table itab index 2."second largest.
    write : / itab-<field>.
    describe table itab lines lin.
    read table itab index lin.
    write :  / itab-<field>.
    regards
    shiba dutta

  • MAX and ValueMotion: execute differently given the same trajectory parameters

    I'm trying write a LabVIEW program to move a stepper motor to a specific position at specific velocity and acceleration. The end product needs to be a user-friendly VI that can do all needed steps without the user opening Measurement and Automation Explorer(MAX).
    Here's the problem:
    The only way that I've been able to get the thing to move at the desired acceleration/ velocity profile is to make the same motion immediatly prior using MAX.
    For example, I want it to move at 2000 steps/s and 100 steps/s^2. This is what I have the initilization configuration set to. However if I pass this information directly into my labView program it actually moves differently (slower acc.) then if I run it
    directly from MAX (the interactive 1-D part). However if I make it move using MAX and then immediatly run my LAbVIEW VI it operates identically to the MAX execution.
    I've tried directly telling the VI the velocity, acc. etc. parameters, that doesn't help. The acceleration factor everywhere is the same (1). I don't understand why 100 steps/ s^2 in my LabVIEW code excutes differently at different times.
    Thanks.

    I will advise you to try out the examples shipped with LabVIEW to see if this makes a difference. You can find the examples at:
    C:\Program Files\National Instruments\LabVIEW 6\examples\Motion\ValueMotion
    ... specifically look for the library name stepper.llb which has inside an example VI named "Sequence of Moves with Low Level Parameters". Please try this example and check the VI "low level parameters" in the block diagram so you can manipulate the parameters and see if they do take effect on your motion system.
    Also make sure that you have the latest driver for Valuemotion which is 5.0.2 (http://www.ni.com/downloads/) and if you still see more issues you may want to contact us directly to troubleshoot the board or software, please find the procedure at www.ni.com/a
    sk on the web.
    Last, please do check that this settings you mention are actually set in MAX but in the axis trajectory settings, not in 1D interactive, because 1D interactive will reset to its default value whenever MAX is closed, so this is why you may be seeing the same movement only after you run MAX. Please check the example that may give us some idea, and please do it with MAX closed. Thanks!
    Regards,
    Nestor Sanchez
    Motion Control Support
    National Instruments
    Nestor
    National Instruments

  • HP Mini 1030NR Bad audio, very Tinny and low...

    I purchased the mini around christmas of last year and I was hoping this would have been resolved but the audio driver is still nothing like I expected.  It is far too tinny and low even after it has had the latest updated drivers.
    I have been unable to find help online or with tech support.  They have recommended trying other driver sites, but they have no direct links to specific drivers and will not support outside audio drivers.
    Any ideas?
    Everything else about the machine is great!

    I have heard this complaint about the MINIs from other people as well. To the best of my knowledge there is nothing really to be done about it. The speakers in those notebooks are about the size of a quarter, they simply do not put out much noise, or very high quality noise. There are speakers of that size that put out better sound, but they cost considerably more, and the concept of the MINI is a ultra-portable notebook for an affordable price, and the speakers are one of the trade-offs. I would recomend, if the sound quality is important to you, putting the money that would have been in the cost of the notebook towards a nice set of earphones or travel-sized speakers.
    They may eventualy release a driver that could concievably make the sound better, but no driver will ever be able to change what the speakers are physicaly capable of.
    -Good Luck

  • Acrobat X Pro (10 and lower) won't start on Windows 7 (64-bit)

    Hello, does anyone know why Acrobat X Pro (10 and lower) won't start on Windows 7 (64-bit)? It just doesn't respond whether I try to open files with it or double-click to start the program. Re-installation and Repair doesn't help. I had the same issue with the previous versions of Acrobat on this computer. 
    Thank you!

    Ditto to all of the above. Acrobat Pro was working fine until a day or two ago, then kaput.  Reader still functions.  I have Win 7 (64bit), CS6 Design and Web Premium. Anyone with any new ideas? 
    I don't seem to have an alm.log file, but I do have the amt3.log, see below.
    amt3.log
    2012-06-12 07:54:34 [5740]  AMT: START SESSION, library version 3.5.0.34,3.5
    2012-06-12 07:54:34 [5740]  AMT: Initializing C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\
    2012-06-12 07:54:34 [5740]  AMT: Adobe License Manager version 3.5 (build 2.0) RELEASE
    2012-06-12 07:54:34 [5740]  AMT: Virtualization Turned off
    2012-06-12 07:54:34 [5740]  ServiceLoader: looking for library C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\adobe_caps.dll
    2012-06-12 07:54:34 [5740]  ServiceLoader: Found library C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\adobe_caps.dll
    2012-06-12 07:54:34 [5740]  PCDService: PCD Service in threaded mode
    2012-06-12 07:54:34 [5740]  performance: AMTPreObtainProductLicense took 4.550707 ms
    2012-06-12 07:54:34 [5740]  PCD thread: PCD thread started
    2012-06-12 07:54:34 [5740]  ServiceLoader: looking for library C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\Adobe_OOBE_Launcher.dll
    2012-06-12 07:54:34 [5740]  ServiceLoader: Found library C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\Adobe_OOBE_Launcher.dll
    2012-06-12 07:54:34 [5740]  AMT: App Product Locale [0] = en_US
    2012-06-12 07:54:34 [5740]  config: Loading configuration for C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\AMT\application.xml
    2012-06-12 07:54:34 [5740]  config: Found payload code {AC76BA86-1033-F400-7760-000000000005}
    2012-06-12 07:54:34 [5740]  PCDService: found driver code {402F6F2E-5683-491C-977D-0CA599A07CAF}
    2012-06-12 07:54:34 [5740]  config: config: Host app was installed, using installed license configuration.
    2012-06-12 07:54:34 [5740]  PCDService: No value for key [FLMap] in hive [AcrobatPro-AS1-Win-GM{|}ALL] in cache.
    2012-06-12 07:54:34 [5740]  config: Setting current license to the driver at startup because no mapping was found.
    2012-06-12 07:54:34 [5740]  config: Setting current license to DesignWebSuitePremium-CS6-Win-GM [ALL]
    2012-06-12 07:54:34 [5740]  config: payload code: {AC76BA86-1033-F400-7760-000000000005}
    2012-06-12 07:54:34 [5740]  config: driver payload code: {402F6F2E-5683-491C-977D-0CA599A07CAF}
    2012-06-12 07:54:34 [5740]  config: driver licensing code: DesignWebSuitePremium-CS6-Win-GM
    2012-06-12 07:54:34 [5740]  config: current licensing code: DesignWebSuitePremium-CS6-Win-GM
    2012-06-12 07:54:34 [5740]  config: current locale code: ALL
    2012-06-12 07:54:34 [5740]  config: Done loading configuration
    2012-06-12 07:54:34 [5740]  AMT: Locale from PCD [0] = en_US
    2012-06-12 07:54:34 [5740]  AMT: Reordered Installed App Product Locale [0] = en_US
    2012-06-12 07:54:34 [5740]  config: Setting insalled locales
    2012-06-12 07:54:34 [5740]  config: Changing locale to "en_US" because old locale "" is not in the new list of installed languages
    2012-06-12 07:54:34 [5740]  ServiceLoader: looking for library C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\asneu.dll
    2012-06-12 07:54:34 [5740]  ServiceLoader: Found library C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\asneu.dll
    2012-06-12 07:54:34 [5740]  AMT: config: Finding license info for payload: {402F6F2E-5683-491C-977D-0CA599A07CAF}
    2012-06-12 07:54:34 [5740]  AMT: config: PayloadCode: {AC76BA86-1033-F400-7760-000000000005}
    2012-06-12 07:54:34 [5740]  AMT: config: Driver PayloadCode: {402F6F2E-5683-491C-977D-0CA599A07CAF}
    2012-06-12 07:54:34 [5740]  AMT: config: Installed LicensingCode: DesignWebSuitePremium-CS6-Win-GM
    2012-06-12 07:54:34 [5740]  PCDService: No value for key [AdobeUpdaterCodeV2] in hive [{AC76BA86-1033-F400-7760-000000000005}] in master.
    2012-06-12 07:54:34 [5740]  PCDService: No value for key [BridgeTalkCode] in hive [{AC76BA86-1033-F400-7760-000000000005}] in master.
    2012-06-12 07:54:34 [5740]  PCDService: No value for key [AdobeUpdaterCodeV2] in hive [{402F6F2E-5683-491C-977D-0CA599A07CAF}] in master.
    2012-06-12 07:54:34 [5740]  PCDService: No value for key [BridgeTalkCode] in hive [{402F6F2E-5683-491C-977D-0CA599A07CAF}] in master.
    2012-06-12 07:54:34 [5740]  PCDService: No value for key [ISO_TAGGING_DISABLED] in hive [AcrobatPro-AS1-Win-GM] in master.
    2012-06-12 07:54:34 [5740]  PCDService: No value for key [EULA] in hive [{402F6F2E-5683-491C-977D-0CA599A07CAF}] in master.
    2012-06-12 07:54:34 [5740]  PCDService: No value for key [Registration] in hive [{402F6F2E-5683-491C-977D-0CA599A07CAF}] in master.
    2012-06-12 07:54:34 [5740]  PCDService: No value for key [Registration] in hive [{AC76BA86-1033-F400-7760-000000000005}] in master.
    2012-06-12 07:54:34 [5740]  PCDService: No value for key [Growl] in hive [{402F6F2E-5683-491C-977D-0CA599A07CAF}] in master.
    2012-06-12 07:54:34 [5740]  PCDService: No value for key [Growl] in hive [{AC76BA86-1033-F400-7760-000000000005}] in master.
    2012-06-12 07:54:34 [5740]  PCDService: No value for key [Updates] in hive [{402F6F2E-5683-491C-977D-0CA599A07CAF}] in master.
    2012-06-12 07:54:34 [5740]  PCDService: No value for key [Updates] in hive [{AC76BA86-1033-F400-7760-000000000005}] in master.
    2012-06-12 07:54:34 [5740]  AMT: config: No BridgeTalkCode found in configuration; Bridgetalk will be disabled.
    2012-06-12 07:54:34 [5740]  PCDService: No value for key [SuiteFeatureCount] in hive [DesignWebSuitePremium-CS6-Win-GM] in master.
    2012-06-12 07:54:34 [5740]  AMT: Application can be serialized (sif file found).
    2012-06-12 07:54:34 [5740]  PCDService: No value for key [SN] in hive [AcrobatPro-AS1-Win-GM{|}en_US] in cache.
    2012-06-12 07:54:34 [5740]  config: No en_US licensed serial number found in AcrobatPro-AS1-Win-GM
    2012-06-12 07:54:34 [5740]  PCDService: No value for key [SN] in hive [DesignWebSuitePremium-CS6-Win-GM{|}ALL] in cache.
    2012-06-12 07:54:34 [5740]  config: No ALL licensed serial number found in DesignWebSuitePremium-CS6-Win-GM
    2012-06-12 07:54:34 [5740]  PCDService: No value for key [AMTConfigPath] in hive [{402F6F2E-5683-491C-977D-0CA599A07CAF}] in cache.
    2012-06-12 07:54:34 [5740]  PCDService: No value for key [LineCV 6] in hive [DesignWebSuitePremium-CS6-Win-GM{|}ALL] in cache.
    2012-06-12 07:54:34 [5740]  PCDService: No value for key [LineCV 7] in hive [DesignWebSuitePremium-CS6-Win-GM{|}ALL] in cache.
    2012-06-12 07:54:34 [5740]  AMT: First launch (serial [90148700767331006075]).
    2012-06-12 07:54:34 [5740]  AMT: Application state initialized.  Obtaining Product License.
    2012-06-12 07:54:34 [5740]  AMT: Obtaining client features from cache.
    2012-06-12 07:54:34 [5740]  AMT: Obtaining client product info from cache.
    2012-06-12 07:54:34 [5740]  AMT: Forcing first launch workflow because product is not licensed from previous launch.
    2012-06-12 07:54:34 [5740]  AMT: AMT: Obtaining Product License.
    2012-06-12 07:54:34 [5740]  AMT: Launch Workflow not yet done in foreground in this session.
    2012-06-12 07:54:34 [5740]  AMT: Starting First Launch Workflow
    2012-06-12 07:54:34 [5740]  AMT: Running in PROV_APP
    2012-06-12 07:54:34 [5740]  PCDService: No value for key [EULADelay] in hive [{402F6F2E-5683-491C-977D-0CA599A07CAF}] in master.
    2012-06-12 07:54:34 [5740]  PCDService: No value for key [EULADelay] in hive [{402F6F2E-5683-491C-977D-0CA599A07CAF}] in master.
    2012-06-12 07:54:34 [5740]  PCDService: No value for key [MediaTag] in hive [{402F6F2E-5683-491C-977D-0CA599A07CAF}] in master.
    2012-06-12 07:54:34 [5740]  config: No media tag found for payload {402F6F2E-5683-491C-977D-0CA599A07CAF}
    2012-06-12 07:54:34 [5740]  config: Using default media policy RET
    2012-06-12 07:54:34 [5740]  uiswitch: EULA has already been accepted.
    2012-06-12 07:54:34 [5740]  AMT: Starting ALM workflow.
    2012-06-12 07:54:34 [5740]  AMT: Initializing ALM for serialized activation.
    2012-06-12 07:54:34 [5740]  ALMService: Initializing as licensed app
    2012-06-12 07:54:34 [5740]  ALM: _info_: Start ALM 3.5 Release (build 3.5.2.0)
    2012-06-12 07:54:34 [5740]  SLCoreService: Starting up SLCore 1.5 Release (build 1.5.21.224873).
    2012-06-12 07:54:34 [5740]  SLCoreService: Service construction took 0.0 ms and succeed.
    2012-06-12 07:54:34 [5740]  ALM: _info_: LEID passed DesignWebSuitePremium-CS6-Win-GM is used to configure SLCore = 0
    2012-06-12 07:54:34 [5740]  ALM: _info_: Host app is Licensable App
    2012-06-12 07:54:34 [5740]  PCDService: No value for key [AcrobatPro-AS1-Win-GM{|}16] in hive [SSC-AS1-LE-Dominance] in master.
    2012-06-12 07:54:34 [5740]  config: SSC LEID dir not found: C:\Program Files (x86)\Common Files\Adobe\ssc\TechnicalCommunicationSuite-TS3.5-Win-GM
    2012-06-12 07:54:34 [5740]  config: SSC LEID dir not found: C:\Program Files (x86)\Common Files\Adobe\ssc\TechnicalCommunicationSuite-TS3.5-Win-GM
    2012-06-12 07:54:34 [5740]  ALM: _info_: Found LEID AcrobatPro-AS1-Win-GM with AMT Path C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\AMT
    2012-06-12 07:54:34 [5740]  ALM: _info_: Found LEID AcrobatSuite-AS1-Win-GM with AMT Path C:\Program Files (x86)\Common Files\Adobe\ssc\AcrobatSuite-AS1-Win-GM
    2012-06-12 07:54:34 [5740]  ALM: _info_: Found LEID FrameMakerServer-TS3-Win-GM with AMT Path C:\Program Files (x86)\Common Files\Adobe\ssc\FrameMakerServer-TS3-Win-GM
    2012-06-12 07:54:34 [5740]  ALM: _info_: Found LEID TechnicalCommunicationSuite-TS3-Win-GM with AMT Path C:\Program Files (x86)\Common Files\Adobe\ssc\TechnicalCommunicationSuite-TS3-Win-GM
    2012-06-12 07:54:34 [5740]  ALM: _info_: Found LEID DesignSuiteStandard-CS5.5-Win-GM with AMT Path C:\Program Files (x86)\Common Files\Adobe\ssc\DesignSuiteStandard-CS5.5-Win-GM
    2012-06-12 07:54:34 [5740]  ALM: _info_: Found LEID WebSuitePremium-CS5.5-Win-GM with AMT Path C:\Program Files (x86)\Common Files\Adobe\ssc\WebSuitePremium-CS5.5-Win-GM
    2012-06-12 07:54:34 [5740]  ALM: _info_: Found LEID DesignSuitePremium-CS5.5-Win-GM with AMT Path C:\Program Files (x86)\Common Files\Adobe\ssc\DesignSuitePremium-CS5.5-Win-GM
    2012-06-12 07:54:34 [5740]  ALM: _info_: Found LEID MasterCollection-CS5.5-Win-GM with AMT Path C:\Program Files (x86)\Common Files\Adobe\ssc\MasterCollection-CS5.5-Win-GM
    2012-06-12 07:54:34 [5740]  ALM: _info_: Found LEID ELearningSuite-ES2.5-Win-GM with AMT Path C:\Program Files (x86)\Common Files\Adobe\ssc\ELearningSuite-ES2.5-Win-GM
    2012-06-12 07:54:34 [5740]  ALM: _info_: Found LEID TechnicalCommunicationSuite-TS3.5-Win-GM with AMT Path
    2012-06-12 07:54:34 [5740]  ALM: _info_: Found LEID V6{}TechnicalCommunicationSuite-TS4-Win-PR with AMT Path C:\Program Files (x86)\Common Files\Adobe\ssc\V6{}TechnicalCommunicationSuite-TS4-Win-PR
    2012-06-12 07:54:34 [5740]  ALM: _info_: Found LEID V6{}FrameMakerServer-TS4-Win-PR with AMT Path C:\Program Files (x86)\Common Files\Adobe\ssc\V6{}FrameMakerServer-TS4-Win-PR
    2012-06-12 07:54:34 [5740]  ALM: _info_: Found LEID DesignWebSuitePremium-CS6-Win-PR with AMT Path C:\Program Files (x86)\Common Files\Adobe\ssc\DesignWebSuitePremium-CS6-Win-PR
    2012-06-12 07:54:34 [5740]  ALM: _info_: Found LEID DesignSuiteStandard-CS6-Win-PR with AMT Path C:\Program Files (x86)\Common Files\Adobe\ssc\DesignSuiteStandard-CS6-Win-PR
    2012-06-12 07:54:34 [5740]  ALM: _info_: Found LEID MasterCollection-CS6-Win-PR with AMT Path C:\Program Files (x86)\Common Files\Adobe\ssc\MasterCollection-CS6-Win-PR
    2012-06-12 07:54:34 [5740]  ALM: _info_: Found LEID V6{}ELearningSuite-ES6-Win-PR with AMT Path C:\Program Files (x86)\Common Files\Adobe\ssc\V6{}ELearningSuite-ES6-Win-PR
    2012-06-12 07:54:34 [5740]  ALM: _info_: Found LEID CreativeCloud-CS6-Win-GM with AMT Path C:\Program Files (x86)\Common Files\Adobe\ssc\CreativeCloud-CS6-Win-GM
    2012-06-12 07:54:34 [5740]  ALM: _info_: Found LEID DesignWebSuitePremium-CS6-Win-GM with AMT Path C:\Program Files (x86)\Common Files\Adobe\Adobe Creative Suite 6 Design and Web Premium\AMT
    2012-06-12 07:54:34 [5740]  PCDService: No value for key [MediaTag] in hive [{402F6F2E-5683-491C-977D-0CA599A07CAF}] in master.
    2012-06-12 07:54:34 [5740]  config: No media tag found for payload {402F6F2E-5683-491C-977D-0CA599A07CAF}
    2012-06-12 07:54:34 [5740]  config: Using default media policy RET
    2012-06-12 07:54:34 [5740]  ALM: _info_: MediaTagPolicy is RET
    2012-06-12 07:54:34 [5740]  PCDService: No value for key [NTL_WO_SN] in hive [DesignWebSuitePremium-CS6-Win-GM] in master.
    2012-06-12 07:54:34 [5740]  ALM: _info_: Canonical LEID is AcrobatPro-AS1-Win-GM
    2012-06-12 07:54:34 [5740]  ALM: _info_: Driver LEID is DesignWebSuitePremium-CS6-Win-GM
    2012-06-12 07:54:34 [5740]  PCDService: No value for key [901487007673310060752956] in hive [RejectedSNDomain_CS5] in cache.
    2012-06-12 07:54:34 [5740]  SLCoreService: Reading product config [C:\Program Files (x86)\Common Files\Adobe\Adobe Creative Suite 6 Design and Web Premium\AMT\SLConfig.xml]
    2012-06-12 07:54:34 [5740]  ALM: _info_: alm::IsLangPackForLocaleInstalled - Checking if lang pack is installed for ALL
    2012-06-12 07:54:34 [5740]  ALM: _info_: alm::IsLangPackForLocaleInstalled - Lang pack is not installed
    2012-06-12 07:54:34 [5740]  ALM: _time_: (func: ALM_Initialize, duration: 0.016 sec)
    2012-06-12 07:54:34 [5740]  AMT: Performing ALM silent license verification.
    2012-06-12 07:54:34 [5740]  PCDService: No value for key [EncryptedSerial] in hive [{402F6F2E-5683-491C-977D-0CA599A07CAF}] in cache.
    2012-06-12 07:54:34 [5740]  PCDService: No value for key [Serial] in hive [{402F6F2E-5683-491C-977D-0CA599A07CAF}] in cache.
    2012-06-12 07:54:34 [5740]  config: No pre-serial number found in {402F6F2E-5683-491C-977D-0CA599A07CAF}
    2012-06-12 07:54:34 [5740]  PCDService: No value for key [PSN] in hive [DesignWebSuitePremium-CS6-Win-GM{|}en_US] in cache.
    2012-06-12 07:54:34 [5740]  config: No en_US provisional serial number found in DesignWebSuitePremium-CS6-Win-GM
    2012-06-12 07:54:34 [5740]  PCDService: No value for key [PSN] in hive [DesignWebSuitePremium-CS6-Win-GM{|}ALL] in cache.
    2012-06-12 07:54:34 [5740]  config: No ALL provisional serial number found in DesignWebSuitePremium-CS6-Win-GM
    2012-06-12 07:54:34 [5740]  ALM: _info_: Validate license at Pre-Chrome time
    2012-06-12 07:54:34 [5740]  ALM: _info_: Searching license for locale en_US ...
    2012-06-12 07:54:34 [5740]  PCDService: No value for key [SN] in hive [AcrobatPro-AS1-Win-GM{|}en_US] in cache.
    2012-06-12 07:54:34 [5740]  config: No en_US licensed serial number found in AcrobatPro-AS1-Win-GM
    2012-06-12 07:54:34 [5740]  PCDService: No value for key [970787040936944783527623] in hive [RejectedSNDomain_CS5] in cache.
    2012-06-12 07:54:34 [5740]  SLCoreService: Reading product config [C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\AMT\SLConfig.xml]
    2012-06-12 07:54:34 [5740]  ALM: _info_: alm::IsLangPackForLocaleInstalled - Checking if lang pack is installed for ALL
    2012-06-12 07:54:34 [5740]  ALM: _info_: alm::IsLangPackForLocaleInstalled - Lang pack is not installed
    2012-06-12 07:54:34 [5740]  ALM: _info_: alm::IsLangPackForLocaleInstalled - Checking if lang pack is installed for ALL
    2012-06-12 07:54:34 [5740]  ALM: _info_: alm::IsLangPackForLocaleInstalled - Lang pack is not installed
    2012-06-12 07:54:34 [5740]  ALM: _info_: Found existing serialization under LEID AcrobatPro-AS1-Win-GM, the serial number locale is ALL
    2012-06-12 07:54:34 [5740]  PCDService: No value for key [970787040936944783527623] in hive [RejectedSNDomain_CS5] in cache.
    2012-06-12 07:54:34 [5740]  ALM: _info_: alm::IsLangPackForLocaleInstalled - Checking if lang pack is installed for ALL
    2012-06-12 07:54:34 [5740]  ALM: _info_: alm::IsLangPackForLocaleInstalled - Lang pack is not installed
    2012-06-12 07:54:34 [5740]  PCDService: No value for key [970787040936944783527623] in hive [RejectedSNDomain_CS5] in cache.
    2012-06-12 07:54:34 [5740]  ALM: _info_: alm::IsLangPackForLocaleInstalled - Checking if lang pack is installed for ALL
    2012-06-12 07:54:34 [5740]  ALM: _info_: alm::IsLangPackForLocaleInstalled - Lang pack is not installed
    2012-06-12 07:54:34 [5740]  ALM: _info_: Cached license is expired for locale en_US, continue the search to next locale
    2012-06-12 07:54:34 [5740]  ALM: _info_: No valid license found, fall back to the most preferred locale: en_US
    2012-06-12 07:54:34 [5740]  PCDService: No value for key [SN] in hive [AcrobatPro-AS1-Win-GM{|}en_US] in cache.
    2012-06-12 07:54:34 [5740]  config: No en_US licensed serial number found in AcrobatPro-AS1-Win-GM
    2012-06-12 07:54:34 [5740]  PCDService: No value for key [970787040936944783527623] in hive [RejectedSNDomain_CS5] in cache.
    2012-06-12 07:54:34 [5740]  ALM: _info_: alm::IsLangPackForLocaleInstalled - Checking if lang pack is installed for ALL
    2012-06-12 07:54:34 [5740]  ALM: _info_: alm::IsLangPackForLocaleInstalled - Lang pack is not installed
    2012-06-12 07:54:34 [5740]  ALM: _info_: alm::IsLangPackForLocaleInstalled - Checking if lang pack is installed for ALL
    2012-06-12 07:54:34 [5740]  ALM: _info_: alm::IsLangPackForLocaleInstalled - Lang pack is not installed
    2012-06-12 07:54:34 [5740]  PCDService: No value for key [970787040936944783527623] in hive [RejectedSNDomain_CS5] in cache.
    2012-06-12 07:54:34 [5740]  ALM: _info_: alm::IsLangPackForLocaleInstalled - Checking if lang pack is installed for ALL
    2012-06-12 07:54:34 [5740]  ALM: _info_: alm::IsLangPackForLocaleInstalled - Lang pack is not installed
    2012-06-12 07:54:34 [5740]  SLCoreService: Syncing to license store...
    2012-06-12 07:54:35 [5740]  SLCoreService: Found server mkey.
    2012-06-12 07:54:35 [5740]  SLCoreService: Loading license references...
    2012-06-12 07:54:35 [5740]  SLCoreService: Found 4 license file(s)
    2012-06-12 07:54:35 [5740]  SLCoreService: Parsing license file [20566957.lic] succeed.
    2012-06-12 07:54:35 [5740]  SLCoreService: Parsing license file [226832637.lic] succeed.
    2012-06-12 07:54:35 [5740]  SLCoreService: Parsing license file [28738525.lic] succeed.
    2012-06-12 07:54:35 [5740]  SLCoreService: Parsing license file [7412525.lic] succeed.
    2012-06-12 07:54:35 [5740]  SLCoreService: License store synchronization took 32.2 ms and succeed.
    2012-06-12 07:54:35 [5740]  SLCoreService: Query license: type = 2, duration = 30 days, remaining = expired.
    2012-06-12 07:54:35 [5740]  config: Setting current license to AcrobatPro-AS1-Win-GM [ALL]
    2012-06-12 07:54:35 [5740]  PCDService: No value for key [LoadTrial] in hive [{402F6F2E-5683-491C-977D-0CA599A07CAF}] in master.
    2012-06-12 07:54:35 [5740]  PCDService: No value for key [LoadTrial] in hive [{AC76BA86-1033-F400-7760-000000000005}] in master.
    2012-06-12 07:54:35 [5740]  PCDService: No value for key [PDApp_WF] in hive [AcrobatPro-AS1-Win-GM] in cache.
    2012-06-12 07:54:35 [5740]  PCDService: No value for key [ALM_Info_S1] in hive [AcrobatPro-AS1-Win-GM{|}ALL] in cache.
    2012-06-12 07:54:35 [5740]  ALM: _info_: Performing Block Check
    2012-06-12 07:54:35 [5740]  SLCoreService: Query license: type = 2, duration = 30 days, remaining = expired.
    2012-06-12 07:54:35 [5740]  PCDService: No value for key [Subscription] in hive [{402F6F2E-5683-491C-977D-0CA599A07CAF}] in master.
    2012-06-12 07:54:35 [5740]  PCDService: No value for key [Subscription] in hive [{AC76BA86-1033-F400-7760-000000000005}] in master.
    2012-06-12 07:54:35 [5740]  PCDService: No value for key [ACT_NOINTERNET] in hive [AcrobatPro-AS1-Win-GM] in cache.
    2012-06-12 07:54:35 [5740]  PCDService: No value for key [SERVICE_ONLINE] in hive [AcrobatPro-AS1-Win-GM] in cache.
    2012-06-12 07:54:35 [5740]  SLCoreService: Query license: type = 2, duration = 30 days, remaining = expired.
    2012-06-12 07:54:35 [5740]  ALM: _time_: (func: ALM_License_SilentValidate, duration: 0.046 sec)
    2012-06-12 07:54:35 [5740]  ALM: _info_: ALM_License_SilentValidate return license status: Invalid
    2012-06-12 07:54:35 [5740]  AMT: License check shows product is unlicensed.
    2012-06-12 07:54:35 [5740]  AMT: Product is not activated.  Starting ALM launch-time product licensing UI.
    2012-06-12 07:54:35 [5740]  SLCoreService: Query license: type = 2, duration = 30 days, remaining = expired.
    2012-06-12 07:54:35 [5740]  PCDService: No value for key [PDApp_WF] in hive [AcrobatPro-AS1-Win-GM] in cache.
    2012-06-12 07:54:35 [5740]  SLCoreService: Query license: type = 2, duration = 30 days, remaining = expired.
    2012-06-12 07:54:35 [5740]  ALM: _info_: Entered ALM_NeedANAG
    2012-06-12 07:54:35 [5740]  SLCoreService: Query license: type = 2, duration = 30 days, remaining = expired.
    2012-06-12 07:54:35 [5740]  PCDService: No value for key [ADOBEID_EXT_PROFILE] in hive [970787040936944783527623] in cache.
    2012-06-12 07:54:35 [5740]  ALM: _info_: Exiting ALM_NeedANAG
    2012-06-12 07:54:35 [5740]  AMT: NAG Ignored!!.
    2012-06-12 07:54:35 [5740]  AMT: Licensing has been refused.  Application must exit.
    2012-06-12 07:54:35 [5740]  AMT: Starting Data Collection for SWTag_Init()
    2012-06-12 07:54:35 [5740]  AMT: DoISOTagging() productCanonicalLEID = AcrobatPro-AS1-Win-GM;outMappedLEID =  AcrobatPro-AS1-Win-GM, unused =
    2012-06-12 07:54:35 [5740]  AMT: DoISOTagging() productPayloadCode = {AC76BA86-1033-F400-7760-000000000005};driverPayloadCode =  {402F6F2E-5683-491C-977D-0CA599A07CAF}
    2012-06-12 07:54:35 [5740]  PCDService: No value for key [EPIC_APP_543] in hive [AcrobatPro-AS1-Win-GM] in master.
    2012-06-12 07:54:35 [5740]  AMT: SWTag_Init() Tags Arguments CS6 Design and Web Premium; AcrobatPro-AS1-Win-GM;
    2012-06-12 07:54:35 [5740]  AMT: DoISOTagging() License Status = unlicensed
    2012-06-12 07:54:35 [5740]  AMT: DoISOTagging() Tags 970787040936944783527623; 10.0; TRIAL
    2012-06-12 07:54:35 [5740]  AMT: DoISOTagging() Product Version 10; 0
    2012-06-12 07:54:35 [5740]  performance: AMTObtainProductLicense took 117.355057 ms
    2012-06-12 07:54:35 [5740]  PCDService: No value for key [AdobeUpdaterCodeV2] in hive [{402F6F2E-5683-491C-977D-0CA599A07CAF}] in master.
    2012-06-12 07:54:35 [5740]  PCDService: No value for key [AdobeUpdaterCodeV2] in hive [{AC76BA86-1033-F400-7760-000000000005}] in master.
    2012-06-12 07:54:35 [5740]  PCDService: No value for key [Updates] in hive [{402F6F2E-5683-491C-977D-0CA599A07CAF}] in master.
    2012-06-12 07:54:35 [5740]  PCDService: No value for key [Updates] in hive [{AC76BA86-1033-F400-7760-000000000005}] in master.
    2012-06-12 07:54:35 [5740]  AUMService: config: No AdobeUpdaterCode found in configuration; AUM will be disabled.
    2012-06-12 07:54:35 [5740]  ServiceLoader: looking for library C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\updaternotifications.dll
    2012-06-12 07:54:35 [5740]  ServiceLoader: looking for library C:\Windows\system32\updaternotifications.dll
    2012-06-12 07:54:35 [5740]  ServiceLoader: Failed to find updaternotifications.dll
    2012-06-12 07:54:35 [5740]  ALMService: Terminating
    2012-06-12 07:54:35 [5740]  SLCoreService: Shutting down SLCore 1.5 Release (build 1.5.21.224873).
    2012-06-12 07:54:35 [5740]  SLCoreService: Service destruction took 0.6 ms and succeed.
    2012-06-12 07:54:35 [5740]  ALM: _info_: End ALM
    2012-06-12 07:54:35 [5740]  performance: AMTReleaseProductLicense took 5.815388 ms
    2012-06-12 07:54:35 [5740]  AMT: END SESSION.

  • Ios7.1 causing web pictures to show very grainy and low resolution.  Help!

    Since I've updated to ios7.1, I've noticed that pictures on a lot of apps have become very grainy and low-res (think 2002 dial-up loading images), yet pictures I take with my camera are fine.  I tried saving one to see if it was just a temporary display problem but the final saved image would come in clear, but the problem continues.  I thought maybe it was part of the visual assistance that came with 7.1 but if it is, I certainly can't find a way to turn it off.  Does anyone know what could be causing this or how to fix it?  Additional info is that I'm using an iPhone 5c.  I don't know if this is going on with any other models, but a friend of mine is having the same issue with his 5c.  Thanks in advance!

    My phone has been having the exact same issue. Every time I try to look at an image in safari it is grainy and pixelated. I have the 5 and two of my friends who have the 5c are having the same problem. Hopefully Apple will soon put forth a new update to fix this bug that the 7.1 update caused!

  • Find start and end execution time of a sql statement?

    I am have databases with 10.2.0.3 and 9.2.0.8 on HP UNIX 11i and Windows 200x.
    I am not in a position to turn on sql tracing in production environment. Yet, I want to find when a sql statement started executing and when it ended. When I look at v$sql, it has information such FIRST_LOAD_TIME, LAST_LOAD_TIME etc. No where it has information last time statement began execution and when it ended execution.. It shows no of executions, elapsed time etc, but they are cumulative. Is there a way to find individual times (time information each time a sql statement was executed. – its start time, its end time ….)? If I were to write my own program how will I do it?
    Along the same line, when an AWR snapshot is shown, does it only include statements executed during that snapshot or it can have statements from the past if they have not been flushed from shared memory. If it only has statements executed in the snapshot period, how does it know when statement began execution?

    Hi,
    For oracle 10g you can use below query to find start and end time, you can see data for last seven days.
    select min(to_char(a.sample_time,'DD-MON-YY HH24:MI:SS')) "Start time", max(to_char(a.sample_time,'DD-MON-YY HH24:MI:SS')) "End Time", b.sql_text
    from dba_HIST_ACTIVE_SESS_HISTORY a,DBA_HIST_SQLTEXT b where
    a.sql_id=b.sql_id
    order by 1;
    Regards
    Jafar

  • How to find max based on 2 columns.

    Hi I have a table where I have two numeric fields (date and time) )(thouse field are not date time format but numeric)
    Column A represents date and column B represent time.
    How would I find max value of column A and with results for A find Max for B.
    example
    A - - - - - - - - - -B
    101010 - - - - - 202020
    101011 - - - - - 202021
    101012 - - - - - 202021
    101010 - - - - - 202022
    101012 - - - - - 202020
    What I looking for is
    A - - - - - - - - - - B
    101012 - - - - - 202021
    Thanks

    You can try one of the following...
    sql> select * from temp;
             A          B
        101010     202020
        101011     202021
        101012     202021
        101010     202022
        101012     202020
      1  select a,b from (
      2     select a,
      3            b,
      4            rank () over (order by a desc, b desc) rnk
      5       from temp
      6* ) where rnk = 1
    sql> /
             A          B
        101012     202021
      1  select a,b from (
      2    select a,b from temp
      3       order by a desc, b desc
      4* ) where rownum = 1
    sql> /
             A          B
        101012     202021Please try to provide create table statements and insert data scripts instead of "select * from table".
    It helps creating your case easier.

  • Explain about high water mark and low watermark

    explain about high water mark and low watermark?

    biju2012 wrote:
    Here are a few links..
    http://www.orafaq.com/tuningguide/
    Look at Analysing problem SQL > Data Storage Problems > High Water Mark
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:575223085419
    I checked both those links, and neither says anything about a "low water mark". One link has a copyright notice of 2003, the other starts with a question about 8.1.6.
    Given the nature of the question I think we should be allowed to guess that the OP is probably thinking about the "low high water mark" and "high high water mark" that applies to segments using ASSM (automatic segment space management).
    Under ASSM, Oracle doesn't format blocks for use in absolute order, it will pick batches of blocks (typically 16 - unless that's changed fairly recently) in the most recently allocated extent. This means that you can end up with some UNFORMATTED blocks near the start of the extent with some FORMATTED blocks later in the extent.
    The "low high watermark" is the last block below which there are no UNFORMATTED blocks; the "high high watermark" is the block above which there are no FORMATTED blocks. Looking at it another way - between the low and high high watermarks you may find both formatted and unformatted blocks, but this condition doesn't exist anywhere else in the segment.
    Regards
    Jonathan Lewis

Maybe you are looking for

  • Flash Player not working in IE 10, Windows 7 64 bit version

    My system is Windows 7 64bit version with IE 10.  Adobe Flash Player will not work in IE 10.  I have tried an unistall and a clean install with no success.  I can hear the video but not see it.  I also have Mozilla Firefox installed on my computer an

  • Scan a Pin barcode

    my blackberry curve is 8520 when i click the scan a pin barcode in BBM the camera hangs up. what should i do so that it whould be fix again? Solved! Go to Solution.

  • Font Book - OS X Lion Default Fonts

    I'm trying to find out what fonts were added to OS X in Lion (compared to Snow Leoaprd). I've compiled my own list. I think that Apple added 79 fonts in OS X Lion. Here's what they are. Please correct me if I'm wrong: • Al Bayan • Arial Hebrew • Ayut

  • Smdb.service refuses to become active on startup.

    Deleted. Last edited by Ezprezo (2012-12-05 22:43:17)

  • How do I find Firefox profile if it has been deleted from a Mac?

    I was having problems with Firefox so deleted it from my Mac. I have tried to download the latest edition as I need it to run a java applet that won't work with Safari or Google chrome. When I try to run the program after downloading it tells me" Fir