Search found 231 matches

by DS_SUPPORT
Tue Oct 27, 2009 12:29 am
Forum: General
Topic: Security to datastage jobs
Replies: 5
Views: 2807

What do you mean by secure? You don't want some jobs to be accessed by all or some other things?
by DS_SUPPORT
Thu Oct 22, 2009 7:41 am
Forum: General
Topic: result of a query in a variable activity
Replies: 9
Views: 3335

For a transformer , definetly an output link should be there, but you can set the constraint to @FALSE, so nothing will be written to that file. If you want to store some constant values to the userstatus, you can just call it in stage subroutines, but here you are fetching some values from Database...
by DS_SUPPORT
Thu Oct 22, 2009 4:25 am
Forum: General
Topic: result of a query in a variable activity
Replies: 9
Views: 3335

Welcome... In SJ1, you can read the value from the database and set the value to user status by using "DSSetUserStatus". And you can fetch the values in the Sequence job by using SJ1's jobactivity.$UserStatus. Search the forum for the keyword DSSetUserStatus, you will get more details on h...
by DS_SUPPORT
Thu Oct 22, 2009 4:10 am
Forum: General
Topic: DSExport to export selective jobs
Replies: 4
Views: 2491

generally for this requirement, i will write a bat file, which will export each job in a different dsx file and finnally append all the dsx files to one. For /F "tokens=1" %%i in (C:\export\DsxList.txt) do ( C:\Progra~1\Ascential\DataStage7.5\dsexport /H=AnandLocal /U=Administrator /P=****...
by DS_SUPPORT
Wed Oct 14, 2009 11:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Modify a dsx or xml file
Replies: 5
Views: 2224

Kim Duke posted some scripts to search for a particular string in a project. Use that script and change only the required jobs and reschedule them.
by DS_SUPPORT
Sat Sep 05, 2009 9:32 pm
Forum: General
Topic: DS7.5.1 Connectivity Issue
Replies: 2
Views: 1460

It is not recommended to check the OMIT box, while logging in. Try logging in with the local system Userid / password.
by DS_SUPPORT
Wed Aug 19, 2009 6:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Loading 8 databases data into oracle
Replies: 3
Views: 1554

The best way to restrict the rows is by doing a lookup.
by DS_SUPPORT
Thu Aug 13, 2009 3:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSExecute ("UV","SELECT...FROM <hash>..
Replies: 2
Views: 2390

It Seems .trap.hash is a directory pathed hashed File. For doing a select from the directory pathed hashed file, you have to SET the path in VOC.
Search the forum for the keyword SETFILE.
by DS_SUPPORT
Wed Aug 12, 2009 4:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Clear file after successful job completion
Replies: 3
Views: 1413

Just Create a file with the same name in the same path. You can do this with a routine, called in after job subroutine or a simple job which can be called after your original job completion.
by DS_SUPPORT
Tue Aug 11, 2009 3:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Mulriple excel sheets, multiple table
Replies: 3
Views: 2148

Converting 5 sheets to 5 different CSV files ?
by DS_SUPPORT
Fri Aug 07, 2009 4:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Ora 00911
Replies: 25
Views: 16107

Try running this query in SQL+ or any SQL client, and see if you are able to execute it.
And if any other job is working fine using OCI stage.
by DS_SUPPORT
Thu Aug 06, 2009 3:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Ora 00911
Replies: 25
Views: 16107

If you are using OCI stage directly, instead of

Code: Select all

%DateTimeIn('#LastModifiedDateTime#')
you have to use

Code: Select all

To_Date('#LastModifiedDateTime#',"YYYY-MM-DD HH24:MI:SS")
by DS_SUPPORT
Thu Aug 06, 2009 3:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Ora 00911
Replies: 25
Views: 16107

Can you paste the SQL, and the value for LastModifiedDateTime.
by DS_SUPPORT
Thu Aug 06, 2009 2:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Ora 00911
Replies: 25
Views: 16107

For TO_DATE, what is the format you have given, and in what format, you are getting the Date.

If i remeber correctly, In PSFT the LastModifiedDatetime will be passed in YYYY-MM-DD HH24:MI:SS. So give the format string like this.
by DS_SUPPORT
Wed Aug 05, 2009 8:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Backup Of DS Jobs
Replies: 9
Views: 3012

Check Kim Duke's Website. He is having a Batch file, which will backup all the projects in a server.