Scripts on tablespaces and good documents for tablespaces

i required real time scripts for tablespaces and also knowledge sharing documents on tablespaces please provide them
thanks

Hello,
i required real time scripts for tablespaces and also knowledge sharing documents on tablespaces please provide them It depends on the Oracle Release:
http://www.oracle.com/pls/db102/print_hit_summary?search_string=TABLESPACE
Every Oracle Release has its news features. For instance LMT (Locally Managed Tablespace) was introduced in *8i*, ASSM (Automatic Segment Space Management) in *9i*, BIGFILE Tablespace in *10g*, ENCRYPTED and COMPRESSED Tablespace were respectively introduced in *11.1* and *11.2*,... and so on.
The UNDO Tablespace appeared with Oracle *9.2* and the SYSAUX Tablespace with Oracle *10.1*.
About the Scripts, the previous post give you many useful Notes from MOS.
Else, you can also extract Report about Database Storage from Oracle SQL Developer which is a free tool:
http://www.oracle.com/technetwork/developer-tools/sql-developer/overview/index.html
Hope this help.
Best regards,
Jean-Valentin

Similar Messages

  • Where can i get good documents for XML

    Hai,
    I am new to XML..I like to know where can i get good documents for XML that can be downloaded.
    regards,
    Mathan
    null

    You can order online from here and here.
    Regards,
    -rh

  • Last purchase order and goods receipt for material

    Hello to everyone,
    is there any standard report where I can see the last purchase order and goods receipt for a material?
    Regards

    Hi,
    Latest PO you can get from ME2M, by giving input as material and scope of list as best.
    Latest GR date can be get from MB51, by giving input as Material and movement type as 101.
    Regards,
    Prabu

  • Need the good documents for AlV

    Hi,
    I am new to Alvs. Plz send me good documents for same. In this AlV pgm how to activate filter button?
    type-pools: slis.
    DATA: it_spfli TYPE TABLE OF spfli ,
          it_cat TYPE SLIS_T_FIELDCAT_ALV,
          wa_cat TYPE slis_fieldcat_alv,
          checkbox(1)    type c.
    data: itab1 type  SLIS_T_SORTINFO_ALV ,
          WA TYPE SLIS_SORTINFO_ALV.
    *data: itab2 type  SLIS_T_SORTINFO_ALV ,
         WA1 TYPE SLIS_SORTINFO_ALV.
          START-OF-SELECTION.
    SELECT * FROM spfli  INTO TABLE it_spfli.
    IF it_cat is initial.
      clear wa_cat.
    wa_cat-col_pos   = 1.
    wa_cat-fieldname = 'CARRID'.
    wa_cat-datatype  = 'CHAR'.
    wa_cat-inttype   = 'C'.
    wa_cat-intlen    = 3.
    wa_cat-seltext_l   = 'Airline Code'.
    append wa_cat to it_cat.
    clear wa_cat.
    wa_cat-col_pos   = 2.
    wa_cat-fieldname = 'CONNID'.
    wa_cat-datatype  = 'NUMC'.
    wa_cat-inttype   = 'N'.
    wa_cat-intlen    = 4.
    wa_cat-seltext_l   = 'Flight conn no'.
    append wa_cat to it_cat.
    WA-FIELDNAME = 'CARRID'.
    WA-UP = 'X'.
    APPEND WA TO ITAB1.
    *ENDIF.
    CLEAR WA.
    CLEAR ITAB1.
    WA-FIELDNAME = 'CONNID'.
    WA-UP = 'X'.
    APPEND WA TO ITAB1.
    ENDIF.
    CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
      EXPORTING
       I_INTERFACE_CHECK              = ' '
       I_BYPASSING_BUFFER             =
       I_BUFFER_ACTIVE                = ' '
       I_CALLBACK_PROGRAM             = ' '
       I_CALLBACK_PF_STATUS_SET       = ' '
       I_CALLBACK_USER_COMMAND        = ' '
       I_STRUCTURE_NAME               =
       IS_LAYOUT                      =
        IT_FIELDCAT                    = it_cat
       IT_EXCLUDING                   =
       IT_SPECIAL_GROUPS              =
        IT_SORT                        = ITAB1
       IT_FILTER                      =
       IS_SEL_HIDE                    =
       I_DEFAULT                      = 'X'
       I_SAVE                         = ' '
       IS_VARIANT                     =
       IT_EVENTS                      =
       IT_EVENT_EXIT                  =
       IS_PRINT                       =
       IS_REPREP_ID                   =
       I_SCREEN_START_COLUMN          = 0
       I_SCREEN_START_LINE            = 0
       I_SCREEN_END_COLUMN            = 0
       I_SCREEN_END_LINE              = 0
       IR_SALV_LIST_ADAPTER           =
       IT_EXCEPT_QINFO                =
       I_SUPPRESS_EMPTY_DATA          = ABAP_FALSE
    IMPORTING
       E_EXIT_CAUSED_BY_CALLER        =
       ES_EXIT_CAUSED_BY_USER         =
       TABLES
         T_OUTTAB                       = it_spfli.
    EXCEPTIONS
       PROGRAM_ERROR                  = 1
       OTHERS                         = 2
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.

    REPORT zazualvgrid .
    DATA: grid1 TYPE REF TO cl_gui_alv_grid,
    ok_code LIKE sy-ucomm,
    mycontainer TYPE scrfname VALUE 'CUST',
    container TYPE REF TO cl_gui_custom_container.
    DATA : t_ekpo TYPE TABLE OF zekpo.
    DATA : v_save,
    v_repid LIKE sy-repid,
    v_variant TYPE disvariant.
    INCLUDE zsta.
    INCLUDE zpbo.
    START-OF-SELECTION.
    PERFORM set_data.
    END-OF-SELECTION.
    CLEAR v_variant.
    v_repid = sy-repid .
    v_variant-report = v_repid.
    v_save = 'A'.
    CALL SCREEN 786.
    FORM CREATE_CON *
    FORM create_con.
    IF container IS INITIAL.
    CREATE OBJECT container EXPORTING
    container_name = mycontainer
    EXCEPTIONS
    cntl_error = 1
    cntl_system_error = 2
    create_error = 3
    lifetime_error = 4
    lifetime_dynpro_dynpro_link = 5.
    IF sy-subrc NE 0.
    CALL FUNCTION 'POPUP_TO_INFORM'
    EXPORTING
    titel = sy-repid
    txt2 = sy-subrc
    txt1 = 'The control could not be created'(510).
    TXT3 = ' '
    TXT4 = ' '
    ENDIF.
    CREATE OBJECT grid1 EXPORTING
    i_parent = container.
    CALL METHOD grid1->set_table_for_first_display
    EXPORTING i_structure_name = 'ZEKPO'
    is_variant = v_variant
    i_save = v_save
    i_default = 'X'
    CHANGING it_outtab = T_EKPO.
    ENDIF.
    ENDFORM. "
    FORM SET_DATA *
    FORM set_data.
    SELECT EBELN EBELP MATNR BUKRS STATU
    FROM EKPO INTO TABLE t_EKPO UP TO 20 ROWS.
    ENDFORM. " GET_DATA
    module USER_COMMAND_0786 input.
    CASE OK_CODE.
    WHEN 'EXIT' or 'BACK'.
    CALL METHOD container->free.
    LEAVE TO SCREEN 0.
    ENDCASE.
    CLEAR OK_CODE.
    endmodule. " USER_COMMAND_0786 INPUT
    module STATUS_0786 output.
    SET PF-STATUS 'ZAZUALVGRID'.
    SET TITLEBAR 'GRID_DISPLAY'.
    PERFORM CREATE_CON.
    endmodule. " STATUS_0786 OUTPut
    Regards,
    Azhar

  • Why decimal Places are allowed during goods issue and Goods receipt for mat

    Why decimal Places are allowed during goods issue and Goods receipt for material with unit of measure PCS.
    MY config allows consumption in decimal places.
    How to restrict this?
    Prem Nivas

    Hi,
    Please check in customizing UOM (T code-CUNI).
    In dimensions check the decimal point for the unit of measurement.
    Regards,
    Krishnendu.

  • Change requestor and goods recipient for PO's in SRM

    We have an issue where we want to change the Requestor and goods recipient for PO's in SRM as the requestor is leaving the organization. Do we have any way possible to change the Requestor adn goods recipient for SRM PO's?
    I have found bbp_crr, but it only list partly confirmed/invoiced POs. I'm not sure if the transaction is suppose to do the mass change.
    Thank you
    Joann

    Hello,
    The report BBP_CRR suggests all the POs assigned to a requisitioner , that are to be assigned to a new requisitioner/recipient and that are not closed.
    Once the POs are suggested , you can change for all the POs or make your own selection.
    Hope this information was useful.
    Regards,
    Kalyan

  • Design and Sizing Document for CUCM 8.x

    HI Team,
    Guys i need Sizing and Design Document for CUCM 8.x.
    There is a new client and we need to do the sizing and design for that client on CUCM 8.x platform.
    Request you to assist me with document. I need a document which will give me the sizing and design viewpoints.
    I am sure there would so many guys who would have done this already.
    Awaiting your reply asap.
    Rgds,
    JF

    Cisco Unified Communications System 8.x SRND
    http://www.cisco.com/en/US/docs/voice_ip_comm/cucm/srnd/8x/uc8x.html
    HTHjavaIf this helps, please ratewww.cisco.com/go/pdihelpdesk

  • Can anyone recommend a good document for Cisco IDS and AAA

    I need some basic tutorial for Cisco IDS and AAA. can anyone recommend any document for it?
    thanks

    The Cisco IDS/IPS senors do not perform any AAA functions. You can not validate a user/password externally.

  • Different value in sales order and billing document for one line item

    Hi Experts,
    User created a sales order with three line items say line item 10, line item 20, line30 and he did the delivery and billing also. Line item 10 value is 5024.26 EUR in Sales order
    At the time of billing the value of a line item 10 is increased by 0.02 i.e. 5024.28
    I asked the user cancel that invoice and the post goods issue. He cancelled the invoice and post goods issue. Then he created the PGI and billing now the value of line item decrease by 0.01(5024.27) again he cancelled the invoice and post goods issue. he created the post goods issue and billing. Now the value is correct i.e. 5024.26.
    User is asking me the reason can any one help me in this
    Note: price is copying from delivery to billing

    Morning Sunina
    Now consider this scenario
    Item a - 10
    Item b - 20
    Item c - 30
    and the validity of condition rec for item C is 31st of Jan
    after 31st JAN the record changes or there isn't any.
    In Copy control the pricing type is 'B' i.e., carry out new pricing.
    Now if the document is created in January it will take all the above prices. and this document is then billed in Feb. Now the copycontrol, whilst copying the prices, will predetermine the same.
    Now your task is to check if there was user intervention, check the pricing in order and check what condition types got affected in order and in billing.
    If your scenario is still not amongst the above cases...
    I don't know what to do, if you figure out please let us also know, god know when we would face the same scenario....
    Take care

  • Any good document for crontab

    I am planning to work with crontab to excute RMAN backup day to day basis
    please send the good document or steps to follow for crontab

    Here are a few:
    crontab administration usage and troubleshooting techniques
    Unix Webserver Crontab Basics
    Introduction to crontabs and cronjobs
    Using cron basics
    But as the previous poster indicated, man crontab is your friend.

  • Difference amount in sales order and billing document (For one line item)

    Hi Experts,
    User created sales order with 3 line items and billing document. but problem is that there is difference in value of sale order and billing only for line item 10. The remaining items values are same in sales order & billing doc.if I check in sales order condition I found that VPRS condition is used and the value is 692.13and the amount is 3245.26in sales order. But if suppose I check the same value in billing doc the value is 0.69 and the amount is 3245.28. Can u suggest me which configuration I have to check for this.
    I also checked change lock but there is no change in sales and billing document & Material
    Regards
    Sunina agarwal

    Morning Sunina
    Now consider this scenario
    Item a - 10
    Item b - 20
    Item c - 30
    and the validity of condition rec for item C is 31st of Jan
    after 31st JAN the record changes or there isn't any.
    In Copy control the pricing type is 'B' i.e., carry out new pricing.
    Now if the document is created in January it will take all the above prices. and this document is then billed in Feb. Now the copycontrol, whilst copying the prices, will predetermine the same.
    Now your task is to check if there was user intervention, check the pricing in order and check what condition types got affected in order and in billing.
    If your scenario is still not amongst the above cases...
    I don't know what to do, if you figure out please let us also know, god know when we would face the same scenario....
    Take care

  • Good document for creating cube using AWM wih oracle 10.1.0.2 version

    Can anyone provide some good guide for implementing the OLAP cubes using ORACLE ver 10.1.0.2.0 with AWM Release 1.
    Also, please let me know whether I need to apply any patches.
    The demo provided under this link has some differences when trying to implement.
    http://www.oracle.com/technology/products/bi/olap/viewlet/awm10g_viewlet_swf.html
    Your help is appreciated.

    Well, if some of the required componets were missing, I would imagine you getting an error when trying to connect?
    Where is this ASP application actually running?
    Is it running on your localhost IIS web server?
    If not, any setup on your computer will be irrelevent.
    If it is, you need to install MDAC components, and 2.8 is the latest.
    If running on your local IIS, did you try to create a very basic ASP page which just creates a connection to the database in question? Does that work?
    Do you have ON ERROR statements in your code to bypass any/all SQL errors?
    If you create a simple UDL file on your desktop and specify the server/user/password (ater selecting Oracle OLEDB driver), does the connect button work?

  • Can I enable menu for base document and target document for user forms

    Hello friends
    I want to add Base and target document functionality for our addon
    but when i do this
    oform.EnableMenu("5899", True)   ' 5899 is menu uid for target document
    i got this exception
    Menu - Not found [66000-27]
    Is there another way around
    Thanks in advance ....
    Atul

    Atul try adding this to ur form Xml schema and specify the userdatasrc(bold text) for the form as well..
    <item uid="10000329" type="113" left="475" tab_order="0" width="90" top="481" height="19" visible="1" enabled="0" from_pane="0" to_pane="0" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific AffectsFormMode="1" TabOrder="0">
                    <ValidValues>
                      <action type="add">
                        <ValidValue value="A/R Credit Memos" description="14" />
                      </action>
                    </ValidValues>
                    <b><databind databound="1" table="" alias="SYS_312" /></b>
                  </specific>
                </item>
                <item uid="10000330" type="113" left="380" tab_order="0" width="90" top="481" height="19" visible="1" enabled="1" from_pane="0" to_pane="0" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific AffectsFormMode="1" TabOrder="0">
                    <ValidValues>
                      <action type="add">
                        <ValidValue value="Sales Quotations" description="23" />
                        <ValidValue value="Sales Orders" description="17" />
                        <ValidValue value="Deliveries" description="15" />
                      </action>
                    </ValidValues>
                    <b><databind databound="1" table="" alias="SYS_313" /></b>
                  </specific>
                </item>

  • How to prepare SRS and FS documents for a GxP critic processes

    Hello,
    We are a pharma company and we want to seperate SRS and FS documents whose processes are GxP critic or non-GxP.
    Are there any standards to follow or samples? How should each document be prepared?
    I would greatly appreciate any advice.
    Thank you.
    Altin

    Hi Ali_Sampras ,
    1. For a POC you might want to go for Evaluation [ option 0 ].
    2. Execute ./vda-install ,reboot your server .
    Once the server is up , execute ./vda-config and select option 0
    You will have an evaluation setup up and running.
    3.
    -> You can use option 1/2 for a production setup ,high availability/fail over purpose i.e if you have 3 or more servers.
    -> option 3 when you have license to use InnodB engine and have only one server.[here before executing ./vda-config you need to install/configure Innodb on the VDI host] .
    -> option 0 when you have a single server and don't require fail over .
    HTH ,
    Udaya

  • How import data on one tablespace and indexes on another tablespace

    i have import dump from from database in oracle 10g as
    c:> imp userid=system/password full=y file=d:\ful.dmp log=d:\full.log
    Now i want import tables data on tablespace datatb and indexes on tablespace indextb. how i can do this job
    Thanks

    After importing the database you may move the indexes to other tablespace by rebuilding it.
    c:>sqlplus /nolog
    SQL> conn /as sysdba
    connected
    SQL> spool c:\indx_rbld.log
    SQL> select 'alter index '||owner||'.'||index_name||' rebuild online parallel tablespace <tablespace_name> nologging;' from dba_indexes where owner=<username>;
    SQL> spool off
    SQL> @c:\indx_rbld.log
    Hope following link will help you:
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:901906930328
    Message was edited by:
    Santosh Kumar

Maybe you are looking for

  • IPod is not recognized by my computer's usb port and itunes

    Remove my ipod from the computer without ejecting it and now the ipod want turn on, it is not being recognized by my computer's usb port or itune.  I have reinstalled itune and still have the same problems.

  • Itunes doesn't work well with icloud - will Match make it perfect?

    I was quite excited by the security and convenience possibilities of icloud and music. I am very disappointed that I have to buy a yearly subscription service to get if to work properly. I am about to go through the six steps to get match for itunes

  • Error while deploying composite to weblogic

    Getting following error while deploying composite to weblogic; As I got some reason from google that, its because of jdk8. If it is a known issue, does oracle released any patch for this? 8:16:43 AM] Server is most likely down. Please check the serve

  • Calendar Component

    HI Guys, I have a small query; which relates o the use of Calendar COmponent in xcelsius. I have to use this and filter my data accrding to the selection made. How can this be achieved? Selection - 04-Jul-2009 Data - Date                             

  • Form can not connect report service

    Dear all, My application using fileupload utility from demo files form90 and combine with report. If I not upload some file into IAS server using fileupload utility then I cannot execute command to print a report. It says 'Cannot connect to report se