How to put Oracle Table in NOLOGGING so all DML's are not recorded ?

We have a table in our database, which goes through thousands of DML's(insert,update,delete).
We don't want to record any of this DML's into our redo logs.
Is there any way we can setup the table in such a way where none of the DML's happening
on the tables are recorded in the REDO LOGS ?
Looks like the NO LOGGING option does not take care of the DML's ?

johnpau2013 wrote:
We have a table in our database, which goes through thousands of DML's(insert,update,delete).
We don't want to record any of this DML's into our redo logs.
Is there any way we can setup the table in such a way where none of the DML's happening
on the tables are recorded in the REDO LOGS ?
Looks like the NO LOGGING option does not take care of the DML's ?The Nologging clause takes care of the bulk loads only but in that too, its not zero redo still. There is still going to be redo generation but compared to normal processing , it would be lesser. For the conventional DML's, there isn't anything which is going to suppress the redo generation completely. What's the purpose that you are willing to make the redo generation zero for the table? How would you get back the data inserted if there is going to be a failure of any sort happening?
HTH
Aman....

Similar Messages

  • How do I create a new playlist when all four options are not available

    I'm running iTunes 11.1.5 under Mavericks 10.9.2. Because I have a very large music collection I keep it on an external drive. I have six recorded lectures I'd like to sync with my iPad. How do I create a new playlist based on the recordings on the external drive? All four New Playlist options are currently not selectable. I know it can be done because I've done it before years ago but have forgotten how.
    Yes, I too wish iTunes were more coherent and less convoluted.
    Appreciated.

    Hi Try a Reboot press & hold power button & menu button hold both down until you see Apple Logo . Then go to music click on play list and try to make one. Cheers Brian

  • How to export oracle table?

    Does anybody knows how to export oracle table into sql format? I know by using PL/SQL Developer can do it,but I have a table,it contains a column,it's type is LONG,PL/SQL can't export it! How to export long type table into sql format?
    Any idea will be appreciated!

    My table structure is follows:
    create table MyDates
    COL1 LONG,
    COL2 VARCHAR2(20)
    In column col1,I store some date in it,then I want to export this table,but I don't want to export this table into dmp file,I only want to export this table' structure and export it into SQL File,such export filename is mydata.sql
    I don't know how to export this table's structure? Because it contains LONG type column.How to export it? By the way,would you tell me how to export other type table,such as it contains column type is blob?

  • HT2518 How do I transfer music from an external hard drive to my itunes on my mac? I have put the files into the itunes media, but they are not showing up in iTunes!

    How do I transfer music from an external hard drive to my itunes on my mac? I have put the files into the itunes media, but they are not showing up in iTunes!

    Hi, did you try iTunes>File>Import?

  • How I put photos / images at facebook page? The files do not open.

    How I put photos / images at facebook page? The files do not open.

    The crash happens on setting up the audio hardware. Either you have a broken driver or your preferences is damaged. You can try deleting the MainStage preferences.

  • How can i fix a clip when the video and audio are not matching up?

    How can i fix a clip when the video and audio are not matching up? I imported the video from a junkdrive in a .VOB format and concerted to a .mov the videos were filmed on a miniDVD recorder.

    I would try detaching the audio and the dragging the audio to the left or right until it lines up.

  • I downloaded iOS 7 and now in my music library all my songs are not in the order of the original albums. How do I get them back into order?

    I downloaded iOS 7 and now in my music library all my songs are not in the order of the original albums. How do I get them back into order?

    go to settings>general>reset>reset home screen layout and see if they appear.

  • Does anyone know how to update OSX Mountain Lion 10.8.1. to 10.8.2. on a late 2012 Mac mini. All I get are 'not compatible' messages even using supplementary updates etc?

    Does anyone know how to update OSX Mountain Lion 10.8.1. to 10.8.2. on a late 2012 Mac mini. All I get are 'not compatible' messages even using supplementary updates etc?

    It appears that many of the problems with the HDMI are the "monitors" that are being used. Samsung and Vizeo both DO NOT support a computer input on HDMI only VGA. There probably are others, manuals must be read to confirm compatability.
    I strongly believe that the reason the 10.8.2 update was pulled is due to the fact (it happened to me) that the new Disk Utility creates a Fusion drive if aftermarket SSDs are added to the system. I think Apple wants this propriatary Fusion Drive to be something you buy from them not a "homebrew" for lots less money.

  • Hey, how can i see in itunes 10 only the songs that are not part of a playlist on my ipod?

    hey, how can i see in itunes 10 only the songs that are not part of a playlist on my ipod?

    hey, how can i see in itunes 10 only the songs that are not part of a playlist on my ipod?

  • HT4623 How can u set up your iphone when all the files are deleted?

    How can I set up my iphone if all the files are deleted?

    What files are deleted?
    Please explain

  • My iPad 2 started to backup iCloud and its now locked up. How do i unlock it, the button for settings and close are not working. What can I do?

    my iPad 2 started to backup iCloud and its now locked up. How do i unlock it, the button for settings and close are not working. What can I do?

    Try this.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.

  • How to use Oracle Table Type values in Select Statement.

    Hi,
    I am fetching initial set of values into Oracle Table of Records Type and want to use list of values in the Select statement.
    For example, try something like the following:
    TYPE t_record IS RECORD (
    ID TABLEA.ID%type,
    NO TABLEA.NO%type,
    v_record t_record;
    TYPE t_table IS TABLE OF v_record%TYPE;
    v_table t_table;
    -- Code to populate the values in v_table here.
    SELEC ID,NO, BULK COLLECT INTO <some other table variabes here> FROM TABLEA
    WHERE ID IN v_table(i).ID;
    I want to know how to use the values from Oracle Table Type in the Select Statement.

    Something like this:
    create or replace type t_record as  object (
    id number,
    no number
    CREATE or replace type t_table AS TABLE OF t_record;
    set serveroutput on
    declare
      v_table t_table := t_table();
      v_t1 t_table := t_table();
    begin
      v_table.extend(1);
      v_table(1).ID := 1;
      v_table(1).No := 10;
      v_table.extend(1);
      v_table(2).ID := 2;
      v_table(2).ID := 20;
      SELEC t_record (ID,NO) BULK COLLECT INTO v_t1
      from TableA
      FROM TABLEA
      WHERE ID IN (select t.ID from table(v_Table) t);
      for i in 1..v_t1.count loop
        dbms_output.put_line(v_t1(i).ID);
        dbms_output.put_line(v_t1(i).No);
      end loop;
    end;
    /Untested!
    P;
    Edited by: bluefrog on Mar 5, 2010 5:08 PM

  • How to export Oracle tables and data to mySQL

    Hi,
    I am new to Oracle.. and would appreciate all help on the issues below.
    Currently, we have Oracle8i on HP-UX, and Oracle8i on IBM-AIX. We would like to be ble to browse the information on the web, thus, a decision to use mySQL as the web database was made. In order to achieve the above, we need to perform the following:
    1) Export Oracle tables to mySQL, from both the HP-UX and IBM-AIX machines.
    2) Include an additional column to the tables that need to be exported from Oracle to mySQL.
    3) Implement the export as a daily extraction that will run at a certain time of the day.
    How may I achieve the above?
    I have just installed the Oracle Enterprise Manager... will this have any help to the above???
    Appreciate all help given... greatly appreciated!
    Thanks and Brgds,
    Alicia

    I'd first make sure you really need to create a separate database just for making the data available to the web. The web application you create could just as well query the existing Oracle databases. You don't necessarily have to create a separate database just to display info over the web.
    Secondly, if you still want to create a separate database, I'd also question the use of mySQL. In my opinion, mySQL is not a relational database. It acts like a relational database; you can query it via SQL. But because of all the features which mySQL says it does not support yet, I don't consider it to be a true RDBMS. This may not be an issue in your case since you're using it just for read access. Still, I'd take a long look at the list of feature mySQL does not support and make sure you can live with those limitations.
    Also, if you create a separate database for the web app and use Oracle for that database instead of mySQL, you could use Oracle's built in data replication to automatically refresh the web db from the existing db
    If you conclude that you still want to create a separate database for the web app and use mySQL I think you'll have to write some code to support the interface between the dbs (but hey, I'm a developer). The reason I say this is because it sounds like you're merging data from two databases into one and you may even be merging data from two separate databases into a single table of the new web database. If this is the case, simple data extract utilities will not be sufficient. Also, it sounds like the new column added to the web database may not be able to be populated from existing data. And then there's the question of what you need to do with the existing web data each time you run the data extraction ? The easiest case is that you'll always add data to the web db from existing db. If you have to purge the web db first and then refresh it with existing data then there's another step in the process. Overall, writing code to support an interface like this gives you complete control over the process and provides a lot of flexibility in how it is run. In my experience, there are usually new requirements added to the interface as time goes on. The code based approach can deal with changing requirements. The tools approach eventually falls short.
    One other issue to keep in mind is how to protect your existing database while exposing your web database to the Net. Since you need to support an automated interface between the two systems, you'll need to provide a path between the two databases without letting Net users gain access to your internal database. Some serious network security issues to resolve here, but I'm not a network admin.
    hth,
    Frank
    Hi,
    I am new to Oracle.. and would appreciate all help on the issues below.
    Currently, we have Oracle8i on HP-UX, and Oracle8i on IBM-AIX. We would like to be ble to browse the information on the web, thus, a decision to use mySQL as the web database was made. In order to achieve the above, we need to perform the following:
    1) Export Oracle tables to mySQL, from both the HP-UX and IBM-AIX machines.
    2) Include an additional column to the tables that need to be exported from Oracle to mySQL.
    3) Implement the export as a daily extraction that will run at a certain time of the day.
    How may I achieve the above?
    I have just installed the Oracle Enterprise Manager... will this have any help to the above???
    Appreciate all help given... greatly appreciated!
    Thanks and Brgds,
    Alicia

  • How to create Oracle Table in DWB from Oracle external table

    Dear all,
    I have create Oracle External Table by using DWB. Kindly tell me steps that how could i able to import this external oracle table into internal oracle table now.
    When I deploye this External table message arise "Name is using by an existing object.
    any help would be ppreciated.
    Thanks

    In your database is there a table already existing with the same name as your external table? If there is then you can try and rename your external table in OWB and then deploy it again.
    Then you can create a mapping with your source as the External Table Operator and the target as a Table Operator. When you run the mapping the data from the external table will be imported into the oracle table.
    I hope this helps.
    Regards
    GB

  • How to put Oracle form to intranet

    Hi, I am trying to put some Oracle forms to the company's intranet and have several questions.
    1) I was told that the company installed the Oracle web server in one of the NT machine. But the person who set it up already left without leaving any documentation. So how do I know where the web server is installed? (I was told that the DBAs and web team of the comapny didn't get involved at all, so they won't have any information.)
    2) The guidline book for Developer 2000 said that due to Java limitation the web server and the form server must be installed on the same server. How do I verify that my form server is installed correctly?
    3) I followed the static HTML file template provided with the Developer 2000 guildline book. For the CODEBASE parm I am supposed to put in the virtual directory that points to the physical directory of the ORACLE_HOME\forms50\java\. Is there anyway for me to find out the name of the virtual directory?
    4) How do I find out the port number for the serverPort?
    Thanks for helping me out!

    1. please, read the basic rules: http://forums.oracle.com/forums/ann.jspa?annID=56
    2. please, don't use capital letters
    3. please, provide the version of the tools you use
    3. some words like "Please", "Thank you" are not forbiden, generally.
    Francois

Maybe you are looking for

  • Handling of Hazardous Articles in SAP Retail

    Hi SAP Retail Experts Would like to know the porcess in SAP to configure the hazardous goods management in Article master whereby we can accomodate the dangerous goods data from and external system into Article Master.

  • Adjust numbers in an Illustrator document

    InDesign has this awsome script which lets you adjust numbers in a document. With just a few clicks you increase (or decrease) all numbers in a document by a certain amount. Is there anything like this available for Illustrator (CS6 for Mac/PC)?

  • Can i reregister my iphone 4 on someone else???

    Hi People! I bought one Brand new iphone 4 and it brake in a few months. So when i took it back they swap my phone with a used one refubrished from Apple. The problem is that the phone is already registered to someone else. Can i reregister it to my

  • Error when trying to activate transfer structure

    Dear experts I got this error when activating the Transfer Structure in the Data Souce:    Table is not yet classified                                                Field /BIC/ZPRCH026 is too long (Specify a length between 1 and 255)       Flag: 'in

  • Is there a faster way to add repeated text besides the hand tool?

    Every day I receive multiple documents to edit and on each and every one, there is one page where I have to enter the date 3 times. The file doesn't originate with me so I can't do the javascript thing others have talked about. I just go to tools, ad