Search found 64 matches

by Pierre
Wed Sep 23, 2009 6:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unhandled exception
Replies: 0
Views: 808

Unhandled exception

Oops !

"From previous run" is what I called "after run"...

Pierre.
by Pierre
Wed Sep 23, 2009 2:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unhandled exception raised
Replies: 7
Views: 4215

Unhandled exception raised

Hi, I have a simple job that usually works fine, but today, I have the followin error : Abnormal termination of stage C004EF05ServicesRentalVehicule.BE.TR detected and (after run) : From previous run DataStage Job 692 Phantom 2344 Unhandled exception raised at address 0x1F9FB051 : Access violation A...
by Pierre
Thu Apr 23, 2009 3:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job running, but not starting
Replies: 1
Views: 1092

Job running, but not starting

Hi, I have a job (Multi instance, with unique invocation, launched by a Job control) that runs every day without any problem, takin less than 1 sec. It contains one SQL Server IN, one SQL Server LKP, and two SQL Server Outputs. This morning, it was still running after more than 4 hours, with 0 lines...
by Pierre
Tue Apr 14, 2009 3:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Routine
Replies: 8
Views: 2443

Hi,

I've just test it, and for me it works fine, I don't see where's your problem.
Did you refresh the repository ?

Pierre.
by Pierre
Wed Feb 04, 2009 9:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to create a list of jobs by category
Replies: 6
Views: 2826

from my project dir (Ascential\Datastage\Projects\MyProject), I launch

!DirDSBin!\dssh SELECT CATEGORY FMT'80L', NAME FMT'80L' FROM DS_JOBS WHERE NAME NOT LIKE '\%%' ORDER BY CATEGORY, NAME; > OutputFile.csv

where !DirDSBin! is my Ascential\Datastage\engine\bin dir.
by Pierre
Wed Jan 28, 2009 10:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Start Up Time
Replies: 6
Views: 2356

I faced this problem several times (with DS Server).
Clearing the log reduced the startup time.

Pierre.
by Pierre
Tue Jan 27, 2009 10:30 am
Forum: General
Topic: How to find the Sequence for the particular job
Replies: 13
Views: 5069

Craig wrote
Or there's always the front door. Open the Sequence job / Job Properties / Dependencies tab for a list of all the jobs the Sequence runs.
Yes, but not necessary in the order the sequence they run
Am I right ? :roll:

Pierre.
by Pierre
Fri Jan 23, 2009 10:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Difference between dscmdexport.exe & dsexport.exe
Replies: 3
Views: 3575

dsexport.exe to export individual jobs,
dscmdexport.exe to export whole project.
by Pierre
Mon Jan 12, 2009 3:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: run dsexport in command line
Replies: 2
Views: 1936

Well,

That's exactly what I needed (I should have test it before, mea culpa...).

Thanks very much, Craig.

Pierre.
by Pierre
Fri Jan 09, 2009 9:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: run dsexport in command line
Replies: 2
Views: 1936

run dsexport in command line

Hi all, I explain the problem I'm facing : I have a batch that executes the following commands : - list all projects in a file (%DirDSBinLong%dsjob -server %DSHost% -user %DSUser% -password %DSPass% -lprojects > %ListProj%) - read %ListProj% - - list all jobs of the current project (%DirDSBinLong%ds...
by Pierre
Fri Jan 09, 2009 5:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: odbc error
Replies: 8
Views: 5820

Now, we know you get an error, but we don't know which error.
What is your error message ?
What is the difference between "earlier" and now ?
by Pierre
Thu Jan 08, 2009 7:26 am
Forum: General
Topic: How to avoid "Status code" while running DS object
Replies: 1
Views: 962

I'm afraid there is no way to do that...
by Pierre
Thu Jan 08, 2009 5:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Quick Design Question on the use of shared containers
Replies: 3
Views: 1118

Yes,

Usage of shared containers makes maintenance easier (i.e when you change a file format or alter a table), and reduces error risks.
As Miwinter noticed, you just have to recompile jobs after a change.

I don-t see any reason to unuse it.

Pierre.
by Pierre
Wed Jan 07, 2009 2:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: I need No of Months after subtracting one date from 2nd dat
Replies: 5
Views: 2943

Can you describe the result you expect ?

I mean, if today is 2009-01-07 and previous date is 2008-12-06, do you expect 1 or 2 months ?
And if today is 2009-01-07 and previous date is 2008-12-08, do you expect 0 or 1 month ?

And so on... :?:

Pierre.
by Pierre
Tue Jan 06, 2009 10:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine - want to use DOS's MOVE command
Replies: 4
Views: 2780

Re: Routine - want to use DOS's MOVE command

Hi, I have 3 parameters in routine and i want to use these params to use inside routine. 3 params: src dir , filename , tgt dir My expectation: Move c:\ak.txt c:\tgt\ srcdir = c:\ filename = ak.txt tgtdir = c:\tgt I want to make use of this command MOVE and wanna move the files. Please post the exa...