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 attempted running SELECT 1 but without luck ... I'm assuming that the AS/400 expects a FROM TableName ...

Can anyone provided assistance? Is there a system table/file that always exists that he can run a SELECT TOP 1 (or it's equivalent) against? I've never interacted with an AS/400 so I'm a bit out of my element ... was hoping SO could give me a quick answer ...

Thanks in advance!

link|improve this question
feedback

1 Answer

up vote 4 down vote accepted

I'm pretty certain it's DB2 running on those boxes (they're called iSeries now, by the way) so you can give:

select * from sysibm.sysdummy1

a shot. This should return a single column IBMREQD, set to Y.

link|improve this answer
I'll pass this on ... Would 'SELECT * FROM sysibm.sysdummy1 FETCH FIRST 1 ROW ONLY' be valid? – bryan_cook Mar 16 '10 at 13:44
That's certainly valid syntax for DB2/z and DB2/LUW so I assume it would work on the iSeries as well. But I don't think it'll be needed, SYSDUMMY1 only has one row. – paxdiablo Mar 16 '10 at 13:46
Ah, I see :-) I'll pass this on and we'll see how it goes. Appreciate the response! – bryan_cook Mar 16 '10 at 13:48
And looking at the docs, 'fetch first n rows' was added in 5.1 back in 2001. – paxdiablo Mar 16 '10 at 13:49
See publib.boulder.ibm.com/infocenter/iseries/v5r4/topic/db2/… and remember: publib-boulder has a HUGE amount of online docs for all IBM products. That should be the first point of call if you're using IBM's wonderful software :-) – paxdiablo Mar 16 '10 at 13:53
show 5 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.