Search found 231 matches

by DS_SUPPORT
Wed Jul 22, 2009 8:48 pm
Forum: General
Topic: IBM not recommending 4-tier architecture anymore
Replies: 2
Views: 1710

Can you explain, on which parameter we have to change in the uvconfig file for switching back to Univerese logging?

We are using Windows Server 2003 for 8.1.
by DS_SUPPORT
Thu Jul 16, 2009 9:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Merge multiple rows into one based on key values
Replies: 8
Views: 4181

I don't know whether this method will work, but give a try.

Try writing the Values to Userstatus and fetch it when required.
by DS_SUPPORT
Thu Jul 16, 2009 8:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: setting KeyMgtGetNextValue / KeyMgtGetNextValueConcurrent
Replies: 2
Views: 2055

It seems, your requirement is just lookup validation. If a lookup fails, you wanted a negative number sent to the target. If this is you requirement, just create a simple routine which will return some Negative value, and whenever the lookup fails, call the routine and fetch the value. So that it wi...
by DS_SUPPORT
Wed Jul 08, 2009 10:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: List of Jobs across Projects
Replies: 13
Views: 7930

I have corrected the issue. The issue is , there is no "Perform Command" after the "SET-FILE".

And changed the line
TempVOCName = "JOBS_" : @USERNO

TO

TempVOCName = "JOBS_1"
by DS_SUPPORT
Wed Jul 08, 2009 10:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: List of Jobs across Projects
Replies: 13
Views: 7930

I am getting errors when executing the above routine. I TESTed it from DS manager. I am using Windows Server 7.5.2. The value for @USERNO is substituted as "-2208". So TempVOCName is formed like JOBS_-2208. I am getting error like ProjectName -- : ANAND_TST_PRJ Command -- SET-FILE ANAND_TS...
by DS_SUPPORT
Wed Jul 08, 2009 9:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: List of Jobs across Projects
Replies: 13
Views: 7930

Your routine could create a temporary VOC entry that points to DS_JOBS in each other project in turn.
Can you please provide some examples for it?
by DS_SUPPORT
Thu Jun 25, 2009 12:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Lookup Opeartion
Replies: 2
Views: 1710

It depends , what stage you are using for a lookup and also your target Key Structure. You have to use Universe Stage or ODBC stage , to return Multiple row set from the lookup. Search the forum with the keyword "Reference Link with Multi Row Result Set", you will find ways on how to imple...
by DS_SUPPORT
Mon Jun 22, 2009 11:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Getting Number of Columns of Hashed File
Replies: 5
Views: 1971

Thanks for the Replies. Using DCount(Convert(@TM,@FM,RVal),@FM) doent give me the desired results, So I have used two loops one for validating the Keys and one for Validating Non Keys. Read Record From HashVal, CurrID Then RVal = Record ******* Loop and Validate the Key Fields KeyColCount = DCount(C...
by DS_SUPPORT
Mon Jun 22, 2009 7:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Getting Number of Columns of Hashed File
Replies: 5
Views: 1971

And after getting the column count, I will loop all the columns, i want to read the column value like Record<1>, so whether i will be able to read the Key columns and its value also like this.
by DS_SUPPORT
Mon Jun 22, 2009 5:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Getting Number of Columns of Hashed File
Replies: 5
Views: 1971

Getting Number of Columns of Hashed File

I am writing a routine , which will get HashedFileName as Input and Check the Values in all columns of it. By default the hashed file will contain 1 row, and i wanted to see all the values of all columns is there in a specified range. I am writing something like this OpenPath FilePath:HashFileName T...
by DS_SUPPORT
Mon Jun 22, 2009 3:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Identify the server version
Replies: 3
Views: 1274

One way to find is, take an export of any job and open the dsx and in the Header Section , you will see Server Version. BEGIN HEADER CharacterSet "CP1252" ExportingTool "Ascential DataStage Export" ToolVersion "4" ServerName "Anand_Local" ToolInstanceID "...
by DS_SUPPORT
Sun Jun 21, 2009 10:58 pm
Forum: General
Topic: Sequence generator
Replies: 2
Views: 1756

Or Use the supplied KeyMgmt Routines.
by DS_SUPPORT
Sat Jun 20, 2009 9:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine Testing in Manager
Replies: 3
Views: 1581

We have a Project Level ENvironment Variable, $TGT_DB_CONNECTION, and i was trying to fetch that value from DS Manager.
by DS_SUPPORT
Sat Jun 20, 2009 3:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine Testing in Manager
Replies: 3
Views: 1581

Routine Testing in Manager

I am using this routine provided by Ray FUNCTION GetEnvironmentVariable(EnvVarName) If UnAssigned(EnvVarName) Or IsNull(EnvVarName) Then Ans = @NULL End Else Call DSExecute("UV", "ENV", Output, ExitStatus) FindStr EnvVarName In Output Setting FMC,VMC,SMC Then Ans = Field(Output<F...
by DS_SUPPORT
Thu Jun 11, 2009 11:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: COMMON Usage
Replies: 1
Views: 1173

COMMON Usage

We have a dimension for capturing all the dates and the corresponding Surrogate ID values , and previously we were using this lookup and got the SIDs from the Hashed File. And later on, we have written a custom routine to convert the given date to the SID value, as it is more like removing the hyphe...