Search found 116 matches

by nivas
Wed May 28, 2008 10:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Log Path to see the Job LOG - not thru Director!!!
Replies: 11
Views: 2812

Thank you very much for all.
Nivas
by nivas
Wed May 28, 2008 8:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Log Path to see the Job LOG - not thru Director!!!
Replies: 11
Views: 2812

ArndW wrote:"dsjob -log" inserts a record into the log, you are looking for "dsjob -logsum" ...
Excellent.

Thanks
Nivas
by nivas
Wed May 28, 2008 8:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Log Path to see the Job LOG - not thru Director!!!
Replies: 11
Views: 2812

Same answer for Windows. I am trying to find how do I read from output stream to a file in DOS. The following I am getting. C:\ASCENT~1\DATAST~1\Engine\bin>dsjob -log HSNOUB92Warehouse BatchHSNOCHCWarehou se1 Enter message text, terminating with Ctrl-d Nivas^D Message read. After this How do read t...
by nivas
Wed May 28, 2008 8:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Log Path to see the Job LOG - not thru Director!!!
Replies: 11
Views: 2812

The job log is in a DataStage table and is not a sequential file. You can use the UNIX command "dsjob -log <project> <job>" to get this information listed to standard output and could redi ... How can we get the log info with Windows as OS. I am trying to view the log other than Director....
by nivas
Wed May 28, 2008 6:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Create Dynamic files
Replies: 9
Views: 2218

Use OpenSeq, Create and WriteSeq
by nivas
Tue May 20, 2008 6:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating EXCEL work book
Replies: 9
Views: 2663

Prefexing apostrophe in EXCEL spread sheet

Hi I was able to insert data from flat file to excel workbook with the help from our earlier posts. Now I got another one. When I insert a numeric/integer value into the spread sheet, the datastage is actually putting a apostrophe at the begining. For example the the actual value is -2014807879 but ...
by nivas
Mon May 19, 2008 11:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating EXCEL work book
Replies: 9
Views: 2663

Thanks for the response. Now I am getting the following error. Please help me out EXCELTest..map.DSLink13: DSD.BCIPut call to SQLExecute failed. SQL statement:UPDATE `Sheet1$` SET COL2 = ?, COL3 = ?, COL4 = ? WHERE (COL1 = ?) SQLSTATE=S1000, DBMS.CODE=-3035 [DataStage][SQL Client][ODBC][Microsoft][O...
by nivas
Fri May 16, 2008 11:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating EXCEL work book
Replies: 9
Views: 2663

I am able to create multiple EXCEL spread sheets based on first filed in the sequential file. Now instead of creating multiple spread sheets I want to create multiple tabs in one spread sheet.

thanks
nivas
by nivas
Fri May 16, 2008 11:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating EXCEL work book
Replies: 9
Views: 2663

Creating EXCEL work book

I have a sequential file which has coma seperated values. I need to create EXCEL work book with this data. Based on the First Filed in the sequential the data should be moved to different tabls in the EXCEL work book. I should be able to name the tab with first field value in the sequential file. Co...
by nivas
Tue May 13, 2008 11:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Vertical pivot
Replies: 15
Views: 6839

This topic earlier explained. But I would like to give brief info.

You need to use variables and concatenate the cols based on key col . You need to use hash file and make the key col as the key in hash file. There by you will have the vertical pivot records in hash file.
by nivas
Tue Apr 29, 2008 6:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Excel File
Replies: 16
Views: 7678

Using Sequential File stage if you create a file with extention .csv and select the check box First Line is column names, delimiter as "," there by it will create a spread sheet with first row as column names and the rest rows with data.
by nivas
Mon Apr 28, 2008 11:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Excel File
Replies: 16
Views: 7678

Re: Excel File

You can use sequential stage and create the file as .csv. This will create a EXCEL spread sheet.
by nivas
Tue Feb 12, 2008 12:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: date conversion
Replies: 17
Views: 5176

using IsNull datastage function handle the nulls set a default value
by nivas
Tue Feb 12, 2008 12:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Concatenating multiple rows from the same column
Replies: 11
Views: 6925

Three steps involved.
1. In the SQL order the records on first column.
2. Inside the transform use stage variables and concatenate second columns for the same first column value.
3. out put the records from transformer to Hash File making the first column as the key column in hash file.
by nivas
Tue Feb 12, 2008 12:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: date conversion
Replies: 17
Views: 5176

use IConv and OConv datastage functions convert the input value appropriate to Oracle Date format. Look for Online document for IConv and OConv with different options.