Page 1 of 1

problem running the DSJOB command from a remote server

Posted: Wed Oct 10, 2012 4:43 pm
by JPalatianos
Hi,
We are attempting to run the DSJOB command from one server kicking off
a job on another. For example I run this command from our QA server and we get to run a job as expected:
D:\IBM\InformationServer\Server\DSEngine\bin>dsJob.exe -domain
NJROS1BBLA0681:9080 -server NJROS1BBLA0681 -user PR-PPRISMS -password
######## -run -warn 10000 DBProject Seq_PRISMS_Main.testing
Status code = 0
We have a problem executing the same on the same server for our Contingency server and cannot figure out the difference We are running the DSJOB command from the same server and as you see the above command is pointing to our NJ (Prod server) and the one below is pointing to our PA (Contingency
Server)

D:\IBM\InformationServer\Server\DSEngine\bin>dsJob.exe -domain
PAERSCBBLA0681:9080 -server PAERSCBBLA0681 -user PR-PPRISMS -password
######## -run -warn 10000 DBProject Seq_PRISMS_Main.testing
ERROR: Failed to open project
Status code = -1002

Thanks - - John

Posted: Wed Oct 10, 2012 5:29 pm
by ray.wurlod
Start with something simple. Can you use -lprojects remotely?

Posted: Wed Oct 10, 2012 6:14 pm
by JPalatianos
Hi Ray,
That command seems to work fine remotely:
dsJob.exe -domain PAERSCBBLA0681:9080 -server PAERSCBBLA0681 -user PR-PPRISMS -password ######### -lprojects
AAC
AB
ALM
BrokerageServices
CFF
CLR_ODS_DLY
CRM
CTR
CostFoundation
DBproject
ERF
FORM5500
GPVAL
Genio
GoalMaker
IDA
MyFirstProject
PPR
PRS
PR_DBgroup
RLDM_PSDW
TPODS
VOBA
iHub

Status code = 0

Posted: Wed Oct 10, 2012 6:24 pm
by ray.wurlod
Aha!

Project names are case sensitive. Your failed request specified DBProject when it should have specified DBproject.

Posted: Wed Oct 10, 2012 6:31 pm
by JPalatianos
Thank You! Looks like the app team had the Prod project created as DBProject and in the DR box as DBproject

Thanks again!!