Is it possible to change the object type of users?
CHANGE dm_user OBJECT TO my_user WHERE r_object_id = '{some id}'
Given that my_user
is a subtype of dm_user
, the query above results in the following error message:
[DM_QUERY_E_CHANGE_NON_SYSOBJECT]error: "The CHANGE OBJECT statement can only be used on dm_sysobject or its subtypes."
So even though it is seemingly impossible, is there a way to hack this?