Search found 4992 matches
- Tue Nov 08, 2005 12:07 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to increase default 2gb for Hashed files.
- Replies: 2
- Views: 976
- Tue Nov 08, 2005 12:04 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DSExecute and cd on unix
- Replies: 9
- Views: 2346
- Tue Nov 08, 2005 11:58 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DSExecute and cd on unix
- Replies: 9
- Views: 2346
Instead of: cd /here/there/everywhere/scripts ./runmyscript.ksh You should just do /here/there/everywhere/scripts/runmyscript.ksh You should write scripts that can be executed from anywhere and have enough logic to handle not requiring a directory change. Beginner programmers do this, rather than fu...
- Tue Nov 08, 2005 11:55 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Forcefully disconnect a user/kill a process?
- Replies: 2
- Views: 1118
Whack them. If the Client session is disconnected, then do a kill -15 else kill -9. You should do this regularly, because this problem has always existed with the product. Sometimes when viewing data the user kills the Designer rather than wait for that activity to finish. Those processes go nuts on...
- Tue Nov 08, 2005 11:26 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Sql Server error
- Replies: 19
- Views: 5830
Hence the bind issue, trying to stuff one datatype into a non-supported value for the driver. Well, sometimes the last shot is the one that works. We knew the SQL was the issue, just the datatypes when the connection is made and the SQL prepared was the issue. Don't worry about the datatype inconsis...
- Tue Nov 08, 2005 11:12 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: job doesn't end
- Replies: 3
- Views: 885
How do you know the problem is with the command stage? Are there other stages within this job doing things at the same time? If the job simply creates a directory at the opportune moment, why not use a Sequencer job to do the same thing rather than "gimmick" a row to trigger the command stage? How a...
- Tue Nov 08, 2005 10:48 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DSExecute and cd on unix
- Replies: 9
- Views: 2346
- Tue Nov 08, 2005 9:47 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Log Creation while Importing Jobs.
- Replies: 5
- Views: 1582
There's two opinions as to what the original poster asked, and has subsequently failed to clarify: 1. log of the import action in the GUI client or 2. logfiles of the job designs. 1. There's no client-side log create during import to reflect failed jobs on import, unless you consider that dialog box...
- Tue Nov 08, 2005 9:09 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Columns to Rows
- Replies: 6
- Views: 1611
How about some really simple SQL:
Code: Select all
SELECT NBR,
SEQ,
max(case when EVNT_CD=3800 then EVNT_EFCTV_DT else NULL end) "EVNT_EFCTV_DT_3800",
max(case when EVNT_CD=6000 then EVNT_EFCTV_DT else NULL end) "EVNT_EFCTV_DT_6000"
from Kav group by SEQ,NBR - Tue Nov 08, 2005 8:00 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Sql Server error
- Replies: 19
- Views: 5830
- Tue Nov 08, 2005 7:47 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Sql Server error
- Replies: 19
- Views: 5830
- Tue Nov 08, 2005 7:38 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Sql Server error
- Replies: 19
- Views: 5830
- Tue Nov 08, 2005 7:19 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Sql Server error
- Replies: 19
- Views: 5830
- Tue Nov 08, 2005 6:54 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Commandline running-dsjobs
- Replies: 2
- Views: 960
- Mon Nov 07, 2005 11:48 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to dynamically name a file
- Replies: 5
- Views: 1456