Search found 7201 matches

by admin
Wed Jun 12, 2002 11:34 am
Forum: Archive of DataStage Users@Oliver.com
Topic: Antw: AS400 ODBC username and password hang.
Replies: 0
Views: 1871

Antw: AS400 ODBC username and password hang.

This is a topic for an orphaned message.
by admin
Wed Jun 12, 2002 11:07 am
Forum: Archive of DataStage Users@Oliver.com
Topic: AS400 ODBC username and password hang.
Replies: 4
Views: 1692

Hi Ricardo This is even before running, when you try to view the data in the ODBC icon on the designer. If the username and password is correct, the data views. If it is incorrect the job just hangs, no reply, no message, no anything. When you do an action like viewing it starts a UV process, and th...
by admin
Wed Jun 12, 2002 10:09 am
Forum: Archive of DataStage Users@Oliver.com
Topic: DSD_SendEvent.B:Error Starting run
Replies: 0
Views: 448

DSD_SendEvent.B:Error Starting run

Hi, I am running DataStage 5.2 on Solaris 8. Everythings been working fine, but suddenly when I try to run a job in a sequence, I always get this error: DSD_SendEvent.B:Error Starting run The log details say: Cmd = SH -cActivityCmd START -file MSEVENTS/20020612120030000 Output = ERROR: Couldnt get I...
by admin
Wed Jun 12, 2002 9:33 am
Forum: Archive of DataStage Users@Oliver.com
Topic: AS400 ODBC username and password hang.
Replies: 4
Views: 1692

Hi, but which is the job status when the odbc hangs?? Is it still running?? ..or finished?? Riccardo ----- Original Message ----- From: "Yzelle De Wet" To: Sent: Wednesday, June 12, 2002 8:27 AM Subject: RE: AS400 ODBC username and password hang. > Morning Gents / Ladies. > > I have tried the driver...
by admin
Wed Jun 12, 2002 9:21 am
Forum: Archive of DataStage Users@Oliver.com
Topic: Replacing of text
Replies: 3
Views: 651

Hi Julie, try Trim function: Trim(String," ","A") This function will "trim" all unnecessary ("garbage") spaces! Hope this will help you Riccardo ----- Original Message ----- From: To: Sent: Wednesday, June 12, 2002 3:29 AM Subject: Replacing of text > > > This should be an easy one, but I cant seem ...
by admin
Wed Jun 12, 2002 9:06 am
Forum: Archive of DataStage Users@Oliver.com
Topic: Batch job wont stop
Replies: 3
Views: 518

Batch job wont stop

Hi all Im running Datastage 5.1 on unix and I am encountering the following problem: I have a batch job which is running, and when I try to stop it, it doesnt. the jobs that the batch job calls are not running (finished), so theres no reason for the batch job to keep running. any advice? Denzil
by admin
Wed Jun 12, 2002 6:27 am
Forum: Archive of DataStage Users@Oliver.com
Topic: AS400 ODBC username and password hang.
Replies: 4
Views: 1692

Morning Gents / Ladies. I have tried the driver from another application. Oracle and Excell and both from the DataStage server. It seems DataStage is the only application that has this problem. Thanks for the help. Yzelle De Wet -----Original Message----- From: David Barham [mailto:david@barham.hm] ...
by admin
Wed Jun 12, 2002 5:18 am
Forum: Archive of DataStage Users@Oliver.com
Topic: joining of two diff data sources in server jobs
Replies: 3
Views: 1369

A passive stage such as the ODBC stage (or any other) only connects to a single data source/target. What you need to do is read from one of the tables using one ODBC stage and from your transform, do a lookup to the other source. This is how DataStage effectively performs joins across different data...
by admin
Wed Jun 12, 2002 4:39 am
Forum: Archive of DataStage Users@Oliver.com
Topic: joining of two diff data sources in server jobs
Replies: 3
Views: 1369

hi all Mark, thanks for ur reply. I have another problem regd datastage which is concerned with two sources. I have an dept table in Sqlserver databse and I have another table by name Emp in Oracle. I want to join these two tables based on the deptno condition How can this be done?. What I did is I ...
by admin
Wed Jun 12, 2002 1:29 am
Forum: Archive of DataStage Users@Oliver.com
Topic: Replacing of text
Replies: 3
Views: 651

Replacing of text

This should be an easy one, but I cant seem to find the correct answer in the help I have a name that has been concatenated together, and in some cases there might be 3 spaces between the first and last name (as there is no middle name). Using which instruction can we replace the 3 spaces with 1 spa...
by admin
Wed Jun 12, 2002 1:24 am
Forum: Archive of DataStage Users@Oliver.com
Topic: Replacing of text
Replies: 3
Views: 651

Have a look at Trim in the online help. This will clean up all leading, trailing and embedded white space. If you wanted to be more precise and just reduce your 3 spaces to a single space (but no other whitespace combinations), you could also use Ereplace(name," "," ") -----Original Message----- Fro...
by admin
Wed Jun 12, 2002 12:10 am
Forum: Archive of DataStage Users@Oliver.com
Topic: DSSetParam with working variables from a batch control job
Replies: 2
Views: 810

Hello, It works now. Thanks for the input. As I am new to datastage basic, it took me a while to find a command to display the values for a variable and I finally end up with using DSLogEvent. After several struggles, I found out that I had made a careless mistake on the variable assignment. The DSS...
by admin
Tue Jun 11, 2002 7:02 pm
Forum: Archive of DataStage Users@Oliver.com
Topic: Troy J Hayes/CO/USB is out of the office.
Replies: 0
Views: 405

Troy J Hayes/CO/USB is out of the office.

I will be out of the office starting 06/10/2002 and will not return until 08/15/2002.
by admin
Tue Jun 11, 2002 6:21 pm
Forum: Archive of DataStage Users@Oliver.com
Topic: Coexistance of DataStage client 4.0 and 5.2
Replies: 2
Views: 488

Different versions of DS Client cannot coexist on the same machine. You may want to look into a product such as VMWare that will allow you to create "virtual machines" within your Windows environment. You could then install DS 4.0 in one VM and DS 5.2 in another VM (or your native environment). You ...
by admin
Tue Jun 11, 2002 4:39 pm
Forum: Archive of DataStage Users@Oliver.com
Topic: DSSetParam with working variables from a batch control job
Replies: 0
Views: 394

DSSetParam with working variables from a batch control job

Hello Paul Reading data from hash files can be tricky. Are you sure that you have assigned VarOne correctly. i.e. have you used a CALL DSLogInfo(,VarOne) to examine its value? Check for hidden characters eg char(254) field separators in your data. I have often used this method to initialise job para...