legacy-knowledge-base
公開されました Sep. 10, 2025

UserTrackPath テーブルのデータを切り捨てる Groovy スクリプト

written-by

Ankit Gupta

How To articles are not official guidelines or officially supported documentation. They are community-contributed content and may not always reflect the latest updates to Liferay DXP. We welcome your feedback to improve How To articles!

While we make every effort to ensure this Knowledge Base is accurate, it may not always reflect the most recent updates or official guidelines.We appreciate your understanding and encourage you to reach out with any feedback or concerns.

legacy-article

learn-legacy-article-disclaimer-text

問題

  • UserTrackPath テーブルのデータを切り捨てたい場合

Environment

  • Liferay DXP 7.2

解決策

  • 以下は、UserTrackPath テーブルからのデータを切り捨てるのに役立つ可能性がある Groovy スクリプトです。
import java.sql.Connection;
import java.sql.SQLException;
import java.sql.Statement;
import com.liferay.portal.kernel.dao.jdbc.DataAccess;Connection con = null;
Statement st = null;def query = "truncate table usertrackerpath";try {
con = DataAccess.getUpgradeOptimizedConnection();
st = con.createStatement();
int rs = st.executeUpdate(query);
}
finally {
DataAccess.cleanUp(con, st);
}

追加情報

did-this-article-resolve-your-issue

legacy-knowledge-base