Search found 53125 matches

by ray.wurlod
Thu May 10, 2007 4:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Does the AT Scheduler User need to have Admin rights?
Replies: 4
Views: 1178

Not sure ot the answer to your question. However, if you are using AT some systems have an -a option that allows the command to run a SYSTEM. I imagine, therefore, that you would need to have some expanded privileges to be permitted to use AT.
by ray.wurlod
Thu May 10, 2007 4:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Does the AT Scheduler User need to have Admin rights?
Replies: 4
Views: 1178

Re: Does the AT Scheduler User need to have Admin rights?

:( WaitForResponse If IsNull(DSXMembers.Reply) Then DSXServerForumThreads<TopOfStack> = gateleys.ThisPost TopOfStack += 1 End Else 'Thanks' End Time zones!!! You post this in the middle of the night and expect instant gratification? That costs megabucks.
by ray.wurlod
Thu May 10, 2007 4:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Executing everything in one transaction
Replies: 6
Views: 2214

You can resize the stage icon to make the larger than usual number of input links easier to draw and clearer to caption and maintain.
by ray.wurlod
Thu May 10, 2007 4:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: After Job Routine for Job Sequence
Replies: 12
Views: 3452

After job subroutines are not supported in job sequences. You either need to rewrite it as a transform function, or write a transform function that calls the after job subroutine that you already have, using a CALL statement. The Routine activity in a job sequence can only execute a transform functi...
by ray.wurlod
Thu May 10, 2007 4:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Getting warning in Update query
Replies: 4
Views: 1961

Make sure that you send it a value (let's say 1) and include a constraint in the WHERE clause that ? = 1

That way, DataStage will have sent one or more rows that will properly trigger the SQL statement.
by ray.wurlod
Thu May 10, 2007 4:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Transaction type and Array list
Replies: 6
Views: 1655

There's no 'Array List' in the Oracle stage. Another generic interview-like question. There's no "Array List" in ANY stage type, which is what motivated my question. I thought I may have missed something. So I believe we're dealing with a beginner here, who meant to type "Array Size". In which case...
by ray.wurlod
Thu May 10, 2007 4:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Row size in a Hash file
Replies: 2
Views: 891

There are no data types - everything is stored as string. Add together the lengths, add one byte per field (the inter-field delimiter) then add fourteen bytes per record storage overhead (or twenty-two bytes per record storage overhead for 64-bit hashed files). In your example, that would be 16 + 2 ...
by ray.wurlod
Thu May 10, 2007 4:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: One ODBC Connection or Many?
Replies: 2
Views: 856

Even one stage can establish multiple connections. This is how the ODBC Enterprise stage in parallel jobs fakes parallel connections. In server jobs, there will be one connection established per input link (or output link) from the ODBC stage.
by ray.wurlod
Thu May 10, 2007 4:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: controljob compatibility between ds 7.5 and 8
Replies: 4
Views: 1076

Everything at the user interface level in 7.5 is fully supported in 8.x although maybe differently - for example the Manager, DataStage Designer and QualityStage Designer clients are combined into one. The underlying architecture is radically different, the purchasing model is radically different (t...
by ray.wurlod
Thu May 10, 2007 4:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Transforms
Replies: 5
Views: 1140

Re: Transforms

Magesh_bala wrote:Hi all,

What are different types of transformations available in Datastage..

Thanks
N.Magesh

Anything you can imagine, quantify and code.
by ray.wurlod
Thu May 10, 2007 4:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Importing Table Definitions from a remote source/target
Replies: 6
Views: 1225

Check also that the DB2 instance has been started. You can also get "failed to connect" errors if it has not been started.
by ray.wurlod
Thu May 10, 2007 4:25 pm
Forum: General
Topic: moving master in server to sequencer
Replies: 4
Views: 2018

Can you not simply emplace a Job activity that executes the master job?
by ray.wurlod
Thu May 10, 2007 4:24 pm
Forum: General
Topic: Processing files in a directory
Replies: 44
Views: 12719

In the Sequential File stage specify a Filter command. The filter command to use is cat file1 file2 file3 file4... (or you could use wildcards if your file names are amenable). The Sequential File stage then reads the output of the cat command.
by ray.wurlod
Thu May 10, 2007 4:22 pm
Forum: General
Topic: Email Notification
Replies: 4
Views: 2356

Only for money.

This is a user community, not a consultancy service. You can hire consultants from the parent company who hosts DSXchange (DCS Strategies) or from some of the independent consultants who post here. You can even hire consulting services from your vendor.
by ray.wurlod
Thu May 10, 2007 4:21 pm
Forum: General
Topic: how to convert Nvarchar to Numeric
Replies: 2
Views: 1596

If the VarChar contains a valid number, perform some arithmetic, such as adding zero to it.

Code: Select all

If Num(InLink.TheString) Then InLink.TheString + 0 Else InLink.TheString