Oracle
http://docs.oracle.com/cd/B19306_01/index.htm
JDBC driver for JDK 1.6 (ojdbc6.jar): http://download.oracle.com/otn/utilities_drivers/jdbc/11204/ojdbc6.jar
Maven local repository install
mvn install:install-file -DgroupId=com.oracle -DartifactId=ojdbc6 -Dversion=11.2.0.3 -Dpackaging=jar -Dfile=ojdbc6.jar -DgeneratePom=true
Get schemas in DB
1 SELECT DISTINCT USERNAME FROM DBA_USERS;
Get columns from table
Get indexes from table
http://docs.oracle.com/cd/B19306_01/server.102/b14237/statviews_1069.htm
Get code from stored procedure
Show schema and table
Partinioning
http://www.orafaq.com/wiki/Interval_partitioning
http://docs.oracle.com/cd/E11882_01/server.112/e25523/part_admin005.htm
http://docs.oracle.com/cd/E11882_01/server.112/e25523/part_admin002.htm
Other views:
- DBA_TAB_PARTITIONS
- ALL_TAB_PARTITIONS
- USER_TAB_PARTITIONS
Sequence creation
User and table space creation in Oracle XE
1 -- login with system user
2 create tablespace christs datafile 'c:\christs.dbf' size 100m;
3 create user chris identified by 12345678 default tablespace christs;
4 alter user chris quota unlimited on christs;
5 grant create session to chris;
6 grant create table to chris;
7
8 -- login with user chris
9 create table CHRIS.test ( name varchar(255) ) tablespace chris;
10 insert into CHRIS.test (name) values('Test name 1234');
11
12 -- login with system user
13 -- user alice to just run selects
14 create user alice identified by 12345678 default tablespace christs;
15 grant create session to alice;
16 grant select on CHRIS.test to alice;
17
18 -- login with alice
19 select * from CHRIS.test;
Oracle Database 11g Express Edition
Download from Oracle site
- Run setup.exe
- Next
- Accept
- Next
- c:\oraclexe
- Port TNS 1521
- Port MTS 2030
- Port Http 8081
- Next
- For user sys and system password ********
- Next
- Install
- Finish
Info
- Default SID xe .
- Default JDBC driver JAR ojdbc6.jar .
- JDBC Url jdbc:oracle:thin:@//localhost:1521/XE