Search found 63 matches

by MAT
Wed May 28, 2003 6:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Load type custom
Replies: 4
Views: 2573

Current_Timestamp is an Sql teradata variable. I Agree with you about the format of the TimeStamp in DataStage but I would like to use this current_Timestamp as it is more accurate. When I see the Log report, I have this message : "DML label name 'TDMLOAD' was not previously defined." TDML...
by MAT
Tue May 27, 2003 7:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Load type custom
Replies: 4
Views: 2573

Load type custom

Hi all, I would like to assign the value Current_Timestamp directly at the level of the loading stage. My first attempt of replacing the value ":MOD_DT_TM" by Current_Timestamp resulted in an error. Mload Script: dml label tdmload do update the existing rows; UPDATE #ThisDataBase#.#Table# ...
by MAT
Mon May 26, 2003 10:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Global variable
Replies: 19
Views: 5472

Hi, I see 4 possibilities: 1.You can declare an environment variable from Administrator and set your jobs to read from this variable. 2.If you are using job sequencers, put your variable on the top sequencer and make your job refer to it. 3.You could use a routine that would always use at run time v...
by MAT
Thu May 08, 2003 7:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job is being access from another user
Replies: 9
Views: 5912

Hi, If you want to effectively kill your jobs, make sure the option Enable job administration in Director (Administrator) is checked. You will have access to clean-up ressources in Director where you can get rid of any job. Otherwise, you can type in Administrator list.readu to know what are the act...
by MAT
Thu May 08, 2003 7:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Send an attachment using DS mail functionality
Replies: 2
Views: 1005

Hi, You cannot at this time send an attachement using DSSendMail. If you want an easy way to bypass this, you can put all your data in variables and include it in the body. An another would be to take advantage of the fact that you can execute DOS and UNIX commands to send an email through a simple ...
by MAT
Wed May 07, 2003 6:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DB2 and Datastage Ver 6
Replies: 1
Views: 653

We have been using it for a short time but it seems to work fine with Server. However, we have had problems reading and writing dates on our DB using Parallel Extender. Ascential developed a patch and things are fine now.

Regards

MAT
by MAT
Wed May 07, 2003 6:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Version Control project settings
Replies: 2
Views: 763

Thanks a lot!!

MAT
by MAT
Tue May 06, 2003 2:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Version Control project settings
Replies: 2
Views: 763

Version Control project settings

Hi all,

I wonder if any of you has tried to change the project of version control under DS 6.x. I think it has to be done from the registry but I can't find the place.

Regards

MAT
by MAT
Mon Apr 28, 2003 9:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Write SEQ files
Replies: 6
Views: 3037

Hi, Since I do not use MetaStage, I can't help you with your question on this but for DSMakeJobReport(...), here's how I use it: DSMakeJobReport(JobHandle, ReportLevel, LineSeparator) JobHandle is what you get from DSAttachJob ReportLevel is a number 0=basic and 1=detailed Lineseparator is the strin...
by MAT
Fri Apr 25, 2003 7:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: developing plugins
Replies: 1
Views: 985

ap_nat,

I have sent you the doc about plug-ins

(Just for others to know [8D] )

MAT
by MAT
Wed Apr 23, 2003 12:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date Conversion Problem DB2
Replies: 2
Views: 1014

Hi,

try converting your date before loading:

Iconv("your date", "D-YMD[4,2,2]")

Worked for us

MAT
by MAT
Tue Apr 22, 2003 11:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Environement variable in PX transform
Replies: 5
Views: 1220

Hi all, If anyone is interested in the rtypes used in various PX functions, here they are: Rtype. The rtype argument is a string, and should contain one of the following: * ceil. Round the source field toward positive infinity. E.g, 1.4 -> 2, - 1.6 -> -1. * floor. Round the source field toward negat...
by MAT
Tue Apr 22, 2003 11:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Generating Surrogate keys under PX
Replies: 4
Views: 955

Hi BP, Thanks for the infos, I'll try what you suggest about using buildop. I will also post the rtypes in my topic related to the StringToDecimal function. Also, to answer your question "why is CurId a string to begin with?". It is because it is an environment variables therefore string i...
by MAT
Tue Apr 22, 2003 10:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Generating Surrogate keys under PX
Replies: 4
Views: 955

Hi BP, Part 2 is not working [:(]. I think because of the type conversion function StringToDecimal that we discussed yesterday. I could not find the rtype options in my doc and it appears it was not included. Ascential sent me the function documentation which should be included in a future release o...
by MAT
Tue Apr 22, 2003 7:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Generating Surrogate keys under PX
Replies: 4
Views: 955

Generating Surrogate keys under PX

Hi, The project I am working on will integrate data coming from various sources not necessarily compatible with each other. For that reason, we need to associate every record we handle with a unique ID number. Since we are using PX, we can't access sdk functions like keymgt inside a job transformer....