maroph

Oracle 11g/12c: Show all supported platforms

Aug 29th, 2016
322
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.68 KB | None | 0 0
  1. As Oracle administrator you can get all supported platforms with the following code:
  2.  
  3. SET lines 100 pages 999
  4. col platform_name format a35
  5. col endian_format format a13
  6. SELECT platform_name,endian_format,platform_id FROM v$transportable_platform ORDER BY platform_name ASC;
  7.  
  8.  
  9. Here a sample out put for an Oracle 11g installation
  10.  
  11. PLATFORM_NAME ENDIAN_FORMAT PLATFORM_ID
  12. ----------------------------------- ------------- -----------
  13. AIX-Based Systems (64-bit) Big 6
  14. Apple Mac OS Big 16
  15. Apple Mac OS (x86-64) Little 21
  16. HP IA OPEN VMS Little 19
  17. HP OPEN VMS Little 15
  18. HP Tru64 UNIX Little 5
  19. HP-UX IA (64-bit) Big 4
  20. HP-UX (64-bit) Big 3
  21. IBM POWER Based Linux Big 18
  22. IBM zSeries Based Linux Big 9
  23. Linux IA (32-bit) Little 10
  24. Linux IA (64-bit) Little 11
  25. Linux x86 64-bit Little 13
  26. Microsoft Windows IA (32-bit) Little 7
  27. Microsoft Windows IA (64-bit) Little 8
  28. Microsoft Windows x86 64-bit Little 12
  29. Solaris Operating SYSTEM (x86) Little 17
  30. Solaris Operating SYSTEM (x86-64) Little 20
  31. Solaris[tm] OE (32-bit) Big 1
  32. Solaris[tm] OE (64-bit) Big 2
Advertisement
Add Comment
Please, Sign In to add comment