Search found 180 matches

by rafik2k
Fri May 11, 2007 6:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Cleanup resources problem
Replies: 10
Views: 2343

You can check after restarting the services of ds server
by rafik2k
Fri May 11, 2007 6:06 am
Forum: General
Topic: Connectivity problems
Replies: 2
Views: 1782

when i try to run DS on local machine without LAN connectivity it fails to connect Are you running DS client to conenect to to DS Server? Without your LAN connectivity, how is it possible? You local machine must have connection with server machine. Ping the server from you machine and check whether...
by rafik2k
Fri May 11, 2007 5:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Cleanup resources problem
Replies: 10
Views: 2343

Can you see the process using DS.TOOLS?
by rafik2k
Fri May 11, 2007 3:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Fetch Data Based on List of Keys
Replies: 8
Views: 1968

Code: Select all

 is too much. for instance 1 million !! 
so this can be a costly affair. 
If your list of keys is in the table and then perform join at the database level itslef.
That will reduce the overhead of bring entire data into staging area.
by rafik2k
Fri May 11, 2007 2:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Fetch Data Based on List of Keys
Replies: 8
Views: 1968

One approach is create a hash file for the list of keys.
select all data from db2 database as it is and then in the transformer join this data with hash file using setid and recname, then pull the data into seq file
by rafik2k
Fri May 11, 2007 1:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2_Bulkloading_records not inserting
Replies: 7
Views: 2572

Code: Select all

Load Immediate = No 
This should work when Load Method : Sequential File

What is the File type of the data format? is it IXF or Delimited ASCII format?

When you run the job, is performance statistics showing any rows to the input link of DB2_UDB_Load
by rafik2k
Fri May 11, 2007 12:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Blanks/Null Values in the date field
Replies: 9
Views: 4035

If the target field is nullable then you can use @NULL


Code: Select all

If Len(Trim(Link.Column))=0 Then 

Then [b]@NULL[/b]

Else Oconv(Iconv(Link.Column, "DYMD"),"D-YMD[4,2,2]") : " 00:00:00" 
by rafik2k
Thu May 10, 2007 5:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Transforms
Replies: 5
Views: 1710

What do you mean by transformations?
and what do you want to with transformation??
by rafik2k
Thu May 10, 2007 5:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Importing Table Defintions from a remote DB2 Server
Replies: 5
Views: 2216

Do the following step if you want to use plug-in metadata definition:-
Select Plug-in
In your case(for db2) IBM DB2 UDB data acess

Enter Server Name as your db2 Database name, user name,password.
In next step select the table you want to export,select To Category-->then import.
by rafik2k
Thu May 10, 2007 4:06 am
Forum: IBM<sup>®</sup> DataStage TX
Topic: Built in routine argument syntax
Replies: 2
Views: 3154

It has been discussed may times.

Search for the post
Here is one
viewtopic.php?t=108857
by rafik2k
Thu May 10, 2007 2:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Transforms
Replies: 5
Views: 1710

create one simple job and add a transformer stage on. Go to Transfomer properties-->Click on derivation of a clumn on output link. You will see list of available transformation like DS Macro,DS Rotuine ... You can also create your own routine. For more information 1) search the post for creating rou...
by rafik2k
Thu May 10, 2007 2:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Transaction type and Array list
Replies: 6
Views: 2214

Array size: no.of rows written to or read from the database at a time.
Transaction type: no. of rows committed at the database at a time.

Default value of Transaction type is 0, means all rows will be committed at a time
by rafik2k
Thu May 10, 2007 2:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Importing Table Definitions from a remote source/target
Replies: 6
Views: 1993

Better involve DBA to create dsn for you.
You need to create dsn in server where DatStage resides.

For windows environment you can create system dsn using Data Sources(ODBC) under control panel.

Search web for more information.
by rafik2k
Thu May 10, 2007 1:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Importing Table Definitions from a remote source/target
Replies: 6
Views: 1993

Same post in both Server and Parallel index?

check this viewtopic.php?t=109785

What database you are trying to connect?
by rafik2k
Thu May 10, 2007 1:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Importing Table Defintions from a remote DB2 Server
Replies: 5
Views: 2216

Create two dsn for the databases in those server.
Go to Import--->ODBC Table Definition
Enter your dsn name, user name and password.

You will get list of table for the database.

Then import what ever table you want.