Calculate size of MV logs that captures the changes..

hello all,
how can i capture how much data is being put into the MV(materialized view) logs ?? ...i have about 10 MV logs that are capturing all the changes, but is there a way to tell or any dba views ...taht can tell how much data (size in bytes) are being captured ?? my mv logs are on 10.2.0.3

The sizes (in bytes) for the Materialized View Log would be in USER_SEGMENTS.
You would see it as a SEGMENT_TYPE='TABLE', SEGMENT_NAME='MLOG$_tablename" in USER_SEGMENTS
Thus, the MV Log on table "ABC" is visible in USER_SEGMENTS as
SEGMENT_NAME = 'MLOG$_ABC", SEGMENT_TYPE = 'TABLE'

Similar Messages

  • A script that captures the coordinates of the mouse clicks and saves them into a file

    Hello,
    I'm trying to create a cartoon taking a movie (I've chosen blade runner) as base. I've got the real movie and I've exported all the pictures using VirtualDUB. Now I have a lot of images to modify. I would like to modify the actors faces with the faces generated by Facegen modeller. I'm thinking how to make the whole process automatic because I have a lot of images to manage. I've chosen to use Automate BPA,because it seems the best for this matter. I'm a newbie,so this is my first attempt using Adobe Photoshop and Automate BPA. I wrote a little script. It takes a face generated with Facegen modeller and tries to put it above the original actors faces. But it doesn't work very good and I'm not really satisfied,because the process is not fully automated. To save some time I need to write a script that captures the coordinates of the mouse when I click over the faces and that saves them into a file,so that Automate BPA can read these coordinates from that file and can put the face generated with Facegen Modeller above the original face. I think that Automate BPA is not good for this matter. I think that two coordinates are enough,X and Y. They can be the coordinates of the nose,because it is always in the middle of every face. It is relevant to knows how big should be the layer of the new face,too. This is the Automate BPA code that I wrote :
    <AMVARIABLE NAME="nome_foto" TYPE="TEXT"></AMVARIABLE>
    <AMVARIABLE NAME="estensione_foto" TYPE="TEXT"></AMVARIABLE>
    <AMSET VARIABLENAME="nome_foto">br</AMSET>
    <AMSET VARIABLENAME="estensione_foto">.jpeg</AMSET>
    <AMVARIABLE NAME="numero_foto" TYPE="NUMBER"></AMVARIABLE>
    <AMVARIABLE NAME="coord_x" TYPE="NUMBER"></AMVARIABLE>
    <AMVARIABLE NAME="coord_y" TYPE="NUMBER"></AMVARIABLE>
    <AMWINDOWMINIMIZE WINDOWTITLE="Aggiungere_layer - AutoMate BPA Agent
    Task Builder" />
    <AMWINDOWMINIMIZE WINDOWTITLE="AutoMate BPA Server Management Console
    - localhost (Administrator)" AM_ONERROR="CONTINUE" />
    <AMENDPROCESS PROCESS="E:\Programmi_\Adobe Photoshop
    CS5\Photoshop.exe" AM_ONERROR="CONTINUE" />
    <AMRUN FILE="%&quot;E:\Programmi_\Adobe Photoshop CS5\Photoshop.exe&quot;%" />
    <AMPAUSE ACTION="waitfor" SCALAR="15" />
    <AMSENDKEY>{CTRL}o</AMSENDKEY>
    <AMPAUSE ACTION="waitfor" SCALAR="1" />
    <AMINPUTBOX RESULTVARIABLE="numero_foto">Inserire numero FOTO di
    partenza -1</AMINPUTBOX>
    <AMINCREMENTVARIABLE RESULTVARIABLE="numero_foto" />
    <AMPAUSE ACTION="waitfor" SCALAR="1" />
    <AMMOUSEMOVEOBJECT WINDOWTITLE="Apri" OBJECTNAME="%nome_foto &amp;
    numero_foto &amp; estensione_foto%" OBJECTCLASS="SysListView32"
    OBJECTTYPE="ListItem" CHECKOBJECTNAME="YES" CHECKOBJECTCLASS="YES"
    CHECKOBJECTTYPE="YES" />
    <AMMOUSECLICK CLICK="double" />
    <AMPAUSE ACTION="waitfor" SCALAR="10" />
    <AMSENDKEY>{CTRL}+</AMSENDKEY>
    <AMPAUSE ACTION="waitfor" SCALAR="20" />
    <AMSENDKEY>l</AMSENDKEY>
    <AMPAUSE ACTION="waitfor" SCALAR="2" />
    <AMMOUSEMOVE MOVEX="429" MOVEY="281" RELATIVETO="screen" />
    <AMMOUSECLICK />
    <AMPAUSE ACTION="waitfor" SCALAR="2" />
    <AMMOUSEMOVE MOVEX="659" MOVEY="281" RELATIVETO="screen" />
    <AMPAUSE ACTION="waitfor" SCALAR="2" />
    <AMMOUSECLICK />
    <AMPAUSE ACTION="waitfor" SCALAR="2" />
    <AMMOUSEMOVE MOVEX="659" MOVEY="546" RELATIVETO="screen" />
    <AMPAUSE ACTION="waitfor" SCALAR="2" />
    <AMMOUSECLICK />
    <AMPAUSE ACTION="waitfor" SCALAR="2" />
    <AMMOUSEMOVE MOVEX="429" MOVEY="546" RELATIVETO="screen" />
    <AMPAUSE ACTION="waitfor" SCALAR="2" />
    <AMMOUSECLICK />
    <AMPAUSE ACTION="waitfor" SCALAR="2" />
    <AMMOUSEMOVE MOVEX="429" MOVEY="281" RELATIVETO="screen" />
    <AMPAUSE ACTION="waitfor" SCALAR="2" />
    <AMMOUSECLICK />
    <AMPAUSE ACTION="waitfor" SCALAR="2" />
    <AMSENDKEY>v</AMSENDKEY>
    <AMPAUSE ACTION="waitfor" SCALAR="2" />
    <AMMOUSECLICK CLICK="hold_down" />
    <AMPAUSE ACTION="waitfor" SCALAR="2" />
    <AMMOUSEMOVE MOVEX="131" MOVEY="99" RELATIVETO="screen" />
    <AMPAUSE ACTION="waitfor" SCALAR="2" />
    <AMMOUSEMOVE MOVEX="99" MOVEY="162" RELATIVETO="screen" />
    <AMPAUSE ACTION="waitfor" SCALAR="2" />
    <AMMOUSECLICK CLICK="release" />
    <AMPAUSE ACTION="waitfor" SCALAR="2" />
    <AMINPUTBOX RESULTVARIABLE="coord_x">Inserire coordinata X</AMINPUTBOX>
    <AMINPUTBOX RESULTVARIABLE="coord_y">Inserire coordinata Y</AMINPUTBOX>
    <AMMOUSEMOVE MOVEX="200" MOVEY="200" RELATIVETO="screen" />
    <AMMOUSECLICK CLICK="hold_down" />
    <AMMOUSEMOVE MOVEX="%coord_x%" MOVEY="%coord_y%" RELATIVETO="position" />
    <AMMOUSECLICK />
    and this is a short video to explain better what I want to do :
    http://www.flickr.com/photos/26687972@N03/5331705934/
    In the last scene of the video you will see the script asking to input the X and the Y coordinates of the nose. This request is time consuming. For this reason I want to write a script that captures automatically the coordinates of the mouse clicks. The only thing to do should be click over the nose and the script should make the rest. As "c.pfaffenbichler" suggested here : http://forums.adobe.com/thread/775219, I could explore 3 ways :
    1) use the Color Sampler Tool’s input with a conventional Photoshop Script.
    2) use After Effects would provide a better solution.
    3) Photoshop’s Animation Panel might also offer some easier way as it might be possible to load two movies (or one movie and one image) and animate the one with the rendered head in relation to the other.
    Since I'm a totally newbie in graphic and animation,could you help me to explore these ways ? Thanks for your cooperation.

    These are the coordinates of the contours of the face that you see on the picture. Can you explain to me how they are calculated ? The coordinates of the first colums are intuitive,but I'm not able to understand how are calculated the coordinates of the second one.
    Thanks.
    1 COL     2 COL (how are calculated these values ?)
    307.5000 182.0000 m
    312.5000 192.0000 l
    321.5000 194.0000 l
    330.5000 193.0000 l
    335.0000 187.0000 l
    337.0000 180.5000 l
    340.0000 174.0000 l
    338.5000 165.5000 l
    336.0000 159.0000 l
    331.5000 153.0000 l
    324.5000 150.0000 l
    317.0000 154.0000 l
    312.5000 161.0000 l
    309.0000 173.0000 l
    307.5000 182.0000 l
    Message was edited by: LaoMar

  • With journaling, I have found that my computer is saving a large amount of data, logs of all the changes I make to files; how can I clean up these logs?

    With journaling, I have found that my computer is saving a large amount of data, logs of all the changes I make to files; how can I clean up these logs?
    For example, in Notes, I have written three notes; however if I click on 'All On My Mac' on the side bar, I see about 10 different versions of each note I make, it saves a version every time I add or delete a sentence.
    I also noticed, that when I write an email, Mail saves about 10 or more draft versions before the final is sent.
    I understand that all this journaling provides a level of security, and prevents data lost; but I was wondering, is there a function to clean up journal logs once in a while?
    Thanks
    Roz

    Are you using Microsoft word?  Microsoft thinks the users are idiots. They put up a lot of pointless messages that annoy & worry users.  I have seen this message from Microsoft word.  It's annoying.
    As BDaqua points out...
    When you copy information via edit > copy,  command + c, edit > cut, or command +x, you place the information on the clipboard. When you paste information, edit > paste or command + v, you copy information from the clipboard to your data file.
    If you edit > cut or command + x and you do not paste the information and you quite Word, you could be loosing information.  Microsoft is very worried about this. When you quite Word, Microsoft checks if there is information on the clipboard & if so, Microsoft puts out this message.
    You should be saving your work more than once a day. I'd save every 5 minutes.  command + s does a save.
    Robert

  • Annoying 'Could not use the history eraser because the current canvas size does not match that of the history state' message

    Does anyone know if it is possible to get rid of the message 'Could not use the history eraser because the current canvas size does not match that of the history state'?. It comes up if I hit the alt/option key while I have the eraser selected. Something I do by accident all the time.

    The way you've described it, one gets the distinct impression you do not have a clue as to what the history brush does and how to use it.
    You need to read up on it.  Read the Help files and google for tutorials.
    First you need to create an image (with actual pixels in it), edit it as desired, then make a snapshot of the edited image, then target the snapshot with the history brush tool, then go back in the History panel to the step before your edits and selectively paint your edits in with the History Brush.

  • To Capture the change Activity in Me23n

    Hi all,
    How do i capture the change activity (Display/Change) in ME23N ? I need to put validation in an Exit on SAVE clicked in Me23n with changes done to a PO in ME23n only by clicking change button.
    appreciate your ideas.
    Thanks,
    stock.

    Check for the fields TRTYP in table T160  passing the tcode.
       Masked                          
    A    Display                         
    B    Edit                            
    C    Display from archive            
    E    Single-item planning            
    H    Add                             
    V    Change                          
    X    Initial transaction             
    S    Standard parameter: normal mode 
    U    Convert indiv. planned order    
    L    Delete                          
    P    Planning file entry             
    K    Copy reference                  
    D    Print                           
    Regards,
    Ravi

  • Change the tax code at order header level that reflect the change in all it

    Dear consultant,
    Change the tax code at order header level that reflect the change in all items lines under this order
    Facts:
    Define tax code,
    Assign it to bill & ship to customers,
    I do all setup in oracle receivable guide for defining tax
    Examples: I navigate to order management to create order
    First I select the customer and order type after that I navigate to tab line
    I enter the item in the first line the tax code coming by default
    I enter the second items line also the tax code coming by default etc three ,four, five until line 40
    Now I want to change the tax code for all items but not by enter and change it in each line? No,
    I want the way that I change Tax Code at order header after that the change is reflect in all items line
    Business Impacts:
    Suppose I create order include 40 items , I want to change the tax code that coming by default , that require me to enter in each line to change tax cod 40 times ,this not logic and not acceptable from my customer

    Hi,
    The defaulting rules apply only for the first time when you are adding new lines on to the Sales Order. Respective field vaues will be defaulted from the SO header level.
    In case, if you want to update all the 40 lines for Tax Code in one shot, then please select all the lines on the sales order, try Mass Change.
    (Navigation: Tools->Mass Change).
    Regards,
    Hemanth

  • Client Access Server Logs that capture Outlook Anywhere Connections

    Do Exchange 2010 Client Access Servers log Outlook Anywhere connections? Since it's RPC over HTTP, I'm thinking these would be in the IIS logs but don't see any entries in those logs that pertain to Outlook Anywhere. What logs contain Outlook Anywhere connections?
    I suspect I have a CAS server that isn't working properly pertaining to OA and need to be able to review some sort of logs to confirm.
    Thanks

    ARay,
    Do the below basic checks-
    Running the Test-OutlookConnectivity cmdlet. The cmdlet tests for Outlook Anywhere (RPC over HTTP) and TCP/IP connections. If the cmdlet
    test fails, the output notes the step that failed.
    Running the Outlook Anywhere connectivity test using the Exchange Remote Connectivity Analyzer (ExRCA). When you run this test, you get a detailed summary showing where the test failed and what steps you can take to fix issues.
    Both tests try to log on through Outlook Anywhere after obtaining server settings from the Autodiscover service. End-to-end verification includes the following:
    Testing for Autodiscover connectivity
    Validating DNS
    Validating certificates (whether the certificate name matches the Web site, whether the certificate has expired, and whether it's trusted)
    Checking that the firewall is set up correctly (ExRCA checks overall firewall setup. The cmdlet tests for Windows firewall configuration.)
    Confirming client connectivity by logging on to the user's mailbox
    Regards,
    ASP20

  • How to capture the change in the update mode (for Inventory) in a transport

    Hi all,
    I recently changed the update mode for Inventory Controlling  from Unserialized V3 Update to Queued delta in R/3 DEV environment. When I was doing the change it did not prompt for a transport request. Now I have to somehow capture this in a transport and move it to R/3 Quality environment. How do I capture this change in a transport.
    Thanks in advance,
    Ram Kumar.

    there are 2 options
    1) try changing back and forth and see if it prompts for a request
    2) Create a customizing request and add the following entry into the request
    Program ID - R3TR; Object type - TABU; Object name -  TMCEXUPD
    and make the entry ...How ?? Click on the key that you see under the column 'Function'
    client/application component.. if client is 100 and application component is 11
    then the table entry should be 10011
    Assign points if it helps
    P.S:if you check the table TMCEXUPD shows you the update mode
    Edited by: KK on May 28, 2008 1:52 PM

  • How to capture the changes in ppoma_crm transaction

    Hello All,
    We have a requirement that if we add either a BP or an User to a positon in ppoma_crm transaction then we should be able to update these entries in our z table.
    If it is a BP then we should look for the User mapped to it and update the z table else we should directly update the z tables with user name.
    But we are facing an issue in capturing the values that have been updated.
    Can anyone tell me how to capture the new values in the BADI for the ppoma_crm transaction ?
    Regards
    Sohit

    Did any guys here face the requirement? If replicating all the columns some of which may change frequently but are not important to the other sites, then i wouldn't replicate these changes in order to improve the performance. Thanks for your help!

  • How to capture the changes of the specified fields?

    Dear all,
    I wanna capture the specified columns' changes according to the requirement but not all the table columns' changes. For the reason that some of the columns in the table are changed frequently but not so important to the application at the dest site. So avoiding replicating these columns, the replication performance can be improved greatly. How to configure at the source site? Oracle :10gr1
    Appreciated for your kindly help.
    Br,
    MSN:[email protected]

    Or you can create rules on the negative rule set of the capture process to filter out LCRs when only the unwanted columns were changed.
    More specifically, you add a negative rule set rule that evaluates to TRUE when none of the wanted columns has the OLD value different from the NEW value (beware of nulls, you'll have to use a combination of IS NULL/IS NOT NULL expressions to do that).
    This will make the unwanted LCRs to be discarded at capture time, avoiding overhead in propagation and apply, as you want.
    Of course you will still have to create a custom handler to remove the unwanted columns, because you can have the situation when an LCR contains updates on both wanted and unwanted columns. This LCR would not be filtered out by the negative rule.
    Ilidio.

  • Oracle CDC not capturing the changes

    Hi,
    I am pretty new to using Oracle CDC, we have setup Hot log (Async) Oracle CDC.
    Change Tables are created in one schema (Schema A) and change views are created in another schema (Schema B)
    Recently we added new set of tables (Around 300 new tables)  to the existing change set, from this point the change capture stopped working.
    All the steps like extend , Purge excutes without any errors but no data is getting populated in change views in Schema B reason beign change data is not getting populated in change  tables ?
    Can someone please suggest how can i resolve this issue?
    Thanks for your help.

    Hi again,
    Can you please give grand : execute_catalog_role" and the "DBA" roles to the user 
    And : give grant
    select any transaction
    select any table
    select on sys.v_$database
    select on sys.v_$logmnr_contents
    select on sys.v_$logmnr_dictionary
    select on sys.v_$logmnr_logfile
    select on sys.v_$logmnr_logs
    select on sys.v_$logmnr_parameters
    select on sys.v_$logmnr_session
    select on sys.v_$logmnr_transaction
    select on sys.v_$log
    select on sys.v_$logfile
    select on sys.v_$archived_log
    Thank you

  • Track and capture the changes in OWB

    I'm trying to merge data from two systems that have not been kept in sync. For example, I have 4 columns: my_key, lines, mod_date, and source. For the same my_key, lines changes over time (mod_date). I only want to capture the first change to lines (for a given change) regardless of which system the data comes from. Basically, I want to ignore all the rows in which my_key and lines are the same as the last row I selected. Here is some data and the desired results:
    DATA in TEST_RANK table
    my_key lines mod_date source rec#
    A 150 01/01/2005 A 1
    A 150 01/02/2005 B 2
    A 100 01/14/2005 A 3
    A 100 01/15/2005 B 4
    A 200 01/19/2005 B 5
    A 150 01/22/2005 A 6
    A 150 01/25/2005 B 7
    DESIRED RESULTS -
    A 150 01/01/2005 A 1
    A 100 01/14/2005 A 3
    A 200 01/19/2005 B 5
    A 150 01/22/2005 A 7
    I tried w/ Ranking function but it didnt work as it looks for distinct group
    SELECT * FROM ( SELECT my_key,lines,mod_date,ROW_NUMBER() OVER ( PARTITION BY my_key,lines ORDER BY mod_date ) m_rank from table_name ) where m_rank <= 1
    M LINES MOD_DATE M_RANK
    A 100 14-JAN-05 1
    A 150 01-JAN-05 1
    A 200 19-JAN-05 1
    Is there any way I can do this in OWB using analytical functions ?
    Thanks,
    Shreedhar

    Hi,
    I don't think owb10g support analytic aggregation directly. But I know a way to introduce analytic funcations to the aggregation transformation. To achieve this, u'll have to execute some sql. Here's the sample scripts.
    SELECT parameter_id,transformation_expression,parameter_name,
    map_component_name,map_name,parameter_group_name
    FROM all_iv_xform_map_parameters
    WHERE map_name = 'MAP_DEMO'--The map name
    AND MAP_COMPONENT_NAME = 'AGG_DEMO' --The aggregation name
    AND PARAMETER_GROUP_NAME = 'OUTGRP1' --The group name
    AND PARAMETER_NAME = 'ATTR'; --The attribute name
    SELECT * FROM owb10g.cmpmappingparameter_v
    WHERE elementid = &parameter_id;
    UPDATE cmpallclasses
    SET S3_5 = 'MAX('||chr(38)||'5)KEEP
    (DENSE_RANK LAST ORDER BY '||chr(38)||'3)'
    WHERE i_1 = &parameter_id;
    --Here chr(38) is '&', use &5 to pass the 6th attribute
    --in the input group to the analytic function
    Hope this help.

  • Is there a document that details the changes btwn UPK 11.0.0 and 11.1.0.2?

    We are currently running version 11.0.0.
    Is there a summary of the changes between 11.0.0 and 11.1.0.2?
    We are pondering whether to upgrade and are looking for specifics that have changed in the newest version.
    thx.
    [email protected]

    Use the link below to see "What's New in Oracle User Productivity Kit" Version 11.1, ESP1 and ESP2
    http://www.oracle.com/us/products/applications/tutor-upk/whats-new-upk-11-102-v5-1945932.pdf

  • Where is the file that conains the changements of ifsMgr

    Hi, everyone, thank you advance for your time and helps.
    Now I am using 9ifs to add some features to webdav. I made my own webdavserver which is similar to the original DavServer. When I loaded my own webdavServer, and found that it was truly running by Oracle Enterprise Manager, but the page of http://localhost:7777/ifs/files1 cannot be found (Http 404 error) when type the above address in my browser.(IFS.SERVER.PROTOCOL.DAV.ContextServletPath == /ifs/files1). Can you tell why?
    I also want to know how does the ifsMgr work? Where can I find and in which file can I find the change s after I make some changing of some server and their parameters by the ifsMgr.
    Any advices and suggestions are highly appreciated.
    Johnson Song

    All the changes that are made usng IfsMgr are stored in the database, in the iFS schema. There are no local files that store the configuration data.

  • Table that contains the change date for every cost element

    Hi everyone!
    Can anyone please help me find a table which contains the change date for every cost element?
    Thanks,Jess

    If you basically want to find out if anyone changed the cost element, you need to use transaction KA05 and enter the cost element and controlling area.
    This would actually bring you whatever field was changed and on double clicking give you the actual change and the date on which the change was made.
    Problem is this change date is actually the creation date of a change document which is in the table CDHDR.Its not like the change date is on any master tables.
    Hope this helps
    Deepa

Maybe you are looking for

  • SharePoint 2013 site in 2010 mode - Web Analytics functionality?

    We recently upgraded to SharePoint 2013 from SharePoint 2010.  Our main portal site is running in 2010 mode.  Are "Site Web Analytics reports" supported for 2013 sites running in 2010 mode?  After our upgrade, it appears that no new data is showing i

  • I am getting the following error in DAC, can anybody look into this ?

    Hi All I am getting the following error in DAC while Registering Informatica Services & repository services in DAC ? This is for RS(Repository services): ====================== Failure connecting to "BIA_RS"! ANOMALY INFO::: Error while pinging infor

  • Problem during Database Creation of 8.1.7 in Linux7.2

    hello folks, i am having a problem in creating database of 8.1.7 in Linux7.2 RedHat. after successful installation,,and after even successfull listener configuration,, when database creation assistant is creating database; On 82% At "Initializing dat

  • Best practice for jndi lookup

    I am in the process of cleaning up a rather large codebase and am looking for the best way (or good methodologies I can choose from) for specifying the jndi lookup name. Our current code base has the following methods for specifying the lookup name:

  • DPM console crashes due to DB error

    Hi all, I've updated a protection group ( removed backup targets) and the console crashed. Now i cannot open the console due to DB error The description for Event ID 945 from source MSDPM cannot be found. Either the component that raises this event i