Originally introduced on June 21, 1988 the platform has been continually updated to support and integrate with modern technologies while maintaining source and binary compatibility. The platform includes an integrated db2 database server and natively supports many application servers including ...
17
votes
3answers
214 views
Memory leaking without objects growing in number or size
On an IBM iSeries system, I have a Java program running - an application server with a web server component, all in-house developed. When running on the 32 bit or 64 bit J9 JVM (IBM Technology for ...
12
votes
7answers
711 views
Using Delphi data-aware components - pros and cons
I want to know your opinion about using data-aware components in projects. Which are the 'strength' and 'weak' points of developing applications(win32 and web), by using Delphi and data-aware ...
10
votes
1answer
2k views
Connect to AS400 using .NET
I am trying to build a .NET web application using SQL to query AS400 database. This is my first time encountering the AS400.
What do I have to install on my machine (or the AS400 server) in order to ...
8
votes
5answers
857 views
Has anyone here tried using the iSeries Python port?
I found http://www.iseriespython.com/, which is a version of Python for the iSeries apparently including some system specific data access classes. I am keen to try this out, but will have to get ...
7
votes
2answers
6k views
SQL query of multi-member file on AS400
On AS400 in interactive SQL in a 5250 session,
select * from myfile
returns rows from one member only when myfile has more than one member.
How can I get rows from a specific member?
Important: ...
6
votes
2answers
5k views
iSeries DB2 - Is there any way to select the identity value from an insert statement?
I know we're rare, us poor folk that are using iSeries for DB2/AS400, but I'm hoping someone can answer this simple question. Is there any way to return the identity value from an insert statement ...
6
votes
8answers
4k views
Connect PHP to an AS/400
I've got an upcoming project wherein I will need to connect our website (PHP5/Apache 1.3/OpenBSD 4.1) to our back-end system running on a iSeries with OS400 V5R3 so that I can access some tables ...
5
votes
1answer
154 views
How do I call a web service from iSeries COBOL?
We need to be able to call an internal web service from COBOL code running on an iSeries LPAR (V6R1). I worked through the one complete example that I was able to find online here. So, my next step ...
5
votes
6answers
1k views
Where can I find an AS400 to Java interface?
Does anyone have links and resources to connect to an AS400 from Java?
I remember years ago, somebody told me about a connector that simulates KeyStrokes from the keyboard and other "purest" approach ...
5
votes
3answers
1k views
List of source members in a file with SQL
Is it possible to generate a list of all source members within an iSeries source file using SQL?
Might be similar to getting table definitions from SYSTABLES and SYSCOLUMNS, but I'm unable to find ...
5
votes
5answers
10k views
C#: Convert COMP-3 Packed Decimal to Human-Readable Value
I have a series of ASCII flat files coming in from a mainframe to be processed by a C# application. A new feed has been introduced with a Packed Decimal (COMP-3) field, which needs to be converted to ...
5
votes
2answers
486 views
How do I iterate over a set of records in RPG(LE) with embedded SQL?
How do I iterate over a set of records in RPG(LE) with embedded SQL?
4
votes
4answers
2k views
Equivalent of LIMIT for DB2
How do you do LIMIT in DB2 for iSeries?
I have a table with more than 50,000 records and I want to return records 0 to 10,000, and records 10,000 to 20,000.
I know in SQL you write LIMIT 0,10000 ...
4
votes
5answers
939 views
Converting SQL number into a time, to perform date comparisons
I am struggling with an SQL time comparison on two fields that have been set up as integers, rather than time stamps.
I have some performance metrics in a database that the developer originally set ...
4
votes
6answers
365 views
Should we drop stored procedures and run database calls from java programs
I am fighting to keep the use of stored procedures in our company. There are a few people who say they are bad and we should not use them. We are using DB2 on the i-series.
Please help in my ...
4
votes
3answers
168 views
Speeding Up Queries with LINQ
I am transferring about 350 rows (with some data collection) from a MS SQL Server to the iSeries for processing. I feel the process is too slow which is about a minute or so. I am doing all of the MS ...
4
votes
4answers
429 views
Is CPYTOIMPF to qtemp faster than to other library?
I am a programmer working on IBM AS400 V5R4. I create 2 CL programs, both of which use CPYTOIMPF to format a list of AS400 PFs to character delimited files. The difference between them is: one formats ...
4
votes
3answers
1k views
AS400 Data Connection in ASP.NET
I have an application that will reside within a business2business network that will communicate with our AS400 in our internal network environment. The firewall has been configured to allow the data ...
4
votes
3answers
4k views
How do indicate the SQL default library in an IBM iSeries 2 connection string to an AS/400?
I'm connecting to an AS/400 stored procedure layer using the IBM iSeries Access for Windows package. This provides a .NET DLL with classes similar to those in the System.Data namespace. As such we use ...
3
votes
1answer
138 views
Excel to IBM DB2 Connection
I've been attempting to establish a connection with an IBM DB2 database with which I can extract the data.
The details I have are:
Server Name
Data Library
Username/Password.
I've tried two ...
3
votes
4answers
212 views
RPG to Java migration on an IBM iSeries
Our company uses an IBM iSeries for a majority of our data processing. All of our internal apps are written in RPG. According to IBM's roadmap, IBM is pushing companies to move to Java/J2EE. We're ...
3
votes
2answers
174 views
Odbc connection string format, not finding files
This is kind of a 'double' question that might have a single answer.
I'm working with an Odbc Connection with an AS/400, with my connection string as follows:
driver={iSeries Access ODBC Driver}; ...
3
votes
2answers
102 views
How to create an AS/400 command which cannot have some parameters being filled at the same time?
I need to create an AS/400 command. Based on the requirement, it has two parameter, say A and B, which cannot be filled in the same time. Both will be displayed when F4 is pressed to prompt, but only ...
3
votes
3answers
135 views
How do you convert a decimal date to a date field in a where statement?
I have a field that is a decimal date (YYYYMMDD). I need to find all
records that are a year or less old. Since date are so easy, I am
trying to do:
WHERE DATE(SUBSTR(CHAR(A.CPADDT),1,4) CONCAT '-' ...
3
votes
4answers
167 views
Is there an IBM Iseries/DB2 equivalent to SQL Profiler?
Subject says it all. Looking to capture sql submitted to DB2.
3
votes
2answers
319 views
Why does a PC-to-AS400, ASCII FTP transfer result in very large file growth on the AS400 side?
GIVEN: I am a novice on the AS400 platform, at best
PROBLEM: We need to transfer variable width, pipe-delimited ASCII files from a Windows 2003 server to an FTP server running on V6R1. The files ...
3
votes
3answers
286 views
Why do I get the error “Cannot store non-PrivateKeys” when creating an SSL Socket in Java?
I am working on an older IBM iSeries (IBM-i, i5OS, AS/400, etc), with a Java 5 JVM (Classic, not ITJ J9) on O/S version V5R3M0.
Here is the scenario in a nutshell:
I created a key-store of type JKS ...
3
votes
3answers
198 views
Tilde Delimited to AS400
Can we take a tilde delimited file and feed it to AS400 as is, or does the file need to be converted to fixed width? I am told by the AS400 engineer that the file needs to be converted to fixed ...
3
votes
3answers
237 views
Does git gets installed in IBM/AS400
I have PHP on running on an AS400. Can Git be also be installed on an AS400? I'd like to use it to maintain version control.
3
votes
2answers
174 views
RPG compiler converts type S to type P?
Here is my situation:
I have program A which looks like this:
Fmfile IF E K DISK USROPN
d grue s like(dhseqn)
d
C *ENTRY PLIST
C ...
3
votes
4answers
2k views
What is the carriage return character in an AS/400 db?
I have a client running an AS/400. I have to ftp a flat file over to them. They tell me their return charaters are RN. I don't recognize this, could not find anything on it, and their tech guy is Nick ...
3
votes
2answers
1k views
Using OLEDB parameters in .NET when connecting to an AS400/DB2
I have been pulling my hair out trying to figure out what I can't get parameters to work in my query. I have the code written in VB.NET trying to do a query to an AS/400. I have IBM Access for Windows ...
3
votes
1answer
460 views
AS/400 'SELECT 1' Equivalent
I'm trying to help a friend troubleshoot connection problems with an AS/400. He'd like to run a query against the AS/400 that will always return a record, (similar to a SELECT 1 against MSSQL).
He's ...
3
votes
3answers
532 views
NIO file channel transfer problem on iSeries
I'm having a problem with some Java NIO code running on an iSeries box (JDK 1.5). Basically the code is splitting a file up into chunks part of a file to another smaller files. The same code has been ...
3
votes
7answers
4k views
CPU Usage Spikes in WebSphere 6.1
First, just a bit of background:
One of our customers is experiencing CPU usage spikes for WebSphere instances running one of our web apps (other instances with other apps are fine). They have a test ...
3
votes
5answers
24k views
Convert String from ASCII to EBCDIC in Java?
I need to write a 'simple' util to convert from ASCII to EBCDIC?
The Ascii is coming from Java, Web and going to an AS400. I've had a google around, can't seem to find a easy solution (maybe coz ...
3
votes
4answers
2k views
Mail from iSeries with attachment
Is there a way to send an email from an iSeries terminal, adding an attachment from the IFS? I know how to send a normal email using the SNDDST utility.
3
votes
1answer
1k views
AS400 C#.net inserting new record problems
I am trying to build a C#.net program that works like a RPG Subfile on the AS400.
Have the general subfile part working. I can display and then edit and update existing records.
Am blowing up in my ...
3
votes
2answers
2k views
iSeries SQL Procedure - Check if already exists
I have an script that falls over if any of the procedures it is trying to create already exists. How can I check/drop if this procedure is already created?
3
votes
4answers
1k views
Source Control on the IBM i (iSeries)
On the web side we are working on getting source control. Now, I want to see what can be done for the iSeries side. What is your favorite source control application for iSeries and why? I am looking ...
2
votes
0answers
26 views
How to “Reset” the UDF DETERMINISTIC reponses?
IN DB2 V5R4, When you modify the functionality of a DETERMINISTIC UDF It returns the cached response for a while...
There are any way to reset the cached responses?
Thanks in advance.
2
votes
1answer
49 views
In a procedure connect to 2 databases: one local and the other remote
I'm trying to write a stored procedure, in DB2 for AS400, which runs a query on the local database (the same where the procedure is stored; it's named DBLocale) and an other on a remote database ...
2
votes
1answer
83 views
FTPWebRequest & AS/400 - Setting NAMEFMT to 1
I'm trying to connect to a FTP AS/400 server using .NET, with a url like this:
ftp://server.com/folder/file.csv
I'm getting a 501 error in return, and according to this question it's due to the ...
2
votes
2answers
70 views
Simple select statement when member is involved
I am sure this is as simple as a question can get but I have been stumped on it so figured that I would ask in hope of a quick response. Using an OLEDB connection I want to do a select statement but ...
2
votes
1answer
64 views
Client Access AS400 Java wrapper
Is there free/non-free Client Access Java bases wrapper that can simulating End-User typing into Client Access Session
login with popup Dialog/Window for UserName & PassWord
moving to the ...
2
votes
2answers
113 views
How to move a DB2 sql result table into a physical file?
OS: IBM i v6.1
Database: DB2
I would like to get a Result Table form a Select statement, and then move it into a physical file.
What I have tried:
I was hoping to use (per ...
2
votes
1answer
124 views
'SQLSTATE 57017' (Character Conversion Problem)for SQL UDF java program on the iSeries
I followed the instructions at http://www.itjungle.com/mpo/mpo100903-story01.html
The UDF looks like this
CREATE FUNCTION re_Test(input VARCHAR(500),
regex ...
2
votes
3answers
269 views
RPG (iSeries) Modernization using JTOpen - What is possible?
We would be in near future implementing a solution to modernize our iSeries applications
written as RPG programs with some stored procedures, and our preferred way is leveraging the latest and ...
2
votes
1answer
192 views
Why can't my As400 select from a newly created member alias?
I have set up the code as described in this question.
Creating an alias works, as well as dropping it.
For members that I have created myself, this is working correctly, but for existing members I ...
2
votes
2answers
128 views
Accumulate data over several days in sql query
I have two tables, the first (T1) is a base number, the first is a base value per symbol:
symbol value
------------ -----
ABC 1000
DEF 2000
The second table (T2) s a ...