<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Rename a Database Table without loosing its data. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/rename-a-database-table-without-loosing-its-data/m-p/10882897#M1888349</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sid is right, you cannot rename the table and contain the table contents with SE14. You need to find a workaround, so copy the data to a temporary table and then insert it to your renamed table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Br,&lt;/P&gt;&lt;P&gt;Tim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 08 Jan 2015 11:17:46 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2015-01-08T11:17:46Z</dc:date>
    <item>
      <title>Rename a Database Table without loosing its data.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rename-a-database-table-without-loosing-its-data/m-p/10882893#M1888345</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to rename a database table without loosing its data content.&lt;/P&gt;&lt;P&gt;I have searched a coulpe of blgs and could not find any thing helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have gone thru this page,&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_47x200/helpdata/en/cf/21f1ab446011d189700000e8322d00/frameset.htm" title="http://help.sap.com/saphelp_47x200/helpdata/en/cf/21f1ab446011d189700000e8322d00/frameset.htm"&gt;Adjusting Database Structures - Database Utility - SAP Library&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and then thought there must be some way, if you read point 3,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;EM&gt;By&lt;STRONG&gt; converting the table&lt;/STRONG&gt; (see &lt;/EM&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;EM&gt;&lt;A _jive_internal="true" href="https://answers.sap.com/cf/21f1b8446011d189700000e8322d00/content.htm"&gt;&lt;SPAN style="font-family: Arial; font-size: 10pt;"&gt;Conversion Process&lt;/SPAN&gt;&lt;/A&gt;&lt;/EM&gt;&lt;SPAN style="font-family: Arial; font-size: 10pt;"&gt;&lt;EM&gt;). The database table is renamed and serves as a temporary buffer for the data. The revised version of the table is activated in the ABAP Dictionary and created in the database. The data is reloaded from the temporary buffer to the new database table (with MOVE-CORRESPONDING) and the indexes on the table are built.&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Arial; font-size: 10pt;"&gt;I am not sure, how to achieve this.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Arial; font-size: 10pt;"&gt;Will be great, if some one can kindly guide me..!!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Arial; font-size: 10pt;"&gt;Thanking You All..!!&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Jan 2015 10:19:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rename-a-database-table-without-loosing-its-data/m-p/10882893#M1888345</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-01-08T10:19:52Z</dc:date>
    </item>
    <item>
      <title>Re: Rename a Database Table without loosing its data.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rename-a-database-table-without-loosing-its-data/m-p/10882894#M1888346</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ankit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is copy option in SE11 ,so that you can copy the table to another table,but i am not sure whether the contents will copy or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If contents not copied ,do small report program select all entries from old table and move to renamed table and delete old table&lt;/P&gt;&lt;P&gt; for ex : &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from mara into lt_mara.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at lt_mara to ls_mara.&lt;/P&gt;&lt;P&gt;move correcpondin ls_mara to ls_new_table.&lt;/P&gt;&lt;P&gt;append ls_new_table to lt_new_table.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Vamsi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Jan 2015 10:46:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rename-a-database-table-without-loosing-its-data/m-p/10882894#M1888346</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-01-08T10:46:38Z</dc:date>
    </item>
    <item>
      <title>Re: Rename a Database Table without loosing its data.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rename-a-database-table-without-loosing-its-data/m-p/10882895#M1888347</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mohan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot for the quick reply.&lt;/P&gt;&lt;P&gt;I am much worried about data only, need some input for data.&lt;/P&gt;&lt;P&gt;I do not want to create any program for coping data.&lt;/P&gt;&lt;P&gt;Thanking You All..!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Jan 2015 10:49:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rename-a-database-table-without-loosing-its-data/m-p/10882895#M1888347</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-01-08T10:49:50Z</dc:date>
    </item>
    <item>
      <title>Re: Rename a Database Table without loosing its data.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rename-a-database-table-without-loosing-its-data/m-p/10882896#M1888348</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ankit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is not possible as you are changing name. Database utility SE14 will work only with same table.&lt;/P&gt;&lt;P&gt;May be you can search enhancement for copy option in SE11 where you can put code to copy data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sid&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Jan 2015 11:02:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rename-a-database-table-without-loosing-its-data/m-p/10882896#M1888348</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-01-08T11:02:10Z</dc:date>
    </item>
    <item>
      <title>Re: Rename a Database Table without loosing its data.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rename-a-database-table-without-loosing-its-data/m-p/10882897#M1888349</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sid is right, you cannot rename the table and contain the table contents with SE14. You need to find a workaround, so copy the data to a temporary table and then insert it to your renamed table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Br,&lt;/P&gt;&lt;P&gt;Tim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Jan 2015 11:17:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rename-a-database-table-without-loosing-its-data/m-p/10882897#M1888349</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-01-08T11:17:46Z</dc:date>
    </item>
    <item>
      <title>Re: Rename a Database Table without loosing its data.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rename-a-database-table-without-loosing-its-data/m-p/10882898#M1888350</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Tim,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank a lot for the reply.&lt;/P&gt;&lt;P&gt;I too think that you and Siddarth are correct, but just wanted to collect expert opinion..!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanking You All..!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Jan 2015 11:28:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rename-a-database-table-without-loosing-its-data/m-p/10882898#M1888350</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-01-08T11:28:58Z</dc:date>
    </item>
  </channel>
</rss>

