To configure a data source with wsadmin, follow these steps:
On the CL command line, run the STRQSH (Start Qshell) command.
Run the cd command to change to the directory that contains the wsadmin tool:
cd /QIBM/ProdData/WebASE/ASE5/bin
At the wsadmin prompt, run this command to identify the parent ID:
set newjdbc [$AdminConfig getid /Cell:myCell/Node:myNode/ Server:myAppSvr/JDBCProvider:JDBC1/]
where myCell is the name of the cell that contains your application server, myNode is the name of the node that contains your application server, myAppSvr is the name of your application server, and JDBC1 is the name of your JDBC provider.
Note: This command has been wrapped for display purposes.
Run this command to display the required attributes for a data source:
$AdminConfig required DataSource
The command displays this output:
Attribute Type name String
Run these commands to set the required attributes:
set name [list name DS1] set dsAttrs [list $name]
where DS1 is the name of the data source that you want to create.
Run this command to create a data source:
set newds [$AdminConfig create DataSource $newjdbc $dsAttrs]
Run this command to save your changes:
$AdminConfig save