How to change Apache Tomcat port XXXX(9080)

0

Category:

How to change the Port on TOMCAT to XXXX(9080).


In the server.xml file; locate the following segment.
Connector port="8080"
By changing this 8080 value of port attribute, server would start listening on new port number.
Connector port="9080"
Save the changed server.xml file and start the Tomcat server


How to execute an SQL script file in SQLPlus?

0

Category: ,

How to execute an SQL script file in SQLPlus?


To execute a script file in SQLPlus, type @ and then the file name.

SQL > @[file]

if your file was called XXX.sql, you'd type the following command at the SQL prompt:

SQL > @script.sql

The above command assumes that the file is in the current directory. (ie: the current directory is usually the directory that you were located in before you launched SQLPlus.)Check the current directory using pw command on linux based systems.

If you need to execute a script file that is not in the current directory, you would type:

SQL > @[path][file]

Example:

SQL > @/oracle/temp/XXX.sql

This command would run a script file called script.sql that was located in the /oracle/temp directory.

Applicaton Xtender to Documentum Migration.

7

Category: , ,

Application Xtender to Documentum Migration

Flow of the program-

1- Connect with AX DB
2- Read table and get all the records.
3- Get docid - than get all the objectid for various pages.
4- Convert the objectids to filesystem path using the formula
5- Make a list of these files and check thier file extension using FileType Class which you can modify.
6- Convert them into PDF if they are tiff or merge them as per the file types.
7- Create the object in Docbase and attach the resulting file in STEP6 to the document and fill the attributes of document by the values which you retrived in STEP 2.

After coding this, you can run it from mulitple computers to make the migration faster and restrict the query result set based on DOCID .

NOTE- You should have access to the file system where AX files are stored as bin. Let me know how it goes.

I hope it helps.


Jar file to be download from internet and use in his code .

itextpdf-5.1.2.jar
jai_codec.jar
jai_core.jar
jai_windows-i586.jar
jmimemagic-0.1.0.jar
mlibwrapper_jai.jar
tika-app-0.9.jar

For source code, please comment on this blog , i will send you the source code.




Happy Migration