Search found 37 matches

by sriven786
Wed Nov 22, 2017 8:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Schema reconciliation detected a size mismatch for column
Replies: 14
Views: 16667

Re: Schema reconciliation detected a size mismatch for colum

try running the same query in Toad (Outside Datastage) and see if you are getting the same value or not for below example you mentioned: The source value in DB is 0.45 the value coming out is 0.00 Also, try defining the column as decimal(31,7) and see if the warning still appears in Datastage Job?.
by sriven786
Thu Nov 16, 2017 2:33 pm
Forum: General
Topic: Issues when sending attchments through datastage email
Replies: 11
Views: 5477

Thanks to chulett as it's already known issue :)
by sriven786
Thu Nov 16, 2017 2:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC Connector Multiple update Queries
Replies: 11
Views: 11159

User is using Datastage 11 on Unix and ODBC connector stage on Unix did not have the option of User Defined Sql.

Job Type: Parallel
OS: Unix

Note:Not sure how to attach image. so could not attach the screen snapshot
by sriven786
Thu Nov 16, 2017 1:30 pm
Forum: General
Topic: Issues when sending attchments through datastage email
Replies: 11
Views: 5477

try creating the File with Record Level Delimiter as : DOS Format and try sending as email attachment. (Format Tab: Record Level Right Click and Format as Dos line terminator)
by sriven786
Thu Nov 16, 2017 12:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC Connector Multiple update Queries
Replies: 11
Views: 11159

chulett wrote:Answer is still the same, only a single DML statement is supported.
yes. After sql can support multiple statements
by sriven786
Thu Nov 16, 2017 12:53 pm
Forum: General
Topic: Issues when sending attchments through datastage email
Replies: 11
Views: 5477

looks like the file is created in Unix and when run unix2dos and then attach, file is coming properly. Try doing unix2dos and test it.

Please check similar post below

viewtopic.php?p=418450
by sriven786
Thu Nov 16, 2017 12:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Remove multiple special characters from leading and trailing
Replies: 16
Views: 13394

Yes, I tried too and could able to find the first occurrence using the INDEX Function but the issue is to find the last occurrence (May be you need to write a custom subroutine to get the last occurrence of 1 passing the string like: (!@##$$1111^&&&&&&&&&&1111...
by sriven786
Thu Nov 16, 2017 11:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC Connector Multiple update Queries
Replies: 11
Views: 11159

Yes. Teradata connector write mode allows for User Defined but not the odbc connector (Only Insert/Update/Delete)
by sriven786
Thu Nov 16, 2017 8:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Schema reconciliation detected a size mismatch for column
Replies: 14
Views: 16667

Re: Schema reconciliation detected a size mismatch for colum

Are you Casting while Extracting from Table As suggested below ?.

you can cast it in the extract sql to match the target format

Please clarify
by sriven786
Wed Nov 15, 2017 8:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Schema reconciliation detected a size mismatch for column
Replies: 14
Views: 16667

Re: Schema reconciliation detected a size mismatch for colum

Please check below link and try one of the 3 suggested options https://www.ibm.com/support/knowledgecenter/en/SSZJPZ_9.1.0/com.ibm.swg.im.iis.conn.drs.usage.doc/topics/DRS061.html There are generally three approaches for eliminating the schema reconciliation messages: 1.Modify column definitions on ...
by sriven786
Tue Nov 14, 2017 2:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Remove multiple special characters from leading and trailing
Replies: 16
Views: 13394

Thanks for Clarifying the requirement. I was trying to Convert all Alphabets to some Value and and after that find the First Occurrence of that But looks like the CONVERT Function is not working as Expected Input String: !@##$$Rami^&Reddy*&^%$' Derivation: convert(CHAR(82):CHAR(97):CHAR(101)...
by sriven786
Tue Nov 14, 2017 9:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Remove multiple special characters from leading and trailing
Replies: 16
Views: 13394

Is your Delimiter: ^& Please clarify. e.g.: Input Data like: !@##$$Rami^&Reddy*&^%$ Output Data Should: Rami^&Reddy Tried with Convert as below Convert(char(10):char(11):char(35):char(36):char(33):char(64):char(37):char(42):,' ','!@##$$Rami^&Reddy*&^%$') !@##$$Rami^&Reddy...
by sriven786
Tue Nov 14, 2017 8:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Schema reconciliation detected a size mismatch for column
Replies: 14
Views: 16667

Re: Schema reconciliation detected a size mismatch for colum

Check the data type in the database table.
Check the data type in your job's metadata.

If you're using a Connector stage, change the "Fail on type mismatch" property from Yes to No.
by sriven786
Mon Nov 13, 2017 1:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date format issues
Replies: 2
Views: 2497

Re: Date format issues

Note: Assuming that your Input date all have >2000 (20th Century)
Otherwise, please request them to provide with Century part also if you are expecting dates before 2000
by sriven786
Mon Nov 13, 2017 12:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date format issues
Replies: 2
Views: 2497

Re: Date format issues

Please refer below link

viewtopic.php?p=388928

I guess you can use StringToDate(Trim(DSLink2.File_Date),'%dd-%mmm-%2000yy')