Can I rename a exisiting table name ???

Dear All,
Can I rename a exisiting table name ???.
Thanks You!!
Regards
Venkat

u cannot rename a table. only you can copy the table you want to one with a name of your wish.
go to se11.
   enter the table name(source)
       press (control+F5)
enter the target table name.
regards,
srinivas
<b>*reward points for useful answers*</b>

Similar Messages

  • How can find  database field and table name

    how can find the underline database field name,table name from java page. Example. in oracle apps when we go purchaseing super user then supplier base then supplier and find supplier detail .

    Hi,
    depends on your model. If you work with ADF BC then you can use ViewLinks to access parent or detail infromation programmatically. See the developer guides for more information. Note that you wont access the tables directly but the collections that represent the records
    Frank

  • Can we rename Oracle username & tablespace name in 11g R2

    - We have Oracle tablespace name "TULIP"
    - We have Oracle username "TULIP"
    Default tablespace for use TULIP is TULIP.
    - Now can we rename tablespace TULIP to TULIP_NEW ?
    - Now can we rename username TULIP to TULIP_NEW ?
    Can this be done online when the database is running ?
    If NOT please give me the steps involved.
    Thanks
    Bristol

    Yes you can rename a tablespace.
    ALTER TABLESPACE <tablespace_x> RENAME TO <tablespace_y>;As far as renaming the schema there is no command for that. One approach would be to export the data and re-import using the REMAP_SCHEMA (for Data Pump) option.

  • Can I have unique decision table name in the BRF Plus System?

    Hi All,
    In BRF Plus , we can create more than one decision table with the same name in the same application or across different applications.
    We have a requirement were in we have to setup a framework so that we don't have duplicate decision name or any expression name across system. We need to maintain unique name.
    One way is to control this by having particular naming conventions but still there will be room for errors.
    Is there are way to activate the unique name for decision table name across or within application?
    Thanks.

    Hi Sainath
    Carsten is of course always correct.  That said I can understand the desire - if only to avoid confusion for business users.  Sounds like a good use case for the new DSM deployment approval workflow perhaps? But in the short term either application exits or custom programs are the most likely solutions
    Hope that helps
    Jocelyn

  • Can I rename my Cloud Team Name

    My organization has multiple VIP team names for different departments.  Can I rename the Team Name under Creative Cloud for Teams?

    Team license links that may help
    -https://helpx.adobe.com/contact/creative-cloud-teams.html for Team help
    -manage your team account http://forums.adobe.com/thread/1460939?tstart=0

  • How can I change Overridden Qualified Table Name with a programm

    Hallo have the the Problem
    to change more then 500 Reports more than one time
    I want to change to change qualified Tabelname with a programm ( I wan't del the qualifier )
    manuel with the report designer I set the replace qualified Tablename and then verifiy Database is ok
    I want to do this with a program but the Qualifiers is write protected
    How can I change the Qualifier by programm.
    thanks for help

    Hello, Jörg;
    As I mentioned, you can remove the Qualifier in the report designer but we do not recommend it. It is not supported at runtime in an application. We expect a table location to be fully qualified or you may get incorrect data.
    There is a way to change the fully qualified location at runtime and get and set the qualifier. The following code gets what is saved in the report.
    'Definitions in Module.bas
    Public crxApplication As New CRAXDRT.Application
    Public External_Report As CRAXDRT.Report
    Public ReportFileName As String
    Public crxTable As CRAXDRT.DatabaseTable
    Private Sub Get_Qualifiers()
    'Get the fully qualified table location
    'Change it if necessary and set the new location "owner.dbo.tablename"
    'Verify the Database
    ' Assemble the qualified table name for each table.
    For Each crTable In External_Report.Database.Tables
        Dim strQualTableNamePart As Variant
        Dim strQualTableName As String
        strQualTableName = ""
        ' Obtain the table's qualifiers.
        Dim i As Integer
        For i = 1 To crTable.Qualifiers.Count
            If i > 1 Then
            strQualTableName = strQualTableName + "."
        End If
        strQualTableNamePart = crTable.Qualifiers.Item(i)
        strQualTableName = strQualTableName + strQualTableNamePart
        Next
        ' Obtain the table's name.
        If (strQualTableName <> "") Then
            strQualTableName = strQualTableName + "."
        End If
        strQualTableName = strQualTableName + crTable.Location
        ' Display the fully qualified table name.
        MsgBox "Fully qualified location " + strQualTableName
        crTable.Location = strQualTableName
    Next
    'Should be the equivalent of:
    'External_Report.Database.Tables(1).Location = "Xtreme1.dbo.Customer"
    'If the structure of the database has changed, verify the database
    'External_Report.Database.Verify
    End Sub
    Elaine

  • How can I rename the PATH_TABLE table of an index for an XMLType column?

    I have a table having a column of type XMLType. Thus, I had created an XMLIndex with an according <tablename>PATHTABLE table.
    Now I want to rename the table as well as the associated <tablename>PATHTABLE table.
    How can I achieve this? Do I have to rename the XMLIndex as well?
    Thank you.

    "ALTER INDEX " + idxName + " PARAMETERS('PATH TABLE " + newTblName + "')";does the trick but I can't achieve renaming the index with
    ALTER INDEX " + oldIdxName + " RENAME TO '" + newIdxName + "'";
    {code}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Can columns be selected by table name?

    If I have a table T1 with columns A,B and C is there a shortcut to specifiy those column in a complex query, instead of listing them all?
    For example:
    SELECT A,B,C FROM (SELECT ... some complex query returning multiple columns).
    Can this be written like
    SELECT T1.* FROM (SELECT ... some complex query returning multiple columns).
    or similar?
    The above of course does not work.
    I want to avoid typing all the columns, as I want all from table T1 (but nothing else).
    Here is a real life example:
    select A,B,C from (select row_.*, rownum rownum_ from (select T1.* , some_expression as foo from T1) row_);
    If the table has a lot of columns, the typing them all is tiring and makes the code very long. Is there a way to say "all columns that are defined for table T1" in a shot way?
    Thanks,
    David
    PS: Working with Oracle 11g.

    Hi,
    You can say "SELECT t1.*" to mean all the columns in t1, as long as t1 is in scope.
    If ilv is an in-line view used in your main query, and t1 is a table in ilv, then t1 is not in scope in the main query.
    So you can say:
    SELECT  ilv.*
    FROM    (       -- Begin in-line view ilv
                SELECT  ...
                FROM    t1 ...
            ) ilv    -- End in-line view ilv
    ;but you can't replace "ilv" on the first line with "t1".
    Listing lots of columns individually isn't especially fun, but what's so bad about it?
    There may be ways, in some particular cases, to re-write the query such that t1 is in scope in the main query, but again, why bother? If it's important enough to you, post a little sample data (CREATE TABLE and INSERT statements) for all tables, and the the results you want from that table. You can include comments like "Where I used columns x1 and x2 in this example, I actually have 50 columns that I don't want to list individually."

  • Can we rename an exisiting target in Grid Control

    Hello Gurus
    We are upgrading a database from 10.2.0.5.0 to 11.2.0.2.0 and we are going to change the SID of the environment.
    I wanted to know if it was possible to change the target name (so that we can keep all historical data of the previous database for example).
    At the moment the target name is <sid>.****.co.uk
    Thanks for any tips.
    We are using Oracle Enterprise Manager 11g Release 1 Grid Control (11.1.0.1.0 )
    Edited by: 869150 on 19-Sep-2012 07:16

    Grid Control Target Maintenance: How to Change the Display Name of Targets in Grid Console? [ID 755630.1]

  • Can we rename the log group name in 10g.

    I have a database on 10.1.0.5 and want to rename the group name of 4 to 1 without moving the logfiles. ;)
    thanks

    I have a database on 10.1.0.5 and want to rename the
    group name of 4 to 1 without moving the logfiles. ;)What difference does it bring?
    I don't think its possible either.

  • Can i rename the Global Database Name

    Hi Seniors,
    i have installed the Oracle 10.2.3(10203_vista_w2k8_x86_production_db) in my VISTA Laptop.
    i have given the Global Database Name as orcsatya but i want to change to orasatya
    would u please tell how to proccess if it is.....
    thanks
    Seenujanu

    SeenuJanu wrote:
    yes , i want the name from orcsatya to orasatya of Global Database Name
    is it possible to change the Name or i have to reinstall
    which i would like to access the names like
    connecting scott/sathi@orasatya;
    Thanks in Advance
    Edited by: SeenuJanu on Jun 13, 2009 4:43 AMFor that you don't even need to touch the database. The name you use in your connect string is nothing more than an alias that is resolved (in your tnsnames.ora file) to a specific service name on a specific host. Without touching anything else, you could change your tnsnames entry from something like
    ORASATYA =
    (DESCRIPTION =
       (ADDRESS_LIST =
         (ADDRESS = (PROTOCOL = TCP)(HOST = 127.0.0.1)(PORT = 1521))
    (CONNECT_DATA =
       (SERVICE_NAME = ORA11)
    )to
    fred =            <=== note that this is the only change from the previous entry
    (DESCRIPTION =
       (ADDRESS_LIST =
         (ADDRESS = (PROTOCOL = TCP)(HOST = 127.0.0.1)(PORT = 1521))
    (CONNECT_DATA =
       (SERVICE_NAME = ORA11)
    )At which point you would connect with
    sql> connect scott/sathi@fred

  • How can we get the table name...

    Hi All,
    How can we get the actual table name for an argument if its datatype is %ROWTYPE.
    For Ex :
    function ACCOUNT_UPDATE (account_no number,
    person person%rowtype,
    amounts dbms_describe.number_table,
    trans_date date)
    return accounts.balance%type;
    In the above function 'ACCOUNT_UPDATE', for argument person the datatype is 'person%rowtype'.
    Is there any way to get the name from Data Dictionary tables.
    I tried using All_Arguments and DBMS_DESCRIBE, I can able to get all the individual fields of %ROWTYPE by I could not able to know the exact table name thru the DD.
    my requirement is dynamically I need to declare a variable for the argument datatype.
    Your help is highly appreciated.
    Thanks

    hi vinay,
    this is the easiest way to find the tablename of a particular field.
    t.code:XD01.
    enter.
    select the kunnr field.
    press F1.
    the top of the screen u will get 'Technical setting icon.
    select that one.then u will get tablename,fieldname,parameter id also.
    if helps give the rewards.
    regards,
    akash.k

  • Tables name for Customer Payment Report

    hiiiiiiiiii
    can anyone tell us the tables name for the report customer payment receive..?
    Thanks & Regards
    Rekha sharma

    Hi Rekha
    when you pass following entry
    Bank dr  
    to Customer
    All header data like co code currecy ref , period etc goes to BKPF,
    line item - Bank Dr ( its a GL  entry ) goes to BSIS
    line item- Customer Cr ( its a AR entry ) goes to BSID or BSAD depends it is cleared or still open
    Also both the line items goes to BSEG
    Hope this helps.
    Regds
    Rajiv

  • How-To Find the R/3 Table Name for a BW Data Source

    Hi there,
      Please advice how can I find the respective table name in R/3 for a particular BW DataSource ?
      P/S : I would like a technical how-to instead of referring the table names at HELP.SAP.COM
      For instance, for my Standard Business Content Info Cube 0CCA_C03(CO-OM-CCA: Statistical Key Figures) which extracts from BW Data Source: 0CO_OM_CCA_4
      My question is, how can I find out which specific tables in SAP R/3 is this Data Source pulling the data from ?

    Hi Dinesh,
       Data Source: 0CO_OM_CCA_4
       1) In my R/3, I ran SE16 : Table -> ROOSOURCE
       2) OLTPSOURCE -> 0CO_OM_CCA_4
       3) EXMETHOD = F1
         (Hence, I assume the Extraction Method is a Function Module)
       4) So, Function Module = BWOM_RS_GET_CTRSTA
       5) Run SE37 in R/3
          How do I find out the specific tables in this Function Module ?
          Would you please list them for me, so I can further refer to the individual tables ?

  • How to find the list of un used table names in a schema?

    Hi,
    I have a doubt in Oracle. The doubt is that If we are using any tables in Function Or Proc.... Then...We can list all those used table names from USER_DEPENDENCIES system table. Right...
    But, If the table is used with Execute Immediate Statement, then, those table names are not coming out with USER_DEPENDENCIES system table. Because they are identified at run time and not compile time.
    It is fine. And I agree.. But, If I want to list out those tables also...then...How to do? Any idea?
    I think ‘USER_SOURCE’ system table may not be the right one. If there is any other system table avails for this purpose...then..it would be very grateful to extract right...
    So I am wanting that exact system table.
    Please let me know about this, if you have any idea or check with your friends if they have any idea.
    Regards,
    Subramanian G

    Hi Guys,
    Thanks for all your answers.
    Yes....You are all right. We can list out the used tables upto certain extent. Anyhow, I have done some R&D to derive the SQL's which is given below:
    SELECT TABLE_NAME FROM USER_TABLES
    MINUS
    SELECT DISTINCT UPPER(REFERENCED_NAME)
    FROM user_dependencies
    where
    referenced_type='TABLE' and UPPER(NAME) in
    select distinct UPPER(object_name) from user_objects where UPPER(object_type) in
    'MATERIALIZED VIEW',
    'PACKAGE',
    'PACKAGE BODY',
    'PROCEDURE',
    'TRIGGER',
    'VIEW',
    'FUNCTION'
    UNION
    SELECT UT.TABLE_NAME FROM
    SELECT TABLE_NAME FROM USER_TABLES
    MINUS
    SELECT DISTINCT UPPER(REFERENCED_NAME)
    FROM user_dependencies
    where
    referenced_type='TABLE' and UPPER(NAME) in
    select distinct UPPER(object_name) from user_objects where UPPER(object_type) in
    'MATERIALIZED VIEW',
    'PACKAGE',
    'PACKAGE BODY',
    'PROCEDURE',
    'TRIGGER',
    'VIEW',
    'FUNCTION'
    AND REFERENCED_OWNER=(SELECT sys_context('USERENV', 'CURRENT_SCHEMA') FROM dual)
    ) UT,
    ( SELECT * FROM USER_SOURCE
    WHERE NAME IN
    ( SELECT DISTINCT NAME FROM USER_SOURCE
    WHERE TYPE NOT IN ('TYPE')
    AND
    UPPER(TEXT) LIKE '%EXECUTE IMMEDIATE%'
    ) US
    WHERE
    UPPER(US.TEXT) LIKE '%'||UPPER(UT.TABLE_NAME)||'%'
    AND
    (UPPER(US.TEXT) NOT LIKE '%--%')
    The above SQL Query can list out unused tables by checking the Dynamic SQL Statement also upto some level only.
    Once we extracted the list of unused tables, having a manual check would be also greater to verify as it is should not impact the business applications.
    Regards,
    Subramanian G

Maybe you are looking for

  • When I save a bank statement as a text file or spreadsheet file it does not convert the transactions but does the rest?

    The header showing the bank name and the account details and the conditions are done and the end balance is done and the footer information but the middle is ignored.

  • IOS 5

    IOS 5 Notification can use more improvement. I can't seem to click on anything on top when the notification banner is there. Hope a close button will be added to the notification banner.

  • Partner redetermination in transactions

    Hi, I'm trying to configure partner determination procedures for service transactions in order to allow redetermination of partners, but I hanen't been able to find a solution. Let suppose I have transaction types Z001 and Z002 The parties involved a

  • Fan keeps running

    Last night before bed I started to do the software update on my MacBook Pro. Now the fan is constantly running,the screen does not work, and I can't turn it off. Help!

  • How to implement 'inContextBranding: formattedText' ???

    The implementation for In-Context Branding with 'inContextBranding: formattedText' is mentioned in the following docs: 1) Oracle Application Framework - Personalization Guide Release 11i, part no. B25439-0 2) Note 269138.1 Oracle Application Framewor