Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

« Newer Snippets
Older Snippets »
Showing 11-13 of 13 total

Oracle Loader usage

Always forgetting how to import data in LDR format to oracle database. Here is how:

sqlldr username/password@host/schema control=loader.ctl

Change password in Oracle

From OraFAQ

ALTER USER <username> IDENTIFIED BY <new_password>;

Search for column names in an Oracle DB

select table_name, column_name from all_tab_columns where column_name like '%X%'


...where "X" is the column name I'm looking for
« Newer Snippets
Older Snippets »
Showing 11-13 of 13 total