Search found 6797 matches

by DSguru2B
Thu Dec 28, 2006 1:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fixed width Seq File from Server to Parallel
Replies: 24
Views: 6460

The length of each and every column, specified in the length section of the columns tab in sequential file properties.
by DSguru2B
Thu Dec 28, 2006 11:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Pivot Stage Logic
Replies: 7
Views: 2198

What do you mean by 'all the rows exhausted out'. Do as i advised. That will convert your entire input to your desired output. You need a transformer because you need to add three more columns which will be the column names, which your going to hard code in the transformer. I just tested it out with...
by DSguru2B
Thu Dec 28, 2006 11:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Pivot Stage Logic
Replies: 7
Views: 2198

Guys, thats not a vertical pivot. Thats horizontal pivoting. Thats exactly what the pivot stage does. But you need to tweak the source file a bit. Do this:- Feed your souce file to a transformer where you will add three more columns. Those columns will be hardcoded with the column names. So for the ...
by DSguru2B
Thu Dec 28, 2006 10:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Conversion signed integer
Replies: 3
Views: 930

Thats not an integer, its decimal, or maybe float. Is it in ebcidic format. Is it PicS(9).V99 ???
If its in ebcidic format then you can use the transform DataTypePicS9(). If all you need to do is get the trailing sign and bring it to the front you can do a substring and concatenate it to the front.
by DSguru2B
Thu Dec 28, 2006 9:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: truncate command in ODBC
Replies: 27
Views: 8259

Sure you can. Build the script. Make sure its working from command line. Then provide its fully qualified path in ExecSH. Your done.
by DSguru2B
Thu Dec 28, 2006 9:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to solve this conductor node error
Replies: 2
Views: 1768

Do an exact search on 'No conductor nodes found in export node pool'
by DSguru2B
Thu Dec 28, 2006 9:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Stopping a running job ? (Without Director)
Replies: 11
Views: 2879

I know, just having a little fun :wink:
by DSguru2B
Thu Dec 28, 2006 9:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Stopping a running job ? (Without Director)
Replies: 11
Views: 2879

chulett wrote:No, it just means you killed yourself. :wink:

Craig, your gonna scare the poor fellow. He means, killed it yourself.
by DSguru2B
Thu Dec 28, 2006 9:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: truncate command in ODBC
Replies: 27
Views: 8259

Avoid Delete. It will take for ever. Plus all that logging. Dba will scream too. Make a stored procedure out of it.
by DSguru2B
Thu Dec 28, 2006 8:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Stopping a running job ? (Without Director)
Replies: 11
Views: 2879

As i suspected. Now give your dba a call and ask him if there are any alive threads from your id, or whatever id is accessing the database. If he says yes then they must be hung. Ask him to kill it at the database level. This will cause your job to abort. Never stop a job that is accessing a databas...
by DSguru2B
Thu Dec 28, 2006 8:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: truncate command in ODBC
Replies: 27
Views: 8259

I see a space before the trailing semicolon. Is that the case even in the your actual job ???
by DSguru2B
Thu Dec 28, 2006 8:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Stopping a running job ? (Without Director)
Replies: 11
Views: 2879

What is the job doing. Is it accessing a database. Give a call to your dba and ask him to kill the thread that was generated by that id. Some jobs can be a pain when it comes to stopping them. OR maybe it stopped and the status is not updated. How do you know its still running ???
by DSguru2B
Thu Dec 28, 2006 8:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dos to unix on Linux environment
Replies: 18
Views: 5914

You can mark it resolved then.
by DSguru2B
Thu Dec 28, 2006 8:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Running Stored Procedure in Oracle Enterprise Stage
Replies: 10
Views: 3775

I did a quick search and you were using the correct syntax. Forget the exec and lets put call back. So now your OPEN statement should be call schemaname.storedprocedurename(). Try getting rid of the trailing semicolon. If that doesnt work get your dba involved, ask him to monitor if the stored proce...
by DSguru2B
Thu Dec 28, 2006 8:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unexpected token error in Db2 OS390 Platform
Replies: 5
Views: 1961

ray.wurlod wrote:The space is for the sign. For example, -3.3 and +3.5 are valid decimal numbers, as is 3.2.

Many people are unaware of this fact. Maybe someone should put up a FAQ for this.