istool error: Unable to log on to the Datastage server

A forum for discussing DataStage<sup>®</sup> basics. If you're not sure where your question goes, start here.

Moderators: chulett, rschirm, roy

Post Reply
knoblaub
Premium Member
Premium Member
Posts: 10
Joined: Thu Aug 12, 2010 11:24 am

istool error: Unable to log on to the Datastage server

Post by knoblaub »

We are currently tryig to import usng istol via the commandlne interface. The belw error is being thrown. We've veified the user and password are correct for Infomration Server by logging in using the client tool.

/opt/IBM/InformationServer/Clients/istools/cli/istool export -dom SERVER:9080 -u ***** -p ***** -ar arc.isx -ds ' -incdep "SERVER:9080/Tutorial/Tutorial/Jobs/Copy*.*"' -v

Beginning Export
[1/1] SERVER:9080/Tutorial/Tutorial/Jobs/CopyOfViewLogFile.pjb failed
Unable to log on to the Datastage server: CORBA TRANSACTION_ROLLEDBACK 0x0 No; nested exception is:
org.omg.CORBA.TRANSACTION_ROLLEDBACK: javax.transaction.TransactionRolledbackException: ; nested exception is:
java.lang.OutOfMemoryError: JVMXE006:OutOfMemoryError, stAllocArray for executeJava failed vmcid: 0x0 minor code: 0 completed: No
Elapsed time: 00:01:06
Exported 0 assets
Export failed
Export failed
3
chulett
Charter Member
Charter Member
Posts: 43085
Joined: Tue Nov 12, 2002 4:34 pm
Location: Denver, CO

Post by chulett »

I believe that you'll need to add the -d domain_name option to your command line.
-craig

"You can never have too many knives" -- Logan Nine Fingers
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

I believe that you'll need to add the -h server_name option to your command line.
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
chulett
Charter Member
Charter Member
Posts: 43085
Joined: Tue Nov 12, 2002 4:34 pm
Location: Denver, CO

Post by chulett »

Ah... missed the -dom that was already there... sheesh.
-craig

"You can never have too many knives" -- Logan Nine Fingers
knoblaub
Premium Member
Premium Member
Posts: 10
Joined: Thu Aug 12, 2010 11:24 am

Post by knoblaub »

-h sever_nme is not an option for istool export.

When I add the "-pre" to preview, eveything works just fine. I'm stumped.

$ /opt/IBM/InformationServer/Clients/istools/cli/istool export -dom SERVER:9080 -u ***** -p ***** -ar arc.isx -ds ''-incdep "SERVER:9080/Tutorial/Tutorial/Jobs/Copy*.*"' -v -pre

Beginning Export Preview
[1/1] EIS0STL0:9080/Tutorial/Tutorial/Jobs/CopyOfViewLogFile.pjb
Previewed 1 assets
ArndW
Participant
Posts: 16318
Joined: Tue Nov 16, 2004 9:08 am
Location: Germany
Contact:

Post by ArndW »

Would the following work for you:

/opt/IBM/InformationServer/Clients/istools/cli/istool export -dom SERVER:9080 -u ***** -p ***** -ar arc.isx -ds ''-incdep "SERVER/Tutorial/Tutorial/Jobs/Copy*.*"' -v
knoblaub
Premium Member
Premium Member
Posts: 10
Joined: Thu Aug 12, 2010 11:24 am

Post by knoblaub »

Finally got it to work, had to not specifiy PORT in -ds options.

/opt/IBM/InformationServer/Clients/istools/cli/istool export -dom SERVER:9080 -u ***** -p ***** -ar arc.isx -ds '-incdep "SERVER/Tutorial/Tutorial/Jobs/Copy*.*"' -v
ArndW
Participant
Posts: 16318
Joined: Tue Nov 16, 2004 9:08 am
Location: Germany
Contact:

Post by ArndW »

knoblaub - I'm curious as to how that is different from the answer that I gave you, since that is exactly what I posted?

Regardless, please do mark the thread as "resolved".
knoblaub
Premium Member
Premium Member
Posts: 10
Joined: Thu Aug 12, 2010 11:24 am

Post by knoblaub »

must have entering our posts at the same time... your solution was correct.
Post Reply