Some records remain in the Event Table of the ballot for forever and ever

I configured the Event Table of the vote to Oracle BI. It works very well and the entry cache are purged. But some cases rest in the EPT forever table. The records without misstat1 are inserted by me (trigger). Documents with any OTHER = misstat1 are inserted by BI server. There is no instruction delete or error in the log file for this timestamp. Other timestamps are deleted by the BI server.
+++Administrator:fffe0000:fffe0012:----2008/09/22 22:17:58
-------------------- Sending query to database named misstat1_db (id: <<127983>>):
insert into 
     BI_EPT("UPDATETYPE", "UPDATETIME", "DBNAME", "CATALOGNAME", "SCHEMANAME", "TABLENAME", "OTHER") values (1, TIMESTAMP '2008-09-22 22:08:24', '', '', '', 'MV_E_DENIK_KP', 'misstat1')
UPDATETYPE     UPDATETIME     DBNAME     CATALOGNAME     SCHEMANAME     TABLENAME          OTHER

1     22. 9. 2008 22:08:24                                                                    MV_E_DENIK_KP           misstat1
1     22. 9. 2008 22:08:24                                                                    MV_E_HIM                           misstat1
1     22. 9. 2008 22:28:19                                                                    MV_ODY_OSCI_VYROCI     misstat1
1     22. 9. 2008 22:28:19                                                                    MV_ZPC_CERP           misstat1
1     22. 9. 2008 22:08:24                                                                    MV_E_DENIK_KP     
1     22. 9. 2008 22:08:24                                                                    MV_E_HIM     
1     22. 9. 2008 22:28:19                                                                    MV_ZPC_CERP     
1     22. 9. 2008 22:28:19                                                                    MV_ODY_OSCI_VYROCI     

I think that UpdateTime itself must be unique, not a combination UpdateTime + TableName. Maybe you could try doing some more tests and make sure that it is the only problem. If you can confirm that you must modify your scripts to either do not insert records at the same time, or to add another logic that would make unique UpdateTime.

Tags: Business Intelligence

Similar Questions

  • Channels for the identification of the records by using the syntax for Connect By

    Hello

    Can someone help with the following problem please?

    Our database records evaluations of the child for families in difficulty. When get us in touch with them, ideallu:
    A child receives a preliminary assessment (evaluation).
    If they are deemed to have need for additional support, they are given a second assessment (B) that is triggered by the assessment and an ID of the trigger to identify what assessment he comes.
    If they are deemed to need further support, they are given a third evaluation (C) that is triggered by the 2 assessment and an ID of the trigger to show that it comes from the b. assessment
    This is also true for a fourth assessment (assessment) report that is triggered by the evaluation C.

    However, due to the poor implementation of this concept by our provider database and the lack of knowledge by the workers, we have 2 problems:

    (1) analysis has isn't always the starting point as a worker can start any assessment at any time, i.e. from c assessment.

    (2) in view of this, a child can have several evaluations of the same type, i.e. a x 3 C, 2 x B assessment assessment in no particular order.

    The problem:

    I need to identify the separate strings (desired_output) of intervention using the relationship between the registration ID and the ID of the trigger, as shown in the table below:
    CHILD_ID RECORD_ID TRIGGER_ID ASM_NAME REC_START_DATE            REC_END_DATE              DESIRED_OUTPUT         
    -------- --------- ---------- -------- ------------------------- ------------------------- ---------------------- 
    A00001   R297931              B        18-JUN-10                 18-JUN-10                 1                      
    A00001   R299381   R297931    C        23-JUN-08                 23-JUN-08                 1                      
    A00001   R133219              A        12-AUG-08                 12-AUG-08                 2                      
    A00001   R240118              A        30-OCT-09                 30-OCT-09                 3                      
    A00001   R604913              A        17-AUG-12                 17-AUG-12                 4                      
    A00001   R604943   R604913    B        17-AUG-12                 17-AUG-12                 4                      
    A00001   R604961   R604943    C        17-AUG-12                 03-SEP-12                 4                      
    A00001   R605195              B        25-AUG-12                 25-AUG-12                 5                      
    A00001   R605214              A        28-AUG-12                 28-AUG-12                 6                      
    A00001   R609999   R604961    D        03-SEP-12                 05-SEP-12                 4                     
     
    Data:
    select * from
    (select * from
     
    (select 'A00001' as child_id, 'R297931' as record_id, null  as trigger_id, 'B' as asm_name, to_date('18-06-2010','dd/mm/yyyy') as rec_start_date, to_date('18-06-2010','dd/mm/yyyy') as rec_end_date, 1 as desired_output from dual) union all
    (select 'A00001' as child_id, 'R299381' as record_id, 'R297931' as trigger_id, 'C' as asm_name, to_date('23-06-2008','dd/mm/yyyy') as rec_start_date, to_date('23-06-2008','dd/mm/yyyy') as rec_end_date, 1 as desired_output from dual) union all
    (select 'A00001' as child_id, 'R133219' as record_id, null as trigger_id, 'A' as asm_name, to_date('12-08-2008','dd/mm/yyyy') as rec_start_date, to_date('12-08-2008','dd/mm/yyyy') as rec_end_date, 2 as desired_output from dual) union all
    (select 'A00001' as child_id, 'R240118' as record_id, null as trigger_id, 'A' as asm_name, to_date('30-10-2009','dd/mm/yyyy') as rec_start_date, to_date('30-10-2009','dd/mm/yyyy') as rec_end_date, 3 as desired_output from dual) union all
    (select 'A00001' as child_id, 'R604913' as record_id, null as trigger_id, 'A' as asm_name, to_date('17-08-2012','dd/mm/yyyy') as rec_start_date, to_date('17-08-2012','dd/mm/yyyy') as rec_end_date, 4 as desired_output from dual) union all
    (select 'A00001' as child_id, 'R604943' as record_id, 'R604913' as trigger_id, 'B' as asm_name, to_date('17-08-2012','dd/mm/yyyy') as rec_start_date, to_date('17-08-2012','dd/mm/yyyy') as rec_end_date, 4 as desired_output from dual) union all
    (select 'A00001' as child_id, 'R604961' as record_id, 'R604943' as trigger_id, 'C' as asm_name, to_date('17-08-2012','dd/mm/yyyy') as rec_start_date, to_date('03-09-2012','dd/mm/yyyy') as rec_end_date, 4 as desired_output from dual) union all
    (select 'A00001' as child_id, 'R605195' as record_id, null as trigger_id, 'B' as asm_name, to_date('25-08-2012','dd/mm/yyyy') as rec_start_date, to_date('25-08-2012','dd/mm/yyyy') as rec_end_date, 5 as desired_output from dual) union all
    (select 'A00001' as child_id, 'R605214' as record_id, null as trigger_id, 'A' as asm_name, to_date('28-08-2012','dd/mm/yyyy') as rec_start_date, to_date('28-08-2012','dd/mm/yyyy') as rec_end_date, 6 as desired_output from dual) union all
    (select 'A00001' as child_id, 'R609999' as record_id, 'R604961' as trigger_id, 'D' as asm_name, to_date('03-09-2012','dd/mm/yyyy') as rec_start_date, to_date('05-09-2012','dd/mm/yyyy') as rec_end_date, 4 as desired_output from dual)) child_records
    Originally, I thought to use Oracle Connect By syntax, but it does not (as far as I can work on!) because I have no start condition (the string of assessments can start A or B or C or D) which leads to duplication of lines.

    I thought I could use connect_by_root to group common assessments, but I am not convinced that this will give consistent results.

    -------------------------
    select
    child_records.*, 
    connect_by_root(nvl(trigger_id,record_id)) chain_id
    from child_records
    connect by trigger_id = prior record_id
    --------------------

    Is an alternative, possibly using trigger_id = above lag(record_id,1,null) (child_id order partition of...) but the assessments are in no particular order, I don't think I can specify a command clause...?

    Can anyone help to generate the desired output please?

    Thank you

    TP

    Hello

    Little Penguin says:
    ... However, due to the poor implementation of this concept by our provider database and the lack of knowledge by the workers, we have 2 problems:

    (1) analysis has isn't always the starting point as a worker can start any assessment at any time, i.e. from c assessment.

    (2) in view of this, a child can have several evaluations of the same type, i.e. a x 3 C, 2 x B assessment assessment in no particular order.

    This isn't necessarily a bad design. If it really fits your business rules is another matter. But as a means to represent events from cause to effect, to be used to CONNECT BY queries, it makes sense.

    The problem:

    I need to identify the separate strings (desired_output) of intervention using the relationship between the registration ID and the ID of the trigger, as shown in the table below:

    Let me assure you that I understand. You don't really have an desired_output column; you will need to that derived from other columns. Right?

    CHILD_ID RECORD_ID TRIGGER_ID ASM_NAME REC_START_DATE            REC_END_DATE              DESIRED_OUTPUT
    -------- --------- ---------- -------- ------------------------- ------------------------- ----------------------
    A00001   R297931              B        18-JUN-10                 18-JUN-10                 1
    A00001   R299381   R297931    C        23-JUN-08                 23-JUN-08                 1
    A00001   R133219              A        12-AUG-08                 12-AUG-08                 2
    A00001   R240118              A        30-OCT-09                 30-OCT-09                 3
    A00001   R604913              A        17-AUG-12                 17-AUG-12                 4
    A00001   R604943   R604913    B        17-AUG-12                 17-AUG-12                 4
    A00001   R604961   R604943    C        17-AUG-12                 03-SEP-12                 4
    A00001   R605195              B        25-AUG-12                 25-AUG-12                 5
    A00001   R605214              A        28-AUG-12                 28-AUG-12                 6
    A00001   R609999   R604961    D        03-SEP-12                 05-SEP-12                 4                     
    

    Data:...

    Thanks for the display of the data of the sample; that really helps.

    Originally, I thought to use Oracle Connect By syntax, but it does not (as far as I can work on!) because I have no start condition (the string of assessments can start A or B or C or D) which leads to duplication of lines.

    Is not

    START WITH  trigger_id  IS NULL
    

    identify a starting point? If something has not been triggered by something else, it is not a starting point? It is actually quite common in the hierarchical tables.

    I thought I could use connect_by_root to group common assessments, but I am not convinced that this will give consistent results.

    I'm not sure that you understand the problem. What do you mean by "consistent results? The doubt that you are worried, what exactly?

    -------------------------

    select
    child_records.*,
    connect_by_root(nvl(trigger_id,record_id)) chain_id
    from child_records
    connect by trigger_id = prior record_id
    

    You got right. If I understand what you mean by consistent results, it will bring them. You want to START to condition, of course, and as the starting lines will never have a trigger_id, there is no need to tell

    CONNECT_BY_ROOT  NVL (trigger_id, record_id)   AS chain_id
    

    You can simply say

    CONNECT_BY_ROOT  record_id   AS chain_id
    

    This will be particularly well idnetify the strings of their record_ids. Looks like you want to assign new sequence numbers (1, 2, 3,...) to identify the channels. Which takes an extra step.

    --------------------

    Is an alternative, possibly using trigger_id = above lag(record_id,1,null) (child_id order partition of...) but the assessments are in no particular order, I don't think I can specify a command clause...?

    Right; LAG depends on the order and order tells us nothing to this problem.
    In fact, feeds means so little to this problem that an event can come before the event that triggered it.
    For example, if I understand the first two lines of your output

    CHILD_ID RECORD_ID TRIGGER_ID ASM_NAME REC_START_DATE            REC_END_DATE              DESIRED_OUTPUT
    -------- --------- ---------- -------- ------------------------- ------------------------- ----------------------
    A00001   R297931              B        18-JUN-10                 18-JUN-10                 1
    A00001   R299381   R297931    C        23-JUN-08                 23-JUN-08                 1                      
    

    C event was triggered by the event B, even if C took place two years before B.
    (Not that it is important for the SQL problem, but can you explain the logic of how events can come before or after the events that triggered them?) "I'm just curious.)

    Here's a way you can assign sequential numbers to identify the channels:

    WITH     got_d_num     AS
    (
         SELECT     c.*
         ,     ROW_NUMBER () OVER ( PARTITION BY  child_id     -- Just guessing
                                   ORDER BY          NVL2 ( trigger_id
                                                  , 2     -- rows with trigger_ids come 2nd
                                       , 1     -- rows without come 1st
                                       )
                             ,             rec_start_date
                             ,             asm_name
                           )      AS d_num
         FROM    child_records  c
    )
    SELECT     child_id, record_id, trigger_id, asm_name, rec_start_date, rec_end_date
    ,     desired_output               -- if needed
    ,     CONNECT_BY_ROOT d_num     AS chain_num
    FROM     got_d_num
    START WITH     trigger_id     IS NULL
    CONNECT BY     trigger_id     = PRIOR record_id
    ORDER BY  child_id
    ,            rec_start_date
    ,       asm_name
    ;
    

    Output:

    `                                              DESIRED
    CHILD_ RECORD_ TRIGGER A REC_START REC_END_D   _OUTPUT  CHAIN_NUM
    ------ ------- ------- - --------- --------- --------- ----------
    A00001 R299381 R297931 C 23-JUN-08 23-JUN-08         1          3
    A00001 R133219         A 12-AUG-08 12-AUG-08         2          1
    A00001 R240118         A 30-OCT-09 30-OCT-09         3          2
    A00001 R297931         B 18-JUN-10 18-JUN-10         1          3
    A00001 R604913         A 17-AUG-12 17-AUG-12         4          4
    A00001 R604943 R604913 B 17-AUG-12 17-AUG-12         4          4
    A00001 R604961 R604943 C 17-AUG-12 03-SEP-12         4          4
    A00001 R605195         B 25-AUG-12 25-AUG-12         5          5
    A00001 R605214         A 28-AUG-12 28-AUG-12         6          6
    A00001 R609999 R604961 D 03-SEP-12 05-SEP-12         4          4
    

    This example uses rec_start to affect chain_num and also sort the output, but not to determine wht in a string. The first 3 events untrigered (in rec_start order) have been in August 2008, October 2009 and June 2010, while they were assigned chain_nums 1, 2 and 3, in that order. Antyhting that was triggered by them, directly or indirectly, gets the same chain_num if it happened before or after the starting point of the chain. Thus, the first line of the output, in June 2008, gets chain_num = 3. You have assigned desired_output = 1 on this line. If you can explain how you got the number 1, we can probably find a way to code, so that the calculated chain_num is identical to desired_num. In the above query, they are not the same, but they are related. Everywhere you specified desired_output = 1, the above query produces chain_num = 3. If the numbers are the same (for example desired_output = 4 = chain_num) it's just a coincidence.

    Note that when I used ROW_NUMBER, I did in a subquery, not in the main query where the CONNECT BY were made. Never use the analytical functions (for example, ROW_NUMBER) in the same query with CONNECT BY. The analytical functions are often the cause CONNECT BY conditions to be incorrectly evuated. I have never seen any literature on this subject and it doesn't always happen, but I suggest that you avoid to mix everything well.

    Published by: Frank Kulash, Sep 15, 2012 10:00

    Published by: Frank Kulash, Sep 15, 2012 10:44

    I just read the answer from John, who has a nice illustration of my last point: use of the separate petitions for both analytical and CONNECT BY. You can use the analytic function first, and then CONNECT BY, as I did, or you can do the first CONNECT BY and then use the analytic function (in a solution of John DENSE_RANK) later. Whatever it is, you must separate them.

  • Microsoft Outlook express Outbox does not transmit messages - Messages remain in the Outbox for ever

    When you create new messages, outlook does not transmit messages. They remain in the Outbox for ever

    Assuming that you have checked The Send Messages immediately and you get no error message, you may need to the corruption of dbx files.

    Spend most of your messages out of the Inbox and then create new folders to send and sent items box after having moved the messages you want to save to a local folder that you create.

    Tools | Options | Maintenance | Store folder will reveal the location of your Outlook Express files. Note the location and navigate on it in Explorer Windows or, copy and paste in start | Run.

    In Windows XP, Win2K & Win2K3 the OE user files (DBX and WAB) are by default marked as hidden. To view these files in Windows Explorer, you must enable Show hidden files and folders under start | Control Panel | Folder Options icon | Opinion, or in Windows Explorer. Tools | Folder options | View.

    With OE closed, find the DBX files for the items in the Outbox and sent and delete them.  New ones will be created automatically when you open OE.

    After you're done, followed by compacting your folders manually while working * off * and do it often.

    Click Outlook Express at the top of the the folder tree so no folders are open. Then: File | Work offline (or double-click on work online in the status bar). File | Folder | Compact all folders. Don't touch anything until the compacting is completed.

    General precautions for Outlook Express:

    Do not archive mail in the receipt or sent items box. Create your own user-defined folders and move messages you want to put in them. Empty the deleted items folder daily. Although the dbx files have a theoretical capacity of 2 GB, I recommend all a 300 MB max for less risk of corruption.

    Information on the maximum size of the .dbx files that are used by Outlook Express:
    http://support.Microsoft.com/?kbid=903095

    Disable analysis in your e-mail anti-virus program. It is a redundant layer of protection that devours the CPUs, slows down sending and receiving and causes a multitude of problems such as time-outs, account setting changes and has even been responsible for the loss of messages. Your up-to-date A / V program will continue to protect you sufficiently. For more information, see:
    http://www.oehelp.com/OETips.aspx#3

    Why you don't need your anti-virus to scan your email
    http://thundercloud.NET/infoave/tutorials/email-scanning/index.htm

    Note that for some AV programs, it may be necessary to uninstall the program and reinstall in custom Mode and uncheck analysis when the option is the result of e-mail messages.

    Compact often as specified above.

    And backup often.

    Outlook Express Quick Backup (OEQB Freeware)
    http://www.oehelp.com/OEBackup/default.aspx

  • RV180 need some advice/Suggestion regarding the rules of access and Services

    Hi, I expected to get some advice or suggestion with a RV180 question.  I have a cable modem connection that connects to my port WAN RV180 and we have a single static IP address on the WAN port and everything works great.  We have an internal Exchange Server, so we have a few inbound rules access allowing for ports 443 and 25.  It all works.

    This is the question that I encounter.  We have now another service internal now needs outside inside access on port 443 (https), but I already have this configuration on the router for Exchange and when I have both sense, of course, it won't work correctly because the router just takes the first rules of access and use the one that works very well for traffic Exchange , but not my other service.

    Is there another way to get this job where I can have two internal services on port 443 and the router can forward traffic appropriate to each of them since my first IP? (it doesn't really matter if I had two IP addresses because it always hits the same access list for internal services)

    All advice or suggestion would be great

    Hi, yours is a general networking, not specific to RV180 problem.

    As you have only one IP public (on the WAN port), you only have a single port 443, you can support two services outside-to-inside.

    The cheapest solution is one of the services to another port, if the service permits.

    The most expensive solution is to have public IP addresses.

  • Hi - I have an old Adobe Audition 1.5 and I used to be able to hear that I was recording. After the update of computer and reload Adobe Audition 1.5, can no longer hear the recording, but only on playback. Please notify.

    Hi - I have an old Adobe Audition 1.5 and I used to be able to hear that I was recording. After the update of computer and reload Adobe Audition 1.5, can no longer hear the recording, but only on playback. Please notify.

    Monitoring is done through your audio device, no hearing. When you updated your PC, playback of the audio device settings would have been reset. One of them includes the follow-up of the input jack, and that's what you need to restore. Since we do not know which audio device you use, it's all that we can tell you, except that if it is a device internal, you will need to open the volume control options and he change it. It depends on the good OS versions...

  • I bought a gift card a while and now I don't have the balance for her and when I try to buy I can not because I already bought it. Help, please

    I bought a gift card a while and now I don't have the balance for her and when I try to buy I can not because I already bought it. Help, please. If I can't do my 15 birthday money are wasted. He said as I already had a gift card in my account, but somehow everything is over now when I was not yet buy anything!

    A gift card is redeemable only once, it is useless to try to buy it back again.

    To see what, if any, balance you have left on the account you share you: see your credit balance - Apple Support iTunes

    To see what you bought on the account and therefore potentially used some/all of it: see your purchase history in iTunes on Mac or PC - Apple Support store

  • Downloaded the update for Firefox, and now I can't get rid of AOL.

    Downloaded the update for Firefox, and now I can't get rid of AOL. I tried to remove anything that is related to AOL and when restart Firefox... There are once again AOL. I even reinstalled Firefox... He was there again.

    Where AOL is displayed - homepage?

    I think the first thing to check is if you have any modules related to AOL. These can replace your regular settings. You can view and disable all extensions essential or unknown here:

    Firefox orange (or the Tools menu) button > addons > Extensions category

    Note that in most cases, you should use the link to restart Firefox to actually disable the extension that you have chosen to disable.

    Then, to fix your homepage, try the procedure described in this article: How to set the home page.

    If there is a problem with your suppliers of research from Google for AOL, try this extension:

    https://addons.Mozilla.org/en-us/Firefox/addon/SearchReset/

    Any improvement?

  • I have the time to default iPhone 4 iOS 7.1.2 iPhone App not updated since the last 3 days and also checked all the settings for location and also set as new iPhone always present problem... Please try to fix... Thanx

    I have the time to default iPhone 4 iOS 7.1.2 iPhone App not updated since the last 3 days and also checked all the settings for location and also set as new iPhone always present problem... Please try to fix... Thanx

    Turn off your device and turn it on again. If this does not help, sign out of your account and reconnect.

    In addition, you can try to reset your settings.

    • Press and hold the sleep/wake button
    • Press and hold the Home button
    • Press and hold both buttons until the display turns off and on again with the Apple logo on the subject.

    Alternatively, you can go to settings - general - reset - Reset all settings

  • "I lost the top of my Web page that has"File"Edit etc and the toolbar with the House for 'House' and the arrow of" return to the last page. Does anyone know how to reinstall these? I'm obviously not computer savy.

    Missing once more, the blue band at the top of my Web page that has the file ',' Edit etc and the toolbar with the House for 'Home' and the arrow «back to last page»

    == My grandchildren's play about that.

    Press the Alt key to display the Menu bar, then open view > toolbars and select menu bar and the bar of Navigation, so that they have a check mark.

  • Satellite L500-1 - where to find the drivers for XP and Windows 7?

    For me, are necessary for the driver to L500-1. On a site not found. If it is a good idea to use the driver other model of what to write.

    To me, the driver under Windows XP, Windows 7.

    Hello

    I searched a bit on the Toshiba site and it seems that your model is part of the PSLJTE series and as a result, you can download all the drivers for XP and Windows 7 here:

    http://EU.computers.Toshiba-Europe.com > support & downloads > download drivers
    Laptop > Satellite > Satellite L Series > Satellite L500 > PSLJTE

    Check this box!

  • Now, I have no sound on my lapt top having a media player to "check the drive for errors" and laptop have no dound I did a windows update, but no sound came through, please help me

    Now, I have no sound on my lapt top having a media player to "check the drive for errors" and laptop have no d

    the sounds I made a windows update, but no sound came through it please please help with a link to something. Re, I did check the drive for errors and still after it again all the sounds left my laptop which is a vaio song

    Thanks for any help

    Hi, Pantha9,

    What version of Windows are you using?

    Start > right click on computer and select Manage

    Select Device Manager

    Click on the + next to sound, video and game controllers

    Right-click on the driver and select uninstall

    Restart the computer and Windows will reload the driver

    New attempt of his

    Access the site of the factory and search for driver updates

  • A protocol that would provide the service for IPv4 and IPv6 traffic? (RIPv1, RIPv2, RIPng, BGP)

    A protocol that would provide the service for IPv4 and IPv6 traffic?

    • RIPv1
    • RIPv2
    • RIPng
    • BGP

    Hi SandeepTandel,

    ·         Your computer is on a domain network?

    ·         What exactly is the question do you face?

    Here the following protocols provide for IPv4 and IPv6 traffic or respectively:

    Ø Bng supports IPv4 and IPv6 protocols

    Ø RIPng supports IPv6

    Ø RIPv1 and RIPv2 supports IPv4

    Let us know if this information useful.

  • Error: the registry settings used by the iTunes for importing and burning CDs and DVDs are missing.

    Original title: the registry settings used by the iTunes for importing and burning CDs and DVDs are missing. This can occur as a result of installing other CD burning software. reinstall iTunes

    I've loaded and discharged Itunes 5 times and still get the same error message box. This error does exactly what he says, I can not burn anything in my itunes library. ITunes worked great in XP-3 no problems. It will not work on Windows 7-64.  I can download and play songs from any site, but can not burn anything.  And I don't have any other burning software on my CD PC

    Hello PohlCat,

    Given that you have uninstalled and reinstalled iTunes without correcting the problem, it may be with a 3rd party product causes a problem.

    I would look at the post here to see if this solution can help you. It's from a 3rd third party site, you should use at your own risk, because it has not been tested, but seemed to help others with the same error that you are experiencing.

    Please reply back and let us know if this can help.

    Sincerely,

    Marilyn
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think

  • The ballot for 5108 chassis SNMP

    I'm trying to set up statistics SNMP from the ballot for the 5108 chassis with 4 half-width blades. I can get SNMP data of the tissue Expander 6120 just fine such as IFs and such, but I do not see any OID corresponding to the frame.

    Is there a separate host that I should talk to the chassis, or maybe a different community name?

    I seeks to monitor the current consumption of the chassis UPE four, as well as two blocks of FE.

    [email protected] / * /-Lun: ~ # snmpwalk - v 2 c - c ucs1 public.1.3.6.1.4.1.9.9.117.1.1.1
    SNMPv2-SMI::enterprises.9.9.117.1.1.1.1.1.470 = INTEGER : 2
    SNMPv2-SMI::enterprises.9.9.117.1.1.1.1.1.471 = INTEGER : 2
    SNMPv2-SMI::enterprises.9.9.117.1.1.1.1.2.470 = STRING : « CentiAmps @ 12V »
    SNMPv2-SMI::enterprises.9.9.117.1.1.1.1.2.471 = STRING : « CentiAmps @ 12V »
    SNMPv2-SMI::enterprises.9.9.117.1.1.1.1.3.470 = INTEGER : 4538
    SNMPv2-SMI::enterprises.9.9.117.1.1.1.1.3.471 = INTEGER : 4538
    SNMPv2-SMI::enterprises.9.9.117.1.1.1.1.4.470 = INTEGER : 29
    SNMPv2-SMI::enterprises.9.9.117.1.1.1.1.4.471 = INTEGER : 29

    Here's all I could get out to the FE PSU, and the value of 4538 seems to have no correlation with what is displayed in the Manager of the UCS in the statistics section.

    Thank you!

    There is no statistics for the chassis.

    You can only snmpget stats for the 'NXOS' of the interconnection of fabric part.

    You can get for all of the UCS snmptraps (go a google for UCS - MIB and there's a doc explaining this on cisco.com - do a google for site: cisco.com ucs documentation roadmap).

    At the end of the year I think that a complete MIB will be available to do what you want.

    If you want statistics, use the XMLAPI.

    See you soon

    Steve

  • LightroomCC2015 just disabled use.stating I need to purchase a license. I'm running on the plan for this and other applications. How do I fix this, please?

    LightroomCC2015 disabled just use of the develop Module. Indicating that I need to buy a license. I'm running on the plan for this and other applications. How do I fix this, please?

    Please see the troubleshooting section below.

    Reference: creative judgment Cloud 2015 to return to the mode of trial

    Let us know if that helps.

    Kind regards

    Mohit

Maybe you are looking for