CLO is added to the table: with a log-in user

Hello

I have a table in Oracle database 11g for application reporting purpose, according to design every time that a specific user log-ins, columns is added in the table
and more and more wise collar.

Is there a best way to handel who? Pls suggest.

Concerning

Hello

You have specified that what is happening in your current application. But you have not specified what actually you are looking for. Like other members of the forums you must follow, given that over a period of time or in weeks, your application is given that you can expand the columns from the same table - because there is a limit to this.

So, if I analyze your condition you want to perform the audit of the use of connections. What logic you have implemented to try to change a little, instead of dynamically add the column - insert lines in the table.
This way you can figure out, when and what time specific users are logged in - the history of your users time session login.

Note: try to develop your condition / problems, another is little difficult for us to understand.

-Pavan Kumar N

Tags: Database

Similar Questions

  • 'For' loop with a different number of iterations. Second, the auto-indexation of the tables with different sizes is done. It can affect the performance of the Vi?

    Hello

    I have a loop 'for' which can take different number of iterations according to the number of measures that the user wants to do.

    Inside this loop, I'm auto-indexation four different 1 d arrays. This means that the size of the tables will be different in the different phases of the execution of the program (the size will equal the number of measures).

    My question is: the auto-indexation of the tables with different sizes will affect the performance of the program? I think it slows down my Vi...

    Thank you very much.

    My first thought is that the compiler to the LabVIEW actually removes the Matlab node because the outputs are not used.  Once you son upward, LabVIEW must then call Matlab and wait for it to run.  I know from experience, the call of Matlab to run the script is SLOW.  I also recommend to do the math in native LabVIEW.

  • implementation of the table with the scroll bar. (data scrolling)

    Hello

    I want to show the web service data in the table with scroll bar using java script or html or css .actuall I want only a part of the screen is not whole screen scrollable. can you suggest how it is possible.any suggestion? I used phone gap technology. I used iscroll but it does not work in blackberry data are not displayed in the Simulator... Help, please

    Thank you

    ravi1989 wrote:

    Hello

    I want to show the web service data in the table with scroll bar using java script or html or css .actuall I want only a part of the screen is not whole screen scrollable. can you suggest how it is possible.any suggestion? I used phone gap technology. I used iscroll but it does not work in blackberry data are not displayed in the Simulator... Help, please

    According to devices/operating systems that you want to support, you could give bbUI.js a change. It works really well in most of the cases, and I think there are a lot of things you don't need to worry more because bbUI.js is just for you.

    Look more at the scrollPanel example that does exactly what it takes, a part only of the entire screen of scrolling you can configure a height in the HTML source code directly.

  • Can fill us transitional attribute in the table with no serial like 1,2,3, etc.? And how?

    Mr President.

    Can fill us transitional attribute in the table with no serial like 1,2,3, etc.? And how?

    Concerning

    You want to show serial No. on the page for all the lines?

    Check once-

    Blog of Ashish Awasthi (Jdev/ADF): Add the serial number to the table of the ADF, column to auto-increment in the table to the ADF

    Actually transitional attribute loses its value when page refreshes or viewObject is not appropriate in this case if your use case is different, so please tell us

    Ashish

  • I want to change the table with the expression of dangerousness of the virtual columns with her, need advice

    Hi all

    Here is the structure of the table with two expression of virtual columns associated highlighted, now I want to delete these expressions with virtual columns (but must keep my VIRTUAL columns as it is).

    Is it possible the alter or I need to raise the table, make a new structure and copy content back to newly structured table... Pleae help!

    CREATE TABLE TEST_COL)

    SAGE_TRADE_TYPE VARCHAR2 (50 BYTE),

    LOCAL_TZ VARCHAR2 (20 BYTE),

    ACE GMT_CONV_ENTERED_DT_TS (SAGEDBO. FN_CONVERT_TIMEZONE (LOCAL_TZ, ENTERED_DT_TS)) VIRTUAL,.

    ACE GMT_CONV_EXECUTION_DT_TS (SAGEDBO. FN_CONVERT_TIMEZONE (LOCAL_TZ, UPSTREAM_EXECUTION_TS)) VIRTUAL,.

    EOD_IND VARCHAR2 (10 BYTE)

    );

    Thank you very much

    Arpit

    Try this

    ALTER table test_col change gmt_conv_entered_dt_ts (0) virtual;

    ALTER table test_col change gmt_conv_execution_dt_ts (1) virtual;

  • How to export data from the table with the colouring of cells according to value.

    Hi all

    I use jdeveloper 11.1.1.6

    I want to export data from the table with a lot of formatting. as for color cells based on value and so much. How to do this?

    You can find us apache POI-http://poi.apache.org/

    See this http://www.techartifact.com/blogs/2013/08/generate-excel-file-in-oracle-adf-using-apache-poi.html

  • How the values to insert into the table with the command insertion

    Dear all
    can someone tell me how the values to insert into the table with the command insert, I want to say I always use command insert behind my forms on what shutter release button press the button of my save, but today I had a form of 6i, where controls (textbox, combo, etc.) are delineated with directly the table with I guess than the Properties Windows , I created 3 columns in tand 3 text on forms fields, now kindly tell me how to do this fields to fill and do not insert command, I mean directly defined with table column



    Please help me its urgent

    Hello

    If the block is based on your database table, just committed the shape, then changes will be applied to the database.

    François

  • Creating the table with time stamp

    I need to create the table with the data inside buffer

    Can you help me pls

    If it works today,

    create the table test_04NOV2010 in select * from product where product_code = '101'

    If executed tmrw,

    create the table test_05NOV2010 in select * from product where product_code = '101'
    declare
    
    v_date varchar2(25);
    v_sql  varchar2(20);
    
    begin
    
    select to_char(sysdate,'DDMONYYYY') into v_date from dual;
    
     v_sql := ' create table ' ||TEST||'_'||'v_date'|| 
                 ' as '
                 ' select * from Product where product_code = '101'
              
     EXECUTE IMMEDIATE v_sql;
    
    end;
    can is it you pls let me know how to use it in PL SQL

    Can you help me pls

    Thank you very much
    declare
    
    v_date varchar2(25);
    v_sql  varchar2(2000); --Noted this. this was also small.
    
    begin
    
    select to_char(sysdate,'DDMONYYYY') into v_date from dual;
    
     v_sql := ' create table TEST_'||v_date||
                 ' as select * from Product where product_code = ''101''';
    
     EXECUTE IMMEDIATE v_sql;
    
    end;
    

    You can use the Q operator also.

    DECLARE
    
    v_date varchar2(25);
    v_sql  varchar2(2000);
    
    BEGIN
    
    select to_char(sysdate,'DDMONYYYY') into v_date from dual;
    
     v_sql := ' create table TEST_'||v_date||
                Q'[ as select * from Product where product_code = '101']';
    
     EXECUTE IMMEDIATE v_sql;
    
    END;
    

    Published by: mohamed on November 4, 2010 05:32

  • Identify the tables with data or not

    Hello

    I want to find the tables with data and containing not data without checking each table. Is there a possible way?

    Like this?

    select
      table_name,
        to_number(
          extractvalue(
            xmltype(
     dbms_xmlgen.getxml('select count(*) c from '||table_name))
            ,'/ROWSET/ROW/C')) count
      from user_tables;
    

    Or may be

    select
      table_name,
       CASE WHEN
           to_number(
              extractvalue(
                xmltype(
         dbms_xmlgen.getxml('select count(*) c from '||table_name))
                ,'/ROWSET/ROW/C'))>0 THEN 'Table Has Data'
        ELSE 'Table is Empty'
        END
      from user_tables;
    
  • Fill the table with random values

    Another thing I've come across is this:
    the table name is LOR, who has 3 fields NUMBER, DATA, TEXT with number, date and varchar2 data type.
    On a page, I have a text field where if I write 3, then it would add 3 lines to the table with predefined values ("number, something like 2222, for 12 January 09, and for text, something like" Lorem ipsum dolor sit amet, 195kgs adipisicing elit"). So basically, with the number that I give, it populates the table with lines... How can I do this? Thanks for helping me
    INSERT INTO LOR
    SELECT 222
    , sysdate
    , 'you string'
    FROM dual
    CONNECT BY level <= :Pxx_
    
  • If I click on an email link in a web page instead of an empty message is opened I still get noise toward the top of the screen with a log-in for googlemail. I don't have and won't have a googlemail account. I just want to be able to send e-mail messages b

    If I click on an email link in a web page instead of an empty message is opened I still get noise toward the top of the screen with a log-in for googlemail. I don't have and won't have a googlemail account. I just want to be able to send e-mail messages by using Outlook.

    See this article.

    http://support.Mozilla.com/en-us/KB/changing+the+e-mail+program+used+by+Firefox

  • asynceventlistener in the tables with the IDENTITY of ACEs ALWAYS GENERATED and GENERATED BY DEFAULT AS IDENTITY

    Good afternoon

    I have a problem when I create an asynceventlistener with the terms GENERATED ALWAYS AS IDENTITY and GENERATED BY DEFAULT AS IDENTITY by creating asynceventlistener table does not respect the creation parameters. I have the following example:
    -asynceventlistener
    create asynceventlistener referrallistener
    (
    listenerclass "com.vmware.sqlfire.callbacks.DBSynchronizer".
    InitParams
    "' com.mysql.jdbc.Driver, jdbc:mysql://localhost:3306 / sqlfdb, user, password"
    True ENABLEBATCHCONFLATION
    BATCHSIZE 100000
    BATCHTIMEINTERVAL 60000
    True ENABLEPERSISTENCE
    )
    groups of servers (dbsync);
    -Start asynceventlistener
    call sys.start_async_event_listener ('REFERRALLISTENER');
    -create table in sqlfire
    create the table sqlftest
    (id int not null not ALWAYS AS IDENTITY GENERATED,
    name varchar (10),
    PRIMARY KEY (id))
    asynceventlistener (referrallistener);
    -create table in mysql
    create the table sqlftest
    (id int not null AUTO_INCREMENT, name varchar (10),)
    PRIMARY KEY ('id')
    ) ENGINE = InnoDB AUTO_INCREMENT = 1 DEFAULT CHARSET = utf8;
    When I insert in sqlfire this replica on Mysql database but is then immediately, without worrying about the BATCHSIZE or BATCHTIMEINTERVAL which is 60 seconds.
    Thanks for the support.
    Guillermo

    Hi Guillermo,.

    This is the version that fixes your issue. We added a system property - Dsqlfire.enable - bulk-dml-batch

    It is disabled by default. If enabled(-Dsqlfire.enable-bulk-dml-batching=true) it will be lot in bulk (not pk) LMD and send commands to DBSynchronizer.

    Name: SQLFire103_39386.zip
    Size: 27,61 MB
    Expires: January 12, 2013
    Download: https://ftpsite.vmware.com:443 / download? domain = FTPSite & id = 12f220841bb632e22f669d5835265b46

    Yogesh-

  • Help to update all rows in the Table with a sequence

    Hi all

    I have a table with the name Report_Status, now we have added a new [Batch_ID] column in the table. The new column takes a value in a sequence. Can someone tell me a normal SQL queries or the procedure for updating each line in turn to an existing table in the value of the sequence? We cannot delete the existing data, must be added for each record batch code.

    example of name of sequence: Report_Status_Batch_ID_SEQ

    Report_Status name and the column name of the table Batch_ID

    Thanks for your time to help out me.

    Kind regards

    Ashish

    Thanks John,

    or I could write as update dept set id = ID_SEQ. NEXTVAL;

    This also works. Thanks for the idea.

  • How can single checkbox can be selected in the table with Boolean checkboxes?

    I have a table editable ADF where an attribute is a Boolean checkbox... and stores the value with Y or N.

    Is there a way where the single checkbox must be selected at time of posting?

    For example, in the case its a table of responses to a choice unique to an application of Questionnaire, Question by adding new responses to the table..., the user inserts 3 rows (answers)... then the Boolean checkbox for only one of these 3 rows can be verified.

    Thank you
    DJ

    Since you have an attribute that has the "Y" or "n" for each line.
    When the user selects a line, you must deselect the other lines using the value change listener pro-grammatically.
    If the number of rows is large, it could be performance intensive.

    Thank you
    Nini

  • Reset ALL instances added to the table

    Hello

    I'm doing a reset button erase the lines added together in a dynamic array.

    I created a table which allows the expansion/contraction, all I want for the reset button is reset my table to the State not reimbursed if clicked, set apart to erase all the data on the form.

    Right now I have this line of code added to my reset button:

    TableForm.Table._Students.removeInstance (this.parent.index);

    However, all it does to clear a line in time per click when I really want to do is erase all the extra lines in a single click.

    Thank you very much!!!

    Hello

    Here is an example: https://acrobat.com/#d=RZ1lzX23 * u7L4N9rtWCYPQ

    If you look at the reset button, I have a loop that works with instances and removes all of them until the table is restored.

    Hope that helps,

    Niall

Maybe you are looking for

  • After 40.0.2 updated, type in the web address obscured w / partial spacial blocks

    If you type the characters of a product of web address blocked visibility of what is typed with a single block by letter - more typed letters most blocking looks like an etch-a-sketch damaged block that changes reduced size/shape. Once all of the cha

  • Portege M200 - CPU runs only at 598 MHz! Basic BACK Toshiba Service tool

    Portege M200 - CPU runs only at 600 MHz I have a Portege M200 with a Dothan Pentium M 725 supposed to run at 1.6 ghz, but posts a 598 Mhzfrequency. I updated the bios to 1.8. I read in a previous post "locked"...:http://forums.computers.Toshiba-Europ

  • Bluetooth icon is gray?

    I'm pairing the watch with a compact Z3 but I noticed today that the bluetooth in my notification bar icon is gray, although I think that they are paired and connected. Is this normal?  I used to watch this morning on a walk and was testing the pedom

  • Need driver for PowerVault 110 t (LTO-3) for Windows Server 2008 R2

    I just installed Windows Server 2008 R2 on my server PowerEdge 2900.  I have a PowerVault 110 t (we also say Ultrium LTO 3 on the front) I want to use with Symantec Backup Exec 2010.  However, Backup Exec is not the tape drive.  Do I need a driver fo

  • Cisco VMfex port-profile manager HyperV 2.2 UCS 2012R2

    Could not locate the files of instalation for Cisco VMfex Manager of port-profile for Windows Server 2012 R2 Hyper-V. Without it, we were able to use VMFEX/SRIOV vNIC on our UCS system. UCS Firmware is 2.2