Skip to content

Instantly share code, notes, and snippets.

@dotmaik1
Created October 6, 2016 16:24
Show Gist options
  • Select an option

  • Save dotmaik1/cef762ef85673e402fd123e2d80eff4e to your computer and use it in GitHub Desktop.

Select an option

Save dotmaik1/cef762ef85673e402fd123e2d80eff4e to your computer and use it in GitHub Desktop.
Script de la marica
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