Search found 53125 matches

by ray.wurlod
Sun Oct 14, 2007 8:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Cannot import the SQL server 2000 Stored Procedure...
Replies: 5
Views: 1077

Can not provide any further help unless you post the definition of the stored procedure. Stored procedures called from, say, the ODBC stage must process a data set. They return a single (SmallInt) value to indicate success or failure.
by ray.wurlod
Sat Oct 13, 2007 5:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: problem with load command while online backups running
Replies: 3
Views: 1237

Welcome aboard.

Check with your DBA how much of the database is quiesced or locked when backups are running.

I think you will have your explanation.
by ray.wurlod
Sat Oct 13, 2007 5:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Server- Connectivity- login to client componenets
Replies: 4
Views: 1284

Your site needs to get some Administrators!
by ray.wurlod
Sat Oct 13, 2007 9:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Creating dynamic table.
Replies: 5
Views: 1501

Job parameters must be defined in the job properties dialog. Use the fifth tool from the left on the toolbar, or Ctrl-J, to open this dialog.
by ray.wurlod
Sat Oct 13, 2007 9:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SQL SERVER - Character missing in Datasatge
Replies: 5
Views: 1977

Is this through ODBC and, if so, what is the total size of the row? There is a tunable limit (MAXFETCHBUFF) to row size in Data Direct ODBC drivers.
by ray.wurlod
Fri Oct 12, 2007 2:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: varchar is not trimming spaces while loadding to oracle EE
Replies: 3
Views: 1268

Nor should it.

Code: Select all

INSERT INTO table(col1,col2) VALUES (123, "XYZ       ");
will preserve the trailing spaces, because they are part of the data. DataStage behaves in the same way. If you want them trimmed, you have to trim them.
by ray.wurlod
Fri Oct 12, 2007 2:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Performance Tunning Techniques in Parallel
Replies: 1
Views: 1258

By tunning one can only assume that you wish to liquefy your jobs and store the same in casks or barrels. How do you define "performance" in an ETL context? What are your key performance indicators? Why do you believe your job design to be sub-optimal? Do you believe that your databases (DB2 and Ora...
by ray.wurlod
Fri Oct 12, 2007 2:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DRS Stage- Environmenta Variable
Replies: 10
Views: 4877

Do some debugging. Find out what was actually passed. Job parameter names must be correctly spelled and correctly cased in order to work properly. Further, they must be enclosed in a pair of "#" characters when used in passive stage types. Did you type the job parameter reference in your design, or ...
by ray.wurlod
Fri Oct 12, 2007 2:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dele from SQL Server table using DRS stage
Replies: 6
Views: 1613

Of course, if no column had been defined as Key, DataStage would not have known with which value it had to replace the parameter marker.
by ray.wurlod
Fri Oct 12, 2007 2:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: data set Vs sequential file
Replies: 3
Views: 1763

It is the resource disk that is used to store the data files associated with Data Sets and File Sets. The assertion by ggs to have knowledge that "both of the stages can be loaded with the data formats like .CSV,.txt,and .dat" is horribly misplaced and, not to put too fine a point on it, so wrong. N...
by ray.wurlod
Fri Oct 12, 2007 2:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Convert accented characters to english
Replies: 9
Views: 9218

I still believe the single Convert() function can do it. Can you take a look at some of your accented data with a hex editor and confirm the byte codes being used?
by ray.wurlod
Fri Oct 12, 2007 2:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Plug-ins instalation & configuration
Replies: 11
Views: 2770

Is the MQ Series server co-resident (on the same machine as) the DataStage server? This is a requirement if you are using version 7 or earlier of DataStage. At version 8 that requirement is removed; you can get by with just MQ Series client software on the DataStage Server machine.
by ray.wurlod
Fri Oct 12, 2007 1:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Calling Web Service in command line from DataStage EE 7.5.1
Replies: 7
Views: 2721

For example you may or may not need to Import the web service definition.
by ray.wurlod
Fri Oct 12, 2007 7:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date Conversion Warnings
Replies: 11
Views: 3932

You should use the expression editor to build expressions, rather than typing them in. That way you would get your input column names properly specified - that is, qualified with the input link name.
by ray.wurlod
Fri Oct 12, 2007 6:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Calling Web Service in command line from DataStage EE 7.5.1
Replies: 7
Views: 2721

You need to provide a lot more information about the web service before any sensible answer could be given. What does it do? What arguments does it expect? What is the preferred method of accessing it?