Wednesday, September 4, 2019

UiPath link to check product support information; product versions; RPA

Monday, August 19, 2019

Reset admin password on UiPath Orchestrator

Please go to DB and change the encrypted password to a hash value that is already known.

Hash Value : ALWTidnzgaDN04zwfIjlx3ogbXNNer7/QbO9y3Q4LV/MLY+2TaazMLEggpO8/b7/Kg==

Navigate to :
 SQLserver -->UiPath database --> User's table ---> password column--> locate the default tenant admin user password --> paste the above hash value.

Decrypted password would be 890iop

Once you login, request you to please reset the password from the Orchestrator web portal. 

Friday, July 19, 2019

ORA-01704: string literal too long; String to Clob

Use

insert into .. values (to_clob('...') || to_clob('...')..)  or 

update table ..values(to_clob('...') || to_clob('...'))

Wednesday, July 17, 2019

Reset FishAdmin Password; JIRA




https://confluence.atlassian.com/fisheye/how-to-reset-the-administration-page-password-in-fisheye-or-crucible-960155804.html

Update Admin password in config.xml


Wednesday, July 10, 2019

Extract range of lines from file in linux;

Below gets last n lines from log
  • tail -3610000 nohup.out|less > file2.txt&



Below gets range of lines 
  • awk 'NR>=111000 && NR<=151000' file2.txt > file3.txt&