Oracle DB: Important System Tables
Some important system tables in Oracle:
Some important system tables in Oracle:
The program below reads xml files from specific directory, extracts a value out of each one of them using XPath expression, puts the value side by side with a substring…
Here is an example of how to automatically increase the log level of a Siebel Component (in this example where SRBroker is used, restart of the component is needed).Create the…
Here is the code: import java.io.*; import com.siebel.data.*; import com.siebel.data.SiebelException; import com.siebel.data.SiebelPropertySet; import com.siebel.data.SiebelService; public class BasicDataBeanTest { public static void contacts_add() { SiebelDataBean m_dataBean = new SiebelDataBean(); //Create Siebel…
What is Ant?Ant is a utility, which helps us deploy on our local Application Server (e.g. Tomcat), for development purposes. Ant saves time for continuous changes and continuous deployments. We…
If our java program runs in an already connected environment, it is not necessary to open a new connection with jdbc.It is just enough to use jdbc:default:connection string. This is…
Please, use eclipse IDE and follow the steps for the following simple web service, which returns the OS name from the server on which it is hosted.Eclipse IDE wizards create…
I had to search a lot and to experiment in order to manage something obviously simple and practical:Leave the shorewall firewall running, but open "holes" from specific IPs e.g. from…
Use the following code:PATH=$PATH:/myprogram/binexport PATH
If you need to print out files recursively in Windows, no need to try to download a special program for this. Open a command prompt and write the following:cd "C:\Program…