Created
October 6, 2016 16:24
-
-
Save dotmaik1/cef762ef85673e402fd123e2d80eff4e to your computer and use it in GitHub Desktop.
Script de la marica
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| dba_users; antes en 10g se podian ver los passwords en esa vista. | |
| SQL> select name, password from sys.user$ where name like 'LWTSADM1'; | |
| lwtsadm1 | |
| NAME PASSWORD | |
| ------------------------------ ------------------------------ | |
| SYS 8A8F025737A9097A | |
| SQL> alter user sys identified by password; | |
| alter user O2C_OWNER identified by password; | |
| User altered. | |
| SQL> connect sys as sysdba | |
| Enter password: | |
| Connected. | |
| SQL> | |
| SQL> alter user sys identified by values'8A8F025737A9097A'; | |
| User altered. | |
| SQL> connect sys as sysdba | |
| Enter password: | |
| Connected. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment