The IBM i is a proprietary platform from IBM, which contains a DB2/400 database and can run a number of programming languages "inside" the DB2/400 database.
0
votes
1answer
19 views
AS/400 logical file
It seems to me, if I remember, the logical file, when used in Crystal REports, it passing not only all the records of the file OEOEHDOH, but also all the many fields. Is this correct?
If the CR only ...
0
votes
1answer
16 views
Use of similar logical file in Crystal Reports
I have a Crystal Report accessing Iseries 5 Physical or Logical files. One of the Logicals, is sort has many data rows, it is based on the Order details. I copied this logical as a new one with new ...
0
votes
2answers
37 views
Simple RPG am rusty
I want to do a small RPG program but am very rusty. It's similar to the SQL recently.
I want to read a logical file, and select only those records with todays date. The field is defined as NUmeric 8 ...
0
votes
2answers
24 views
Create SQL view against AS/400 data
how do I create a view against this table? I want to select according to todays date. BUt the field in the AS400 is defined as Numeric 8 0.
WHat I don't understand is, do I have to recreate the ...
1
vote
1answer
20 views
How to select N characters from an AS400/DB2 Database Column
I have an AS400/DB2 Database, with a column of type character. This column represents a date, example:
COLUMNDATA
20091101
20091201
20100101
... etc.
I want to select on one hand the "year" (first ...
3
votes
0answers
29 views
PHP - db2_bind_param Describe Param Failed
The Code
$options = array('autocommit' => DB2_AUTOCOMMIT_OFF);
$stmt = db2_prepare($connection, "CALL LABLIB2.AR0011CL('?','?','?')");
$connection = db2_connect ( AS400_DATABASE, IS_USER_NAME, ...
0
votes
1answer
40 views
How to code SQL statements from generated Crystal
Here we have generated Crystal SQL and I need to make these same on AS/400 db2 for performance reasons. How do you code these in AS/400 SQL?
TodaysDate
like and
<>
-1
votes
1answer
40 views
Default permissions for new objects in the schema
I'm working on a DB2 for i database (aka DB2/400), on a schema (library) named S.
Inside schema S, I create database tables, procedures etc. with user A. I need that also user B has all privileges on ...
0
votes
2answers
61 views
Not able to run SQL queries in AS400, run into Invalid Token errors
In AS400, how can i perform arithmetic operations (like +, -) on fields.
For the query Select id, sum(field1+field2) as Total from table
group by id, getting the following error msg in German ...
2
votes
3answers
62 views
SQL -302 on OPEN cursor in SQLRPGLE
The problem
I've got a SQLRPGLE program that executes queries that look like this:
SELECT orapdt, oraptm, orodr#, c.ccctls, orbill, b.cuslmn, b.cusvrp, orocty, orost, o.cubzip, o.cucnty, ordcty, ...
0
votes
0answers
28 views
AS400 subscription to SQL Server 2008 R2 Std
I am aware that you can create a subscription on an AS400 box to a SQL Server box. My question is, can you have replication if you do not have active journals going on some of the AS400 tables?
1
vote
1answer
33 views
Export data from As400
I want to export data from AS400 to flat file or csv file. Then I will try to load the text file into Oracle by using Oracle Sql Loader.
Do you have any experiences about exporting AS400 data? Which ...
1
vote
0answers
56 views
CCSID errors querying a DB2 for IBM i stored procedure through dbExpress
Background
I'm using RAD Studio XE2 with dbExpress, trying to retrieve a result set from a stored procedure residing on a DB2 for IBM i (AS/400).
Has dbExpress driver for AS/400 I use Peter ...
0
votes
1answer
43 views
Can't open lib '/opt/ibm/iSeriesAccess/lib64/… : file not found?
I am connecting to IBM AS 400 server through php. The ODBC drivers are properly installed and i can do everything from browser.
But when i execute a php file on linux terminal (php -f filename.php), ...
0
votes
2answers
62 views
Query from QSYS2.SysTables returns error “Token; void”
I am trying to read data from AS400 DB using Excel, VBA and ODBC driver. Connection is successful but none of the queries are retrieving data from DB. For ex: The select query is not working:
select ...
2
votes
0answers
45 views
What is starting my MQ channels?
Following on from a prior question we have discovered some behaviour which I cannot understand with MQ channels.
At startup, we issue the following commands:
STRSBS SBSD(QMQM/QMQM)
STRMQM ...
0
votes
2answers
80 views
Give some examples of TCP Connection Status in JT400 - JAVA
I'm tried to get AS400 TCP Connection Status. but i'm failed :( can anyone help me to do this. i'm new to JT400 java development. please help me friends.
i want to get IP address of a job
i want to ...
0
votes
1answer
65 views
Problems reading DB2 Data via Informatica Power Center on Linux server
On a very large project that I am running, our development team is using Informatica Power Center to access data in a DB2 database on an AS400 iSeries. We can establish the ODBC connection and can ...
2
votes
2answers
67 views
How to prevent C read() from reading from cache
I have a program that is used to exercise several disk units in a raid configuration. 1 process synchronously (O_SYNC) writes random data to a file using write(). It then puts the name of the ...
0
votes
1answer
50 views
How to Get IBM i Job details Using Job Number - Java ( JT400 )
I want to get IBM i job details using that job number. i get all job list. but i want to get job details using it's job no. Please help me friends.
Edit: I believe the question is 'How can I get job ...
0
votes
2answers
36 views
How to send double byte char to DB2 from .net provider?
I get a conversion error from the ibm iseries .net provider when calling a rpg/db2 stored procedure passing a param that contains a double byte char. The same procedure if I pass it normal text.
1
vote
1answer
77 views
PHP / SQL - Convert EBCDIC to ASCII
We have PHP server code, executing SQL statements against our iSeries midrange.
Here is a simplified version of the SQL query
SELECT 'Regular' "sales_type", sum(sales_type1) "sales" FROM salesTable
...
1
vote
0answers
41 views
+50
JTOpen KeyedDataQueue read() timeout
I've detected a strange behavior when using the read() method provided by JTOpen's KeyedDataQueue class.
I've set an 90s timeout and for 99% of read executions when the timeout is reached my calling ...
1
vote
1answer
41 views
DB2/400 Query - record format level identifiers for all tables in a library
We have multiple copies of the same library for testing, QA, development etc. consisting of hundreds of tables. Over time these libraries got out of sync and we run into a lot of level check problems. ...
2
votes
1answer
80 views
Non-busy blocking Queue Implementation in C
I am trying to implement a queue in C that causes a process to non-busy wait until there is an element in the queue to consume. I have tried two different things to try to achieve this.
The first ...
2
votes
1answer
65 views
Creating a ruby-on-rails model
I have an existing model that connects to an AS400 DB and I need to create a new model like it that connects to a new file and pulls one field (an email address) and then loops through it 5 times. ...
1
vote
1answer
76 views
JPA NamedQuery returning empty ResultList
I'm using Netbeans 7.3, Glassfish 3.1.2.2 to develop an aplication that connects to an AS400 using EclipseLink JPA 2.0. All queries work properly, until I get to a particular NamedQuery:
SELECT u ...
0
votes
1answer
78 views
How to get as400 (jt400) Sign on User List
I'm developing IBM AS400 Client Access Software. I'm trying to get Sign on User List. there are have more than 70 sign on Users, but my code give me only 6 User Details. Can anyone help me to do this ...
0
votes
1answer
82 views
How to show active jobs using AS400 (JT400) client access software?
I want to develop as400 client access software. I want to monitor disk space, cpu usage etc.. And Job list. I got job list. But I want get to active jobs only. Please help me.
This is my job List ...
0
votes
1answer
37 views
transfer data between as400 and Oracle
I need to transfer huge amount of data from AS400 to Oracle db.
I think to write a java code but I have not developed java for a long time.
I think I need to use AS400 and Oracle jdbc drivers at the ...
2
votes
3answers
65 views
How do I programmatically determine the CCSID of a file in the IFS?
I have many files in the IFS with a wide variety of CCSIDs (0, 37, 819, 1200, 1252, etc.) and I've been tasked with writing a simple RPGLE [1] program that will allow a user to view the contents of ...
0
votes
2answers
42 views
How to prevent user from entering special characters (like symbols not visible in keyboard) in a text field (Character type)?
How to prevent user from entering special characters (like symbols not visible in keyboard) in a text field (Character type) in AS400 ??
Visibly most of the time there is no issue for iseries/as400 ...
4
votes
2answers
97 views
How to speed up the SELECT query from AS/400 (IBM iSeries) - VB. NET Programming
I am not a programmer, I just need very basic query to get the information from the same table (so only SELECT statement is needed to use in my program).
I try
SELECT INFOR.PFAC , INFOR.PPAR FROM ...
0
votes
1answer
52 views
Accessing an AS400 field with ROR
I need to gain access to field that is in an AS400 file. There is an existing connection to the 400 and now I just need to use a different file than the one that is being used.
class Distributor ...
0
votes
2answers
37 views
How to insert 0 in a @OneToOne relationship when the target entity is null
I'm using JPA with EclipseLink provider in my application to connect to an AS400. I have one entity WebRequest which has a @OneToOne relationship to my RateQuote entity. A WebRequest life cycle ...
2
votes
2answers
96 views
Using JTOpen to read from a data area on an AS400, does the data area object get locked?
Given a DecimalDataArea from JTOpen, when reading and writing to the data area, does the object on the AS400 get locked, preventing simultaneous writes to it from other applications that are on the ...
1
vote
1answer
65 views
Python FTP “ERRNO 10054” Sequential File Download
I've written some code to log on to a an AS/400 FTP site, move to a certain directory, and locate files I need to download. It works, but it seems like when there are MANY files to download I receive: ...
0
votes
3answers
69 views
Change datatable (from AS400) column format
I'm having this issue:
Our AS400 keeps dates as Decimal in format yyyyMMdd but when
I need them in our software they should be DateTime in format ddMMyyy
How do I best go about getting the right ...
1
vote
2answers
58 views
Column or global variable not found with nested subqueries
I have a db2 database with two tables; let's call them order and order_comment.
What I want is to retrieve the date of the most recent comment along with the order information.
On sql server 2005, ...
2
votes
2answers
58 views
What's difference between WRKACTJOB and WRKJOB with status active in AS400?
I'd like to watch the status of a job, sometimes I can find the job with command WRKACTJOB or WRKJOB. But, sometimes, I can only find it in WRKJOB with status active. Why didn't show up in WRKACTJOB ...
3
votes
1answer
166 views
Is there a way to change user password on IBM System i (aka iSeries / AS400) using SQL?
I have a C#.NET application that must be able to change the user password on an IBM System i (iSeries / AS400) machine. I am currently using the following code to perform this operation using IBM's ...
1
vote
3answers
220 views
Why does my SELECT query take so much longer to run on the web server than on the database itself?
I'm running the following setup:
Physical Server
Windows 2003 Standard Edition R2 SP2
IIS 6
ColdFusion 8
JDBC connection to iSeries AS400 using JT400 driver
I am running a simple SQL query against a ...
1
vote
1answer
61 views
Is it posible to re-use a JVM that was created in another OS/400 Job from RPG?
I have an RPG PGM that calls a Java class, if there's no JVM in the Job, the RPG runtime adds one when the Java class is called. After this, all calls that come from the same RPG program or another ...
0
votes
2answers
49 views
AS400 Cobol File Sharing
We want to add a load of records to an AS400 database file using COBOL several times a day. This file is also continually being updated and added to by 30 users through an online cobol screen, (albeit ...
0
votes
3answers
89 views
DB2 400 Client IP Address function in SQL Query
Is there a SQL function in DB2 400 that returns a client IP Address? The IP address of the client that executes the query
Thank's
1
vote
2answers
92 views
Stack implementation in CL program (OS400/iSeries)
i am starting programming using CL on IBM system i. My task is to implement RPN calculator using CL language. Typically, this calculator uses stack. But I have no idea have to implement it in CL. Can ...
0
votes
2answers
37 views
How to find the ILE C function corresponding to CHGJOB INQMSGRPY(*DFT) on IBM i-series (AS/400)
I know that lots of CL commands are available in C ILE but it's often very hard to find the C function name corresponding to the CL command.
Do you know a website who reference all these ILE C ...
0
votes
3answers
116 views
GET Save file from AS/400 via FTP Empty File
Im trying to download SAVEFILE of a library from AS/400 server.
always I get an empty file which is 0 byte,
these are the steps I followed
Go to a MS-DOS Shell.
Go to the location on the PC ...
0
votes
3answers
125 views
How to create RPG IV to insert and retrieve data from DB2
I am a newbie to AS/400 and familiar with Data Description Specification (DDS) statements.
I have two tables created using a Data Description Specification.
I need to write two RPGLE programs to ...
-1
votes
2answers
131 views
cannot load jdbc driver (ClassNotFoundException)
I'm trying to load the JDBC driver to make some SQL calls to my AS400. I've tried running the connection on a computer which has JDBC installed on it and the URL and SQL calls work fine.
I need to ...




