Search found 37 matches

by rdy
Tue Jul 24, 2007 12:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: IDENTITY_INSERT is set to OFF.
Replies: 5
Views: 10418

But make sure the permissions allow this

In SQL Server an identity column automatically generates sequence numbers when rows are inserted. In normal operation you leave it out of the insert column list so that SQL Server sets it. If you are doing data conversion you may want to explicitely set this value, for example you want to retain th...
by rdy
Tue Jan 10, 2006 3:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Formatting dates question
Replies: 3
Views: 1667

jzparad wrote:Isn't this just a string concatenation?
Well I was trying to actually get the time portion. If you mean just concatenating the string '00:00:00.000' in this example, that wouldn't fit the requirements.

(Guess I need to be more specific :D
by rdy
Tue Jan 10, 2006 3:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Formatting dates question
Replies: 3
Views: 1667

Formatting dates question

Anyone know the code to turn a Timestamp that looks like this:

2005-05-29

Into this:

2005-05-29 00:00:00.000
by rdy
Tue Apr 19, 2005 9:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Does XMLPACK work????
Replies: 4
Views: 1655

Does XMLPACK work????

We've recently installed XMLPACK 2.0, and we are building our first jobs. So far the product has seemed confusing and counterintuitive. We have not been able to even get the simplest XML extract stage running. :x My question: Does the DSX community consider XMLPACK to be a viable solution or should ...
by rdy
Wed Mar 09, 2005 3:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Transaction not available
Replies: 8
Views: 5043

Update: fixed by updating ODBC driver to 64 bit

I wanted to give everyone an update on this. Our DataStage administrators installed upgraded 64 bit ODBC drivers that Ascential provided. That resolved the issue.

By the way, the actual problem was an error message that caused the job to abort (not just a warning message in the log).
by rdy
Thu Mar 03, 2005 12:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Transaction not available
Replies: 8
Views: 5043

Can't ready from a non-logging database?

I believe that you need to have your logging on to get rid of 'transaction not available'. Thanks for the response. Are you basically saying that DataStage is not able to read data from a non-logging Informix database? That sounds a little crazy to me if that is the case. Can anyone confirm this?
by rdy
Thu Mar 03, 2005 9:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Transaction not available
Replies: 8
Views: 5043

Transaction not available

We've recently upgraded our Informix server to 9.40 FC5 64 bit. Now an extract job that previously worked does not work anymore. I haven't tried the job in several months, so I cannot be sure that the upgrade is causing the error. Here's the story: 1 - I have an ODBC stage that selects from an Infor...
by rdy
Mon Jan 03, 2005 12:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Summarize mulitpe records into one
Replies: 2
Views: 1248

Summarize mulitpe records into one

I have multiple records per individual, based on an individual type. Each one will either be A or I. (Active or inactive.) I need to boil that down to one record per individual, that follows this business rule: "If an individual has any active records, they are active." i.e. Three records:...
by rdy
Tue Dec 28, 2004 10:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need to ignore data elements in ODBC update
Replies: 1
Views: 761

Need to ignore data elements in ODBC update

In a server job, I have a sequential file that feeds an ODBC stage. The ODBC stage uses the update action "Update existing rows only". Since I am re-using this sequential file in a later process, I would like to have more input columns than are used in the update. (i.e. 5 columns in sequen...
by rdy
Fri Dec 17, 2004 8:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error with sendmail function
Replies: 1
Views: 939

Error with sendmail function

We have a sequence job that sends an email using the "NotificationActivity" stage. This is a parameterized job, so it is executed 6 times with different parameters. (Jobs are set to allow multiple instances.) (I've removed some of the actual path names) processPLASOfficeUpdates.processPLAS...
by rdy
Mon Sep 27, 2004 6:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: XML in 6.x
Replies: 10
Views: 4506

Ray's code

kduke wrote:Ray posted some code where he dumped DS_METADATA file into XML. It was all written in BASIC. Very clean easy to read. Do a search.
I searched for it and found a link to that topic, but the link was dead. Anyone have a hint how I can track it down?
by rdy
Fri Sep 24, 2004 12:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: XML in 6.x
Replies: 10
Views: 4506

Re: XML in 6.x

ogmios wrote: If you write your own XML files via a BASIC job nothing
Have any sample code you can share?
by rdy
Fri Sep 24, 2004 12:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: XML in 6.x
Replies: 10
Views: 4506

XML in 6.x

What addons do I need to generate XML files in 6.x?
by rdy
Thu Sep 09, 2004 11:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Determine which link activated a sequencer
Replies: 2
Views: 1111

Determine which link activated a sequencer

I have a sequence job that controls the flow of my process with multiple JobActivity activities. Each JobActivity has a trigger if the server job it calls doesn't return OK. These triggers all feed into a Sequencer activity that activates a generic error email. Question: how do I go about retrieving...
by rdy
Thu Sep 09, 2004 7:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Strange behavior with parameters
Replies: 4
Views: 2209

Strange behavior with parameters

We have a sequence job that cleans up files by moving them to a "complete" directory. We accomplish this with an "ExecuteCommand" stage that issues a command like this: "mv somepath/someprefix_*.dat somepath/complete". This works fine, but I would like to use parameters...