Diffrence between the tablespace is ONLINE and READ WRITE?

Hi all

I'm very confused on the tablespace is ONLINE and READ WRITE?

Some say that if the tablespace is online, this means that its READ WRITE and when its offline then its READ-only.

So, what is the difference between them:

ALTER TABLESPACE offline tablespacename; -> done mean READ only now?

ALTER TABLESPACE tablespacename online; -> is it means its READ WRITE now?

If Yes, then what is the use of the following command if above 2 commands? :

ALTER TABLESPACE tablespacename [READ ONLY |] READING WRITING];

Kind regards

Confused Ritu

In addition, when the tablespace is offline, objects belonging to those who are not available for use to users. You wouldn't be able to query for objects in a tablespace offline.

When the tablespace is read only - no write operation cannot be performed i.e. etc. INSERT/UPDATE/DEL. Oracle says that read-only tablespaces provides a way to protect the historical data so that users cannot modify it. You can drop objects, such as tables or indexes, to a tablespace read-only, but you can't create or modify objects in a tablespace read only

In order to bring a tablespace OFFLINE to ONLINE - so that it is available to users, you must "ALTER TABLESPACE online tablespacename" command. A tablespace online can be READ ONLY or READ WRITE mode.

Tags: Database

Similar Questions

  • My system is running Windows XP SP3. The system crashed some time ago and I'm still trying to get the system to recognize and read/write CD and DVD units.

    I tried to change the numbers of the registry editor. He has worked for the CD, but not for the DVD. I also used the Microsoft Fixit but without success. Can you help me please.

    Hi KenBilodeau,

    See this:
    http://support.Microsoft.com/mats/cd_dvd_drive_problems/en-us
    http://support.Microsoft.com/kb/321641

  • What is the relationship between the library of Photos and the iPhoto library?

    I'm asking this question here because I can't find all the relevant information online.

    I was dealing with imac a client recently who had a full boot drive. I noticed that his old iPhoto library used 126GB while she had already made the transition to the Photos. His photo library said that he was using a lot more (200 + if I remember correctly). I copied the iPhoto on an external drive library and deleted. Then, I opened the contents of the package and imported pictures remains in program pictures to make sure that I wasn't actually remove all of his memories. Once the work is finished, I was surprised to see that there are more than 6 GB of free space on his computer. What gives? Is there a relationship between the old iPhoto library and new photo library? If so, what is it? Is what I did without danger? I understand at the time that she will not be able to return to iPhoto. But what I'm missing?

    Thanks in advance for your comments.

    No - they are totally separate - connection or relationship of any kind is not

    or the other can be deleted without any effect on the other - but it won't save much space at all and is not recommended - which is exactly what you have seen- Photos saves disk space to share images with your iPhoto or Aperture - Apple Support libraries

    LN

  • Find the area between the axe of waveform and time

    Hello.

    I have acquired a signal to 1ms rate. I recorded in a .lvm file, and now I want to calculate the area between the axe of waveform and time. So, it's a classic integral.

    So, I create a .vi separated with a module for reading measurement, but I don't know which is the right module of integration, in this case. I tried all the modules to integrate to find the area, but no good result.

    PS: I also want to display this area, hasurate, somehow, but it's secondary.

    Any idea?

    For the first part, we should look at your code and data.

    The second use the "Fill" option available for the plot which will fill in the specify box.

    Ben

  • Differences between the HP Deskjet 3522 and HP Deskjet 3520?

    Hello

    Is could someone please tell me what is the difference between the HP Deskjet 3522 and HP Deskjet 3520?

    I've seen both for sale online and can see no difference between them... so don't know why different model numbers

    Thank you!

    The difference in the number of products, is because it coordinates with the serial number.

    So when you have a problem, or warranty issues, the number of the product will compete with the serial number in the system.

  • What is the interval of time between the virtual machine Linux and ESXi host synchronization?

    I have ESX5.0 with a centos6 installed on this linux virtual machine.

    After the installation of vmware for Linux virtual machine tools, I activated the time synchronization between the virtual machine linux and ESXi host through vmware-toolbox-cmd.

    I wonder what is the interval of time between the virtual machine linux and ESXi host synchronization? If I quickly time OS system, when the OS system time will sync back to the ESXi host?

    According to http://www.vmware.com/files/pdf/techpaper/Timekeeping-In-VirtualMachines.pdf:

    By default, the demon checks the guest only once per minute operating system clock.

    However, depending on whether the guest is behind or in front of the result is different. So, please read the section "periodic synchronization" (at least) in the document mentioned above.

    André

  • What gets the relationship between the number of blocks and coherent?

    SQL> CREATE TABLE TEST(ID INT ,NAME VARCHAR2(10));
    
    SQL> CREATE INDEX IND_IDN ON TEST(ID);
    
    SQL> BEGIN
      2  FOR I IN 1 .. 1000
      3  LOOP
      4  EXECUTE IMMEDIATE 'INSERT INTO TEST VALUES('||I||',''LONION'')';
      5  END LOOP;
      6  COMMIT;
      7  END;
      8  /
    
    SQL> EXEC DBMS_STATS.GATHER_TABLE_STATS(USER,'TEST',CASCADE=>TRUE);
    
    SQL> SELECT DISTINCT DBMS_ROWID.rowid_block_number(ROWID) BLOCKS FROM TEST;
    BLOCKS
    -----------
    61762
    61764
    61763         
    
               >> above , there have 3 blocks in table TEST .
    
    SQL> SET AUTOTRACE TRACEONLY;                                     
    
    SQL> SELECT * FROM TEST;
    
    Execution Plan
    ----------------------------------------------------------                      
    Plan hash value: 1357081020                                                     
                                                                                    
    --------------------------------------------------------------------------      
    | Id  | Operation         | Name | Rows  | Bytes | Cost (%CPU)| Time     |      
    --------------------------------------------------------------------------      
    |   0 | SELECT STATEMENT  |      |  1000 | 10000 |     2   (0)| 00:00:01 |      
    |   1 |  TABLE ACCESS FULL| TEST |  1000 | 10000 |     2   (0)| 00:00:01 |      
    --------------------------------------------------------------------------      
    
    
    Statistics information
    ----------------------------------------------------------                      
              0  recursive calls                                                    
              0  db block gets                                                      
             72  consistent gets                                    >>  there have 72  consistent gets                  
              0  physical reads                                                     
              0  redo size                                                          
          24957  bytes sent via SQL*Net to client                                   
           1111  bytes received via SQL*Net from client                             
             68  SQL*Net roundtrips to/from client                                  
              0  sorts (memory)                                                     
              0  sorts (disk)                                                       
           1000  rows processed                                                     
    
    SQL> SELECT /*+ INDEX_FFS(TEST IND_IDN)*/ * FROM TEST WHERE ID IS NOT NULL;
    
    Execution Plan
    ----------------------------------------------------------                      
    Plan hash value: 1357081020                                                     
                                                                                    
    --------------------------------------------------------------------------      
    | Id  | Operation         | Name | Rows  | Bytes | Cost (%CPU)| Time     |      
    --------------------------------------------------------------------------      
    |   0 | SELECT STATEMENT  |      |  1000 | 10000 |     2   (0)| 00:00:01 |      
    |*  1 |  TABLE ACCESS FULL| TEST |  1000 | 10000 |     2   (0)| 00:00:01 |      
    --------------------------------------------------------------------------      
                                                                                    
    Predicate Information (identified by operation id):                             
    ---------------------------------------------------                             
                                                                                    
       1 - filter("ID" IS NOT NULL)                                                 
    
    
    Statistics information
    ----------------------------------------------------------                      
              1  recursive calls                                                    
              0  db block gets                                                      
             72  consistent gets                                   >>  there have 72  consistent gets                  
              0  physical reads                                                     
              0  redo size                                                          
          17759  bytes sent via SQL*Net to client                                   
           1111  bytes received via SQL*Net from client                             
             68  SQL*Net roundtrips to/from client                                  
              0  sorts (memory)                                                     
              0  sorts (disk)                                                       
           1000  rows processed                                                     
    
                                             
    
    SQL> SELECT COUNT(*) FROM TEST;
    
    Execution Plan
    ----------------------------------------------------------                      
    Plan hash value: 1950795681                                                     
                                                                                    
    -------------------------------------------------------------------             
    | Id  | Operation          | Name | Rows  | Cost (%CPU)| Time     |             
    -------------------------------------------------------------------             
    |   0 | SELECT STATEMENT   |      |     1 |     2   (0)| 00:00:01 |             
    |   1 |  SORT AGGREGATE    |      |     1 |            |          |             
    |   2 |   TABLE ACCESS FULL| TEST |  1000 |     2   (0)| 00:00:01 |             
    -------------------------------------------------------------------             
    
    Statistics information
    ----------------------------------------------------------                      
              0  recursive calls                                                    
              0  db block gets                                                      
              5  consistent gets                                      >>  there have 5  consistent gets               
              0  physical reads                                                     
              0  redo size                                                          
            408  bytes sent via SQL*Net to client                                   
            385  bytes received via SQL*Net from client                             
              2  SQL*Net roundtrips to/from client                                  
              0  sorts (memory)                                                     
              0  sorts (disk)                                                       
              1  rows processed                                                     
    
                                                  
    
    SQL> SELECT COUNT(*) FROM TEST WHERE ID IS NOT NULL;
    
    Execution Plan
    ----------------------------------------------------------                      
    Plan hash value: 735384656                                                      
                                                                                    
    --------------------------------------------------------------------------------
    -                                                                               
                                                                                    
    | Id  | Operation             | Name    | Rows  | Bytes | Cost (%CPU)| Time     
    |                                                                               
                                                                                    
    --------------------------------------------------------------------------------
    -                                                                               
                                                                                    
    |   0 | SELECT STATEMENT      |         |     1 |     4 |     2   (0)| 00:00:01 
    |                                                                               
                                                                                    
    |   1 |  SORT AGGREGATE       |         |     1 |     4 |            |          
    |                                                                               
                                                                                    
    |*  2 |   INDEX FAST FULL SCAN| IND_IDN |  1000 |  4000 |     2   (0)| 00:00:01 
    |                                                                               
                                                                                    
    --------------------------------------------------------------------------------
    -                                                                               
                                                                                                                                                                
    Predicate Information (identified by operation id):                             
    ---------------------------------------------------                             
                                                                                    
       2 - filter("ID" IS NOT NULL)                                                 
    
    
    Statistics information
    ----------------------------------------------------------                      
              0  recursive calls                                                    
              0  db block gets                                                      
              5  consistent gets                                                >>  there have 5 consistent gets     
              0  physical reads                                                     
              0  redo size                                                          
            408  bytes sent via SQL*Net to client                                   
            385  bytes received via SQL*Net from client                             
              2  SQL*Net roundtrips to/from client                                  
              0  sorts (memory)                                                     
              0  sorts (disk)                                                       
              1  rows processed                                                     
    
                                              
    
    SQL> SELECT COUNT(ID) FROM TEST WHERE ID IS NOT NULL;
    
    Execution Plan
    ----------------------------------------------------------                      
    Plan hash value: 735384656                                                      
                                                                                    
    --------------------------------------------------------------------------------
    -                                                                               
                                                                                    
    | Id  | Operation             | Name    | Rows  | Bytes | Cost (%CPU)| Time     
    |                                                                               
                                                                                    
    --------------------------------------------------------------------------------
    -                                                                               
                                                                                    
    |   0 | SELECT STATEMENT      |         |     1 |     4 |     2   (0)| 00:00:01 
    |                                                                               
                                                                                    
    |   1 |  SORT AGGREGATE       |         |     1 |     4 |            |          
    |                                                                               
                                                                                    
    |*  2 |   INDEX FAST FULL SCAN| IND_IDN |  1000 |  4000 |     2   (0)| 00:00:01 
    |                                                                               
                                                                                    
    --------------------------------------------------------------------------------
    -                                                                               
                                                                                                                                                              
    Predicate Information (identified by operation id):                             
    ---------------------------------------------------                             
                                                                                    
       2 - filter("ID" IS NOT NULL)                                                 
    
    
    Statistics information
    ----------------------------------------------------------                      
              0  recursive calls                                                    
              0  db block gets                                                      
              5  consistent gets                                        >>  there have 5  consistent gets             
              0  physical reads                                                     
              0  redo size                                                          
            409  bytes sent via SQL*Net to client                                   
            385  bytes received via SQL*Net from client                             
              2  SQL*Net roundtrips to/from client                                  
              0  sorts (memory)                                                     
              0  sorts (disk)                                                       
              1  rows processed                                                     
    QUESTION:

    What gets the relationship between the number of blocks and coherent? How to calculate become consistent?

    You can see that your uniform is getting down to 6 to 12, is it not? Reading of the below thread Asktom.
    http://asktom.Oracle.com/pls/Apex/f?p=100:11:0:P11_QUESTION_ID:880343948514

    Aman...

  • the difference between the Web application server and Web server?

    What is the functional difference and the relationship between the Server Web applications and Web server, for example: Weblogic is the Application Web server, IIS is the Web server, Apache is the Web server and Oracle Application Server is the Application Web server? Someone said, Web Application Server is a Web server, but more functional superset, seems in this case, we can also use a server of web applications as a web server. For example, we can use Weblogic, but do not use IIS and Apache, please correct me?

    Published by: user2571802 on February 28, 2010 18:51

    Hello

    Have a read of http://www.javaworld.com/javaqa/2002-08/01-qa-0823-appvswebserver.html if all goes well it should give you a little more understanding.

    See you soon

    John
    http://John-Goodwin.blogspot.com/

    Published by: JohnGoodwin on March 1, 2010 08:17

  • Report icon that appears between the http: box box and google is missing

    In the old version of Firefox the report security icon (Trusteer endpoint protection) is located between the http; area search and the google search box. Use the report to protect a site I just clicked on the icon and asked him to protect. The icon is not visible in the latest version of Firefox, although the software is still loaded. It's on Windows 7 but on a XP machine, the icon is still there?

    You may have an older version installed. While Firefox is closed, install the latest version.

    If this does not resolve the problem, right-click on an empty area of the tab bar and select Customize. Drag the icon from the palette on a toolbar.

    If that doesn't help either,

    1. Type of topic: support in the address bar and press ENTER.
    2. Click the display folder. Opens in a window of Windows Explorer with your profile folder.
    3. Release of Firefox.
    4. Delete the file localstore.rdf in the profile folder.
    5. Launch Firefox and new right click on an empty area of the tab bar and choose Customize, then drag the icon from the palette on a toolbar.

    If the problem persists, contact the author of the add - we support at the link above.

  • empty space between the scroll bar horizontally and toolbar Add on

    A blank grey bar appears at the bottom of my screen/window between the horizontal scroll bar and the bar of State/add-on.

    The grey area empty is just under 1/2 inch from top and runs the entire width of the screen/window, less the left sidebar.

    When I go to this bar, nothing happens.
    When I right click in this field, nothing happens.

    This empty gray bar appears on every site I visit in the same exact location, which means that it is a matter of Firefox, not only isolated to a single Web site.

    Disabled add-ons to see if space disappears.
    None of my modules had an effect of this area of the screen/window.
    The empty grey area is still visible.

    Create a new profile as a test to see if your profile is the source of the problems.

    See "basic troubleshooting: a new profile:

    There may be extensions and plugins installed by default in a new profile, so check that in "tools > Modules > Extensions & Plugins" in case there are still problems.

    If this new profile works then you can transfer files from the old profile to the new profile, but make sure not to copy corrupted files.

    See:

  • Pavilion 10-n102ne: difference between the Pavilion 10-n102ne and 10-n102na

    I want to order a cover for my device (Pavilion 10-n102ne), but did not, on the contrary, I think I found a similar device (10-n102na), so I was wondering what is the difference between these 2 models, not vs na, what it means. The recovery kit works on my device.

    What is the differnce between Recovery Kit or by creating a windows recovery disk, and which should I choose if I want to completely format the system and install another OS?

    Another question is that how do I backup my Windows 10 activation, or is it when I install freshly a Windows 10 the appliance will automatically activate windows? is the serial imprented into bios?

    Awaiting your response

    @ChristopherED
    Welcome to the Forums of HP,
    I hope you're well

    If I understand correctly you want to know about the difference between the Pavilion 10-n102ne and 10-n102na.

    Here is the link with the characteristics of the two products (spot the difference):

    HP Pavilion x 2-10-n102na
    HP Pavilion x 2-10-n102ne

    It is not very different between the recovery kit or one created by your computer apart from the type of creation, if the media created on your computer do not work you can always get one from HP, but you cannot create a new computer because it allows only a creation of media recovery on your computer.

    And the answer to your question about activation, you are right, that the activation code is printed/saved to BIOS if you do not have an option to save as.

    If I helped you to solve the problem, feel free to give me a virtual h.o.t. by clicking on the 'Thumbs Up' icon below.
    Thanks for posting in the Forum from HP Support.  Have a great day!
    Kind regards

  • What is the difference between the NI USB-4431 and NI USB-4432?

    What is the difference between the NI USB-4431 and NI USB-4432?

    I know NI USB-4432, but I do not know NI USB-4431.

    Hello

    Sorry for my previous post don't bother her.

    The usb-4431:

    • 4 analog inputs
    • analog output of 24-bit DAC

    Kind regards

  • What is the difference between the external SCSI cables and cables data acquisition

    Hi all, I would like to make a simple extension using an external SCSI cable and a NOR 184749/SH 6868. In other words, it would be: female HD68 bolt of the cable ends OR coupled to an external SCSI HD 68 male with a VHDCI 68 male cable. What are the differences between the external SCSI cables and cables as the (M) 6868EP of the CHS data acquisition. Other than the sex of the end of HD68 is usually on one. How is the posting hit buy using an external SCSI cable for an extension to tell a BNC-2090?

    Yes, I realize that NEITHER wants us to buy their cable, but in these economic times difficult, to do use all available resources, so I have to try,.

    Thank you

    joelowwatt

    Hello

    As long as you have compatible connectors, SCSI cables will work DAQ of basic functions.  They have the advantage of NO cables is that we can meet our DAQ hardware.  So, we can create pairs twisted differential pairs to HAVE, using the ground for shielding terminals and generally specialize the cable to minimize noise and crosstalk.  Because the SCSI cables are not specialized, you are likely to see the most noise and, if you go the sampling rates more Rapids, crosstalk.  If you are in a laboratory or factory with a good amount of noise EMF that your readings are not quite as clean, or if you have fluorescent lights you might see 60 Hz noise you might not see otherwise.

    If you want more details on the specifications of the SH68-68-EPM cable, I recommend these two articles.  The first example of the twisted pair and the principles of the SH cable shielding and the second gives the most precise specifications that you can compare with when looking for a SCSI cable.

    3GRD4C33 Knowledge Base: mapping list of the sons of SHC68-68-EPM & SH68-68-EPM cable

    1TGEHPDM knowledge base: detailed specifications for the SH68-68-EP cable

    Kind regards

  • dad bought me a computer PORTABLE from NUTRIGEST I HAVE BEEN out of the CITY FOR SOME TIME AND LATER BETWEEN the AUTHENTICITY CODE PRODUCT, AND IT's not SAYIING VALID, BUT I KNOW THAT CANT BE REAL CODE IS

    dad bought me a computer PORTABLE from NUTRIGEST I HAVE BEEN out of the CITY FOR SOME TIME AND LATER BETWEEN the AUTHENTICITY CODE PRODUCT, AND IT's not SAYIING VALID, BUT I KNOW THAT can NOT BE TRUE

    If it is a new machine call or go to circuit city and get them fixed.  If they sold you the laptop, indicating that it included Windows XP then the onus is on them that provide you a valid COA and the product key.

    John

  • HP officejet 5740: what is different between the office jet 5740 and the 5742

    My HP 4632 just died 1 month warranty.   Looking for a new printer.  This model still sells... but Amend for the price was a great ptinter.  Looking to buy another printer...

    What is different between the office jet 5740 and the 5742

    Hello Izzy1211dw,

    The difference between these models (and the 5745) are content to include the box according to where you buy, like maybe one of these models can have the USB cable included in the box, which is not the other.  It is a HP reseller application, but in regards to the product specification, they are the same.

    You can see the specifications for each of them in these links:

    Printer support e-all-in-one-HP Officejet 5740

    Printer support e-all-in-one-HP Officejet 5742

    Printer support e-all-in-one-HP Officejet 5745

    I hope that answers your question.

Maybe you are looking for

  • Satellite A200 - Format C drive and reinstall

    Hello I have a Toshiba Satellite A200 with a 32-bit, windows vista, who bought about 4 years ago. He became extremely slow and crashes on a regular basis. I want to format the C drive and reinstall windows vista. Afterwards, I'm going to re - install

  • Are these these annoying calls?

    I get calls every day from "Support Windows technique" or "Microsoft Windows Support" telling me that I have a problem with my computer. These calls (from Asia - India I think) are they authentic?

  • How to set my documents to stay in alphabetical order

    original title; How can I get this stupid thing to leave things alone and let my documents in alphabetical order The documents in my folder are now back in is A. How to make come back in alphabetical order which is more precisely, this is why change

  • HP Deskjet of 3630 3630: HP printer 3630 AirPrint - connection to the wireless router connected to an iPad

    A friend just bought a 3630 HP printer and has implemented and able to print from the iPad but, to do so change the Wi - Fi connection setting on his iPad between the router and the printer, and then when the printing is finished return the iPad. How

  • Problems after replacing the cartridge

    Hello I have a problem with my all-in-one HP Photosmart C3180. Recently, I replaced the black cartridge with a new one and now I can't print or copy more because it shows a problem with the cartridge three colors (it has not been replaced). What happ