DBACOCKPIT storage information update when filesystem size has changed

Hello Experts,
I'm playing around with db2, linux and virtualization...
I reduce the file system size where the /db2 is mounted on. Problem is that TC dbacokpit shows the same information under space->automatic storage -> summary  as before the file system was reduced. I understand that with automatic storage DB2 will grow as need, but
what happen when file system is shrunk ??
do I have to do something in order to have dbacockpit to show accurate informating regarding the real available space in the file system once its size has changed?
is there any danger on having dbacockpit reporting wrong available space on the file system?
thank you

Hello,
Validate if standard job SAP_COLLECTOR_FOR_PERFMONITOR is scheduled hourly, if not, schedule it in client 000 with DDIC user. Review logs too, maybe there is an error shown in job logs.
Also, you should take a look to SAP Note 1508792: "Refresh does not work in DBACockpit" or  SAP Note 1002840: "No data or obsolete data in DB Space Statistic monitor" may be helpfull too.
Best regards,
Isabel

Similar Messages

  • IDCS6 Mac - Transforming in a document whose size has changed...

    In one of the plugins I am porting to CS6 I have this code that works in all earlier versions of InDesign:
    TransformInnerPointToPasteboard(PageGeometry, &StartPoint);
    TransformInnerPointToPasteboard(PageGeometry, &EndPoint);
    The context:  I am creating a box for text.  The box lays mostly off of the document on the pasteboard.  It will contain processing information for all the prepress gang to review as they edit the submissions from our customers. 
    The problem:  If the document size has been changed, the box is not placed correctly.  I have monitored the coordinates that are supposed to be calculated prior to the Transform call and they are correct.  If the document size has not changed, the box appears where expected.  If the document size has changed at any time, the box is moved upward and to the right several picas. 
    Is there a new step I need to be taking in order to force the program to use a refreshed transform matrix? Or is this a bug within CS6?
    R,
    John

    @Colly –  sometimes we use descriptive variables to illustrate something. The "my" in the name is always an indication, that a variable is in play, that has to be defined elsewhere… We could debate now, if that is "good style" or not, but no. I don't do that right now ;-)
    It's kind of "dummy" code and not meant to work immediately.
    In the case of "myDocument", you could use an additional line of code to define the variable "myDocument" at the start of the snippet and leave all other incidences of "myDocument" unchanged in the code:
    var myDocument = app.activeDocument;
    or you work with index 0 in an array like fashion:
    var myDocument = app.documents[0];
    or in a collection like fashion ("documents" is a collection of single document objects, and if you want to point out that to you, use the following syntax):
    var myDocument = app.documents.item(0);
    or you could have worked with the name of an open document (amongst others):
    var myDocument = app.documents.itemByName("MyDocumentName.indd");
    There are other examples as well…
    Uwe

  • "How are local and state taxes setup/updated when employee's address change

    Hi All
    I wanted to know "How are local and state taxes setup/updated when employee's address changes . - How is it done in SAP? -
    Thanks in Advance

    This defeats the purpose of trying to centralize SAP-related web resources on the SAP server. Typically IIS/Apache or other non-SAP servers are under the control of IT and not the SAP BASIS group.
    We simply would like to have a centralized location to store static web files so that they are not overwritten during Portal support pack applications.

  • POI Information Updates when Costing Changes are not Saved

    Hi All,
    When you go to the costing screen of a party in Oracle HRMS, make changes to the costing string (Cost Allocation Flexfield) and not save them. Then, exit from the costing form and go to the Purchase Order Information (POI) screen and press Ctrl+F11, the POI information updates to the new changes. It was my understanding that in order for the purchase order info to be updated you need to make changes or "touch" the costing screen and save. I have noticed that the purchase order changes after being in the costing screen even without saving anything. Was this intend?
    Thanks,
    Naveen Gagadam

    The Changes on the Assignment reflect because of the changes on the Costing Screen. This is due to the custom.pll implementation. Is there an event name that I can use for the Assignment form such that the changes on the Assignment screen show up only after the changes are SAVED on the Costing Screen. Here's the code that we are using in the Procedure: Event of the custom.pll
    ====================================================================================
    If Event_name = 'WHEN-VALIDATE-RECORD' then
    --     1. Costing checks at Assignment (PERWSEAC). This code copies first 4 segments of costing string
    --               to Default Expense Account on the Assignment screen.The Code will perform this function for
    -- the first Costing record but no other record.
    if name_in('system.current_form') in ('PERWSEAC') then
         Step_identity := 'Costing to Expense Account Population';
                   if name_in ('system.cursor_block') = 'COST' then
    -- Check if current record is the first record in the block
    -- prior to 4/6/05 this code only ran if first costing record. now runs for all and passes
    -- whether first record to package. B Wagner                    
    if name_in('system.cursor_record') = '1' then
              lvc2_first_rec := 'Y';
    else
         lvc2_first_rec := 'N';
    end if;
                        if name_in('COST.SEGMENT1') is not null
                   and name_in('COST.SEGMENT8') is not null
                   and name_in('COST.SEGMENT2') is not null
                   and name_in('COST.SEGMENT3') is not null then
                             lvc2_company_nm     := name_in('COST.SEGMENT1');
                             lvc2_LOB := name_in('COST.SEGMENT8');
                             lvc2_location := name_in('COST.SEGMENT2');
                             lvc2_dept := name_in('COST.SEGMENT3');
                             FND_PROFILE.get('USER_ID',ln_user_id );
         -- It has been assumed that the seperator for the flexfield segments is a period ('.') .
         -- If the seperator is changed then the following line of code has to be modified.
         -- If the number of segments in the flexfield definition is changed then the number of
         -- separators has also to be modified.
    ln_assignment_id := name_in('COST.ASSIGNMENT_ID');
    ld_session_dt := name_in('CTL_GLOBALS.SESSION_DATE');
    smc_customlib.set_exp_act(
                                                                     ln_retcode,
                                                                     lvc2_errbuf,
                                                                     ln_user_id,
                                                                     ln_assignment_id,
                                                                     ld_session_dt,
                                                                     lvc2_company_nm,
                                                                     lvc2_LOB,
                                                                     lvc2_location,
                                                                     lvc2_dept,
                                                                lvc2_first_rec
    if ln_retcode = -1 then
         -- b wagner 4/6/05 - raise trigger failure so bad combinations can't be entered into costing screen
         fnd_message.set_string(lvc2_errbuf);
         fnd_message.error;
         raise form_trigger_failure;
    end if;
                        end if; -- If costing string is complete
                   end if;   If First Record of COST Block
                   end if; -- If Block is COST
         end if;     -- For Assignment form.
    ================================================================================================================
    Its the custom package that actually populates the changes in Costing Screen onto the Assignment Screen, but I want to activate this only when I save the changes on the Costing Screen. Right now the changes are seen on Assignment Screen when I hit CTRL=F11 even when I don's save the Costing Screen changes.
    Thank You,
    Ngagadam.
    Message was edited by:
    Naveen Gagadam
    Message was edited by:
    Naveen Gagadam
    Message was edited by:
    Naveen Gagadam
    Message was edited by:
    Naveen Gagadam

  • FIelds to be updated when an account has zero balance

    Hi all,
    While loading the data, what are all the fields need to be updated when account has a zero balance. Can any one help me out ?
    Aparna

    Ok i figured out how to fix this cause thats what i do lol but you have to create an entirely new apple id with the same info and then itll work...YEAH

  • Identify when a user has change value in USEREXIT_CHECK_VBAP before saving

    I originally posted and closed this question, but I am still struggling with the code.
    The req is now to also update the value of VBAP-LPRIO, so I now have to use the Exit : USEREXIT_CHECK_VBAP.
    The issue is that my solution must take into account when a user manually overwrites a value and not replace it with a value determined in the user exit.
    My problem is that the user might do the following
    1 - Create a sales order and enter a new item line, press enter
    2 - The user exit is triggered, and I check that XVBAP-UPDKZ = I  (user add a new line)
    3 - The user-exit determines the new value and populates the field
    4- the user then click on the item line, and then manually changes the value of VBAP-LPRIO
    5- The user-exit is triggered again, and because  XVBAP-UPDKZ = I , my code is triggered and updates the field.
    What I want is to identify that a user has manually changed the value and not overwritte the value.
    1 - I have check YVBAP and it is blank, as the user has not saved the sales order.
    2- The values of VBAP and XVBAP are the same..
    3 - I cannot re-read the database (KNVV) table as the user could have populate the value with the same value.
    What I need is how to identify when a user has made a change to a field before they save the sales item, as YVBAP is never filled.
    Previous post----
    Hello,
    I am writing a bit of code that will overwrite the payment terms in a sales order item based on a number of factors. (ship-to, incoterms, document type, etc)
    I am using the following program MV45AFZB at Exit : USEREXIT_CHECK_VBAP. I am using this exit as the users need to see the payment terms after an item has been entered into the sales order and not have the value determined at sales order save.
    I am not using USEREXIT_MOVE_FIELD_TO_VBAP as it is only triggered once at the time of creation and not when I change the document. I need it in USEREXIT_CHECK_VBAP as users could change the incoterms in VA02, so the code must be redetermined.
    My code is working as expected, however, I have a problem when a user enters a sales order item line and then manually changes the payment terms, as my code then is over writes the users values.
    The flow is as follows
    As user creates a sales order
    They populate the sales order header
    They populate material number and qty
    User exit USEREXIT_CHECK_VBAP is triggered and correctly determines the payment terms
    The user then double clicks on the sales order item and decides to overwrite the payment terms.
    My user-exit is retriggered and check to see if XVBAP-UPDKZ = I (insert)
    As it is still an insert, my code triggers.
    I have tried to check YVBAP, but no entry exist as it stills is seen as in insert? What I really need to know that while it is still an insert, the user has change the field value and my code should not over write the users value.

    When do you need to update LPRIO ? When user makes the change at the Payment terms on line item?
    Regards,
    Naimesh Patel

  • Since upgrade to CC 2014 Saving size has changed.

    When I was working in Photoshop before my upgrade to 2014, I would resize my projects to 2 X 2 at 300dpi, and 9 or 10 and it would save it around 240K or slightly higher. All of a sudden it's saving it as 1.0M instead. I can't load this size into my store. I have no clue what happened, as I have not changed a single thing that I do. My original 12 X 12 files that it starts out as has changed to. Please help. No clue what the heck happened.

    jahmanrv wrote:
    All of a sudden it's saving it as 1.0M instead. I can't load this size into my store. I have no clue what happened, as I have not changed a single thing that I do. My original 12 X 12 files that it starts out as has changed to. Please help. No clue what the heck happened.
    JPEG format uses lossy compression and the file size is highly dependent on the image content. It sounds like you are using JPEG original files since both the original and resized JPEG export files are larger. Images with more detail will have larger file sizes at the same quality setting. Here are some good examples:
    http://regex.info/blog/lightroom-goodies/jpeg-quality
    In addition images shot at high ISO camera setting that have visible noise will inflate the file size. Use PS/ACR or LR's Noise Reduction tools to reduce the visible noise when viewed at 1:1 Zoom. This will help prevent the noise from inflating the Exported JPEG file size.

  • JScrollPane not updating when Jlist values are changed

    Hello,
    I have a utility where I have a JList with file names inside a JScrollpane. When a user changes directories, the file list changes to the fully qualified names of the files contained in the new directory. The idea is to have the file names show up in the viewport by scrolling the horizontal scroll bar all the way to the right.
    Here's a short break down of what my code. Sorry I can't provide a runnable snippet, I'm a lot crunched for time.
    Arrays.sort(fileArray);
    fileList.setListData(fileArray);
    hBar = FileScrollPane.getHorizontalScrollBar();
    hBar.setValue(hBar.getMaximum());
    The problem is that hbar.getMaximum() always seems to be a step behind. I always get the Maximum width from the last list of files. As I traverse down a directory tree this results in the knob always being not quit all the way to the right.
    I've tried running fileList.revalidate() after the setListData.
    I've tried calling FileScrollPane.setViewportView(fileList) after the setListData.
    I've tried setting the setViewPositon using getWidth from fileList.
    I've tried setting fileList.setPreferredSize(null) after the setListData, then setting the Viewport, then calling revalidate.
    Somehow the JScrollPane just isn't picking up that the jList has changed and updating it's scrollbars model accordingly until after I've run setValue.
    So my question summed up is:
    Is there someway to force JScrollPane to realize that the JList has changed and update it's components accordingly?

    I tried the revalidate and repaint and it didn't seem to work. I can't use threads for political reasons. so I wrote up the following code which demonstrates the problem. Notice that you have to click a button twice to get the correct values displayed in standard out. Any help would be greatly appreciated.
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.beans.PropertyChangeEvent;
    import java.beans.PropertyChangeListener;
    public class TestJListScroll extends JFrame {
      JScrollPane jScrollPane1 = new JScrollPane();
      String[] listValues1 = {"hhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh",
                              "hhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh",
                              "hhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh",
                              "hhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh"};
      String[] listValues2 = {"TTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTT",
                              "TTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTT",
                              "TTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTT",
                              "TTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTT"};
      String[] listValues3 = {"DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD",
                              "DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD",
                              "DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD",
                              "DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD",
                              "DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD"};
      BorderLayout borderLayout1 = new BorderLayout();
      JPanel jPanel1 = new JPanel();
      JList list = new JList();
      JButton button1 = new JButton();
      JButton button2 = new JButton();
      JButton button3 = new JButton();
      public TestJListScroll() {
        try {
          jbInit();
        catch(Exception e) {
          e.printStackTrace();
      public static void main(String[] args) {
        TestJListScroll testJListScroll1 = new TestJListScroll();
        testJListScroll1.setSize(150,300);
        testJListScroll1.setVisible(true);
      private void jbInit() throws Exception {
        jScrollPane1.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);
        jScrollPane1.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
        this.getContentPane().setLayout(borderLayout1);
        jPanel1.setMinimumSize(new Dimension(10, 75));
        jPanel1.setPreferredSize(new Dimension(10, 75));
        button1.setText("List 1");
        button1.addActionListener(new java.awt.event.ActionListener() {
          public void actionPerformed(ActionEvent e) {
            button1_actionPerformed(e);
        button2.setText("List 2");
        button2.addActionListener(new java.awt.event.ActionListener() {
          public void actionPerformed(ActionEvent e) {
            button2_actionPerformed(e);
        button3.setText("List 3");
        button3.addActionListener(new java.awt.event.ActionListener() {
          public void actionPerformed(ActionEvent e) {
            button3_actionPerformed(e);
        this.getContentPane().add(jScrollPane1, BorderLayout.CENTER);
        this.getContentPane().add(jPanel1, BorderLayout.SOUTH);
        jPanel1.add(button1, null);
        jPanel1.add(button2, null);
        jPanel1.add(button3, null);
        jScrollPane1.getViewport().add(list, null);
        list.addPropertyChangeListener("model", new PropertyChangeListener() {
          public void propertyChange(PropertyChangeEvent e) {
            list_ModelChanged(e);
      void button1_actionPerformed(ActionEvent e) {
        System.out.println("button 1 pressed");
        list.setListData(listValues1);
      void button2_actionPerformed(ActionEvent e) {
        System.out.println("button 2 pressed");
        list.setListData(listValues2);
      void button3_actionPerformed(ActionEvent e) {
        System.out.println("button 3 pressed");
        list.setListData(listValues3);
      private void list_ModelChanged(PropertyChangeEvent e) {
        list.revalidate();
        list.repaint();
        BoundedRangeModel model = jScrollPane1.getHorizontalScrollBar().getModel();
        System.out.println("   file list width = " + list.getWidth());
        System.out.println("   Maximum = " + model.getMaximum());
        System.out.println("   extent = " + model.getExtent());
        model.setValue(model.getMaximum() - model.getExtent());
        System.out.println("   value = " + model.getValue());
    }Thanks,
    Jason

  • How to refresh ViewObject from database when another user has changed data?

    Hello, I use oracle database server 9.0.2 and JDeveloper 9.0.3 and I am developing a JClient application. I have JTable which is bound to a certain view object based on one entity and this is shared between many users. If a user inserts or updates a row in the viewobject (using for example the table) and commits changes, another user can not see the the inserted row while the underlying viewobject executeQuery() call.
    What I need is to refresh data for all users if one of them inserts or updates date. Is it possible?
    What I was able to think of was to use timer and executeQuery in certain period of time. Is there any better way? I mean kind of event which is fired when underlaying data has been changed?
    Thank you in advance!

    So you're saying there is no way for a client application to receive notice from the database that a table has been updated? It seems like this would be a valuable feature, and in fact I could very much use such a feature right now.

  • OS X NTP Security Update my Mail Application has changed

    Since the most recent OS X NTP Security Update my Mail Application has been acting differently.  I no longer see the Tool Bar at the top or the Dock at the bottom unless I hover over those areas.  Is there a setting is need to change?

    Glad to help.
    For further information on full screen mode, Search Full Screen in Help

  • Download helper add-on no longer works after update of firefox, what has changed?

    After I updated Firefox to 18.0.02 the download helper stopped working on 98% of the websites I watch TV programs on. What has changed and will it be returned to its previous condition?
    The website I go to is: http://www.free-tv-video-online.me/internet/

    Are you using an add-on as a download helper?

  • Only my email font size has changed....it's gone smaller while everything else including ads is normal size. How do I change it back to 12 pt type?

    twice in the past few weeks the font size on my email has changed smaller. The first time it went from 12 pt type to maybe 10 pt type. Last night while I was chatting on Yahoo with our daughter, it went down to maybe 2 pt type. I couldn't find a way to change it back. This morning I opened up the computer to try to work on it again and the font size was maybe 1/2 pt type. The words look like little squiggles on the page. Both my email addresses on Yahoo have reacted the same but the ads to the right of the email on the mail page remain the same size. If I open up another window, and say go to foodtv.com, everything is normal size. I have opened up Safari and gone to my email and everything is normal szie so the problem is the Mozilla. I have also called ATT and gotten help and they couldn't help as it's definitely a Mozilla problem.

    Reset the page zoom on pages that cause problems: <b>View > Zoom > Reset</b> (Ctrl+0 (zero); Cmd+0 on Mac)
    * http://kb.mozillazine.org/Zoom_text_of_web_pages

  • All rows in a Set get updated when only one row changes

    I have a complex object, which contains a Set of child objects. If i modify one of the child objects and put the object back in the cache, coherence will issue a sql update for each of the child objects, even though only one changed.
    I'm using hibernate, and when i do this in straight hibernate, that doesn't happen, only one sql update gets issued for the row in question.
    I found this because i have a timestamp column that automatically updates when the row gets updated, but since all the child rows are updating, this timestamp gets updated as well which breaks the biz logic.
    Am i missing something? Clearly it's inefficient to issue updates on all the child rows when just one changes. Is there some way to avoid this?
    Using coherence 3.5.3.
    Thanks.

    This turned out to be an issue with POF serialization of a Date object. It was doing it incorrectly, it would get the day correct, but the HH:MM:SS would be set to the current time. Since the object had been changed, when i persisted the parent, all of the child rows would persist as well since their "modify_date" attribute had been changed. Eg, if the date in the DB was "2010-07-14 03:10:00" when i read the object in, the value would change to "2010-07-14 HH:MM:SS" where HH:MM:SS would be set to the current hours/mins/secs.
    I changed the code to use my own serialization of a Date object (just used the long) and things worked fine after that.
    Is this a known issue with pof serialization?

  • Date Picker Size Has Changed

    Recently the size of our data pickers has changed. The length of the date picker is now the size of the window.
    Has anybody else experienced this and how did you resolve it.
    Cheers
    Gus

    Hi Gus,
    Did you recently just upgrade APEX? Or perhaps did you include some custom CSS (which is overriding the CSS for the date picker)?
    Or perhaps have you upgraded your browser (or switched to a new browser)?
    Things don't just change for no reason ;)
    John.
    Blog: http://jes.blogs.shellprompt.net
    Work: http://www.apex-evangelists.com
    Author of Pro Application Express: http://tinyurl.com/3gu7cd

  • Outlook 2013 - Meeting Tracking is not updated when a meeting is changed in a shared calendar

    Hello,
    we have troubles in our Outlook 2013 environment.
    We changed from Outlook 2003 to Outlook 2013.
    We have Exchange 2007 in background.
    We have Outlook 2013 in Cached Mode.
    Problem description:
    A secretary changes a meeting in a shared calendar of one of her bosses/colleagues. The colleague (organizer of meeting) gets responses of the attendees (aceptet, tentiative, denied) in his Mailbox. When he looks into the meeting to check how many persons
    have acceptet the meeting, he founds out that the tracking is not update.
    I found out in my first solution steps, that this occurs, when the meeting is changed in a shared calendar. When I change th meeting in my own calendar, it works. But we need a solution for the problem, because our secretaries are managing the meetings for
    some colleagues.
    Thanks for help,
    BR, David
    David Strutzenberger

    Hi,
    For your situation, please try the following steps:
    1. Please install the lasted update for Outlook 2013, and then check the issue.
    2. Check if the AutomateProcessing calendar setting for your Microsoft Exchange Server 2007 is set to
    None.
    If so, please make sure the Exchange Server administrator start the Exchange Management Shell on the Exchange mailbox server.
    Then, run the following command in the Exchange Management Shell:
    Set-MailboxCalendarSettings username -AutomateProcessing Autoupdate
    Where username is the affected user's alias.
    3. Switch to Online Exchange mode to test the issue.
    Best Regards,
    Steve Fan
    TechNet Community Support

Maybe you are looking for