Search found 198 matches

by mystuff
Tue Jul 29, 2008 10:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: output from hashed file
Replies: 47
Views: 15481

ArndW wrote:Your width per line is over the default of 80. Try "SET.TERM.TYPE WIDTH 132".
This the same result, with additional message
DEC vt100 terminal (vt100)
by mystuff
Tue Jul 29, 2008 9:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: output from hashed file
Replies: 47
Views: 15481

"15L" decodes as 15 characters wide, left justified. "15T" is the same, but breaking on word boundaries. "15R" is right justified. I have the widths in hashed file defined way higher than the expected values (there are no extra spaces as well in the data, so i am sure ...
by mystuff
Mon Jul 28, 2008 11:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: output from hashed file
Replies: 47
Views: 15481

a) Doing Trials - Since the column width seems to be the issue. I tried to increase the column width. More than the length of the data. Still keep getting the same scenario. b) Another mess up - or One interesting thing. I went into the Hashed file setting (in options, where we select dynamic type e...
by mystuff
Mon Jul 28, 2008 6:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: output from hashed file
Replies: 47
Views: 15481

I don't know the column information of the hashed file. How can I go without it. I am actually writing "select * from hashedfile;" About the formatting query SELECT @ID FMT '15L', F1 FMT '15L', F2 FMT '15L' FROM hashedfile; F1, F2 ---> Are these the column names 15L --> what does this stan...
by mystuff
Mon Jul 28, 2008 4:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: output from hashed file
Replies: 47
Views: 15481

Get the metadata correct, or use command line overrides to get the display widths sufficiently large. Code: SELECT @ID FMT '15L', F1 FMT '15L', F2 FMT '15L' FROM hashedfile; DataStage/SQL: VOC dictionary descriptors cannot be used with SQL DataStage/SQL: syntax error. Unexpected symbol. Token was &...
by mystuff
Mon Jul 28, 2008 3:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: output from hashed file
Replies: 47
Views: 15481

output from hashed file

When I do a select on a hashed file (through unix) I don't get the each row in one line. Each field splits up and shows up in the next line. Something like this. ROW1 Fie Fie ld1 ld2 ROW2 Fie Fie ld1 ld2 instead of ROW1 Field1 Field2 ROW2 Field1 Field2 How can I avoid such scenario?
by mystuff
Fri Jul 25, 2008 11:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: pipe delimited output from dssh
Replies: 1
Views: 1398

pipe delimited output from dssh

Hi there, I am wanted to obtain a pipe delimited output while reading from hashed file dssh << EOF > $filename select * from hash; >EOF looks likes this file generates a tab-delimited output. I wanted a pipe-delimited output. I can't replace tabs with pipes, as the data might contain tabs. Is there ...
by mystuff
Tue Jul 15, 2008 7:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: access hashed file through unix
Replies: 2
Views: 1433

access hashed file through unix

Hi,
a) can we access (read field) from hashed file through unix
b) how do we do that.

Thanks
by mystuff
Wed May 21, 2008 8:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: connecting to peoplesoft
Replies: 2
Views: 1219

connecting to peoplesoft

Hi all,

I have few elementary questions. I just heard about a firm connecting peoplesoft and datastage through some component interface

a) How is it possible to connect to peoplesoft via datastage (both server or parallel)
b) Why do we infact need to connect to peoplesoft
by mystuff
Tue May 20, 2008 8:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: odbc connection problem
Replies: 3
Views: 2598

Ray ,

I have read and execute permissions on /41bdsadm/Ascential/DataStage/branded_odbc and its subdirectories.

What could be the problem?

Thanks
by mystuff
Mon May 19, 2008 1:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: odbc connection problem
Replies: 3
Views: 2598

odbc connection problem

Hi , I have migrated a project from DS SE 7.5.1 to DS EE 7.5.3. It worked well in the server edition but in Enterprise Edition iam getting an error while trying to view data from an ODBC Stage jobHRMI_DWH_GRADE..SrctblGrade (OpenPath failed for - /41bdsadm/Ascential/DataStage/branded_odbc ): jobHRMI...
by mystuff
Thu Jan 03, 2008 3:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Run jobs from command line
Replies: 15
Views: 9000

Why does some of the returned codes means the same in the script, like

8,13 and 3,96
by mystuff
Thu Jan 03, 2008 2:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: compilation dscc
Replies: 4
Views: 1383

The group, which will be handling the code transfer to production is not going to have any datastage experience + security concerns requires that everything should be automated and no source code should be availabe in production. Even I am boggled with the requirements. But I wasn't able to talk thr...
by mystuff
Thu Jan 03, 2008 2:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Records are rejecting in Hash file
Replies: 2
Views: 773

Can you specify more details. a) What are you contraints that you are using (and where, you said in file as well) b) I presume one of the files is not converted into hashed file (or is it?) c) If possible can you show miniature diagram of your design. The information in your earlier mail is not suff...
by mystuff
Thu Jan 03, 2008 12:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: compilation dscc
Replies: 4
Views: 1383

compilation dscc

if we use

Code: Select all

dsjob -import
then does it make sense to use dscc to compile?? as dsjob -import , obtains only executables and executables are created from object code (after compilation) and linked libraries (I presume the answer is No, but still would like to confirm before I proceed with the design)