How to add new data file

Hi Friends,
We have 4 below file systems.
Sybase/TST/sapdata_1
Sybase/TST/sapdata_2
Sybase/TST/sapdata_3
Sybase/TST/sapdata_4
Already we have added one data file each in sapdata_1 and 2.  Sapdata3 and 4 are emptry.
How to add new data file in sapdata3 or 4.
Please provide syntax for creating a new data file and steps for the same.
Regards,
Karthik.

Just for the record: you have here the DBACockpit documentation:
https://websmp201.sap-ag.de/~form/sapnet?_FRAME=CONTAINER&_OBJECT=011000358700000571562012E
And this is a sample of the extend to be executed:
Regards,
Victoria.

Similar Messages

  • How to add new music files in Hp connecterd music

    I am new to HP connected music.  I want to understand the following
    a)  Where does HP connected music app look for music in our computer.  I want to know the location of folders.
    b) How to add new music files into playlists
    can anyone help please.
    RAVIKUMAR RT

    Hi @rtravikumar 
    I see you are looking for some help with HP Connected Music.  I did a little bit of searching and found the following pages that should be useful to you.
    HP Connected Music Powered by Meridian (Windows 8)
    HP Connected Music FAQ
    I hope this helps.
    Malygris1
    I work on behalf of HP
    Please click Accept as Solution if you feel my post solved your issue, it will help others find the solution.
    Click Kudos Thumbs Up on the right to say “Thanks” for helping!

  • How to create new .dat file and its contents?

    Hi There
    Can anybody let me know the procedure of how to create new .ctl or .dat file to load data to tables.
    i working on 2day dba chapter 8. it shows me how to creat table and use .dat file to load data. but doesnot giv any clue how new .dat file and its contents can be created. please help.
    thanks in advance.

    Thanks for ur help
    I ve created txt file in notepad and saved it as dat file. tried to load that data thru Enterprise manager. used load data from User files everything went well and job was showing suceeded but dont know why that data is not showing in the table. i ve tried it now for three four times. used right table and pathe but dont know. has anybody got idea why that ll be?
    Thanks

  • How to add new data type

    I need to add new data type like SDO_GEOMETRY in spatial Oracle.
    I don't mean the User-Defined Datatype but new datatype imbed in the database.
    It might be written in C++ or Java but I do not know how.
    Any hints and help will be appreciated. Thanks,

    > It is not simply defining new VARCHAR3.
    I will compare embedded new built-in data type and UDT as part of my research.
    What I really meant was what do you want from your new type that a user-defined object can't give you? (Apart from the obvious shortcomings of Oracle object types being addressed, but that could take a while.) You specifically said "I don't mean the User-Defined Datatype but new datatype imbedded in the database" and I wondered what you meant by that.

  • How to add new data entry and display old data in the same screen in SM30?

    Hi, Experts:
    We need to use SM30 to maintain a table entry. When I click the button of "New Entries", the table screen becomes blank. I can only add new data but not be able to see the old data existing in the table.
    How can I have the new line available for me to add new data at the same time see the data currently existing in the table?
    Thanks,
    Jenny

    Hi, thanks for the reply!
    Just to follow up for what we did to disable the delete function for maintaining table records. We hided the Delete button by adding a "MODULE disable_delete" code in Screen Painter. So now only adding records to the table is allowed.
    Thanks,
    Jenny

  • How to add new data element to field list

    Hi,
    I am implementing Succession Planning 3.0 SP1.
    To make new data element was successful.
    I want to use them as sort field, however I don't know how to add them to the list of fields with caption.
    (i.e. to setting Visualize>My Org Units>Sort Fields)
    If you know how to config data elements usw. Please advise.
    Best Regards,
    Hiroshi Takimoto

    Hi Hiroshi,
    There are 2 ways to do this, both involving some customization of the application.
    1) Extend your HR-OCI views (TMC_O_SUCC_T & TMC_O_SUCC_B for My Org Units and TMC_IN_REP_T_DT & TMC_IN_REP_B_DT) to include Short Name. You probalby want to seek help from an OM consultant if this is not your area of expertise.
    2) Create a linked data element that links together the existing data elements and a new data element which includes Short Name. Your new data element must have the name of the existing data elements or you should change the hierarchy configuration that uses these data elements. Beware that this can prove troublesome for the Position Hierarchy because of the "virtual root" that is created - sometimes the join does not work because of this.
    Best regards,
    Luke

  • DG Physical Standby add new data file

    Hi all,
    11.2.0.1
    I am adding new filesystem for my Primary database tablespace TEMP and UNDO in "/u51/oradata/PROD/temp02.dbf"  and "/u51/oradata/PROD/undots02.dbf"
    Do I need to create its counterpart folder at my Standby database?
    Thanks,
    petra k

    f55237a7-2c38-4db3-a7a3-1d77256f0730 wrote:
    Thanks Mahir,
    You  are welcome!
    At Primary DB:
    SQL> show parameter UNDO
    NAME                                 TYPE        VALUE
    undo_management                      string      AUTO
    undo_retention                       integer     900
    undo_tablespace                      string      UNDOTBS1
    At Standby DB:
    SQL> show parameter UNDO
    NAME                                 TYPE        VALUE
    undo_management                      string      AUTO
    undo_retention                       integer     900
    undo_tablespace                      string      UNDOTBS1
    if you want database use new UNDO tablespace, then you must change UNDO_TABLESPACE parameter to <NEW UNDO  TABLESPACE>
    Note, that they have the same config parameter values:
    So when I got space problem when both UNDOTBS1 and TEMP is blowing up making the filesystem /u49  100% full
    I want to create new UNDOTBS2 and TEMP2 on a new filesystem  /u50. I will also just create the folder both at primary and standby.
    Then I do this procedure:
    How to shrink UNDO tablespace?
    ===============================
    The datafile for UNDO tablespace can’t be shrunk as we had issue where the datafile was set to unlimited and it kept on growing to fix the issue one can do the following steps.
    – UNDOTBS2 is new undo tablespace name
    SQL> create undo tablespace UNDOTBS2 datafile ‘/u50/oradata/PROD/undotbs2.dbf’ size 1000m;
    – make the new tablespace to be the undo tablespace
    SQL> alter system set undo_tablespace=undotbs2;
    – get the filename of the old undo tablespace which will be shrink so you can reclaim  the space
    SQL> SELECT file_name FROM dba_data_files WHERE tablespace_name = ‘UNDOTBS1';
    FILE_NAME
    /u49/oradata/PROD/undotbs1.dbf
    SQL> alter database datafile '/u49/oradata/PROD/undotbs1.dbf' resize 500M;
    Yes, it is also resize to 500M undo datafile on standby datbaase. (Must be STANDBY_FILE_MANAGEMENT=AUTO on standby database)
    ==============================
    HOW TO SHRINK TEMP
    SQL> CREATE TEMPORARY TABLESPACE temp2
    2 TEMPFILE '/u50/oradata/PROD/temp2.dbf' SIZE 5M REUSE
    3 AUTOEXTEND ON NEXT 1M MAXSIZE unlimited
    4 EXTENT MANAGEMENT LOCAL UNIFORM SIZE 1M;
    Tablespace created.
    SQL> ALTER DATABASE DEFAULT TEMPORARY TABLESPACE temp2;
    Database altered.
    There will create temporary tablespace TEMP2 and will set default temporary  tablespace TEMP2 on standby database, too.
    SQL> alter database datafile '/u49/oradata/PROD/temp.dbf' resize 500M;
    It is not resize temporary  file on standby database. Becuase it is not created yet.
    Regards
    Mahir M. Quluzade

  • How do I erase a CD read/write disc on my macbook so I can add new data

    help!
    How do I erase a CD read/write disc on my macbook so I can add new data. If a disc is a RW, I shouldn't i be able to write to it after it already has some data on it?
    I get a screen note saying I can't add anything because something is already on the disc... but it's only one little 3 meg file. But apple i info. shows no room on the cd.
    How can I erase the cd and reuse it? I find no erase command and when I try to drag the file to the trash, i get another note saying i don't have permission... even tho I've check off the permission box.
    sheesh.

    Open Disk Utility, choose the CD on the left side and click "Erase" on the right.
    Matt

  • How to add new row and update existing rows at a time form the upload file

    hi
    How to add new row and update existing rows at a time form the upload file
    example:ztable(existing table)
    bcent                      smh            nsmh         valid date
    0001112465      7.4                       26.06.2007
    0001112466      7.5                       26.06.2007
    000111801                      7.6                       26.06.2007
    1982                      7.8                       26.06.2007
    Flat file structure
    bcent                       nsmh         valid date
    0001112465     7.8     26.06.2007  ( update into above table in nsmh)
    0001112466     7.9     26.06.2007  ( update into above table in nsmh) 
    000111801                     7.6      26.06.2007 ( update into above table in nsmh
    1985                      11              26.06.2007   new row it should insert in table
    thanks,
    Sivagopal R

    Hi,
    First upload the file into an internal table. If you are using a file that is on application server. Use open dataset and close dataset.
    Then :
    Loop at it.
    *insert or modify as per your requirement.
    Endloop.
    Regards,
    Srilatha.

  • How to add new fields to the DME file in F110

    Hi,
    We have a requirement add new fields to the file that is used in  F110.
    .I did go in to DMEE transaction but I hae no idea how to add new fileds to the existing file.
    Can anybody please help me in resolving the issue.
    Thanks
    Venkat
    Edited by: Venkat R on Jun 8, 2009 8:45 AM

    Hi,
    There is no function module for that, We have created our own function module and attached to that field.
    Refer the below code. This will fetch the document number.
    DATA: lwa_item   TYPE dmee_paym_if_type,
            l_fpayp   TYPE fpayp,
            l_fpayhx TYPE fpayhx,
            first_flag TYPE c,
            lv_lifnr   TYPE lifnr,
            voucher_id TYPE string,
            voucher TYPE string,
            invoice_id TYPE belnr_d,
            voucher_len1 TYPE i,
            voucher_len TYPE i.
      TYPES:
      BEGIN OF lt_regup,
            xblnr TYPE xblnr1,
            belnr TYPE belnr_d,
      END OF lt_regup.
      DATA: lt_regup TYPE STANDARD TABLE OF regup,
            lv_regup TYPE regup.
    Hope this helps.
    Raja.A
    Edited by: Raja.A on Feb 16, 2011 7:17 PM

  • PLz Help me its urgent, how to add new field in mm01 basic data screen

    Hi everyone,
         plz tell me how to add new field in mm01 basic data screen,i added that field in basic data screen but when i create a material the data for that field will not save in database table.
    Thanks,
    murali.

    Hi Murali,
    when created added a field on the screen by using user exit then after that you have add the field in main table where you will be getting these table in the userexit only, please make sure about this. And i am sure defenitly it will get updated in to the table.
    reward if useful.
    thanks
    abdulsamee.

  • How to add new fields in asset master data

    Hello,
    i was wonder if anyone knows how to add new fields that arent defined in the asset master data.
    Thanks.
    Pedro

    Hi Pedro,
    SAP allows entering upto 8 fields on the asset master. These fields are called 'Evaluation group'. Out of 8, 4 are four character long and others are 8 character long.
    You can configure them @ the following 3 nodes in IMG:
    Financial Accounting>Asset Accounting>Master Data-->User Fields: Define 4-Character Evaluation Groups & Define 8-Character Evaluation Groups & Change Key Words in the Evaluation Groups.
    Regards,
    Vishal Thakur

  • How to use "sequence" after we add new data ?

    Dear all :
    Could someone tell me how to increase the number after we add new data and put the number into one field per time ?
    Thank you

    In the Initial Value property for an item on a block, you can assign it to a sequence value. Just put the name of the sequence in the Initial Value:
    Specifies the default value that Form Builder should assign to the item whenever a record is created. The default value can be one of the following:
    Here's the part of the help screen for Initial Value that shows how to assign a sequence.
         raw value (216, 'TOKYO')
         form item (:block_name.item_name)
         global variable (:GLOBAL.my_global)
         form parameter (:PARAMETER.my_param)
         a sequence (:SEQUENCE.my_seq.NEXTVAL)
    Dave

  • How to save data on a graph and then add new data to it

    i am currently plotting data on a graph from a physical system. However when i want to add new data to the plot, the old one is replaced. I am trying to do more than one plot on the same graph, where the incoming data is at different times. I want something like Excel where i can just add a new plot to the graph.Can i save the data or freeze it onto the graph or something so that i can add a new plot and see the two at the same time?

    > i am currently plotting data on a graph from a physical system.
    > However when i want to add new data to the plot, the old one is
    > replaced. I am trying to do more than one plot on the same graph,
    > where the incoming data is at different times. I want something like
    > Excel where i can just add a new plot to the graph.Can i save the data
    > or freeze it onto the graph or something so that i can add a new plot
    > and see the two at the same time?
    As the other post pointed out, there are two objects in LV for plotting,
    graphs and charts. If you wish to have a chart recorder that
    accumulates data into one or more plot with time, you probably want a chart.
    If you push a button and acquire a trace and want to add that to your
    graph, you just need to
    combine it with the data you plotted before and
    update the graph. It isn't the most efficient, but you can easily read
    the value of the graph using a local, add another row or column or
    element to your data and send it to the graph.
    To directly answer your other question, no, the grah doesn't have a
    functional interface for clearing, adding, or deleting plots. Instead,
    you do that with the diagram nodes and give the graph the results.
    Greg McKaskle

  • Does anyone know how to Add a date drop down list to a pdf file?

    Can someone tell me how to add a Date drop down list in a form

    There's no built-in function that does that in Acrobat, but there are some third-party tools that do.
    The two most known ones are by FormRouter, which is free and based on form fields (but also a bit buggy), and a non-free version created by Max Wyss, which is based on a dialog object.

Maybe you are looking for

  • How do you delete your apple ID

    do u know please tell me if u do!!!!!

  • Total Target Cost in Cost Analysis report

    Hi Everybody,              I have come across a problem. In transaction cor3 when I give the process order then in goto>costs>analysis  in the given  report I wouldnt be able to find the relevent tables for the field 'Total Target Cost' if someone co

  • Activation code InDesign cs2

    Please help ... need activaiton code. online doesn't help and phone doesn't either ... any ideas? Kay

  • Process chains in NW2004s

    Hi, Can any one please send me some docs/links regarding the upgradations of process chains in NW2004s. Thank You. Vaishu

  • Install NW Developer Studio. Error:SDK Folder not found!?

    Hi All, I installed Java EE5 SDK(with JDK) and now want to install NW Developer Studio 2.0. The wizard ask for the Java SDK folder path and when I enter it gives an error message "JAVA SDK folder not found". I used this "path C:\Program Files\Java\Su