Announcing the Saviynt Knowledge Exchange unifying the Saviynt forums, documentation, training,
and more in a single search tool across platforms. Read the announcement here.

Clear manager field

RCreddy
New Contributor
New Contributor

Hi Team,

Can someone  guide me on how to clear the manager field and owner of a user?

3 REPLIES 3

rushikeshvartak
All-Star
All-Star

update users set manager=null,owner=null where username='admin' limit 1;


Regards,
Rushikesh Vartak
If you find the response useful, kindly consider selecting Accept As Solution and clicking on the kudos button.

sk
All-Star
All-Star

You can upload a csv with Manager and Owner headers included with blank values

"Username","Manager","Owner"
"xxxxx","",""


Regards,
Saathvik
If this reply answered your question, please Accept As Solution and give Kudos to help others facing similar issue.

sk
All-Star
All-Star

I would suggest avoiding sql updates if you can achieve it in other ways.


Regards,
Saathvik
If this reply answered your question, please Accept As Solution and give Kudos to help others facing similar issue.