Search found 231 matches

by DS_SUPPORT
Thu Nov 01, 2007 11:10 pm
Forum: General
Topic: DATATAGE EXPORT's
Replies: 5
Views: 2915

DSCMDEXPORT is better to export the whole project, it includes the executables also,
by DS_SUPPORT
Fri Oct 26, 2007 1:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Automating export/import of DataStage jobs
Replies: 2
Views: 1360

Search for the keywords dsexport , dsimport. You will find lot of posts.
by DS_SUPPORT
Mon Oct 01, 2007 1:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Selective Command Line Export?
Replies: 32
Views: 16890

Yes, we can do that Call DSExecute("NT","C:\Progra~1\Ascential\DataStage7.5\DSExport.exe /U=Admin /P=***** /H=Hostname /JOB= TestJob PROJECTNAME c:\aa.dsx",Abc,Abcd) Call DSExecute("NT","C:\Progra~1\Ascential\DataStage7.5\DSExport.exe /U=Admin /P=***** /H=Hostname ...
by DS_SUPPORT
Thu Sep 13, 2007 9:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Target Update Action - Need Clarification
Replies: 1
Views: 1042

Target Update Action - Need Clarification

I am trying to create a server job with two streams (Incremental and Destructive). I am having a Jobparameter which will tell whether it is Incremental Load or Destructive Load. So From a Transformer I am having two links, I put the constraint for Link1 as Incremental and for the Second Link , I hav...
by DS_SUPPORT
Tue Aug 21, 2007 11:35 pm
Forum: General
Topic: Server to Parallel Transition Lab
Replies: 3
Views: 1563

Ray,

Are you still taking these type of classes. If yes, when and where will be next class? Is it a online class or is it a Class room type of training.
by DS_SUPPORT
Tue Aug 07, 2007 9:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Data type to choose
Replies: 4
Views: 2358

For TEXT datatype, we are using Varchar(2000) and the jobs are running fine.
by DS_SUPPORT
Mon Aug 06, 2007 9:40 pm
Forum: General
Topic: dsr.admin error creating DR elements -1
Replies: 6
Views: 4173

we also had a problem when using MSSQL Server 2005 as Metadata Server, but it is working fine with DB2 as metadata server. I hope may be it is because of licensing problems, Not Sure about it.
by DS_SUPPORT
Thu Jun 07, 2007 6:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Maximum Column length of Hashed File
Replies: 2
Views: 675

Maximum Column length of Hashed File

What will be the maximum value (in length), i can store in Hashed file for a particular column? I am thinking of storing some appended values in a Hashed File, Something like KeyCol NonKeyCol k1 AA|BB|CC|DD|EE K2 AA|BB|CC|DD|EE Here the length of the Non key column will change based upon the number ...
by DS_SUPPORT
Tue Jun 05, 2007 5:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Passing Column Name from Routine and get its value
Replies: 3
Views: 1152

Ray, Thanks for guiding me to the right path. I have wrote a routine based on some previous posts.

Now the job is working fine as per my requirement. The question which comes to my mind is , As this is undocumented method, whether it will work in Datastage 8.

Thanks
Anand
by DS_SUPPORT
Mon Jun 04, 2007 3:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Passing Column Name from Routine and get its value
Replies: 3
Views: 1152

Passing Column Name from Routine and get its value

I want to calculate CRC value for dynamic columns, we are in a type of product development, so it is upto customer to choose the columns, he wants to track the changes. So i thought of maintaing something like parameter file, and define the columns there. And while running the job, i want to read th...
by DS_SUPPORT
Mon May 21, 2007 9:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Insert / Update Timestamp
Replies: 1
Views: 1325

If you know, whether the incoming row is Insert or update, then for the Insert Target Stage, Set target action as "Insert New Rows only" and for the Update Target Stage , set the target action as "Update Existing rows only". Because the target action "Insert or Update" ...
by DS_SUPPORT
Mon May 21, 2007 9:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Usage Analysis- Manager
Replies: 2
Views: 1128

There are some other ways to find the information you want. Kim Duke has posted lot of queries like this. one of them are SELECT DS_JOBS.NAME AS JOB_NAME, DS_JOBS.CATEGORY, DS_JOBOBJECTS.NAME AS OBJECT_NAME, DS_JOBOBJECTS.OLETYPE, EVAL DS_JOBOBJECTS."if index(upcase(@RECORD),'YOURTABLENAME',1) ...
by DS_SUPPORT
Thu May 10, 2007 9:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Source Data Truncated
Replies: 9
Views: 3658

Write the Output to a Sequential File and Check the data, If you get the complete set of data, then your job is working fine.

In this case Check in the Database whether any triggers or constraint is there.

Thanks
Anand
by DS_SUPPORT
Wed Apr 25, 2007 11:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: User-Defined Sql in Target Stage
Replies: 4
Views: 1557

Any updates on Creating the Column name dynamically?
by DS_SUPPORT
Wed Apr 25, 2007 5:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: User-Defined Sql in Target Stage
Replies: 4
Views: 1557

User-Defined Sql in Target Stage

I just created a test job, which will read from a CSV file and load it to a SQL Server target. I have used DRS as Target stage. First I have inserted all the records to the target by selecting "Insert rows without clearing". Then I made the target update action as "User-Defined Sql' a...