Skip to content

Instantly share code, notes, and snippets.

@starwilly
starwilly / course5.md
Last active February 7, 2017 11:34
eshop - Course 5
@starwilly
starwilly / gist:2317511
Created April 6, 2012 06:12
[Oracle] Get the DDL of Object
SELECT dbms_metadata.get_ddl('OBJECT_TYPE','OBJECT_NAME','SCHEME_OWNER') from dual;
/*
Note
---
OBJECT_TYPE : TABLE, INDEX, TRIGGER...
*/
@starwilly
starwilly / oracle_user_password.sql
Created March 27, 2012 05:22
Change a user's password in Oracle
alter user user_name identified by new_password;