Search found 133 matches

by Luk
Wed Apr 27, 2005 4:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how do we generate surroget keys
Replies: 3
Views: 1745

you can use GetNextKeyValue routine in transformer stage to generate integer number sequence wchich you can link with old keys and use it as surrogate keys
by Luk
Wed Apr 20, 2005 6:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job accessed by another user
Replies: 9
Views: 3014

you can stop DS server

Code: Select all

./bin/uv -admin -stop
check are there some processes still running

Code: Select all

ps -ef | grep dsslave (or dsapi)
kill processes and start DS server

Code: Select all

./bin/uv -admin -start
by Luk
Wed Apr 20, 2005 6:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: jobs export
Replies: 3
Views: 966

jobs export

is it possible to export jobs made with DS into some code (i.e. C++,VB ....) and then run them without having DS installed??

I suppose that is impossible :( but I want to make myself sure.
by Luk
Wed Apr 20, 2005 1:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Columns name from ODBC as data
Replies: 7
Views: 1003

Can you post the solution you have successfully implemented so any future search for similar requirements can make use of it.
Sainath - solution is already posted. mhester gave it!!!

Code: Select all

elect COLUMN_NAME from information_schema.columns
where table_name = 'TABLE_NAME'
by Luk
Tue Apr 19, 2005 8:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Columns name from ODBC as data
Replies: 7
Views: 1003

thanks - it is working
by Luk
Tue Apr 19, 2005 8:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Columns name from ODBC as data
Replies: 7
Views: 1003

no!

I have ODBC stage and I am connecting to MSSQL server. I want to get column names from SQL server as data (in rows) and use them - put into target!
by Luk
Tue Apr 19, 2005 7:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Columns name from ODBC as data
Replies: 7
Views: 1003

Columns name from ODBC as data

Is it possible to catch columns names from SQL querry by ODBC stage and put it i.e. to a file??
by Luk
Tue Apr 19, 2005 7:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Writing data into two hash
Replies: 8
Views: 2020

:) You already gave solution - as I've mentioned you had right!!

set of columns which I used as PK in hash file wasn't 100% unique (there was an update on few records in hash) . I have added 1 more column as key and everything is unique and number of rows i hashes is correct!

Regards
by Luk
Tue Apr 19, 2005 6:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Writing data into two hash
Replies: 8
Views: 2020

OK :)

problem is solved

thanks you all!!

Regards
by Luk
Tue Apr 19, 2005 5:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Writing data into two hash
Replies: 8
Views: 2020

Yes that is true - I have noticed that pair of PK columns is not 100% unique !!! if you ran the job and created the hash file with just one column as the PK and later added the second column the file will only use the original definition, I am using checbox "create file" and checkbox "...
by Luk
Tue Apr 19, 2005 5:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Writing data into two hash
Replies: 8
Views: 2020

Is it possible to overwrite surrogate key column (made by GetKeyNextValue) in hash when I have PK build with two columns (key is unique only when you take both columns, if you take only one they won't be unique) ??
by Luk
Tue Apr 19, 2005 3:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Writing data into two hash
Replies: 8
Views: 2020

Writing data into two hash

Hi! I have strange problem. I have got transformer and output of transformer is connected with two different hash files. As input of transformer I veve got sequence of surrogate keys( made with GetKeyNextValue) colA, colB and colC. I'm putting key column, colA as PK, colB as PK into firs hash - key ...
by Luk
Tue Apr 19, 2005 1:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Connecting to DataStage server failed...
Replies: 17
Views: 5063

HI!

What kind of problem do you have with connection to Sybase IQ??
by Luk
Thu Apr 14, 2005 1:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS75 Upgrade - jobs running as dsadm
Replies: 5
Views: 1899

dsadm - is default user when you don't type another one during root installation
by Luk
Wed Apr 13, 2005 6:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Warning:
Replies: 2
Views: 904

Warning:

Hi!

I have got following warning:
DataStage Job 80 Phantom 15479
Program "JOB.526962533.DT.1361844072.TRANS3": Line 157, Variable previously undefined. Zero length string used.
What does it mean??

Regards