Search found 66 matches

by wdudek
Tue Jun 14, 2005 11:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: HOw to insert date in oracle
Replies: 11
Views: 5316

Ouch!! A DBA changing he default date format would definately cause problems with my assumption.
by wdudek
Mon Jun 13, 2005 11:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: HOw to insert date in oracle
Replies: 11
Views: 5316

Did you resolve the problem? The person who mentioned changing the date to a char should be correct, although we use varchar. That and formatting the "date" field to look like 13-JUN-05 should let it go right into oracle.
by wdudek
Mon Jun 13, 2005 11:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle and DataStage
Replies: 5
Views: 3158

In the before (or after) tab put the following line

Code: Select all

 CALL DBMS_APPLICATION_INFO.SET_MODULE(...) 
If CALL doesn't work try execute, but for some reason I think datastage likes call better. I tried looking for an example of how we do this but couldn't find one.
by wdudek
Tue Jan 04, 2005 12:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Call Stored procedure in Oracle 8 OCI stage
Replies: 5
Views: 2885

I know we do this, but can't find the job at the moment. I know that we use execute instead of call, and that it is in the after sql on ours, so I would expect the before sql to work as well.
by wdudek
Mon Dec 20, 2004 12:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: FTP using a datastage job
Replies: 16
Views: 14816

You can only ftp from a machine with an ftp service running on it. So for the Unix server to open a connection to the windows server through ftp, then the windows server will need to have an ftp servcie installed and running. You could use the windows ftp if this is a server, otherwise there are thi...
by wdudek
Mon Dec 20, 2004 9:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: FTP using a datastage job
Replies: 16
Views: 14816

Also in regards to the NFS drive, the users would only be accessing the parts of the unix server that you allow them to. Give them minimal permissions so that they cannot get at anything else.
by wdudek
Mon Dec 20, 2004 9:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: FTP using a datastage job
Replies: 16
Views: 14816

You could also do a similiar script from the Unx side so that datastage fires off the ftp command to get the fiels from the windows server.
by wdudek
Fri Dec 17, 2004 4:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: FTP using a datastage job
Replies: 16
Views: 14816

If they can post the files to a windows server running ftp, you could use datastage and the command stage to ftp the files off of the windows server and back to the unix environment. We do the opposite in our environment going from datastage on nt to Unix. You could also set up and NFS drive on the ...
by wdudek
Thu Dec 16, 2004 10:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage and Unidata tmp directory
Replies: 5
Views: 5433

Ray, I just want to clarify our scenario before changing anything. Our datastage server is running on windows 2k, it hasn't been changed and is functioning as expected on the windows side. Our Unidata server is running on AIX. Both Unidata and AIX have been updated here. When datastage connects to t...
by wdudek
Wed Dec 15, 2004 8:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage and Unidata tmp directory
Replies: 5
Views: 5433

well it was 6.0.14 that we upgraded to, but it didn't help much. If anyone is familiar with Unidata it is being suggested to us that it is a problem with the uni objects using the wrong temp space. i.e. not the one from the udtconfig file. But we can't find any configuration files that would seem to...
by wdudek
Wed Dec 15, 2004 5:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage and Unidata tmp directory
Replies: 5
Views: 5433

Its the Unidata temp space used by datastage. The correct temp space is being used by the Unidata database for all other processing. IBM has told us that version 6.0.8 of Unidata has bugs with uni objects and recommended that we upgrade to 6.0.12. We will be doing this tonight and I'll let everyone ...
by wdudek
Wed Dec 15, 2004 10:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage and Unidata tmp directory
Replies: 5
Views: 5433

Datastage and Unidata tmp directory

We are running Datastage 6 from a windows server, it extracts data from a Unidata database running on an AIX server. Over the weekend we upgraded both Unidata (5.2 to 6.0.8) and AIX (4.3.3 to 5.2) and are now finding temporary files being created in our /tmp directory on the AIX server, when we run ...
by wdudek
Mon Dec 06, 2004 9:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Scheduling vs. Manual
Replies: 4
Views: 3361

Bruce, When a job is run from designer or kicked off manually in director the job is run as the user who is logged in to the system. When Jobs are scheduled they do not run as this user. To Check who the job is running as or change to run the scheduled jobs as a differnt user 1. Launch Administrator...
by wdudek
Mon Nov 15, 2004 4:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Drive mapping for text files and odbc
Replies: 3
Views: 2086

I called Ascential support on this, and was able to get from them that my problem is due to the security implementation in our network. When I log into thorugh the client, a security token is created and passed to the server. When I try and login to the other computers through mapped drives, odbc, e...
by wdudek
Mon Nov 15, 2004 4:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Getting data from an ftp address
Replies: 7
Views: 3813

I haven't used the DSExecute to do this, but we do something similiar with the command stage and ftp in our jobs, using almost the same syntax

Code: Select all

ftp -s:d:\ldrfiles\ftp_scripts\lind
Don't know if this helps in any way.