Search found 5168 matches

by kumar_s
Tue Dec 05, 2006 12:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fatal Error with the message key value already kept
Replies: 4
Views: 1733

Is it all the message you get? Are you sure that there is no change after the first run and the second? Is CLCL_ID a field or a name of the stage? Will it allow you to do a force compile?
by kumar_s
Tue Dec 05, 2006 12:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to avoid first five rows from the source in Importing
Replies: 6
Views: 1799

So how can i avoid first five rows to sourch while importing

You can use

Code: Select all

tail +6 filename
. Also note that it does not works on all flavors of unix.
by kumar_s
Tue Dec 05, 2006 12:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ODBC connection error
Replies: 3
Views: 3523

Have you setup the DNS entry for Datastage for those database. Update uvodbc.config and .odbc.ini which is under $dshome. The same can also be found under the respective project folder. First try to do tnsping from the datastage server to the database to verify the tnsnames.ora has been updated corr...
by kumar_s
Tue Dec 05, 2006 12:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: design question
Replies: 4
Views: 1289

You cannot extract from BO universe, but can try with its repository.
by kumar_s
Mon Dec 04, 2006 7:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: design question
Replies: 4
Views: 1289

Why not the Universe and Unidata stage?
by kumar_s
Mon Dec 04, 2006 7:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: file name
Replies: 9
Views: 2055

If its about deciding filename on runtime, then YES, its possible on many ways.
by kumar_s
Mon Dec 04, 2006 7:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: regarding query repository
Replies: 8
Views: 1822

And the OLETYPE for Jobs are 'CJobDefn'.
So if you change your query as following you can get the result.

Code: Select all

select @ID,NAME "JOB_NAME",OBJID,OBJTYPE,OBJNAME,OBJIDNO FROM DS_JOBOBJECTS where @ID like '%ROOT' and OLETYPE like '%Defn' and  OBJTYPE = 'J' order by OBJIDNO
by kumar_s
Mon Dec 04, 2006 6:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: regarding query repository
Replies: 7
Views: 1667

Hi Abhi, The output for LIST DICT or LIST ITEM and SELECT will be different. Select will give the list of data available in the Hashed table. LIST DICT will give the data dictionary(Metadata) for the table. You can use LIST DS_JOBOBJECTS to get the similar result of SELECT * FROM DS_JOBOBJECTS. Simi...
by kumar_s
Mon Dec 04, 2006 6:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: regarding query repository
Replies: 8
Views: 1822

So its simple 'FROM' 'WHERE' statement misplace.
by kumar_s
Sun Dec 03, 2006 9:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: regarding query repository
Replies: 7
Views: 1667

Change it to LIST DICT DS_JOBOBJECTS. (No dot'.' next to LIST)
by kumar_s
Sun Dec 03, 2006 6:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ORALCE REJECTS
Replies: 11
Views: 2594

The general reason can be many. Majorly Unique constraints violation, metadata mismatch or condition based rejects.
by kumar_s
Sun Dec 03, 2006 6:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error: unable to delete
Replies: 5
Views: 1954

Check the permission of the file 'uat_edw.MAINT_USERS_SECR.bad' using ls -lat. And make sure the file exist in the correct format as expected.
Check the owner of the file. Check if the file can be deleted using dsadm.
Just curious to know, if its production, shouldn't it be prod_edw.....
by kumar_s
Sun Dec 03, 2006 5:59 pm
Forum: Site/Forum
Topic: No Limits.
Replies: 11
Views: 5632

No Limits.

The Usual exciting show from Ray and Craig!!!
Ray on 16K and Craig on 8K. Ray still maintains his benchmarks with Craig. :wink:
Nothing gonna stop them.
by kumar_s
Sun Dec 03, 2006 5:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error missing ORA.DLL
Replies: 6
Views: 1931

Perhaps you can try to reinstall the plugings using dspackinst in $DSHOME/bin.
by kumar_s
Fri Dec 01, 2006 2:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ETL Batch Process & Timings
Replies: 1
Views: 951

2nd method may not pull out the precise result as the data and the indices been updated/inserted by ETL process. Due to the same reason, the performace might even get affected as the data gets loaded as the local index gets updated (based on the partitioning key).