Search found 11 matches

by THEDSKID
Tue May 24, 2011 11:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CFF Stage Multiple Record Copy Book Limit
Replies: 2
Views: 2038

CFF Stage Multiple Record Copy Book Limit

When using the CFF option of importing multiple records by de-selecting the "Single Record" radio button on the Record page. I am able to import 8 different copybooks. However when I try to import the 9th copybook, it does not import. I have verified that the 9th copybook is valid and will...
by THEDSKID
Thu Mar 31, 2011 1:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to Disable Referential Integrity when loading DB2
Replies: 4
Views: 4373

Re: How to Disable Referential Integrity when loading DB2

Well it looks like I was able to work through this one... Just in case anyone is interested, I simply executed a before sql that dropped the primary key which released the RI, then ran my job which did a Delete and Loaded my recs. I then did an after job sql to re-establish my Primary Key. Before Sq...
by THEDSKID
Thu Mar 31, 2011 11:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to Disable Referential Integrity when loading DB2
Replies: 4
Views: 4373

How to Disable Referential Integrity when loading DB2

I am in the process of taking a DB2 source, and loading it back to another DB2 table that has RI on another table. The client is ok with breaking the RI in this test environment. What would the syntax be within the DB2 connector to disable RI within the table before loading?
by THEDSKID
Tue Feb 22, 2011 8:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data obfuscation masking within Information Server 8.1
Replies: 1
Views: 1805

Data obfuscation masking within Information Server 8.1

I want to see if there are any routines available for masking (obfuscation) of specific columns of data within my source file irregardless of the type of source. DB obfuscation is not an option as this is coming from a mainframe and the requirement is for this to be done in DataStage. 1) I need to m...
by THEDSKID
Tue Sep 05, 2006 7:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Generating a Key between a Header and Detail Record
Replies: 4
Views: 1920

Generating a Key between a Header and Detail Record

I have a flat file that contains a Header and many Detail records. My problem is that there is no primary or foreign key to join the records. All that I know is that all of the detail records that follow a particular header record, belong to that header. What I would like to do is to create a sequen...
by THEDSKID
Tue Apr 25, 2006 1:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: error in job from read from MQ1 and put to MQ2
Replies: 1
Views: 1125

Re: error in job from read from MQ1 and put to MQ2

Check the MQ.pdf Stage guide in: \Program Files\Ascential\DataStage7.5.1\Docs it quotes the following under functionality: "Connects to a single queue manager, but can open several queues. You can associate each link with a different queue." I have job of reading from one MQ1 and puttin in...
by THEDSKID
Thu Mar 23, 2006 4:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage using terminal services
Replies: 2
Views: 2022

Re: Datastage using terminal services

Connecting from a remote client on the network versus Connecting via Terminal Server or Remote Desktop to the server work the same as far as the number of concurrent users are concerned. This is managed by the DataStage Server and because your jobs are actually being run on the Server side there is ...
by THEDSKID
Thu Mar 23, 2006 3:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Regarding aggregator
Replies: 3
Views: 2165

Re: Regarding aggregator

The Sort checkbox is your way of telling the aggregator stage that your incoming data is sorted. By providing this information to the aggregator stage you can cut down on the processing time within the aggregator and you will notice sizeable increases in the performance of large data sets. So the so...
by THEDSKID
Tue Mar 21, 2006 11:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problmes with MQ stage
Replies: 2
Views: 1139

Re: Problmes with MQ stage

Have you tried to create a test message from within MQ explorer? I would try this first so that you know that the message is going into the queue in a txt format and then try to retrieve that test message. If that works then you might need to look at the process that is creating the message and what...
by THEDSKID
Tue Mar 21, 2006 11:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multi-format file & Complex Flat File Stage
Replies: 1
Views: 1811

Re: Multi-format file & Complex Flat File Stage

I have not used the CFF stage however I am "Old School" and I would just use a Seq File and read the record in as Fixed length 2048 then use a Constraint for each link specifying i.e. your example... linkname.fieldname[1,1]='A' for each first character. On the output links you will have on...
by THEDSKID
Mon Mar 20, 2006 12:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Output Link Execution Order and commits
Replies: 9
Views: 4055

Re: Output Link Execution Order and commits

Actually splitting this process into two jobs would save you a lot of your problems. Is there a business reason why you would not want to create two simple jobs to handle this as opposed to one job? You could however write to your first table to establish the referential integrity and then within th...