Wednesday, September 4, 2019
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.
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.
Thursday, August 1, 2019
Restful Webservice in ADF 12.1.3
https://docs.oracle.com/cd/E18941_01/tutorials/jdtut_11r2_53/jdtut_11r2_53.html
https://youtu.be/1ujo8c-2UTo
https://youtu.be/1ujo8c-2UTo
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('...'))
insert into .. values (to_clob('...') || to_clob('...')..) or
update table ..values(to_clob('...') || to_clob('...'))
Thursday, July 18, 2019
Wednesday, July 17, 2019
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&
Subscribe to:
Posts (Atom)

