Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

upload Java through SQLplus

Status
Not open for further replies.

MickTheBelgian

Programmer
Jan 11, 2001
160
DK
Hi, I would like to program regular expressions in java. Doc sais I need to upload them using "loadjava", but the problem is I don't have a shell account on the server. Can it be done through SQLplus?
 
Hi

You can do this using command prompt.

Step1: Place ur the java objects to a folder say c:\folder1 in your local m/c
Step2: Login into CMD prompt
Step3: Switch the directory where the java objects reside.
Step4: Execute the following commands with appropriate database connect string

loadjava -user username/password@databasename objectname.java -r (this command creates the compiled version of ur java file)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top