Problem counter

I have a chart with N record, a field it date, time, and a field number, has to insert in the field number a daily sequential counter...
ES:
TABLE PIPPO
DATE TIME CONT
01/01/2005     00:00          1
01/01/2005     01:00          2
02/01/2005     00:00          1
02/01/2005     00:30          2
03/01/2005     10:00          1
03/01/2005 10:05          2
....

Does this work for you ?
SQL> select * from t order by 1;
DATE#                      SEQ
25-07-2005 01:00:00
25-07-2005 02:00:00
25-07-2005 03:00:00
26-07-2005 01:00:00
26-07-2005 02:00:00
26-07-2005 03:00:00
26-07-2005 04:00:00
26-07-2005 05:00:00
26-07-2005 06:00:00
26-07-2005 07:00:00
27-07-2005 01:00:00
27-07-2005 02:00:00
27-07-2005 03:00:00
27-07-2005 04:00:00
27-07-2005 05:00:00
15 rows selected.
SQL> merge into t
  2  using (
  3  select rowid rwn,
  4  row_number() over(partition by trunc(date#) order by date#) rn
  5  from t) t1
  6  on (t.rowid = t1.rowid)
  7  when matched then
  8   update set t.seq = t1.rn
  9  when not matched then
10   insert (date#, seq) values (sysdate,0);
15 rows merged.
SQL> select * from t order by 1;
DATE#                      SEQ
25-07-2005 01:00:00          1
25-07-2005 02:00:00          2
25-07-2005 03:00:00          3
26-07-2005 01:00:00          1
26-07-2005 02:00:00          2
26-07-2005 03:00:00          3
26-07-2005 04:00:00          4
26-07-2005 05:00:00          5
26-07-2005 06:00:00          6
26-07-2005 07:00:00          7
27-07-2005 01:00:00          1
27-07-2005 02:00:00          2
27-07-2005 03:00:00          3
27-07-2005 04:00:00          4
27-07-2005 05:00:00          5
15 rows selected.Rgds.

Similar Messages

  • SCOM-Difference between Problem Count and Event Count in Application Failure Analysis Report

    Dear All, 
    Could someone explain me clearly , the difference between  Problem Count and
    Event Count in Application Failure Analysis  Report. Please help me in understanding What is meant be problem and event in the report .
    Thanks in Advance.
    Regards,
    Rajesh Kumar C

    Hello Rajesh,
    The "problem" is the logically grouped set of the exception events which have the identical hash calculated over several fields as "Stack", "Source", "Failed Function" and so on... So, even if exceptions are different
    in the other properties but hash matches over the considered properties - then all those exceptions go into the same "problem group".
    So, event is an instance of the problem. One event contributes to one problem but one problem might have a huge event count if you have a repeating issue.
    The logic is similar for the performance analysis report, only fields that go into the "problem" hash are different. e.g. "Stack" is not used in hash for perf events...
    Dmitry Matveev

  • Problem Counting A and B Encoder Signals on Two Counters.

    Hi All,
    I have an existing LabVIEW program that uses three counters to measure A, B and Z signals of the encoder.  I can read these signals separately if I hook only one of them to the PCI 6602.  If I hook up A and B, I will get intermitten correct reading for signal A.  I will always get the correct reading for signal B.  Is there a problem of trying to measure these signals using separate counters?  This program basically tries to measure the time between the different edges.  There isn't any documentation, so I am not even sure which board this application was written for.  Although, there is an analog input section of this code.  I even tried the counter for the 6502E board.  I get the same problem.  I am not sure if the physical channels constants in the program is correct.  Has anyone run into this problem before?
    Thank you for your input.
    Attachments:
    Main Encoder Tester.vi ‏883 KB

    Hello Van626,
    After looking over your code for measuring a encoder, I would suggest performing this acquistion in a different way. The reason why is that it is not advisable to create and clear or start and stop in a while loop. In order to get around this, here are some ideas I had:
    1.) Use the Counter Input Angular Encoder Task. This task will allow you to record the encoder measurements so that you don't have to program this yourself. I would suggest starting with Measure Angular Position.vi example in LabVIEW. In order to specify the PFI lines for the A, B, Z terminals, there is a channel property node under Counter Input » Encoder for A, B, and Z terminals.
    2.) If you want to record each signal, you have enough counters to do this. There is a VI called DAQmx Connect Terminals that will connect PFI lines together. In doing this, you can connect your three signals to three PFI lines but have them go to multiple counters. I have current tested this with an Angular Encoder task with a Two edge Separation and it works perfectly
    Note: You will need to look at the Device Routes for the PCI-6602 to ensure that you are sending the signal to the correct place. Another caveat about connecting PFI lines together you will have to disconnect them when you are done. If you don't they will always be connected. This can be done by reseting the device using the DAQmx Reset Device.vi or the DAQmx Disconnect Terminals.
    Jim St
    National Instruments
    RF Product Support Engineer

  • Performance problem counting ocurrences

    Hi,
    I have an infocube with 5 characteristics (region,company,distribution center, route, customer) and 3 key figures, I have set one of this KF to average ( values different to 0), i am loading data from 16 months and 70 weeks. In my query i have set a calculated KF which is counting the ocurrences by the lowest characateristic to obtain it by granularity level therefore I always count the lowest detail (customer) there are aprox, 500K customers so my web templates are taking more than 10 minutes displaying the 12 months, I have looked up to make aggregations however the query is not using them anyway, has anyone had this kind of performance problems with such a low level of data (6 million for 12 months), Has anyone found a workaround to improve performance? I really expect someone has this experience and could help me out, this will depend on the life of BW in the organzation.
    Please help me out!
    Thanks in advance!

    Hi,
    First of all thanks for your advices, I have taken part of both in my solution, I am now not considering anymore to use the avg defined in the ratio, how ever i am still considering  it in the query, it is answering at least for now taking up to 10 mins. Now my exact requirement is to display the count of distinct customers groped by the upper levels. I have populated my infocube with 1 in my key figure however, it may be duplicated for a distribution center, company or region, therefore i have to find out the distinct customer. With SAP's "How to count occurences" i managed that, but it is not performing at an acceptable level , i have performed tests without the division between CKF customer/ CKF avg customer and found this is what is now slowing the query. I find the boolean evaluation might be more useful and less costly if you could hint a little more in how to do it, i would appreciate with points, also a change in the model could be costly by the front end part because of dependences with queries and web templates, i rather have it solved in BW workbench by partitioning, aggregation, new infocubes,  which is already a solution I have analyzed by disggregating the characteristics by totals in different infocubes with the same KF and then by query selecting the appropiate one. I was wondering if an initial routine could do the count distincts and group by with the same ratio for different characteristics so i do not rework the other configuration I already have

  • Problem counter (Frequency)

    Hi,
    I have a DAQ card 6024E. I want to measure a frequency between 10 and 500Hz, (from a propeller) approximately. The signal come from a inductive-sensor. When I put the signal on the PFI9 input (ctr0 gate) and I use the DAQmx "CI Frequency" (1 counter measure) I get sometimes good measure and sometimes wrong measure (0,3 Hz or 2MHz for example).
    So, Please you can help me, where is the problem?
    Thanks
    Franco
    this is mi VI
    Attachments:
    FREQUENCY 1.vi ‏21 KB

    Hello,
    I already answered to your question on the french forum but I also answer here for english people who have the same problem.
    There are a few problems in your VI. The detailed help specifies that you don't need to connect the divisor input when you choose Large Range with 2 Counters in the measurement method of DAQmx Create Channel (CI-Frequency). Moreover, you don't need the DAQmx Timing (Implicit) function in your VI. However, you'd better add a Wait Until Next ms Multiple in your while loops in order to avoid a processor overload which would slow down your computer.
    So I changed a few things in your VI. Please find it in attachement. I saved him in LabVIEW 2009.
    Please let us know if you succeed to read your frequency measurements.
    Best regards,
    Jérémy C.
    National Instruments France
    #adMrkt{text-align: center;font-size:11px; font-weight: bold;} #adMrkt a {text-decoration: none;} #adMrkt a:hover{font-size: 9px;} #adMrkt a span{display: none;} #adMrkt a:hover span{display: block;}
    Travaux Pratiques d'initiation à LabVIEW et à la mesure
    Du 2 au 23 octobre, partout en France
    Attachments:
    FREQUENCY (modifié LV2009).vi ‏14 KB

  • Problem counting dinamic column!

    Hi,
    I am trying to make something like a statistic of a table.
    i have a table :
    table(M) {
    column(priority) data = hight ,medium, low
    column(departement) = departement A, departement B, departement C
    column(id_message)} = 1, 2 ,3 ..............
    i wanted to creat a report output like this:
    ------------------------Hight---------Medium--------Low---------- Total
    departement A ------1---------------2----------------2--------------5
    departement B-------3---------------3----------------1--------------7
    departement C-------2---------------2----------------2--------------6
    with this code i obtain this output, but it is a static solution, that only works for 3 types of priorities and i nedd a dinamic solution
    select department,
    count(decode(priority,'high',id_message,null)) high,
    count(decode(priority,'medium',id_message,null)) medium,
    count(decode(priority,'low',id_message,null)) low,
    count(id_message) Total
    from m
    group by department
    order by department
    can i make something like this:
    create or replace function statistic_dep_prior
    return clob
    is
    declare
    i number;
    j number;
    begin
    for i in 0..dp_id_departament loop
    for j in 0..id_priority loop
    count(id_ticket) departement,
    end loop;
    end loop;
    count(id_ticket) Total
    from V_TICKET
    group by dp_id_departament
    order by dp_id_departament
    return('
    <table>
    <tr>
    <td>Departament</td>
    <td>Hight</td>
    </tr>
    <tr>
    <td>Dep. A</td>
    <td>10</td>
    <td>20</td>
    </tr>
    </table>
    end;
    Thank´s
    Pepe
    Message was edited by:
    Pepe

    What you appear to be trying to do likely will work far better using a pipelined table function.
    Try this:
    EXPLAIN PLAN FOR
    SELECT table_name
    FROM user_tables;
    SELECT * FROM TABLE(dbms_xplan.display);
    [pre]
    If that kind of control over formatting an output looks good then check out the demos here:
    http://www.psoug.org/reference/pipelined.html
    asktom.oracle.com and the docs at http://tahiti.oracle.com are also great resources for learning about them.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Counting in DAX - Questions

    Hello
    I´m having problems counting properly in DAX. Here´s an image with the pivot tables:
    And here is the sample spreadsheet if you want to check it:
    Counting in DAX
    The current calculated fields are:
    Max CLOSE 1 Week:
     =IF([Sum of CLOSE]=BLANK(),BLANK(),(CALCULATE(MAX(FactTable[CLOSE]),DATESINPERIOD(Calendar[FullDate],LASTDATE(Calendar[FullDate])-1,-7,DAY))))
    1 Week New High:
     =IF(SUM(FactTable[CLOSE])>[Max CLOSE 1 Week],1)
    Problems:
    1) On table 1 we need to add a calculated field that counts the trading days to the last "1" that appeared on "1 Week  New High", as noted in the example.
    2) On table 2 we need to count the symbols for each date context that have a 1 week new high price, but for some reason the counting doesn´t work.
    Can you please help?

    well, from my understanding the definition of your "1 Week New High" measure is wrong.
    try this one:
    1 Week New High:=IF(
    [Max CLOSE 1 Week]>CALCULATE([Max CLOSE 1 Week], DATEADD(Calendar[FullDate],-1, DAY)),
    1)
    it compares the current [Max CLOSE 1 Week] with the [Max CLOSE 1 Week] of the day before
    you might want to change the ">" to "<>" but thats up to your definition
    this makes a difference if one value is the [Max CLOSE 1 Week] for a whole week and runs out afterwards. [Max CLOSE 1 Week] would be a lower value then the day before - dont know if you want to flag this as a [1 Week New High] then
    hth,
    gerhard
    Gerhard Brueckl
    blogging @ http://blog.gbrueckl.at
    working @ http://www.pmOne.com

  • How to switch Organizer catalog from one hard drive to another?

    As far as a little background, i have just finished two high definition projects in Premiere Elements, the last one being 73 projects combined into 6 blu rays.  It had completely filled up my 1TB hard drive, so i have purchased an additional 2TB internal hard drive, in hopes of being able to switch all my photoshop to the larger internal hard drive.  I am also archiving the old stuff as i finish each project to an external hard drive to free up space. 
    But i am PETRIFIED at the possibility of trying to move my Elements Catalog because of all the stories i have heard about having the majority of the photos needed to 'reconnect' after switching it to an external hard drive and I assume the same thing will happen to me if i move it to another internal hard drive???????   I have had several computer smart gentleman who have often helped me out when i had a problem and one refused to even venture how to successfully move the catalog and other guy's suggestion is to backup the entire Catalog and then restore it on the new drive.   Steve Grisetti said this morning on his webpage that i should cut and paste the file from one drive to the other but not quite sure how easy that is going to be, because when i have searched out the "move' option, it does not allow me to do anything there.  Could that be because i have files that need to be 'reconnected' first before i could accomplish that 'move.'    Steve suggested i come over to this Forum to get some opinions, which is what i have done.  That sounds like being more complicated than just cutting and pasting one folder with 16,000 photos.  What is the safest way to accomplish this without losing anything, and avoiding the need to 'reconnect' 16,000 files which i am not looking forward to.
    So that is my first and foremost question about the Elements Organizer, but i do have some other related problems with the 'reconnect' problem, some of which i have figured out, but not completely.  After finally completing these two big projects, my next goal was to clean up my files, get things organized better, and i seem to be finding more and more problems to address.  The list of problems decreases with each project but i am still able to find new ones.  I am not a computer whiz, and probably shouldn't be trying to accomplish what i am doing with the basic Photoshop programs, something i know the majority of you would be using other more advanced Photoshop programs and much more easily, but i am starting to get this program down, and i don't need more challenges right now.
    So i have 3 additional concerns and questions if anyone can help me out to prevent future problems with the next high definition project for Premiere Elements to burn onto blu rays. 
    1.  Because i ran out of space totally on my old internal hard drive, i set up a temporary file on the new drive for the blu ray projects, and I was able to finish the remaining mpeg2s for the final 2 blu rays from Premiere Elements.  But when i finished, i started to clean up the files, and realized that the catalog was not recognizing any of the mpeg2 files that i had used to assemble the first 4 blu rays, which was the time i set up the new file on the new internal hard drive, and had copied and pasted my blu ray files.  It all seemed to go well, and i was able to finish the final 20 something projects and 2 final mpeg2s for the final blu rays which i prepared and burned on Sony DVD Architect.  . But when i went back and was looking at the final mpeg2 files for the previous 4 blu rays, they all needed to be 'reconnected', and i assume it was because the last 2 were on a different drive.  And after some effort, i was able to reconnect everything i think successfully.  And i am assuming that this will not continue to be a problem if i can get the entire Catalog on the same hard drive.  So write that one off to experience.
    2.  But i hadn't taken the time before doing the blu ray project to label my pictures completely, so the next project i started was renaming the filenames, which quickly presented a new problem, and that made for more 'reconnect' problems again for every picture that i renamed that was used in any of the Premiere Elements Project, so i was back to where i started but even worse off; however, the good news is that my photos were the best organized they ever have been.  So all the mpeg2's on the catalog once again asked for 'reconnect' and came to the conclusion that it must mean any name change in the 'filename' also makes it not recognizable.  With my first big Premiere Elements project which ended up with 4 blu rays, i made the very big mistake of organizing and moving files in windows, and that is problem #3.  So i have come to the conclusion that it doesn't matter, but lots of effort is not obtainable, but i guess i am wondering if it was really worth saving in working condition anyway??  The good news is that the individual photos are fine for the most part, but it is all the mpeg2 files that i combined the original photos into 73 projects, making a mpeg2 of each, then combining about 10-15 of the mpeg2s together and adding music to it, and forming the final mpeg2 which is what i then prepared to burn to blu ray in Sony Architect Studio.  The finished product is still present in the Sony Architect software, and i even burned a copy of them again to make sure that was possible,  So my gut feeling is just to delete all the mpeg2 files in my organizer, and forget they were ever there!  Does that make sense?????    I am not sure that i would ever use them again anyway, but what i am asking is obviously that something as simple as change in the filename screws up the catalog once again?????  Yes, i have learned my lesson, and they will all be finalized with the filename ever before i start the next project.  Just like with the first project, i learned to stay out of windows all together, and now i only use albums which i found no problems using at all. 
    3.  Last problem is the oldest one, but one i still cannot solve.  It was from the first blu ray project when i was doing stupid things like moving folders, and photos from one folder to another to make it better organized.  And that was super-organized, and there was absolutely no need to change filenames!!!!!  I have two separate problems.  Some of the 'reconnects' do not have a picture but the gray square and the ?.  I have been able to find most of the files that i had 'displaced' and have recovered them, and knew where they were, and were able to change file names, and it looks like they are back in the catalog.  There was also a big file of photos that i found in a file that was the original download file for a given date which is how i NOW download my photos into Photoshop in the first place.  But i have not been able to reconnect any of them successfully.  They are there and i have renamed them, but the catalog still does not recongize them as being in the Catalog.  The other group are photos where the picture shows in the catalog, but there is a ? to reconnect, but i cannot find the photos anywhere.  These are of a trip of a once in a life time variety, so i have refused to just press delete, and i thought i had perhaps somehow deleted them all, but i have either found them in another file or the photo is present but i can't rename, i can't reconnect, and for all practical purposes they don't seem to be there.  Any suggestions at all?  Do i have any other options other than just to delete those whole period of my trip? 
    I am longwinded, but i wanted to try and give enough background information.  The problem seems simple, but i just want to confirm the problems i have run into are for the reason i think they are, and any help on how to successfully move the catalog to the second internal hard drive will be greatly appreciated.  Thanks in advance for any comments and or suggestions.
    Ron

    Thanks for your suggestions, i knew i had overdone it when i wrote the entire story.  Just a couple direct questions based on your response!!
    Just a couple of questions, i am assuming all the reconnection problems have to be taken care of either by connecting or deleting before the catalog can be moved.  Correct? 
    The reconnect problems i have were not renamed outside of Photoshop, and the renaming does not seem to be an issue except for mpeg2s that are in the catalog that were used to generate the blu rays but i think it was me screwing things up when i didn't know better and was moving folders and photos in folders (Window type) .   Since the blu rays are in the Sony software complete and ready to reburn easily, i assume it would be okay to delete all those that are in the catalog, that need to be reconnected for whatever reason.  Plus the individual photos of most of them are just fine.  I am talking 376 'reconnect problems' counting all those mpeg2 files which are at least the majority of the 376.  Probably would be nice to have, but is there any reason i have to keep them since the photos are okay and the blu rays are burned and still in the Sony Architect program intact?  
    What i don't understand is the important photos that are worth trying to save seem to be in the proper folder, which is what is stated in properties, but the photo is in the catalog, but with the ? and cannot do anything with it at all, without just going to reconnection, and when i try to identify the folder, it says it is empty, which those are NOT.   If it takes 'forever', then albeit, at least for these few pictures.  I really don't want to delete those!
    And is it possible to do what my computer tech is telling me that it will all transfer accurately and completely if we backup the entire catalog and then restore it to the new drive?.  It seems like after i complete the reconnects one way or another, it might be an easier process that can be completed totally within Element?    Since the catalog is on c drive, i guess i can't do what you suggested buy why? 
    I kept to those tips you gave me.  It seems like an impossibility to save these pictures, but these were from my very first efforts with Premiere Elements and blu rays.  Other than the renaming the changing and affecting the Premiere Elements projects in the second one, i have no other problems, and have no recconect problems.  So i guess i am moving in the right direction.  I just don't need to keep finding ways to make more problems for myself.
    Ron

  • Can I use Replacemen​t Printer ink cartridges for HP officejet Pro 8610

    I recently purchased an HP OfficeJet Pro 8610. I previously had an 8600. They both use the same ink cartridges. I had just installed some remanufactured 950 XL and 951 XL cartridges in the old printer and tried to use them in the new printer. Of course I got an error message that cartridges weren't HP but the printer would still work. I would like to know if I can use other remanufactured ink cartridges with the new printer or if there is some way for the printer to allow me to use other ink cartridges as the HP cartridges are way over priced for the consumers. I hope there is a person out there that is conservative like me and tries to find the best bargains on everything. Your solutions would be appreciated. I waited on HP Support Assistant for 10 minutes with a dialogue I would be connected to a technician in less than a minute. They must have been on break or some other excuse, so I thought I would try this instead. Blessings. John Richardson

    Hey @rockhoundjohn 
    Here's the thing, yes, you can refill your cartridges or use remanufactured cartridges, but you may run into problems.
    QualityLogic, one of the world's foremost quality assurance organizations, tested the performance of HP inkjet print cartridges vs. remanufactured (refilled) brands. The results: original HP inkjet print cartridges far surpassed ink refills in both print quality and reliability.
    Nearly one out of every six refilled ink cartridges tested was dead on arrival or failed prematurely
    70% of refilled cartridges had some form of reliability problem
    Count on HP original ink cartridges for consistent, worry-free printing. You may think you're saving money on remanufactured or refilled ink cartridges, but in the long run, the cost of wasted time, ink, and paper can more than make up the difference.  - Source
    Most people think, 'well of course that is what HP or an HP representative would say', but I have done some research and found that many others have too. Here is a perfect example of somebody who does not work for HP in any way and basically is a customer advocate (in my opinion) ; Should you refill your printer’s ink cartridges? HP says no (of course) By Matthew Murray
    I found the above article interesting and genuine.
    My personal recommendation is to buy the HP XL cartridges as they are more cost efficient, and be mindful in the printer you choose when buying an inkjet. The 8610 was a good choice. The expected page yield of the HP 950XL High Yield Black Original Ink Cartridge is 2300 pages. The regular size cartridge page yield is 1000, still good but the XL is by far a better value. Some of the Photosmart printers or Deskjets are great for what they are intended for, but do not have as good of a cost per page.
    HP's recommendation; Keep in mind that page yield is just one component of cost, and that factors such as quality, reliability, productivity, and efficiency affect cost as well. Products that work reliably will ultimately save you time and money. When you choose an inkjet printer, make sure you consider your individual printing needs.
    - Source
    To summarize, again, yes you can refill the cartridges. The printer is not programmed to reject them. Sometimes the cartridges will not work and of course because they are non HP, HP would not be able to do anything to help. HP cartridges have a 2 year manufacture warranty; Limited Warranty for HP Ink Cartridges and Customer-Replaceable Printheads for HP Inkjet Supplies, this may give you comfort knowing HP stand behind their product.
    Please click the Thumbs up icon below to thank me for responding.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Sunshyn2005 - I work on behalf of HP

  • Items could not be synced ERROR?

    I keep getting this error on all my devices aftre I try to sync with Itunes

    i just experienced the same problem and frustration when syncying my device on iTunes.  i finally saw the little warning sign (exclamation mark inside a circled triangle) next to the eject "button" where my device was listed on the left in iTunes.  Clicking on it brings a pop up window that gives more details for the first problem.  If more than one item did not sync, just click on the little sideways triangle next to the "total problems" count (in the bottom left corner of this pop up window) to get a full list of items complete with reason why each didn't sync.

  • Trace file not found

    using linux 5.7 (32bit) and oracle 11g relase 2
    SQL> select name,value from v$diag_info;
    NAME
    VALUE
    Diag Enabled
    TRUE
    ADR Base
    /home/oracle/u01/app/oracle
    ADR Home
    /home/oracle/u01/app/oracle/diag/rdbms/looking4/looking4
    NAME
    VALUE
    Diag Trace
    /home/oracle/u01/app/oracle/diag/rdbms/looking4/looking4/trace
    Diag Alert
    /home/oracle/u01/app/oracle/diag/rdbms/looking4/looking4/alert
    Diag Incident
    /home/oracle/u01/app/oracle/diag/rdbms/looking4/looking4/incident
    NAME
    VALUE
    Diag Cdump
    /home/oracle/u01/app/oracle/diag/rdbms/looking4/looking4/cdump
    Health Monitor
    /home/oracle/u01/app/oracle/diag/rdbms/looking4/looking4/hm
    Default Trace File
    /home/oracle/u01/app/oracle/diag/rdbms/looking4/looking4/trace/looking4_ora_4327
    .trc
    NAME
    VALUE
    Active Problem Count
    0
    Active Incident Count
    0
    11 rows selected.
    now when i check
    ls -al looking4_ora_43*
    -rwxrwxr-x 1 oracle oinstall 2960 Aug 22 09:59 looking4_ora_4300.trc
    -rwxrwxr-x 1 oracle oinstall 182 Aug 22 09:59 looking4_ora_4300.trm
    -rwxrwxr-x 1 oracle oinstall 2957 Aug 17 10:29 looking4_ora_4306.trc
    -rwxrwxr-x 1 oracle oinstall 180 Aug 17 10:29 looking4_ora_4306.trm
    -rw-r----- 1 oracle oinstall 2957 Aug 30 10:38 looking4_ora_4325.trc
    -rw-r----- 1 oracle oinstall 181 Aug 30 10:38 looking4_ora_4325.trm
    -rw-r----- 1 oracle oinstall 2956 Aug 24 15:56 looking4_ora_4380.trc
    -rw-r----- 1 oracle oinstall 181 Aug 24 15:56 looking4_ora_4380.trm
    -rwxrwxr-x 1 oracle oinstall 2942 Aug 14 10:18 looking4_ora_4394.trc
    -rwxrwxr-x 1 oracle oinstall 178 Aug 14 10:18 looking4_ora_4394.trm
    [oracle@unknown485b39d0b515 trace]$ pwd
    /home/oracle/u01/app/oracle/diag/rdbms/looking4/looking4/trace
    so where is
    looking4_ora_4327??
    thanks in advance

    There is no trace file at your /home/oracle/u01/app/oracle/diag/rdbms/looking4/looking4/trace/looking4_ora_4327, because your current user's session is not being under tracing. See example below :
    I logged in as scott user and below is the output :
    SQL> column value for a50;
    SQL> /
    NAME                                                             VALUE
    Diag Enabled                                                     TRUE
    ADR Base                                                         e:\app\serverroom
    ADR Home                                                         e:\app\serverroom\diag\rdbms\orcl\orcl
    Diag Trace                                                       e:\app\serverroom\diag\rdbms\orcl\orcl\trace
    Diag Alert                                                       e:\app\serverroom\diag\rdbms\orcl\orcl\alert
    Diag Incident                                                    e:\app\serverroom\diag\rdbms\orcl\orcl\incident
    Diag Cdump                                                       e:\app\serverroom\diag\rdbms\orcl\orcl\cdump
    Health Monitor                                                   e:\app\serverroom\diag\rdbms\orcl\orcl\hm
    Default Trace File                                               e:\app\serverroom\diag\rdbms\orcl\orcl\trace\orcl_
                                                                     ora_8056.trcIt means, if my session is being trace, then I have to check e:\app\serverroom\diag\rdbms\orcl\orcl\trace\orcl_ora_8056.trc file for this session right? Ok, what if I log out and re-connect :
    NAME                                                             VALUE
    Diag Enabled                                                     TRUE
    ADR Base                                                         e:\app\serverroom
    ADR Home                                                         e:\app\serverroom\diag\rdbms\orcl\orcl
    Diag Trace                                                       e:\app\serverroom\diag\rdbms\orcl\orcl\trace
    Diag Alert                                                       e:\app\serverroom\diag\rdbms\orcl\orcl\alert
    Diag Incident                                                    e:\app\serverroom\diag\rdbms\orcl\orcl\incident
    Diag Cdump                                                       e:\app\serverroom\diag\rdbms\orcl\orcl\cdump
    Health Monitor                                                   e:\app\serverroom\diag\rdbms\orcl\orcl\hm
    Default Trace File                                               e:\app\serverroom\diag\rdbms\orcl\orcl\trace\orcl_
                                                                     ora_8752.trcIt means, now I shall look into e:\app\serverroom\diag\rdbms\orcl\orcl\trace\orcl_ora_8752.trc for any tracing info; only if it is being trace see :
    SQL> host dir e:\app\serverroom\diag\rdbms\orcl\orcl\trace\orcl_ora_8752.trc;
    Volume in drive E is HCL_DISK3
    Volume Serial Number is A62A-F491
    Directory of e:\app\serverroom\diag\rdbms\orcl\orcl\trace
    File Not Found
    SQL> alter session set events '10046 trace name context forever,level 12';
    Session altered.
    SQL> host dir e:\app\serverroom\diag\rdbms\orcl\orcl\trace\orcl_ora_8752.trc;
    Volume in drive E is HCL_DISK3
    Volume Serial Number is A62A-F491
    Directory of e:\app\serverroom\diag\rdbms\orcl\orcl\trace
    30-08-2012  13:39                 0 orcl_ora_8752.trc
                   1 File(s)              0 bytes
                   0 Dir(s)  121,181,003,776 bytes free
    SQL> alter session set events '10046 trace name context off';
    Session altered.
    SQL> host dir e:\app\serverroom\diag\rdbms\orcl\orcl\trace\orcl_ora_8752.trc;
    Volume in drive E is HCL_DISK3
    Volume Serial Number is A62A-F491
    Directory of e:\app\serverroom\diag\rdbms\orcl\orcl\trace
    30-08-2012  13:39                 0 orcl_ora_8752.trc
                   1 File(s)              0 bytes
                   0 Dir(s)  121,181,003,776 bytes free
    SQL>So, in short, you will only get the trace file, if the current session is under tracing.
    Regards
    Girish Sharma

  • IPad Air 8.1.1 keyboard issues in ie Facebook

    I'm happy with 8.1.1 upgrade i general. My Safari don't abort using FB anymore.
    however keyboardfunctionality is completely lost. It is not possible to tagg anymore. In contrary the tagging functionality simply selects the fist applyable name it finds when entering the entet key. Another annuiance is, the cursor often jumps before anything allready written.
    anyone found a solution? Are Apple specialists aware?
    greetings
    //finn
    btw: problems count for iPad2 and iPhone too.

    I am experiencing the same problem. I do not like the Facebook app for a number of reasons, but will use it for certain things like messaging on occasion. I would never want to use it exclusively. I guess I will be dumping Safari, unless there is a fix. My issues began with the updates as well...although there was a constant crashing issue with Facebook and Safari from the beginning.

  • Separate Display Quantizations for the same part in Notation

    I'm having a hard time with something that seems like it would be easy to fix. How can I set up a part in the notation editor and use one display quantization setting for say, bars 3 and 4, and another display quantization setting for bars 5 and 6. (For instance, if I wanted eighth notes in one and sixteenths in another). I remember reading somewhere that you need to split the measures into separate regions, because display quantization can only be applied to a region as a whole, but when I do that another treble clef or entire bracket appears in the midst of my score in the score editor. How can I get rid of this extraneous clef appearing? I know that you can adjust individual quantizations when working with the actual MIDI events, but I only want to change the display quantization.
    Also, what workflows do you all use to deal with Logic's over-indulgence in cut away scores? I know you could create a bunch of empty regions on top of your project's and then merge them, but I believe then you would lose your display quantization (related to above).
    Thanks!

    hey keith i just saw your reply and further question - there are two things that would help:
    1 - if you are just wanting to creating multi rests, then the quantize tool is not correct.. you need to drag the little sign in the Inspector which looks like a multi rest and calculate the open bars eg.. if it matters to you that the instrumentalist needs to be able to count in 8 or 4 or 16 bar sections then make sure that you have a double bar line breaking up the blank bars, That way when you drag a multirest it will go up to the double bar line
    On the other hand you might be writing for hot orchestral musicians who have no problem counting 63 and a half bars before they come back in in which case you can have one long multi rest.. does this make sense
    2 -for the 'cutaway' thing you are talking about - I think I know what you mean .. a big blank space on the part where the system stops. I like doing this too .. and the way I do it is to just leave a big gap in the linear placement of the regions .. say your first part goes from bar 1 to bar 32 then you want a cutaway.. leave a gap of 4 bars and then start the next region from bar 36. When you look at the score in Print View.. you will see the gap
    The only problem with this method is that it messes up the bar numbers .. as logic will still think that the bars exist.
    ZZZ - Hello Score Editor fiends and programmers: official request for a new Score Editor feature
    Re Assign Bar numbers: this would enable the user to name the bar numbers according to the logic of the part/score ... and not be tied to logic's sequence to crank out mindlessly linearly the bar numbers
    An idea feature would be to insert a 'memory hole' - so the user could over ride the sequencer.
    This combined with Johannes Pritchls little used system where by the sequencer could follow repeats and signs and DS and to Codas... would make Logic Score Editor a MUCH MORE BRILLIANT tool
    PS not forgetting Global Rehearsal letters .. my old bug bear

  • Lenovo y50.70 Ich bin nicht zufrieden, oder ist mein Laptop einfach sehr schlecht gewählt.

    Ich habe einen Lenovo y50.70 und bin nun wirklich sehr unzufrieden. Ich weiß nicht besonders viel von Computern, weiß aber was einer braucht. Am Anfang hatte ich schon einen Beitrag/Frage geschrieben, da meine Videos ruckelten. Nun, da ich diesen laptop nur zum Spielen benutze und er mir auch so empfohlen wurde, bin ich sehr unzufrieden.  League of Legends: Dies ist ein sehr berühmtes Spiel. Ich kann es ohne Probleme spielen, falls sich wer auskennt gibt es große Kämpfe mit 10 Charaktern. Wenn ich in diesen Gerate gibt es FPS einstürzte von 40 zu 10. Wenn ich dort rumlaufe gibt es auch manchmal kleine Ruckler. Diese sind nicht schlimm aber sagen wir es so, nicht angenehm überhaupt für den Preis was den Laptop angeht. HAbe mit lowster UND höchster Grafik probiert und lustiger Weise ändert sich die FPS Anzahl nicht... Was tun? Nächstes Problem   Arma 3: Ein Spiel in dem es um schießen gehen. Eig ist es eine Kriegssymolation und verwende es aber für Modpacks wie zb Zombies und real life. Wenn ich es starte und ingame gehe laufe ich mit 7 FPS rum. Wenn ich die Grafik umstelle gehts auf ca 10-12 fps. Naja,... was tun? Nächstes Problem   Counter Strike Global offensive: Lustig, obwohl dieses Spiel mehr Leistung braucht als league of legends geht es mit flüssigen 50 fps. Genau das gleich mit einem auch sehr bekannten Spiel, namens GTA V (grand Theft Auto 5). Ich konnte es auf Ultra spielen ohne ruckler. Es hat 65 GB, arma 3 (10MB) und League of Legens (7MB). Finde  ich sehr sehr komisch      Naja, wie gesagt für so einen "abnormalen" Preis von 1250 Euro ist es nicht gut. Ich hoffe wirklich das es nur an meinem PC liegt und das ich etwas falsch eingestellt habe. Ich bitttteee um Hilfe. Hoffe es meldet sich jemand

    Hallo,
    wie @Sardun bereits schreibt ist GTA V das von allen drei von dir genannten Spielen mit Abstand das Anspruchvollste, so dass es sich bei deinem "Problem" eigentlich nur um eine Angelegenheit handeln kann, die durch Änderung der Einstellungen in den jeweiligen Spieln, oder durch ein Update des VGA Treibers behoben werden kann.
    Die Artikelnummer (P/N) oder Machine Type / Model Name wäre ebenfalls interesssant, ob Du die aktuellsten VGA Treiber von der Lenovo Serviceseite installiert hast, und wie die Einstellungen im Energiemanagement sind.
    Auf dem Gerät ist Win 8.1 installiert, richtig?

  • A3 Crashed my Mac

    I have never seen the message 'Your computer needs to be shutdown... hold the power key..'
    I got this whilst editing some test .NEF files in the trial version of Aperture 3...
    I see a patch in the near future

    It may not be a repeatable problem (count your blessings), but if it is, it may be hardware related, not the fault of Aperture 3. Just make sure your internal hard disks are completely backed up for example, using Time Machine. Sometimes these messages are a precursor to serious problems with the memory or the circuit board. The operating system (possibly the kernel) has detected an unexpected error from which it cannot gracefully recover and demands you reboot the system immediately before any damage or corruption occurs.
    If you can repeat the problem every single time you do the same action in Aperture 3 that caused the first problem, then I am wrong and it's software related (breathe again). Let Apple technical support know if it's a software problem.

Maybe you are looking for

  • Bean Not Found

    Hi, I am using webutil 1.0.6, 10gAS R1 (9.0.4.2.0), compiled the module using Forms 10g (9.0.4.0.19), and I am connecting to RDBMS 10.2.0.1.0. I have proved that webutil works by creating a test harness. I proved the webutil_file.file_exists function

  • Dynamic months names

    Hi all, i have the Final Output Table with the fields  Workstart Date and WorkEnd date. lets us say the work start date is  01-01-2009 and                               workend date  is 31-12-2009. so, in my final output table i want to generate 12 d

  • Where do I go to upgrade from Illustrator CS 5 to CS 6

    I'm looking to upgrade from Illustrator CS 5 to CS 6. Where do I go to purchase the upgrade. Can I still do it on the Adobe site? Will this version of Illustrator work with my Imac. I have a 2.16 GHz Intel Core Duo with 2 Gigs of sdram. I purchased t

  • Problema per aggiornamento PS CC

    Sono giorni che provo ad aggiornare photoshop CC come proposto da adobe alla versione 14.2.1, ma ogi volta l'aggiornamento non riesce dando errore impossibile estrarre i file scaricati. cosa posso fareper risolvere il problema? Grazie

  • How to activate my icloud account suspended

    how can i activate with my icloud the email is lock