Search found 15603 matches

by ArndW
Mon Jun 22, 2009 9:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ODBC is not installed on the system
Replies: 23
Views: 7230

Ok, then please post your additions to the odbc.ini and uvodbic.ini files, perhaps the problem lies there.
by ArndW
Mon Jun 22, 2009 9:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: MQS.DLL FAILED TO LOAD
Replies: 7
Views: 4741

Look at the log file of your job and see if the ENVironment variables are actually set correctly during runtime for that job.
by ArndW
Mon Jun 22, 2009 9:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Read lookup file into memory using basic routine
Replies: 15
Views: 4431

One cannot read a COMMON block, and doing it line-by-line doesn't make sense. Did you try to run the routine I posted? What doesn't work, it explains both COMMON block usage and also solves your problem.
by ArndW
Mon Jun 22, 2009 9:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ODBC is not installed on the system
Replies: 23
Views: 7230

I know about the DS_CONNECT, but I wanted to ask you to try the "CONNECT" command. I expect that the "CONNECT" command will fail, but I would like to see the error message that is generated.
by ArndW
Mon Jun 22, 2009 9:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ODBC is not installed on the system
Replies: 23
Views: 7230

Sorry, I assumed you would understand what I meant. Here are the commands to execute
  • cd `cat /.dshome`
    . ./dsenv
    dssh
    LOGTO {YourProjectName}
    CONNECT {YourDSNName}
    QUIT
    QUIT
by ArndW
Mon Jun 22, 2009 8:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: not able to create new project
Replies: 27
Views: 8187

Make a backup (better yet 2 backups) before trying to add the "-fix" option to the fixtool command. It doesn't look promising, though and the fix might truncate your UV_SCHEMA file and the system might be corrupted enough to not work any more and require a complete re-install (worst case, ...
by ArndW
Mon Jun 22, 2009 7:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ODBC is not installed on the system
Replies: 23
Views: 7230

go to TCL in your project, and try to "CONNECT {YourDataSourceName}". What happens?
by ArndW
Mon Jun 22, 2009 7:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need Help_ My jobs aborted in the middle of loading
Replies: 9
Views: 1966

Other options are to declare the whole load as one transaction, or to use UPSERT functionality.
by ArndW
Mon Jun 22, 2009 7:30 am
Forum: General
Topic: Schema file implentation
Replies: 3
Views: 1101

Amit, Welcome to DSXchange! The answer to your question is "yes, there are people here could do that". But you probably won't get anyone to do this since the documentation explains it sufficiently and the question is very broad. If you read the docs and try to do something and then have pr...
by ArndW
Mon Jun 22, 2009 7:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: WHEN WE USE THE FOLLOWING STAGES DATSET ,FILESET AND SEQUENT
Replies: 4
Views: 1251

There is also the lookup fileset, which is similar to a dataset.
by ArndW
Mon Jun 22, 2009 7:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Getting Number of Columns of Hashed File
Replies: 5
Views: 1434

DataStage hashed files have only 1 key column. Your 3 keys are actually just one dynamic array string in CurrID that contains some separator character; thus the 2 column result returned by your DCOUNT() is correct.
by ArndW
Mon Jun 22, 2009 4:59 am
Forum: IBM<sup>®</sup> DataStage TX
Topic: Configuration parellel
Replies: 7
Views: 4053

7.5.2r2
by ArndW
Mon Jun 22, 2009 4:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Identify the server version
Replies: 3
Views: 883

From UNIX, look into $DSHOME/../../Version.xml
by ArndW
Mon Jun 22, 2009 3:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Read lookup file into memory using basic routine
Replies: 15
Views: 4431

Ok, here goes. I just wrote the code, but there are probably some syntactical errors as I don't have access to DataStage at the moment, but the general structure is there: EQUATE RoutineName TO "MyRoutine" COMMON/MyProgramCommon/Initialized,KeyArray,ValueArray IF NOT(Initialized) THEN OPEN...
by ArndW
Mon Jun 22, 2009 1:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Read lookup file into memory using basic routine
Replies: 15
Views: 4431

You need to use a COMMON block. What are your input arguments and what value do you return to the calling program?