Search found 15603 matches

by ArndW
Wed Aug 24, 2005 11:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance Tuning by dropping the Index
Replies: 2
Views: 1160

"Dropping an index" is a Database term; it is explained in great and painful detail in the appropriate forums. Basically when you write to a table, you not only write the data but simultaneously the Database does such things as check column or table constraints, fire off triggers and maintain the in...
by ArndW
Wed Aug 24, 2005 11:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Null Values for all 30 columns
Replies: 5
Views: 1060

Vinay,

go to the columns list in the source or target stage, right-click on a column and "edit row" will bring you into the attribute editor. Then you can use the on-line help or the manual to get any additional information answered, but you can see the null-handling attributes on the screen there.
by ArndW
Wed Aug 24, 2005 11:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Wrong Routine value returned
Replies: 9
Views: 1625

snassimr,

as Sainath and others have stated, the source of this routine would be nice as it seems to be the only place, from what you've described, where something might be working differently between your two different types of run.
by ArndW
Wed Aug 24, 2005 11:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Null Values for all 30 columns
Replies: 5
Views: 1060

You can always specify your null handling in the column declarations, for instance making each column change nulls into some other value such as "0". This way you wouldn't need to do it explicitly during the processing of each column.
by ArndW
Wed Aug 24, 2005 11:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: writing quote (") to a file in a routine
Replies: 6
Views: 2277

Heather, in DataStage Basic you can use ", ', or / as a quote character interchangeably. So you can assign a double-quote via '"' or /"/ .
by ArndW
Wed Aug 24, 2005 10:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Wrong Routine value returned
Replies: 9
Views: 1625

So what does this SDTToDateNumeric routine do? Plus you don't want to use the ( ) around your function, either.
by ArndW
Wed Aug 24, 2005 10:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Merging Three simple Text files
Replies: 7
Views: 1451

the output of "DEL /?" Gives us: C:\Documents and Settings\guest3>del /? Deletes one or more files. DEL [/P] [/F] [/S] [/Q] [/A[[:]attributes]] names ERASE [/P] [/F] [/S] [/Q] [/A[[:]attributes]] names names Specifies a list of one or more files or directories. Wildcards may be used to delete multip...
by ArndW
Wed Aug 24, 2005 10:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Delay Link Execution
Replies: 3
Views: 717

I think I would make link 2 write to a sequential file, and then continue from the sequential file to the rest of the processing. The rest won't continue until all the data has been processed and the data source exhausted. Doubles your I/O but solves your issue (although I am curious as to why you a...
by ArndW
Wed Aug 24, 2005 9:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Smart way to get rid of warning on Decimal to Date conversio
Replies: 7
Views: 1851

Kumar,

I think that what you did was get rid of a warning message but are you sure you aren't generating junk data? How are you converting a decimal number into a valid Date, i.e. how does DS know what kind of a rule to apply?
by ArndW
Wed Aug 24, 2005 9:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: installing two different version of DS client
Replies: 9
Views: 1919

You need local admin rights to install any DataStrange clients 8)
by ArndW
Wed Aug 24, 2005 9:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Client throwing error while installing - WinXP
Replies: 1
Views: 603

I recall having similar issues with InstallShield packages. Check your Control Panel "add or remove programs" to see if the system still thinks that some software is installed and remove it, reboot and then re-try the install. I think that the InstallShield application plays around in the registry p...
by ArndW
Wed Aug 24, 2005 9:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: installing two different version of DS client
Replies: 9
Views: 1919

Sonia,

There is a "multi-client manager" on the installation CD which does just that.
by ArndW
Wed Aug 24, 2005 9:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to call Table Metadata columns in a routine??
Replies: 5
Views: 1216

Venkat, I cannot think of a way to let the routine know from which column it was called, the DSGet...() routines go down to a link/stage level only. I think your only way of getting this information is to put a 3rd parameter with the name of the column into the call. You could always code it with ju...
by ArndW
Wed Aug 24, 2005 5:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to check server version
Replies: 4
Views: 1916

I know of the unix level "uv -version" or the TCL command "LIST VOC WITH @ID EQ 'RELLEVEL' F2" but that is more the underlying Engine version. I thought there was a smat command to get this but couldn't find it.
by ArndW
Wed Aug 24, 2005 12:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CFF
Replies: 6
Views: 1499

Srekant, think about what Ray and the DS job are telling you: the file has 1146600 bytes and a fixed width of 716. This is not correct; since the filesize is not a multiple of 716. Because this is wrong, DS cannot partition the reading of this file across processes. Look at the same file format whic...