Search found 33 matches

by rakesh.nc
Wed Dec 19, 2007 6:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to transfer file from Mainframe to UNIX
Replies: 9
Views: 2837

Stefan - I think the ConnectDirect or mainframe issue is that some files can have compressed spaces which are not interpreted/expanded correctly when doing such transfers. The compressed spaces binary ... what are all the connection details are need for transfer the fail from Mainfram to Unix/local...
by rakesh.nc
Wed Dec 19, 2007 5:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Regarding FTP stage
Replies: 4
Views: 1197

How Can we connect and transfer data using the command-line FTP program? command line in the sense? The documentation for the FTP stage is sufficient to use the stage, but it doesn't explain the complexities of using FTP on mainframe; the assumption is that you will get that information elsewhere. C...
by rakesh.nc
Wed Dec 12, 2007 3:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to execute teradata SP in Datastage.
Replies: 3
Views: 1516

chulett wrote:Have you tried using the ODBC stage? :?


yup... ODBC stage dont have an option to exec Teradata SP's
by rakesh.nc
Mon Dec 10, 2007 7:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to execute teradata SP in Datastage.
Replies: 3
Views: 1516

how to execute teradata SP in Datastage.

We are trying to execute teradata stored procedure in datastage.
Can anyone suggest a way to do this.
by rakesh.nc
Thu Sep 06, 2007 10:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: related to log table in TPUMP Stage
Replies: 3
Views: 1431

The Teradata TPUMP utility expects the log table to be empty. It's not a DataStage requirement. ... thank you... is there is anyways to overcome this clearing statement..... what i mean to say is, inside TPUMP utility i am writing "delete from log_tablename", but few not agree for this.. ...
by rakesh.nc
Thu Sep 06, 2007 12:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: related to log table in TPUMP Stage
Replies: 3
Views: 1431

related to log table in TPUMP Stage

hi all, i am using TPUMP stage to load the teradata table.. whenever the jobs get aborted because of some error after rectifing the error if i rerun the job without clearing the contents of the log table whcih is created by TPUMP stage it will abort the job by throwing the following error ' log tabl...
by rakesh.nc
Sat Sep 01, 2007 4:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Execution termination due to SIGINT
Replies: 2
Views: 882

JoshGeorge wrote:Do a search in this forum as well as google for 'SIGINT'. If someone has stopped this job also you can get this message.

no... for the very first time i run this job and noticed this fatal error...
by rakesh.nc
Sat Sep 01, 2007 3:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Execution termination due to SIGINT
Replies: 2
Views: 882

Execution termination due to SIGINT

hi,

can anyone pls help me in solving this fatal error.. when i run a job i am getting the follwing error.

"main_program: ORCHESTRATE step Execution termination due to SIGINT"
by rakesh.nc
Thu Aug 02, 2007 6:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date Become truncated while exporting from ODBC
Replies: 2
Views: 659

Re: Date Become truncated while exporting from ODBC

[quote="Cr.Cezon"]perhaps the problem is in the metadata of the column.
see then length of the columns char.

i saw it, the length of the datatype is same as in SQL server.. i dont know still why i date and few char column getting truncated..
by rakesh.nc
Thu Aug 02, 2007 6:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data Become truncated while exporting from ODBC
Replies: 12
Views: 2817

ArndW wrote:I am sure that the truncation is coming from your job or table definitions and an implicit conversion and not from a bug. Just a thought - do you have NLS enabled (i.e. a double-byte or multi-byte sys ...

sorry i dint get.. i dont know about NLS.. where i'll get this info.. could u pls tell me?.
by rakesh.nc
Thu Aug 02, 2007 4:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date Become truncated while exporting from ODBC
Replies: 2
Views: 659

Date Become truncated while exporting from ODBC

hi, In my project i am exporitng data from SQL server to DataSet using ODBC Stage. The problem is while extracting from SQLserver using ODBC, the data is getting truncated in some of the fields such as char and datetime. here is an example In SQL the value of Char column inst_month is '200601', but ...
by rakesh.nc
Thu Aug 02, 2007 2:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data Become truncated while exporting from ODBC
Replies: 12
Views: 2817

I infer from your post that you have ensured that the actual data is 6 character - what if you put a SELECT '*' + cast(inst_month as varchar(5)) '*' as inst_month from YourTable[ ...[/quote] yup..thank you.. now it is possible to extract the data as it as. but i gave cast(inst_month as varchar(10))...
by rakesh.nc
Wed Aug 01, 2007 11:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data Become truncated while exporting from ODBC
Replies: 12
Views: 2817

If you do a "view data" on your ODBC stage does the data show as truncated already? If not, then I would suggest you check your dataset schema to see if it really is CHAR(6) and not something smaller. ... yup it is char(6) in both the ODBC stage and Dataset stage.. it is truncated in the ...
by rakesh.nc
Wed Aug 01, 2007 11:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data Become truncated while exporting from ODBC
Replies: 12
Views: 2817

ArndW wrote:What about your SQL SELECT clause, might you be usnig some conversion or CAST() in there? ...

no.. i am not using any conversion..