Missing index on AD_UserDef sub tables

Activity

Show:

Nicolas Micoud October 5, 2021 at 3:09 PM
Edited

Here’s the sql I used to track duplicates records:

SELECT f.AD_Client_ID, win.Name AS OrigWindow, tab.Name AS OrigTab, w.Name AS custom_windowname, t.Name AS custom_tabname, f.AD_Field_ID AS custom_field_id, ft.Name, count()
FROM AD_UserDef_Field f, AD_UserDef_Tab t, AD_UserDef_Win w, AD_Window win, AD_Tab tab, AD_Field_Trl ft
WHERE w.AD_Window_ID = win.AD_Window_ID
AND w.AD_UserDef_Win_ID = t.AD_UserDef_Win_ID
AND t.AD_UserDef_Tab_ID = f.AD_UserDef_Tab_ID
AND t.AD_Tab_ID = tab.AD_Tab_ID
AND ft.AD_Field_ID = f.AD_Field_ID
AND ft.AD_Language='fr_FR'
HAVING COUNT() > 1
GROUP BY f.AD_Client_ID, f.AD_UserDef_Tab_ID, f.AD_Field_ID, w.Name, t.Name, win.Name, tab.Name, ft.Name;

Fixed

Details

Assignee

Reporter

Fix versions

Priority

Created October 5, 2021 at 12:19 PM
Updated December 1, 2021 at 5:27 PM
Resolved October 6, 2021 at 3:46 PM

Flag notifications