IDEMPIERE-1052 Improve Performance using Search instead of Table/Table Direct / AD_ChangeLog.AD_Column_ID

This commit is contained in:
Carlos Ruiz 2017-10-31 17:20:57 +01:00
parent 43300bdfc2
commit f5b85983cd
2 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,11 @@
SET SQLBLANKLINES ON
SET DEFINE OFF
-- IDEMPIERE-1052 Improve Performance using Search instead of Table/Table Direct
-- Oct 31, 2017 5:15:03 PM CET
UPDATE AD_Column SET AD_Reference_ID=30, IsUpdateable='N', FKConstraintType=NULL,Updated=TO_DATE('2017-10-31 17:15:03','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=8814
;
SELECT register_migration_script('201710311719_IDEMPIERE-1052.sql') FROM dual
;

View File

@ -0,0 +1,8 @@
-- IDEMPIERE-1052 Improve Performance using Search instead of Table/Table Direct
-- Oct 31, 2017 5:15:03 PM CET
UPDATE AD_Column SET AD_Reference_ID=30, IsUpdateable='N', FKConstraintType=NULL,Updated=TO_TIMESTAMP('2017-10-31 17:15:03','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=8814
;
SELECT register_migration_script('201710311719_IDEMPIERE-1052.sql') FROM dual
;