1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
#!/bin/csh
#
# ListTables
#
if ($1 == "" || $2 == "" ) then
echo " "
echo Usage: "$0 <DIM|Control> <Database Name>"
echo " "
exit
endif
#
#
if( $1 == "Control" )then
relshow $2 ApplicationEntity
relshow $2 GroupNames
relshow $2 StorageAccess
relshow $2 StorageControl
relshow $2 InstanceTable
relshow $2 FISAccess
relshow $2 PrintServerCFG
relshow $2 VideoImageDest
endif
#
#
#
if( $1 == "DIM" )then
relshow $2 ApplicationEntity
relshow $2 PatientLevel
relshow $2 StudyLevel
relshow $2 SeriesLevel
relshow $2 ImageLevel
relshow $2 InstanceTable
endif
|