How to check the Universe database version on DataStage ver 7.5.
Thank you.
How to check the Universe database version
Moderators: chulett, rschirm, roy
-
ray.wurlod
- Participant
- Posts: 54595
- Joined: Wed Oct 23, 2002 10:52 pm
- Location: Sydney, Australia
- Contact:
Are you referring to a UniVerse database to which you're connecting, or to the database in which DataStage Repository resides?
If the latter, it is exactly the same as the DataStage version. There is an item in the VOC file called RELLEVEL that you can view. For example but it's just as easy to choose About from the Help menu, which gives both the client and server release levels.
If it's a connected UniVerse database you're referring to, then the same query will work, but you'll need to use a UV stage, with user-defined SQL. Capture RELLEVEL into a VarChar(32) column.
If the latter, it is exactly the same as the DataStage version. There is an item in the VOC file called RELLEVEL that you can view. For example
Code: Select all
SELECT EVAL "@RECORD<5>" FROM VOC WHERE @ID = 'RELLEVEL';If it's a connected UniVerse database you're referring to, then the same query will work, but you'll need to use a UV stage, with user-defined SQL. Capture RELLEVEL into a VarChar(32) column.
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.