Search found 12 matches

by gmorgen1
Wed Feb 21, 2007 2:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Dynamic SQL
Replies: 3
Views: 1728

Dynamic SQL

I have an issue where I need to execute 1 or more instances of a job based on the results of a query to a config table. All SQL queries must utilize the ODBC stage. The config table contains simply TableName Text (sample data) Table1 Text1 Table2 Text2 I need to perform the following select tablenam...
by gmorgen1
Thu Jan 25, 2007 4:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: qsrtmngr.exe in Windows
Replies: 7
Views: 2518

I used this to install qsrtmngr as a service.......note this applies to releases prior to 7.5, where a Windows service does not exist.....

http://support.microsoft.com/kb/137890
by gmorgen1
Wed Jan 24, 2007 6:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: qsrtmngr.exe in Windows
Replies: 7
Views: 2518

Unfortunately I am using QS 7.0 - the installation of a Windows service must have been a feature introduced in 7.5.
by gmorgen1
Wed Jan 24, 2007 4:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: qsrtmngr.exe in Windows
Replies: 7
Views: 2518

qsrtmngr.exe in Windows

How do I implement qsrtmngr.exe to run as a service? Obviously under Windows it is not practical to have to keep a session logged in just to run this daemon.....
by gmorgen1
Sun Jan 14, 2007 12:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating ODBC Table based on existing sequential file format
Replies: 6
Views: 1991

Thanks - my problem was that I did not actually specify connection info for the db. Create DDL was greyed out until then.
by gmorgen1
Sat Jan 13, 2007 11:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating ODBC Table based on existing sequential file format
Replies: 6
Views: 1991

SQL Server - I purposefully left this off as I figured it would be a generic solution for any ODBC source.....
by gmorgen1
Sat Jan 13, 2007 11:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating ODBC Table based on existing sequential file format
Replies: 6
Views: 1991

Creating ODBC Table based on existing sequential file format

I have a Job that simply Reads file, transforms, writes file. I want to write to a database table (that does not yet exist) that exactly matches the file. I swapped the target out with an ODBC stage and all mappings are retained, of course. What is the fastest way to get the table created? It is not...
by gmorgen1
Wed Nov 15, 2006 2:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Executing standalone SQL statement
Replies: 4
Views: 2177

How would I then exectue a series of truncate table and insert statements in a job?
by gmorgen1
Wed Nov 15, 2006 11:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Executing standalone SQL statement
Replies: 4
Views: 2177

Executing standalone SQL statement

Can I execute a standalone SQL statement in an ODBC stage without having to attach a dummy transform stage?

Or is the preferred (and only) approach to utilize a Stored Procedure stage?
by gmorgen1
Mon Nov 13, 2006 9:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Processing multiple sequential files simultaneously
Replies: 2
Views: 1684

Processing multiple sequential files simultaneously

Accidentally put this in the General Forum previously.... Our provider sends up to 300 files in a batch to be processed...I have a job that processes a single file, but calling it 300 times linearly takes forever due to the DataStage job control overhead. I need to kick off 300 instances of the same...
by gmorgen1
Mon Nov 13, 2006 9:00 am
Forum: General
Topic: Simultaneous Processing of multiple sequential files
Replies: 4
Views: 4202

Simultaneous Processing of multiple sequential files

Our provider sends up to 300 files in a batch to be processed...I have a job that processes a single file, but calling it 300 times linearly takes forever due to the DataStage job control overhead. I need to kick off 300 instances of the same job (utilizing the filename as a parameter) simultaneousl...
by gmorgen1
Sat Nov 11, 2006 2:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequential file error handling
Replies: 5
Views: 3038

Sequential file error handling

I have a pipe-delimited Sequential File coming in that occasionally has rows truncated. It should have 3 columns, but sometimes the rows are truncated as below - this is an external provider file and we do not have control over it. key1|10|text key2|20|text key3| key4|40|text In this case the proces...