1. Download Derby bin distribution from here.
2. Extract it.
3. Set DERBY_HOME and add it to the path.
vi ~/.bashrc
Add as below;
export DERBY_HOME=/opt/software/db-derby-10.3.1.4-bin
export PATH=$PATH:$DERBY_HOME/bin
Then source bashrc
source ~/.bashrc
4. Run $DERBY_HOME/bin/startNetworkServer.sh
sh startNetworkServer
5. To use ij tool;
set DERBY_OPTS=-Dij.protocol=jdbc:derby://localhost/
Then type ij on the prompt to get the ij tool, where u can type in commands.
A place where I keep a note of simple but useful technical tips and memorable posts....
Showing posts with label derby. Show all posts
Showing posts with label derby. Show all posts
Thursday, July 1, 2010
Subscribe to:
Posts (Atom)
-
Got to know this is how command line looping is used: while [ 1 ] do ls -al ; sleep 60 done Applying this to stress command...
-
Here are steps: Open the file you need to edit :sp /path/to/the/file/... and open the file that you need to copy from (this will split...
