Search found 7201 matches

by admin
Tue Dec 03, 2002 10:32 pm
Forum: Archive of DataStage Users@Oliver.com
Topic: SQL types - formating fails
Replies: 5
Views: 1492

I did think Id covered Decimal as well. Basically, DataStage itself sees the number as a string, and does not change the contents based on metadata. You can achieve your desired result in a number of ways; I already suggested one way, using the Field() function and substrings. The Fmt() function can...
by admin
Tue Dec 03, 2002 3:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: test
Replies: 0
Views: 297

test

test
by admin
Tue Dec 03, 2002 8:18 am
Forum: Archive of DataStage Users@Oliver.com
Topic: Multiple Instances and Cleaning up of log ...?
Replies: 2
Views: 3203

However you still have a line for each instance in the "global" Director window, even if each Detail log is cleared. With a large number of instances the log status view in Director could become unreadable. Kasia At 23:23 02/12/2002, you wrote: >One thing you should definately look into is the abili...
by admin
Tue Dec 03, 2002 8:05 am
Forum: Archive of DataStage Users@Oliver.com
Topic: how to get the locked job id
Replies: 3
Views: 551

Dear RogerWang, you can Telnet on your Unix-Server. Then do the following ----------------------- DSHOME=`cat /.dshome` cd $DSHOME . ./dsenv bin/uvsh --------------------- and you are on the same place where you are with administrator. Wolfgang -----Original Message----- From: 911150@taishinbank.com...
by admin
Tue Dec 03, 2002 8:03 am
Forum: Archive of DataStage Users@Oliver.com
Topic: how to get the locked job id
Replies: 3
Views: 551

you can get it from the DataStage Director -> Job -> Cleanup Ressources there you can get the PID and kill it directly or from the Unix Shell. You can probably also get it from a command prompt on the Unix, but I dont know. br Tom -------------------------------------------------------- Tom P. Niels...
by admin
Tue Dec 03, 2002 7:47 am
Forum: Archive of DataStage Users@Oliver.com
Topic: SQL types - formating fails
Replies: 5
Views: 1492

Hi Ray, I think you replyed to the other question regarding the timestamps, or partialy. My question was regaring the decimal 12 scale 6 br Tom -------------------------------------------------------- Tom P. Nielsen Project Masterdata Reg.nr. 4853 / HH55.1.3 Nordea Bank Denmark Phone: +45 33335223 /...
by admin
Tue Dec 03, 2002 7:43 am
Forum: Archive of DataStage Users@Oliver.com
Topic: how to get the locked job id
Replies: 3
Views: 551

how to get the locked job id

dear all running environment : DataStage5.2 on Unix designer : on win2k server One of my job is locked on the datastage server. now, I can get the PID though the administrator (GUI mode). but I really dont like this mode (its difficult to read these information) so i hope getting those information i...
by admin
Tue Dec 03, 2002 7:38 am
Forum: Archive of DataStage Users@Oliver.com
Topic: SQL types - formating fails
Replies: 5
Views: 1492

DataStage Engine (UniVerse) does not have a TIMESTAMP data type. This is why some of this problem is occurring. In fact, DataStage Engine (UniVerse) does not have any data types at all, which is why it is tolerant of data type mismatches. Table definition metadata, such as SQL data type, precision a...
by admin
Tue Dec 03, 2002 6:43 am
Forum: Archive of DataStage Users@Oliver.com
Topic: SQL types - formating fails
Replies: 5
Views: 1492

Im sure that would work - or something similar, but that is NOT what i intend to implement in all my stages. I actually thought that the meta data in DataStage had an affect, other than for documentational purpose. Isnt DataStage suposed to used them for anything ? Atleast it knows that i cant put d...
by admin
Mon Dec 02, 2002 11:23 pm
Forum: Archive of DataStage Users@Oliver.com
Topic: Multiple Instances and Cleaning up of log ...?
Replies: 2
Views: 3203

One thing you should definately look into is the ability to set the Director logs to auto purge. Under Job/Clear Log there not only is an option to do an immediate clear of the log file but also the option to enable Auto-purge. This way, once a jobs runs successfully you can set the logs to automati...
by admin
Mon Dec 02, 2002 10:23 pm
Forum: Archive of DataStage Users@Oliver.com
Topic: Multiple Instances and Cleaning up of log ...?
Replies: 2
Views: 3203

Multiple Instances and Cleaning up of log ...?

Hi, Whenever we run multiple instances of different jobs on datastage v2, it creates a separate log for each and every instance. So when we open and see the director, we can see all the logs of all the instances that ran. To remove all the instance logs we have to clear status of the job from direct...
by admin
Mon Dec 02, 2002 3:13 am
Forum: Archive of DataStage Users@Oliver.com
Topic: How to insert system date to a column
Replies: 8
Views: 5084

Thanks Ray, for your descriptive answer also thanks to Himanshu and David Barham. I just need to compare two dates to Find the earliest. Ayesha K. -----Original Message----- From: Ray Wurlod [mailto:rayw@mindless.com] Sent: Monday, 2 December 2002 1:51 PM To: datastage-users@oliver.com Subject: RE: ...
by admin
Mon Dec 02, 2002 2:51 am
Forum: Archive of DataStage Users@Oliver.com
Topic: How to insert system date to a column
Replies: 8
Views: 5084

The expression you require is: Oconv(Date(),"D-YMD[4,2,2]"):" ":Oconv(Time(),"MTS:") If this is going to be an ongoing requirement, you could create a Transform (perhaps called CurrentTimestamp) that uses that expression as its definition. Functions called date1() and date2() do not exist in DataSta...
by admin
Sun Dec 01, 2002 11:52 pm
Forum: Archive of DataStage Users@Oliver.com
Topic: How to insert system date to a column
Replies: 8
Views: 5084

The Date() function only returns the date, not a date/time. You need the Time() function to get the current time. Something like this should be what you are looking for... Oconv(Date(),"D-YMD[4,2,2]"):" ":OConv(Time(),"MTS") -----Original Message----- From: Karunaratne Ayesha - Sydney-MRA [mailto:AK...
by admin
Sun Dec 01, 2002 11:52 pm
Forum: Archive of DataStage Users@Oliver.com
Topic: How to insert system date to a column
Replies: 8
Views: 5084

you can do an ICONV against the date to get it into internal format and compare the values. Iconv(date field, "d4/") will get it into internal format -----Original Message----- From: Karunaratne Ayesha - Sydney-MRA [mailto:AKarunaratne@munichre.com] Sent: Sunday, December 01, 2002 6:43 PM To: datast...