Oracle

To change a user’s password, including your own: alter user THEUSERNAME identified by “NEWPASSWORD“;

For a list of tables with a specific column name, you can query the DBA_TAB_COLUMNS table: select table_name from dba_tab_columns where column_name=’MY_COLUMN_NAME’ order by table_name asc; This is helpful for […]