Search found 76 matches

by agathaeleanor
Tue May 24, 2011 7:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Stored proc called from dstag doesn't generate rows of data
Replies: 4
Views: 2250

Thanks Craig for your response. The job design with a single STP stage. While the stored procedure defined insert into <table>.
by agathaeleanor
Tue May 24, 2011 3:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Stored proc called from dstag doesn't generate rows of data
Replies: 4
Views: 2250

Stored proc called from dstag doesn't generate rows of data

Hi All, I have a stored proc running fine in sqlplus but not when called from datastage. Stored proc defined as 'Transform'. I ran the stored proc in sqlplus which inserted approximately 700 rows. However, when the stored proc calls from datastage, it generates zero rows. One thing i suspected is th...
by agathaeleanor
Thu May 05, 2011 10:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: RDBMS stage
Replies: 1
Views: 2018

RDBMS stage

Hi all experts, I have a query to execute as below, execute dbms_mview.refresh(#view_name#) I tried to run the query in datastage using Oracle Enterprise stage but failed due to "update statement prepare failed" error. Thus, I am thinking to plug the query to dynamic RDBMS stage. However, ...
by agathaeleanor
Tue Feb 22, 2011 12:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Using BASIC transformer
Replies: 3
Views: 2201

Error message said,

BASIC_Transformer_6,0: dspipe_init(11338): open(/tmp/ade.HPBINFOHUBDEV.JB_KP_EX_LU_DATA_OWNER.#0.BASIC_Transformer_6.Lnk_Basic-Output) - No such file or directory

BASIC_Transformer_6,0: The runLocally() of the operator failed.
by agathaeleanor
Mon Feb 21, 2011 9:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Using BASIC transformer
Replies: 3
Views: 2201

Using BASIC transformer

Hi All Experts, I have a ETL job which using BASIC transformer to call a routine. The job runs successfully for the first time. And subsequently, to run second time, the job seems running forever and up to certain period (20minutes), it will be aborted. I try to recompile the job again and it runs f...
by agathaeleanor
Tue Jan 25, 2011 1:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: FIELD function
Replies: 3
Views: 2724

I've no choice but accepted the crappy file structure :(

My bad, i should search the forum on horizontal pivot... but my DS has no pivot license.

Am trying to look for a solution by using routine.
by agathaeleanor
Fri Jan 21, 2011 4:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: FIELD function
Replies: 3
Views: 2724

FIELD function

I am aware of the function FIELD in transformer that FIELD(Lnk_InLoad.COLUMN1,';',1) will return the first value store before semicolon. However, I have a requirement which a column contained of multiple value separated by pipe. There is no fixed number of value will store within the column. header ...
by agathaeleanor
Wed Jan 19, 2011 7:21 pm
Forum: General
Topic: include double quote in transformer stage
Replies: 2
Views: 3535

Thank you very much :)
by agathaeleanor
Wed Jan 19, 2011 4:38 am
Forum: General
Topic: include double quote in transformer stage
Replies: 2
Views: 3535

include double quote in transformer stage

Hi there,

Understand that double quote is a special character.
May i know how to embed a double quote to a column?

eg. transformer read in columns from sequential file.
In one of the column i would like to concatenate double quote as "column1"

Thanks for the help
by agathaeleanor
Wed Jan 19, 2011 1:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: to include double quote in front and rear of row of data
Replies: 2
Views: 1337

to include double quote in front and rear of row of data

Hi All expert, Need your advice on how do i achieve on below scenario. Due to some constraint, sequential file is given in a format of (separate by delimiter --> "," 001","CEREL","29","1-yearly","1990 However in DS, I am require to include a double q...
by agathaeleanor
Tue Jan 18, 2011 7:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential file delimiter
Replies: 8
Views: 3097

sample data from sequential file,

001"|"John"|"6-Yearly"|"2009
by agathaeleanor
Fri Jan 14, 2011 4:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential file delimiter
Replies: 8
Views: 3097

However, in sequential stage, the setting is set to Delimiter String = | Quote = none Though I manually key in Delimiter String = "|" After I saved the job, the delimiter reads Delimiter String = | As well when running the job, it seems that delimiter is | because i hit the error SEQ_CORP,...
by agathaeleanor
Fri Jan 14, 2011 12:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential file delimiter
Replies: 8
Views: 3097

I just realized that double quote(") is a special character?

It seems that i've change delimiter string and input (double quote + pipe + double quote) "|" it doesn't recognize the delimiter as it is. it only appear (pipe) |

Need your advice.

Thanks.
by agathaeleanor
Tue Jan 04, 2011 11:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Numeric data type
Replies: 5
Views: 2143

Yes, it is oracle DB.
The datatype defined as NUMBER(6) in oracle.

The desired output was to display,
example: ETL_RUN_DATE = 20101024
YEAR_MONTH will display "201010"
by agathaeleanor
Tue Jan 04, 2011 10:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Numeric data type
Replies: 5
Views: 2143

Numeric data type

Hi, I have a ETL job that hit below error, Column YEAR_MONTH floating point decimal is not fully supported; adjusting the scale. Column YEAR_MONTH has been modified in sql as TO_NUMBER(TO_CHAR(COMBR.ETL_RUN_DATE,'YYYYMM')) And the target column datatype has changed to integer or numeric still hittin...