Default partition name for Interval partitioned tables

Hi ,
Can we change the default partition names which are generated by Oracle.
For Example :
CREATE TABLE part_interval (
id NUMBER,
created_date DATE
PARTITION BY RANGE (created_date)
INTERVAL (NUMTOYMINTERVAL(1,'MONTH'))
PARTITION part_01 values LESS THAN (TO_DATE('01-NOV-2007','DD-MON-YYYY'))
Now if I insert values which doesn't fall in the 01-NOV-2007 date, a new partition is created like SYS_P43. Can I change this default partition name in the SQL statement itself . Not through procedures or functions.
Regards,
Raghunathan A
Edited by: 869187 on Jun 29, 2011 6:08 AM

869187 wrote:
Hi ,
Can we change the default partition names which are generated by Oracle. post SQL & results that show you can change partition names generated by YOU.

Similar Messages

  • "Untitled" as default document name for new documents

    I have one installation of Adobe Illustrator CS2 in a Mac with which I have the following problem:
    Whenever I go to File->New, to create a new document, the default document name is blank, and it should be "untitled".
    Is there a way (without reinstalling) to correct this? (turn the default blank document name to "untitled" default document name, for new documents)
    Thank you.
    Juan Poniachik

    On what Mac? If it's on a new Mac with Snow Leopard, I would guess it is one of those compatibility issues of new OS vs. legacy software. If so, you can't change any of that. Other than that I can only think of trying to edit the document templates...
    Mylenium

  • Find the sequence name for a particular table

    Hi,
    Please give query to find the sequence name for a particular table in oracle.
    Thanks

    I mean getting List of Sequence names defined in DB.
    I got the answers
    select *from user_sequences                                                                                                                                                                                                               

  • Dynamic name for the physical table

    Hi Guys,
    How to setup dynamic names for the physical table? Where it is useful?*
    Pls help me out on this.
    thanks

    Check this similar post which might be of help dynamic physical table source schema
    Cheers,
    KK

  • Default caller name for a given phone number

    If you have multiple contacts that have a phone number in common, is it possible to decide which of those contacts is the default display name for that number?
    For example, I have an entry for my wife. I also have an entry for "ICE" (In Case of Emergency). They're essentially the same. When my wife calls or texts me, the display says "ICE." I want it to say "Wife."
    Is this possible?

    Nope.
    BTW, I am curious, do you have a passcode lock on your phone? If so, doesn't that pretty much make any ICE contact pointless since they cannot access the phone?
    Understand your desire to have it there though. Also, there are apps out there (think called ICE) that can let you put a icon on your screen that says ICE and then link that to a number.
    Message was edited by: DaVBMan

  • Default Last name for Spouse in Family infotype 0021

    Hi,
    We have a requirement and wondering somebody could help me with that:
    when ever we maintain the Family infotype 0021 - If the person is married the spouse last name is automatically populating in the last name field. Is there any functionality which would allow the last name of the female spouse come in as blank as it is not standard for the last name to be same as husband.
    Regards,
    Raghu

    Hello there,
    Looks like defaulting last name is standard behavior in different countries specifics:
    Note 1001323 - Defaulting of Last name in IT0021 (Family/Related Person)
    [https://websmp130.sap-ag.de/sap(bD1lcyZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=1001323]
    Note 1083523 - Defaulting Last name in IT0021
    [https://websmp130.sap-ag.de/sap(bD1lcyZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=1083523]
    Note 625670 - MASTER DATA: Default family name for all IT0021 subtypes
    [https://websmp130.sap-ag.de/sap(bD1lcyZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=625670]
    MP002120     35     IF P0021-FANAM EQ SPACE AND PSYST-IOPER EQ 'INS'.    "note 1083523       
                   36       MOVE P0002-NACHN TO P0021-FANAM.                                       
    MP00212R     50    IF P0021-FANAM EQ SPACE AND PSYST-IOPER EQ INSERT.      "JM#1001323  
                   51       MOVE P0002-NACHN TO P0021-FANAM.
    So if you wish, you can overwrite this according to sandbisw1983 instructions.
    Greetz.

  • How to set the default file name for upload

    Hi All,
    I have the following BSP app for a file upload of a csv file. I want the page when displayed show the default file name to be loaded as c:\db1\currentPM.csv
    What changes do I need to make to get the default file name in the BSP app.
    Thanks
    Karen
    <%@page language="abap" %>
    <%@extension name="htmlb" prefix="htmlb" %>
    <htmlb:content id               = "content"
                   design           = "classicdesign2002design2003"
                   controlRendering = "sap"
                   rtlAutoSwitch    = "true" >
      <htmlb:page title="File Upload " >
        <htmlb:form method       = "post"
                    encodingType = "multipart/form-data">
              <htmlb:textView text   = "File:"
                              design = "STANDARD" />
              <htmlb:fileUpload id          = "uploadID"
                                onUpload    = "UploadFile"
                                upload_text ="Upload"/>
        </htmlb:form>
      </htmlb:page>
    </htmlb:content>
    On Input Processing
    event handler for checking and processing user input and
    for defining navigation
    DATA: EVENT TYPE REF TO IF_HTMLB_DATA,
          DATA TYPE REF TO CL_HTMLB_FILEUPLOAD,
          LV_OUTPUT_LENGTH TYPE I,
          LV_TEXT_BUFFER TYPE STRING,
          FILE_NAME TYPE STRING,
          FILE_PATH TYPE STRING ,
          INTERN TYPE TABLE OF  ZALSMEX_TABLINE.
    DATA: LT_BINARY_TAB TYPE TABLE OF SDOKCNTBIN .
    TYPES: BEGIN OF TY_TAB,
           FIELD1(2) TYPE C,
           FIELD2(2) TYPE C,
           FIELD3(2) TYPE C,
           FIELD4(2) TYPE C,
           FIELD5(2) TYPE C,
           END OF TY_TAB.
    DATA:  WA_TAB TYPE TY_TAB,
           IT_TAB TYPE TABLE OF TY_TAB.
    TYPES: BEGIN OF TY_LINE,
              LINE(255) TYPE C,
           END OF TY_LINE.
    DATA:  WA_LINE TYPE TY_LINE,
           IT_LINE TYPE TABLE OF TY_LINE.
    EVENT = CL_HTMLB_MANAGER=>GET_EVENT_EX( REQUEST ).
    IF EVENT IS NOT INITIAL AND EVENT->EVENT_NAME = HTMLB_EVENTS=>FILEUPLOAD.
      DATA ?= CL_HTMLB_MANAGER=>GET_DATA( REQUEST = RUNTIME->SERVER->REQUEST NAME = 'fileUpload' ID = 'uploadID' ).
      FILE_NAME = DATA->FILE_NAME.
      FILE_PATH = FILE_NAME.
      IF DATA IS NOT INITIAL.
        CALL FUNCTION'SCMS_XSTRING_TO_BINARY'
         EXPORTING BUFFER = DATA->FILE_CONTENT
         IMPORTING OUTPUT_LENGTH = LV_OUTPUT_LENGTH
         TABLES BINARY_TAB = LT_BINARY_TAB .
        CALL FUNCTION'SCMS_BINARY_TO_STRING'
        EXPORTING INPUT_LENGTH = LV_OUTPUT_LENGTH
         IMPORTING TEXT_BUFFER = LV_TEXT_BUFFER
         TABLES
         BINARY_TAB = LT_BINARY_TAB.
        IF SY-SUBRC = 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
        SPLIT LV_TEXT_BUFFER AT CL_ABAP_CHAR_UTILITIES=>CR_LF INTO TABLE IT_LINE.
        IF SY-SUBRC = 0.
          LOOP AT IT_LINE INTO WA_LINE.
           SPLIT WA_LINE AT CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB
            split wa_line at ','
            INTO WA_TAB-FIELD1 WA_TAB-FIELD2 WA_TAB-FIELD3 WA_TAB-FIELD4 WA_TAB-FIELD5.
            append wa_tab to it_tab.
          ENDLOOP.
        ENDIF.
      ENDIF.
    ENDIF.

    Also, I missed another point.
    In the folder c:\dbdata I have a number of CSV files on the user frontend. I would like the BSP application to get the list of files in the folder and process them one after the other. How can I get the list of files on the folder in the user PC and how to process them one after the other.
    I want the form to display only the default folder and once I press on upload it must process all files and display the status of processing on the same page.
    Please kindly share ideas how I can implement this app.
    Thanks
    Karen

  • Default Subpackage Names for Business Components (11g); Bug?

    Does anyone know how to enable the ability to specify the default packages under Tools -> Default Project Properties ->Business Components -> Packages?
    Mine are all greyed out.
    Also, even when I have the bare minimum of an ADF model project, before even checking "Initialize Project for Business Components", the defalt packages are greyed out.
    Further, once I do check "Initialize Project for Business Components", the section for Default Subpackage Names is complete gone.
    I want to be able to specifiy the subpackages, so that when I regenerate entities etc. from tables the components go to the right packages.
    Thanks for any help.

    This seems like a bug to me. If you select Initialize Project for Business Components, everything is enabled. And stays that way even after you open a different application.
    But , You can set these values under Tools - Preferences - Business Components - Packages. This works nicely. Once you set these, create a new application and things will be fine. If you have existing application, it may require some xml file (.jpr) manipulation. That seems to be a nicer approach. I don't know what is the purpose of Default Project Properties, when you can set everything by Tools - Preferences.

  • Can you create a different default Opportunity name for Lead conversion?

    We're using CRMOD for a high-volume call center and we end up with leads with the same name. According to the online help, "The First Name and Last Name for the lead appear in the Opportunity Name field by default." That's working correctly, but it would make our lives easier if it did something different, like maybe First Name, Last Name, and ZIP code, or First Name, Last Name, and a Timestamp. Is there a way to do that? I realize the users could do something manually, but then I get all the associated issues.

    I'm not quite sure how that would work. I attempted this in staging using [<AccountName>]+" "+[<AccountLocation>], and I checked the Post Default box. When I go to convert a Lead, it still defaults to First Name and Last Name on the Convert Lead screen.

  • Need DataSource names for R/3 tables

    Hi All,
    I need the data Source names for the below 6 R/3 tables,
    EKKO , EKPO, T024 , T052U, LFA1 , LFB1
    This could be helpful for me to do a LO Extraction.
    Thanks in advance,
    Arun.M.D

    Hi Arun,
    You have given only table names, but do you know in those tables which fields data you want extract, if you know that...
    there we have predefined table called "RSOSFIELDMAP" by using this table  we can findout datasource name.
    More detailed:
    Ex:
    GoTo SE11
    Give the table name : RSOSFIELDMAP
    Click on DISPLAY
    click on CONTENTS  4th from last button
    Give the FIELDNM : MATNR (example)
    And click on EXECUTE Button
    it displays all the datasource names which are having that MATNR field. Like this you can find out the comfortable business content datasource.
    you can find out the datasource which is having the more required fields.
    if you dont have that required fields  in any datasource, then you should go for Customised Datasource.
    I hope it may help you....
    Regards,
    Yerrabelli.

  • Dynamic Name for Yellow Interface Table

    Hi All,
    Can anybody guide me how to use dynamic name for Yellow Interface Target Table.
    Eg: T_SESSIONID.
    I tried
    1)Refreshing the SESSIONID in a Variable V1 and using T_#V1 directly
    2) Refreshing the T_#V1 in a Variable V2 and using #V2
    But its not creating properly.
    Please guide.

    You want to create dynamic target table name right?
    You can refresh a variable like #GET_SESSION
    #GET_SESSION= SELECT <%=odiRef.getSession("SESS_NAME")%> FROM DUAL
    My tmp table name like TMP_#GET_SESSION
    then in your package refresh #GET_SESSION variable and you can use it.
    I hope this can be helpful
    Thanks

  • Default system names for several RFCs in a WebDynpro project

    Hi , I have a doubt, currently I am adding several RFCs to a WebDynpro project , all of them with the same "Default system logical name" for model instances and RFC metadata..
    It is ok to give the same "default system logical name" for all my RFCs" or should I give a different name for each RFC I add to my project ?
    Which way do you recommend to configure all RFCs in my project?
    Thanks in advance....

    Hi ,
    check the below link reg Effective Web Dynpro - Adaptive RFC Models , hope it will help you
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/11c3b051-0401-0010-fe9a-9eabd9c216de
    Regards,
    Sunitha Hari

  • How do I change the default bookmark name for my iWeb site?

    I'm not sure where the label is coming from that automatically appears as the bookmarked name for my iWeb site and I want to change it.

    I found my answer in the archived discussion "Bookmarking my site". It worked - thanks!

  • Getting column names for a particular Table from Connection object.

    Hi,
    Can any one suggests me a way to get column names from a particular table of a database from the java.sql.Connection object. ?
    Thanks in advance.

    Connection connection;
    DatabaseMetaData metadata = connection.getMetaData();
      String[] names = {"TABLE"};
      ResultSet tables = metadata.getTables(null,"%", "%", names);
      while (tables.next()) {
      String tableName = tables.getString("TABLE_NAME");
       ResultSet columns = metadata.getColumns(null, "%", tableName, "%");
    while (columns.next()) {
      String columnName = columns.getString("COLUMN_NAME");
        }

  • How do you get the column names for a given table from an SQL LocalDB programmatically in Visual Basic.

    Just new to this and unable to find answers

    My solution
        Public Function GetTableColumnNames() As Boolean
            Form1.ListBox1.Items.Clear()
            _MDFFileName = String.Format("{0}.mdf", _DatabaseName)
            _sqlConnectionString = String.Format("Data Source=(LocalDB)\v11.0;AttachDBFileName={1};Initial Catalog={0};Integrated Security=True;", _DatabaseName, Path.Combine(_DatabaseDirectory, _MDFFileName))
            Dim cn As New SqlConnection(_sqlConnectionString)
            'put the table name in brackets in case it has spaces in it
            Dim SQLString As String = "SELECT * FROM [" & _TableName & "]"
            Try
                cn.Open()
                Dim cmd As New SqlCommand(SQLString, cn)
                Dim rdr As SqlDataReader =
                cmd.ExecuteReader(CommandBehavior.KeyInfo)
                Dim tbl As DataTable = rdr.GetSchemaTable
                'This shows all of the information you can access about each column.
                For Each col As DataColumn In tbl.Columns
                    Form1.ListBox1.Items.Add(col.ColumnName)
                    Debug.Print("col name = " & col.ColumnName & ", type = " & col.DataType.ToString)
                Next
                'Get each column.
                For Each row As DataRow In tbl.Rows
                    Form1.ListBox1.Items.Add(row("ColumnName"))
                Next
                rdr.Close()
            Catch
                MessageBox.Show("Error opening the connection to the database.")
            Finally
                cn.Close()
            End Try
            Return _Success
        End Function

Maybe you are looking for

  • Foxit Reader won't work with HP Laptop Help and Support Guides, any suggestions?

    New HP Pavilion with Windows 7 x64 I downloaded Foxit Reader and installed it and then Uninstalled Adobe Reader to save space. Then, although it will open my PDF's in "My Documents", it will not open the Guides or Learning PDF's in the HP Help and Su

  • Report to get WBS elements based on Project Type

    Dear Experts, Is there any report exists in Project Systems to get WBS elements based on Project Types. This we can check in the table PRPS-PRART. But i need to know the availability of T Code. Thanks in advance. Regards, Srinivasareddy Y

  • Older version of Safari is constantly crashing, how can I fix it?

    Here is the crash report... Date/Time:      2011-10-28 08:57:48 -0600 OS Version:     10.3.9 (Build 7W98) Report Version: 2 Command: Safari Path:    /Applications/Safari.app/Contents/MacOS/Safari Version: 1.3.2 (312.6) PID:     382 Thread:  0 Excepti

  • Won't load Facebook...

    When I try to access facebook, instead of loading the page, a download begins (home.php) and no page loads. It will either remain a blank page, or the last page I was on. I have tried, clearing caches, cookies, disk permissions, and a virus scan but

  • Linking JSP master-detail pages

    Hi all, I am developing a JSP-BC4J application with JDev903. I have a hierarchy of 5 view objects, let's say VO1,..,VO5, linked to each other by one-to-many view links. I would like to make a drill-down for this data. With the JSP for BC4J wizard, I