Verifying the geodatabase was created in DB2 on z/OS
To verify the success of the geodatabase setup, you can create, query, then delete a test table in the newly created geodatabase using the sdetable command.
Steps:
- Open an MS-DOS prompt.
-
Create a table in the geodatabase using the sdetable command.
sdetable -o create -t verify -d id integer -i sde:db2zos -D <databse_subsystem_name> -u sde
-
Ensure that ArcSDE reports that the table creation was successful, then type the following command to obtain the table information:
sdetable -o describe -t verify -i sde:db2zos -D <databse_subsystem_name> -u sde
-
Delete your test table using the following command:
sdetable -o delete -t verify -i sde:db2zos -D <databse_subsystem_name> -u sde
For all these commands, you will be prompted to provide the password for the sde user.
8/19/2013