Search found 773 matches

by keshav0307
Wed Sep 20, 2006 3:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Regarding Date
Replies: 3
Views: 1300

Also, you can read this as Char field and use MODIFY stage to convert into date.
by keshav0307
Wed Sep 20, 2006 2:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage PX
Replies: 3
Views: 916

complie the job, press run button and select validate option 8)
by keshav0307
Tue Sep 19, 2006 8:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: column descriptor count does not match field count
Replies: 6
Views: 1724

Thanks Ray/kumar , your your suggestion.
i found the problem,there was a white space in the datastase name(i am paasing database name through parameter).

but i would like to know, the runtime column propagation should be enabled or disbaled?
by keshav0307
Tue Sep 19, 2006 8:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: row generator
Replies: 4
Views: 1074

how are you populating the EMP table, spcially what is the value you are passing to Deptno column, it must be range of 10-20;
by keshav0307
Tue Sep 19, 2006 8:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: previous sunday date from current date
Replies: 1
Views: 1319

PreviousWeekdayFromDate(CurrentDate(),'Sunday') will give you the result
by keshav0307
Tue Sep 19, 2006 7:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to create a user with permission DataStage Operator?
Replies: 7
Views: 2440

you can create a group in unix server, crate a user, add him in this group and dstage group... in administrator assign this group as datastge operator for the project. for more detail read datastage adminstrator guide(Unix server administration)
by keshav0307
Tue Sep 19, 2006 7:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job log file path
Replies: 7
Views: 3799

its the same directory of your project.... every job has it's log in RT_LOG<xxxx> where xxxx is the job id, you can find this id by command LIST DS_JOBS <job name>.
by keshav0307
Tue Sep 19, 2006 7:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: datastage
Replies: 5
Views: 1956

you can achhieve it in many ways.but befoer that please give mpre details on your requirement.like metadata of source and target etc..
by keshav0307
Tue Sep 19, 2006 1:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: column descriptor count does not match field count
Replies: 6
Views: 1724

Its exactly same as the target table schema, infact i import the table metadata only.

the runtime column propagation is disabled.
by keshav0307
Tue Sep 19, 2006 1:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: column descriptor count does not match field count
Replies: 6
Views: 1724

column descriptor count does not match field count

i am getting this error while inserting into a teradata table..
any idea what is causing this problem?
by keshav0307
Mon Sep 18, 2006 11:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while using 'Date' as column name in ODBC stage
Replies: 5
Views: 2186

sorry, i missed the double quote in the where clause

select
FundCode, PerfCode, Portfolio, "DATE" from
PERFORMANCE where CurrencyCode = 'AUD' and "DATE" >= '2006-06-06';
by keshav0307
Mon Sep 18, 2006 10:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while using 'Date' as column name in ODBC stage
Replies: 5
Views: 2186

try this: select FundCode, PerfCode, Portfolio, "DATE" from PERFORMANCE where CurrencyCode = 'AUD' and Date >= '2006-06-06'; Make sure the column name in table is "DATE" not "Date", if the column name in table is "Date" then try select FundCode, PerfCode, Port...
by keshav0307
Mon Sep 18, 2006 3:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Finding Terasync table database
Replies: 4
Views: 3208

i experienced, if you are not defining the APT_TERA_SYNC_DATABASE, then the terasync table is created at the same database of the base table..
by keshav0307
Sun Sep 17, 2006 8:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Identifying last user who change the job
Replies: 4
Views: 1695

Identifying last user who change the job

Is there aby way to know, who is the last user/developer, who has change a particular already existing job.
by keshav0307
Sun Sep 17, 2006 8:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Capturing unchanged rows using CDC
Replies: 6
Views: 2542

Then add a join stage after the change capture stage, and join the Before dataset with the copy rows, to get other values from before dataset..