Search found 382 matches

by chucksmith
Tue Nov 14, 2006 12:15 pm
Forum: General
Topic: How do you call a file that has SQL scripts
Replies: 8
Views: 7395

Can you build the insert statements into a .bat or .sh file? If so, you can execute the file from a job sequence using the ExecDOS or ExecSH routines.

Could you build a stored procedure based on the commands? Then you could run the stored procedure as before or after sql.
by chucksmith
Tue Oct 10, 2006 3:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Table usage analysis
Replies: 4
Views: 2265

Try my List all files and tables used by jobs in a dsx file utility. It reads a dsx file of your job designs and routine sources, and creates a csv file of category, job name, input/output, and table name/file name/user defined sql. You will find it and other tools on the DataStage Tools page of www...
by chucksmith
Wed Sep 20, 2006 8:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Usage of a hash-file
Replies: 4
Views: 1789

Try my List all files and tables used by jobs in a dsx file tool. It produces a csv file that you can use with tools like excel to answer your question.

This, and other tools, can be found on the DataStage Tools page of www.anotheritco.com.
by chucksmith
Mon Aug 21, 2006 8:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Telnet Problem
Replies: 10
Views: 5855

Although I do not know if this is the final solution, I am still waiting for IBM to call me back, I edited the Log On properties of each of the three DataStage services, checking the Allow service to interact with desktop checkbox. Now my clients can connect to my Windows Server 2003 DataStage server.
by chucksmith
Thu Aug 10, 2006 4:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Is there any way for looping in datastage
Replies: 7
Views: 2246

Within a job, you can use a routine that uses looping statements. Look in your online Basic manual at the LOOP and FOR statements.
by chucksmith
Mon Jul 31, 2006 2:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage on Windows 2003 and VM
Replies: 10
Views: 9026

We are running 7.5.2 on free VMware server hosted on a Windows 2003 Server 64 bit HP DL385. It appears to be working fine. We moved into production last Wednesday. Our old server was out of horse power. Based upon faster hardware, performance has almost doubled. However, free VMware Server is limite...
by chucksmith
Mon Jul 31, 2006 2:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Windows 2003 Enterprise - 64 vs 32 bit
Replies: 1
Views: 900

I have had problems with the client tools (designer, director, and manager) running on 64 bit. Let me know how the server goes.
by chucksmith
Fri Jul 07, 2006 3:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Synchronize two large Oracle tables daily
Replies: 8
Views: 3590

If your ETL process builds a sequential file for the complete reload of the table, you can use the unix COMM command to return to you the unique rows from your current and you previous load files. Load these unique rows into two hashed files. Read from the first and lookup in the second to determine...
by chucksmith
Fri Jul 07, 2006 3:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Listing all hash files
Replies: 7
Views: 2698

Hi Brad, I am not sure why you are seeing CHashedFileStage. Although you say the tool is reporting a table name, when you look at the specific job in designer, what stage is it using? CHashedFileStage is a hashed file stage, but the tool has not determined if it is being used for input or output, ye...
by chucksmith
Fri Jun 23, 2006 3:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Upgrade from DataStage 7.5 to DataStage 7.5.1.A
Replies: 8
Views: 3973

We have had issues with Designer 7.5.1.A deciding to crash usually when working with sequences. Reading the release notes for 7.5.2, some of these problems may be corrected there, and the 7.5.2 clients are compatible with the 7.5+ servers. You may want to test this too.
by chucksmith
Thu May 11, 2006 6:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: search function
Replies: 7
Views: 2372

Take a look at the Index() function. It will return a non-zero value if the substring you are searching for is found in the string.
by chucksmith
Mon Mar 20, 2006 5:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to Find name of the Job
Replies: 2
Views: 864

You can use my List all files and tables used by jobs in a dsx file to create an inventory of your files and tables by job. You can use the resulting csv file to track jobs that use a file. To best use the tool, create a dsx file with just job designs and routines (including source). You will find t...
by chucksmith
Sat Mar 04, 2006 6:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Impact Analysis on Columns
Replies: 7
Views: 2659

My List all files and tables used by jobs in a dsx file tool can help you identify impacts at a file and table level. Since it works with a dsx file, it does not require that you followed best practices with your metadata repository. You will find it on the DataStage Tools page of www.anotheritco.co...
by chucksmith
Fri Feb 24, 2006 5:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Control General Question
Replies: 30
Views: 11885

99.999% of the time, I have found the benefit from moving to a visual approach to job control is priceless. I think this even applies to putting RoutineActivity stages around each JobActivity stage. You can convey your intent visually with proper naming conventions. In traditional JCL, we called the...