Search found 99 matches

by sangi1981
Sun Oct 14, 2012 2:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Intercept fields that generate update: compare data
Replies: 3
Views: 1277

Thanks for your replay.

Correct me, if I am wrong.
But is SCD stage used for dimensions, then possibly for a limited number of row? I have to deal with a large number of rows.
Using SCD stage, is it possible to intercept fields that generate update operation?

Thanks again
by sangi1981
Sat Oct 13, 2012 8:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Intercept fields that generate update: compare data
Replies: 3
Views: 1277

Intercept fields that generate update: compare data

Hi all, I have a question. My client ask to calculate difference between current data on DB and new data from a file, to decide if insert, update or discard data from file. So I need to simulate a sort of SCD of type 2, where a modify implies insert of new record and update of old record with valori...
by sangi1981
Sat May 12, 2012 4:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sharepoint list
Replies: 2
Views: 1809

I hope there was a way to acces directly to list.
by sangi1981
Thu May 10, 2012 8:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sharepoint list
Replies: 2
Views: 1809

Sharepoint list

Hi all,
I have a complex business requirement.
My customer uses Sharepoint application that runs on lists.

Is there a way to read this lists from Datastage job!?!?

Thanks in advance
by sangi1981
Fri Feb 17, 2012 1:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC Config File for Datastage Connection to SQLServer 2008
Replies: 2
Views: 2310

Thanks, I find a solution.
I removed port number from address of config file, using only ip address + instance name...
by sangi1981
Thu Feb 16, 2012 12:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC Config File for Datastage Connection to SQLServer 2008
Replies: 2
Views: 2310

ODBC Config File for Datastage Connection to SQLServer 2008

Hi all, I have an odbc config file on a sun solaris server, used for IBM datastage. We need to connect to a sqlserver express edition. Ip used to connect is xxx.xxx.xxx.xxx\TARGET port is 1433, database is dbname . Sample of config file is: [T_TEST] Driver=/opt/IBM/InformationServer/Server/branded _...
by sangi1981
Thu Dec 15, 2011 6:23 am
Forum: General
Topic: Invoke more jobs from command line without waiting
Replies: 4
Views: 2030

I changed perspective for this task. Instead of wait for a dsjob launch to complete, I created a parametric shell script that launch dsjob command. I exec this script from another, and I apply wait command. It seems more clean and with minus code to implement for every check. What do you think about...
by sangi1981
Wed Dec 14, 2011 9:37 am
Forum: General
Topic: Invoke more jobs from command line without waiting
Replies: 4
Views: 2030

Invoke more jobs from command line without waiting

Hi All, I have a question. I want to run more instance of same job in parallel from within a script: I have a loop in which I invoke jobs with dsjob and without option "-wait" and "-jobstatus". I want that jobs completed before script termination, but I don't know how to verify i...
by sangi1981
Wed Nov 09, 2011 9:06 am
Forum: General
Topic: Datastage 8.5 Certification And Try It Again Voucher
Replies: 11
Views: 9102

It's Info Mgmt - $230.00.
by sangi1981
Mon Nov 07, 2011 5:07 am
Forum: General
Topic: RunTime Error: Sequence doesn't see Parallel execution
Replies: 0
Views: 846

RunTime Error: Sequence doesn't see Parallel execution

Hi all, I have a multiistance sequence that invoke multiistance parallels. Some times, it happens that an execution istance of sequence goes in error. If I search in log, I find that abort is due to a call of a job parallel: 1) It happens that job parallel istance goes, 2) sequence stays in waiting,...
by sangi1981
Tue Sep 27, 2011 3:00 am
Forum: General
Topic: Datastage 8.5 Certification And Try It Again Voucher
Replies: 11
Views: 9102

Yes.
I hope I don't try exam again :-)
by sangi1981
Tue Sep 27, 2011 2:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: convert to number type without losing precision
Replies: 2
Views: 1907

Hi, I experimented that data mapped within transfomer from varchar to double seem to be truncated viewing that from ds viewer, but in sqlserver tables they are correctly conformed to input. By my experience, float sqlserver must be mapped to double (dfloat) datastage type. Otherwise if you map to fl...
by sangi1981
Mon Sep 19, 2011 2:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Server Routine In parallel Job
Replies: 5
Views: 3510

Of course. #include <stdio.h> #include <stdlib.h> #include <ctype.h> #include <string.h> #include <time.h> char* AddMonthRoutine ( char* InDate, int AddMonths ) { if ( InDate == NULL || *InDate == '\0' || strlen(InDate) == 0 || strlen(InDate) != 8 ) { char rt[8]; time_t now = time(0); struct tm *d; ...
by sangi1981
Mon Sep 19, 2011 12:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Server Routine In parallel Job
Replies: 5
Views: 3510

Thanks much.
I implemented a c++ function, compiled with options from administrator, linked *.o file whit a parallel routine: seems to be good.
In this way, I have basic and c++ version....
by sangi1981
Mon Sep 19, 2011 4:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Server Routine In parallel Job
Replies: 5
Views: 3510

Server Routine In parallel Job

Hi all, I write a server routine to add months to a date. I have to use this routine in parallel job, inside a transformer, but it is not possible. I found that there are following solutions: *) use basic transformer, *) create parallel routine, using a c++ file in which make porting of basic code. ...