Is it possible that rename table captured by streams

is there any way that i can capture rename table??

Just setup your rule for DDL to the schema level and it will.
Use dbms_streams_adm.add_schema_rules instead of dbms_streams_adm.add_table_rules.
Regards,

Similar Messages

  • Is there any possible that pivot table can display date values in the data area like this?

    I use Power Query to load data(including all the of data showed in the following table without accumulating) from database to the Excel Worksheet, and I want to build a pivot table like this.
    But the data area of the pivot table can only accecpt and display numeric data. Is there any possible that such a display can be achieved?
    Thanks.

    Hi,
    Would you like to upload a sample file through OneDrive? I'd like to see the data source structure and test it.
    Regards,
    George Zhao
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Rename table

    how to rename table using export and import utility ??
    Thanks 10

    883532 wrote:
    how to rename table using export and import utility ??
    Thanks 10What is the version?
    In 9i its not possible to rename table using export/import, why not using SQL? its very simple
    SQL> create table emp_new as select * from emp;
    if its above 10g.then
    $expdp system/***** tables=scott.emp dumpfile=emp.dmp logfile=emp.log directory=data_pump_dir
    $impdp system/***** dumpfile=emp.dmp logfile=emp_imp.log remap_table=emp:emp_new directory=data_pump_dir
    HTH.
    User Profile for 883532
         883532      
         Newbie
    Handle:      883532
    Status Level:      Newbie
    Registered:      Sep 6, 2011
    Total Posts:      28
    Total Questions:      18 (12 unresolved)
    Keep the forum clean as much as possible by marking threads as answered.
    Edited by: CKPT on Feb 20, 2012 10:00 PM

  • Is it possible that my update stats used only correct tables?

    Whenever there is a schedule maintenance run I receive a error:
    Executing the query "UPDATE STATISTICS [Perf].[PerfHourly_F65954CD35A54..." failed with the following error: "Table 'PerfHourly_F65954CD35A549E886A48E53F148F277' does not exist.". Possible failure reasons: Problems with the query, "ResultSet"
    property not set correctly, parameters not set correctly, or connection not established correctly.
    Is it possible that my update stats used only correct  tables?
    Thanks

    Use below script ...(change if required)
    USE [dbname]
    go
    DECLARE @mytable_id INT
    DECLARE @mytable VARCHAR(100)
    DECLARE @owner VARCHAR(128)
    DECLARE @SQL VARCHAR(256)
    SELECT @mytable_id = MIN(object_id)
    FROM sys.tables WITH(NOLOCK)
    WHERE is_ms_shipped = 0
    WHILE @mytable_id IS NOT NULL
    BEGIN
     SELECT @owner = SCHEMA_NAME(schema_id), @mytable = name
     FROM sys.tables
     WHERE object_id = @mytable_id
     SELECT @SQL = 'UPDATE STATISTICS '+ QUOTENAME(@owner) +'.' + QUOTENAME(@mytable) +' WITH ALL, FULLSCAN;'
     Print @SQL
     EXEC (@SQL)
     SELECT @mytable_id = MIN(object_id)
     FROM sys.tables WITH(NOLOCK)
     WHERE object_id > @mytable_id
      AND is_ms_shipped = 0
    END
    Or use below for required table only but it will not execute only generate script, make change as per ur requirements:
    SELECT X.*,
      ISNULL(CASE
        WHEN X.[Total Rows]<=1000
        THEN
          CASE
            WHEN [Percent Modified] >=20.0
            THEN 'UPDATE STATISTICS ' + [Schema Name] + '.' + [Table Name] + ' WITH ALL, FULLSCAN  --20% Small Table Rule'
          END
        WHEN [Percent Modified] = 100.00
        THEN 'UPDATE STATISTICS ' + [Schema Name] + '.' + [Table Name]     + ' WITH ALL, FULLSCAN  --100% No real Stats Rule'
        --WHEN X.[Rows Modified] > 1000
        --THEN 'UPDATE STATISTICS ' + [Schema Name] + '.' + [Table Name]     + ' WITH ALL, FULLSCAN  --1000 Rows Modified Rule'
        ELSE
          CASE
            WHEN X.[Total Rows] > 1000000000 --billion rows
            THEN CASE
                   WHEN [Percent Modified] > 0.1
                   THEN 'UPDATE STATISTICS ' + [Schema Name] + '.' + [Table Name]     + ' WITH ALL, FULLSCAN  -- 1B Big Table Rule'
                 END
            WHEN X.[Total Rows] > 100000000  --hundred million rows
            THEN CASE
                   WHEN [Percent Modified] > 1.0
                   THEN 'UPDATE STATISTICS ' + [Schema Name] + '.' + [Table Name]     + ' WITH ALL, FULLSCAN  -- 100M Big Table Rule'
                 END
            WHEN X.[Total Rows] > 10000000   --ten million rows
            THEN CASE
                   WHEN [Percent Modified] > 2.0
                   THEN 'UPDATE STATISTICS ' + [Schema Name] + '.' + [Table Name]     + ' WITH ALL, FULLSCAN  -- 10M Big Table Rule'
                 END
            WHEN X.[Total Rows] > 1000000    --million rows
            THEN CASE
                   WHEN [Percent Modified] > 5.0
                   THEN 'UPDATE STATISTICS ' + [Schema Name] + '.' + [Table Name]     + ' WITH ALL, FULLSCAN  -- 1M Big Table Rule'
                 END
            WHEN X.[Total Rows] > 100000     --hundred thousand rows
            THEN CASE
                   WHEN [Percent Modified] > 10.0
                   THEN 'UPDATE STATISTICS ' + [Schema Name] + '.' + [Table Name]     + ' WITH ALL, FULLSCAN  -- 100K Big Table Rule'
                 END
            WHEN X.[Total Rows] > 10000      --ten thousand rows
            THEN CASE
                   WHEN [Percent Modified] > 20.0
                   THEN 'UPDATE STATISTICS ' + [Schema Name] + '.' + [Table Name]     + ' WITH ALL, FULLSCAN  -- 10K Big Table Rule'
                 END
            END
      END,'') AS [Statistics SQL]
    FROM (
    SELECT  DISTINCT
            DB_NAME()   AS [Database],
            S.name      AS [Schema Name],
            T.name      AS [Table Name],
            I.rowmodctr AS [Rows Modified],
            P.rows      AS [Total Rows],
            CASE
              WHEN I.rowmodctr > P.rows
              THEN 100
              ELSE CONVERT(decimal(8,2),((I.rowmodctr * 1.0) / P.rows * 1.) * 100.0)
            END AS [Percent Modified]
    FROM
            sys.partitions P
            INNER JOIN sys.tables  T ON P.object_Id = T.object_id
            INNER JOIN sys.schemas S ON T.schema_id = S.schema_id
            INNER JOIN sysindexes  I ON P.object_id = I.id
    WHERE P.index_id in (0,1)
      AND I.rowmodctr > 0
    ) X
    WHERE [Rows Modified] > 1000
    ORDER BY [Rows Modified] DESC
    Please click "Propose As Answer"
    if a post solves your problem, or "Vote As Helpful" if a post has been useful
    to you

  • Rename Tables in Numbers 3.0

    I've been using Numbers '09 for several years, and I have one spreadsheet that has 2 sheets (2012, 2013) and each sheet has multiple tables.  In Numbers '09, I was able to copy and entire tables, and after the paste it would have the same name as the previous table.  i.e. Original table would be called Oct 12-13, and the Pasted Table would then be called Oct 12-13-1.  I could then rename the Table to Oct 19-20.  In Numbers 3.0, I am unable to rename tables. 
    Has anybody been able to find a way to rename individual tables on a sheet?

    Hi dbutlerman,
    That confused me too at first. In Numbers '09 I figured out how to display and change the name in the Table Inspector.  In Numbers 3.0 I couldn't find how to change the name in the Table pane at the right.
    But I tried doubleclicking the table name itself on the sheet and found I could edit it right there. 
    For me, more intuitive and convenient than Numbers '09.
    SG

  • Is it possible to rename photo in the "camera roll" OR reset the photo number in iphone 4s? (Clearly explained the situation)

    Hi everyone, nice to meet you all. This is my first discussion starting in here and nice to meet you all. I used Android device before and this is my first apple mobile that I owned. I am using iphone 4s. (5.0.1)
    I have search a lot but no answer that how can I rename the photo in the camera roll in iphone or in Windows 7.
    What I want to do is:
    I have IMG_0006, IMG_0007, IMG_0015, IMG_0016, IMG_0017, total 5 files.
    I want to change the name that make their sequence will become IMG_0001, IMG_0002, IMG_0003, IMG_0004, IMG_0005 and I want the following picture will take place in IMG_0006. (This is just what I want but it never happened)
    but seems that I can't rename them and I have tried that if I take 2 pictures after IMG_0017, but I delete them (which is delete IMG_0018 and IMG_0019), then take another new picture again, it will name as IMG_0020 instead of IMG_0018.
    Questions:
    1. Are there any methods to reset the photo number by deleting file under the "PhotoData" that we can see in iPhone Explorer?
    OR
    2. Are there any methods to rename the photo in the "camera roll" folder?
    I have tried to rename the photo directly in iPhone Explorer but it will make the photo cannot be read in iphone.
    3. Is it possible that I can rename them directly and rebuild the camera roll by deleting the Photos.sqlite under the PhotoData folder to solve the unreadable problem in iphone 4?
    Thanks a lot to read all of the words above

    Thanks for your quick reply. I think I have tried but I cannot.
    There are no any options to let you choose "rename" in Windows 7 if you connect the iphone via USB
    I have tried to rename the photo directly in iPhone Explorer but it will make the photo cannot be read in iphone and just got nothing to show on its screen until I rename it into the previos name again then the picture will show properly.
    May be it can but I do not know how to rename them in Windows 7, could you please show me step by step?

  • Possible to rename popup strings upon changing `Chapter` field in `Composition Marker` dialog?

    Hi There,
    I am in need to dynamically change the values inside a popup upon a user changing the value of the `Chapter` field within the `Composition Marker` dialog.  I realize that we cannot add new string values to a popup at runtime, but I read a thread in this forum, and in the `Supervisor` example in the SDK, that it is possible to rename them.  However, it seems like the event for making the changes to those values is triggered by a user changing values in the parameter set of the plugin itself. 
    So my idea is to populate a popup param with 20 strings--for example, 1, 2, 3, . . . 20.  Then when a user enters in a string within the `Chapter` field in a `Composition Marker` dialog, it updates the popup list to show the user entered string.  Is this possible?  I know I can access the string in the `Chapter` field via javascript ExtendScript.  Can I do it within C++ code?
    Thanks for your time and help!

    to get the marker string you should use AEGP_GetMarkerString() with AEGP_MarkerString_CHAPTER.  as for changing the popup values, by looking at the thread you pointed out, it seems it's possible to change the popup names at any time, and not during a specific code. the entire accessing of the popup data in that example was done using AEGP calls, which should not be affected by the calling time. (except for rare cases) never tried it myself. can vouch for my advice here.  since popup param's amount of entries can't be changed dynamically (to the best of my knowledge), you can create 30 (or any other number) of hidden popup params, starting with 1 entry and ending with 30 entries in it, and make only the param that fits your purposes best at that moment - visible.

  • ORA-20079:  WM internal error [unable to rename table]

    Hi,
    I am getting following error when i try to enable versioning on a table. Any idea how to resolve it ?
    BEGIN DBMS_WM.EnableVersioning('TestTable'); END;
    ERROR at line 1:
    ORA-20079: WM internal error [unable to rename table]
    ORA-06512: at "SYS.LTDDL", line 1615
    ORA-06512: at "SYS.LTDDL", line 1193
    ORA-06512: at "SYS.LT", line 647
    ORA-06512: at "SYS.LT", line 8024
    ORA-06512: at line 1
    thanks
    -na

    Hi,
    You need to determine the original error that is being generated by oracle. This can be done by attempting to rename the table yourself. For example:
    SQL> alter table TestTable rename to RenamedTable ;
    That will give you a better understanding as to why Workspace Manager is unable to rename the table. Also, what version of the database and workspace manager are you using ?
    If the direct rename succeeds while enableversioning continues to fail, then you would need to file a TAR on this.
    Regards,
    Ben

  • How to call a stored procedure that has Table Of data types in VB6?

    Hi everyone,
    I need to call a stored procedure that has a Table Of data type as an input parameter (possibly even several Table Of input parameters). I can't seem to find any example of how to do this in VB6 using ODBC. Is this even possible?
    Thanks you!
    Steve

    Thanks,
    but I need to test stored procedures that uses type defined in the package.
    e.g.
    if I have s.p.
    PROCEDURE get_risultati_squadra
    ( in_squadra IN VARCHAR2,
    out_serie OUT tab_varchar2_5,
    out_tiporisultato OUT tab_varchar2_5,
    out_n_giornata OUT tab_varchar2_5,
    out_squadre OUT tab_varchar2_200,
    out_risultato OUT tab_varchar2_10,
    out_marcatore OUT tab_varchar2_50,
    out_punti OUT tab_varchar2_3,
    out_rimbalzista OUT tab_varchar2_50,
    out_rimbalzi OUT tab_varchar2_3,
    out_esito OUT tab_varchar2_2);
    I have to define every type external to the package, in this case five new TYPE !!
    Is there another way to solve this problem?
    Thanks

  • Is it possible to pass table type values as input parameter for con prg?

    Hi All,
    Could you please confirm that is it possible to pass table type value as input to concurrent program?
    If possible how to achive this?
    If not possible whether we have any ora doc which is confirming this.
    Any hel will be great.
    Thanks,

    Hi student;
    Please check (http://apps2fusion.com/at/45-as/241-enablingdisabling-concurrent-program-parameters)
    Hope it helps
    Regard
    Helios

  • Indicate to the user that a table has updated its contents

    Hi,
    I have some criteria but I am not sure where to go or if it is even possible.
    What I have is a jspx page with a table on it.
    I have a poll that periodically re-executes the query for the table. If there are any changes then the table is refreshed automatically.
    This is great for when the user is looking at the page and he/she can see the new row appear as they are looking at the table.
    However the users that are going to be using my application will likely to have the page open, but have the window minimized.
    So to allow for a better user experience I would like to be able to notify the user when there has been a change on the page. (Instead of the user periodically checking the page; to find out that the data is the same)
    What I would like to do is make the minimized window flash, which generally happens when you open up a new window, or a new message appears on msn messenger/pigeon. The minimized window flashes to indicate to the user that there has been a change (So to indicate a new row has appeared).
    Does anybody know if this is possible? And how to approach this problem?
    Thanks,
    Steve
    I am currently using JDeveloper 10.1.3

    thanks for the reply,
    but i cant use just html like <input type hidden > as i'm using the struts like framework with the netui tags in weblogic where i need to link the tag value to the form bean to be passed to the server . thus i need to use the netui tag , which doesnt have a name but a tagId instead, so i'm using it like this :
    <netui:hidden tagId="teleCarerId" dataSource="{actionForm.teleCarerId}" dataInput=""/>and then in javascrpit doing:
    //document.form.teleCarerId.value = row.cells[4].innerText;but thats not my problem ()as it probably will work and its only an issue after i resolve the first part of my question:-
    which is how do i hide a cloumn in a table and its values so that when the user selects a row i can pass the hidden value of row as part of my form .
    as i mentioned before when i make the cloumn visible as in
      <th><rpb:columnHeader field="TELECARERID"><i18n:getMessage messageName="telecarer_id"/></rpb:columnHeader></th>and give it a visible value:
      <td><netui:label value="{container.item.TELECARERID}"/></td>
           </tr>i can pick up the value fine using the javascript syntax:
    row.cells[4].innerText;however when i hide only the value - which is only part of what i want to do as i want to also hide the column heading so that this part of the table isnt seen- as in:-
    <td><netui:hidden dataInput="{container.item.TELECARERID}" dataSource="" /></td>then i cant use
    row.cells[4].innerText;to pick up the value although it does hide the value and in viewsourec the value is there - is there some other syntax that i should be using here - and also how can i hide the cloumn heading so that the table looks asthtically good on the browser?
    ie. what should i change this line of code to?
      <th><rpb:columnHeader field="TELECARERID"><i18n:getMessage messageName="telecarer_id"/></rpb:columnHeader></th>thanks in advance for any help.

  • Is it possible that the camera itself isn't compatible with FCE?

    Hello,
    I am working on a macbook osx in final cut express with a JVC mini DV GR-D70U camcorder. I have set my easy setup to DV-NTSC but FCE is still not recognizing my camera. My camera is set on play back and connected with a USB. The last film I created was with a european camera, so maybe there is one more setting I need to change? Could it be possible that my camera isn't compatible with my operating system?
    Thank you,
    Emily

    My camera is set on play back and connected with a USB.
    USB will work for downloading stills photos but not for video from the tape.
    Get yourself a 4-6 pin firewire/iLink cable and use Log and Capture in FCE.
    The FCE Easy Setup sounds right for NTSC footqge.
    Al

  • Is it possible to set table-variant from one user to another one?

    Is it possible to set table-variants from a t-code like fb60 from one user to another one?
    I mean that both user have the same table-variants.

    You mean screen variant, where you will need to anter the GL line items in FB50?
    then you can set your desired variant as DEFAULT for all users, when it is configured.
    Else thru SU10, for all of your users, add parameter ID SCRVAR and give your parameter value (screen variant name) and SAVE.

  • No cell merge possible with adf table?

    i know that there is no cell merge possible with adf table.
    however i read that with trinidad table it's possible.
    my table has data like this:
    d1 - tommy - 5
    d1 - tommy - 7
    d2 - burpy - 3
    d2 - burpy - 4
    d2 - tom - 7
    now i have to merge first column (dog id) where id is same -
    d1 - tommy - 5
    --- - tommy - 7
    d2 - burpy - 3
    --- - burpy - 4
    --- - tom - 7
    i am creating this dog table thru a data control on jspx page.
    can anyone suggest some help?
    or will i have to use html table for it? i really want to avoid html.
    thanks.

    Shay Shmeltzer wrote:
    Use a pivot table or a treetable
    http://jdevadf.oracle.com/adf-richclient-demo/faces/components/pivotTable.jspx
    http://jdevadf.oracle.com/adf-richclient-demo/faces/components/treeTable.jspx
    Or use inlined iterators to layout the dataonly issue with pivot table is it doesn't display header for left columns unless u take ur cursor there.
    tree table is completely different kind of view - imo.
    didn't get much help on inlined iterators - can u plz post more details on this?
    thanks.

  • Is it possible to rename app icons on the home screen?

    When I save an app or bookmark to the home screen, I invariably get the name wrong so that I want to rename it. But I can't find out how to. Is it possible to rename, or do I have to start all over again?
    Thanks

    Delete the bookmark and then re-save it, That's the only way that I have found.

Maybe you are looking for