Search found 15603 matches

by ArndW
Wed Oct 01, 2008 3:54 am
Forum: General
Topic: Folder is locked by dsadm
Replies: 5
Views: 1184

If you make sure that you have closed all sessions with your user and the explorer shows active sessions with your user id then you have identified the culprit and can stop that dead session in the explorer.
by ArndW
Wed Oct 01, 2008 3:54 am
Forum: General
Topic: Folder is locked by dsadm
Replies: 5
Views: 1184

If you make sure that you have closed all sessions with your user and the explorer shows active sessions with your user id then you have identified the culprit and can stop that dead session in teh explorer.
by ArndW
Wed Oct 01, 2008 3:53 am
Forum: General
Topic: Environment Variables versus Hard Coded values
Replies: 12
Views: 4349

wellison - I didn't ask that the job gets changed permanently, just make a copy and change the datatype to see if this is the root cause of your problems.
by ArndW
Wed Oct 01, 2008 3:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Invalid Character warnig
Replies: 3
Views: 1521

Since timestamp are not string types and don't get converted, I would guess that this error occurs in your source stage reading StartTime from the file and then trying to convert it to a timestamp.
by ArndW
Tue Sep 30, 2008 9:09 am
Forum: General
Topic: Environment Variables versus Hard Coded values
Replies: 12
Views: 4349

try a test with the password being a string and not an encrypted parameter, does the error go away or stay?
by ArndW
Tue Sep 30, 2008 9:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Remove duplicates using Transformer Stage
Replies: 4
Views: 6027

If the data is sorted and partitioned on the column with the duplicates, then use two stage variables, "IsDup" and "LastValue" derived via "IF In.ColumnName=LastValue THEN 1 ELSE 0" and "In.ColumnName" respectively, the constraint would be "IsDup=0" to only pass on non-duplicate rows.
by ArndW
Tue Sep 30, 2008 9:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to handle the below reuirement
Replies: 1
Views: 1012

Sort your data on Column A, then use stage variables and constraints in a transform stage along the following format: NewCol = IF(In.ColumnA=LastColumnA) THEN 1 ELSE 0 OutColumnA = IF NewCol=1 THEN LastColumnA ELSE '' LastColumnA = In.ColumnA OutList = IF NewCol=1 THEN ListString ELSE '' Lis...
by ArndW
Tue Sep 30, 2008 8:48 am
Forum: General
Topic: Environment Variables versus Hard Coded values
Replies: 12
Views: 4349

With which error message does the job fail?
by ArndW
Tue Sep 30, 2008 7:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Password Problems in shell script
Replies: 4
Views: 1181

are the "<" and ">" characters coming as part of the encrypted values? Then you could just quote the string when passing it to the shell script. You will not be able to un-encrypt those values into cleartext, though.
by ArndW
Tue Sep 30, 2008 6:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Load failure
Replies: 1
Views: 970

Make a copy of the job, put in a transform stage whose output does not have RCP and remove a number of columns. Does the same error occur at the same location? Or dump rows 169670 onwards into a peek stage or sequential file and see if you can spot a possible cause in the data. These are just two ap...
by ArndW
Tue Sep 30, 2008 6:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Getting date -1 value
Replies: 2
Views: 1008

Your input parameter date is a string. In a transform stage, preferably in the stage variables, convert the string to a date. Then apply the DateFromDaysSince() function to the date and use that in the transform. If you use the "initial value" for the stage variables then they will only be computed ...
by ArndW
Tue Sep 30, 2008 3:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ROWID in oracle not working
Replies: 6
Views: 1955

I don't see a quoted string problem, but it seems that you use "column_name1" and "col1" - are these legal column names?
by ArndW
Tue Sep 30, 2008 3:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Email with attachment v7.0
Replies: 4
Views: 1461

DataStage has mail sending capability within the email activity stage. DataStage will use the UNIX sendmail interface, so the question of attachments is just a matter of finding out how to do it with sendmail and then implementing that in a DataStage call. If you add some specifics to your question ...
by ArndW
Mon Sep 29, 2008 11:14 am
Forum: General
Topic: Folder is locked by dsadm
Replies: 5
Views: 1184

Go into the IS Admin explorer tool (http://YourServer:9080) and remove the dead session, then try again.
by ArndW
Mon Sep 29, 2008 9:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: materializing environment variables in a datastage job
Replies: 6
Views: 2460

I'm not at a workstation where I can test this now, but if you cannot use the user-defined variables directly, then you declare them as part of your job parameters, call them with a value of "$PROJDEF" and use them in the transform stage.