[ 1869844 ] CLIENT_ID not ReadOnly any more ?!?
Info from Tobi42 Tobias Schöneberg) taken from Buildserver. Minor change for Postgres because IN types character and integer cannot be matched. Please review for Oracle migration Script.
This commit is contained in:
parent
887c26e8b6
commit
c426361cbe
|
@ -5,5 +5,6 @@ SELECT ad_column_id
|
|||
FROM AD_TABLE t, AD_COLUMN c
|
||||
WHERE t.ad_table_id = c.ad_table_id
|
||||
AND columnname = 'AD_Client_ID'
|
||||
AND t.accesslevel IN (1, 2, 3)
|
||||
AND c.ad_val_rule_id IS NULL);
|
||||
AND t.accesslevel IN ('1', '2', '3')
|
||||
AND c.ad_val_rule_id IS NULL)
|
||||
;
|
||||
|
|
Loading…
Reference in New Issue