<?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: How to delete all act tables data that is configured with Oracle. in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/how-to-delete-all-act-tables-data-that-is-configured-with-oracle/m-p/171381#M124626</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Programmatically, you could query *all* deployments, loop over them and delete them setting the 'cascade' option to true. That would effectively remove all data in your db.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 05 Dec 2013 09:25:59 GMT</pubDate>
    <dc:creator>jbarrez</dc:creator>
    <dc:date>2013-12-05T09:25:59Z</dc:date>
    <item>
      <title>How to delete all act tables data that is configured with Oracle.</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/how-to-delete-all-act-tables-data-that-is-configured-with-oracle/m-p/171378#M124623</link>
      <description>Hi, I have configured my Activiti with Oracle DB. I have tested this table performing few activiti implementations that populated act tables.I want to delete all the data persisting in ACT tables. Deleting the child references then parent is troublesome. Is there some existing DML script that I can</description>
      <pubDate>Tue, 03 Dec 2013 08:32:10 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/how-to-delete-all-act-tables-data-that-is-configured-with-oracle/m-p/171378#M124623</guid>
      <dc:creator>monika_b</dc:creator>
      <dc:date>2013-12-03T08:32:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to delete all act tables data that is configured with Oracle.</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/how-to-delete-all-act-tables-data-that-is-configured-with-oracle/m-p/171379#M124624</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Monika.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;to drop tables you can use:&lt;/SPAN&gt;&lt;BR /&gt;&lt;CODE&gt;&lt;BR /&gt;drop table ACT_GE_PROPERTY cascade constraints;&lt;BR /&gt;drop table ACT_RU_VARIABLE cascade constraints;&lt;BR /&gt;drop table ACT_GE_BYTEARRAY cascade constraints;&lt;BR /&gt;drop table ACT_RE_DEPLOYMENT cascade constraints;&lt;BR /&gt;drop table ACT_RU_IDENTITYLINK cascade constraints;&lt;BR /&gt;drop table ACT_RU_TASK cascade constraints;&lt;BR /&gt;drop table ACT_RE_PROCDEF cascade constraints;&lt;BR /&gt;drop table ACT_RU_EXECUTION cascade constraints;&lt;BR /&gt;drop table ACT_ID_MEMBERSHIP cascade constraints;&lt;BR /&gt;drop table ACT_ID_GROUP cascade constraints;&lt;BR /&gt;drop table ACT_ID_USER cascade constraints;&lt;BR /&gt;drop table ACT_ID_INFO cascade constraints;&lt;BR /&gt;drop table ACT_RU_JOB cascade constraints;&lt;BR /&gt;drop table ACT_HI_PROCINST cascade constraints;&lt;BR /&gt;drop table ACT_HI_ACTINST cascade constraints;&lt;BR /&gt;drop table ACT_HI_TASKINST cascade constraints;&lt;BR /&gt;drop table ACT_HI_DETAIL cascade constraints;&lt;BR /&gt;drop table ACT_HI_COMMENT cascade constraints;&lt;BR /&gt;drop table ACT_HI_ATTACHMENT cascade constraints;&lt;BR /&gt;drop table ACT_RU_EVENT_SUBSCR cascade constraints;&lt;BR /&gt;&lt;/CODE&gt;&lt;SPAN&gt;in the qa module&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Martin&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Dec 2013 07:20:38 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/how-to-delete-all-act-tables-data-that-is-configured-with-oracle/m-p/171379#M124624</guid>
      <dc:creator>martin_grofcik</dc:creator>
      <dc:date>2013-12-04T07:20:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to delete all act tables data that is configured with Oracle.</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/how-to-delete-all-act-tables-data-that-is-configured-with-oracle/m-p/171380#M124625</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks Martin. This is a very useful script. But still actually I required the script to clean up activiti data preserving the tables. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Though: I got deleted one by one already checking child constraint eachtime. Still a script will be very useful.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Dec 2013 09:02:21 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/how-to-delete-all-act-tables-data-that-is-configured-with-oracle/m-p/171380#M124625</guid>
      <dc:creator>monika_b</dc:creator>
      <dc:date>2013-12-04T09:02:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to delete all act tables data that is configured with Oracle.</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/how-to-delete-all-act-tables-data-that-is-configured-with-oracle/m-p/171381#M124626</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Programmatically, you could query *all* deployments, loop over them and delete them setting the 'cascade' option to true. That would effectively remove all data in your db.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Dec 2013 09:25:59 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/how-to-delete-all-act-tables-data-that-is-configured-with-oracle/m-p/171381#M124626</guid>
      <dc:creator>jbarrez</dc:creator>
      <dc:date>2013-12-05T09:25:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to delete all act tables data that is configured with Oracle.</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/how-to-delete-all-act-tables-data-that-is-configured-with-oracle/m-p/171382#M124627</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks jbarrez. Would use this logic when require in future.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Dec 2013 08:56:11 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/how-to-delete-all-act-tables-data-that-is-configured-with-oracle/m-p/171382#M124627</guid>
      <dc:creator>monika_b</dc:creator>
      <dc:date>2013-12-06T08:56:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to delete all act tables data that is configured with Oracle.</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/how-to-delete-all-act-tables-data-that-is-configured-with-oracle/m-p/171383#M124628</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;No, no sql script. The engine can do it for you though.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Feb 2016 08:49:02 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/how-to-delete-all-act-tables-data-that-is-configured-with-oracle/m-p/171383#M124628</guid>
      <dc:creator>jbarrez</dc:creator>
      <dc:date>2016-02-11T08:49:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to delete all act tables data that is configured with Oracle.</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/how-to-delete-all-act-tables-data-that-is-configured-with-oracle/m-p/171384#M124629</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Deleting the child references then parent is troublesome. Is there some existing DML script that I can use for clean up of activiti tables????&amp;nbsp; &lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Feb 2016 07:31:40 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/how-to-delete-all-act-tables-data-that-is-configured-with-oracle/m-p/171384#M124629</guid>
      <dc:creator>karrahahu1</dc:creator>
      <dc:date>2016-02-16T07:31:40Z</dc:date>
    </item>
  </channel>
</rss>

