Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: markmorgan
  • Content: Threads
  • Order by date
  1. markmorgan

    Can't locate loadable object for module error

    I'm getting the following message in XML module GDOME.pm Can't locate loadable object for module XML::LibXML::Common in @INC (@INC contains: c:/Perl/lib c:/Perl/site/lib .) I have downloaded Common.pm from CPAN and put it in a directory at C:\Perl\lib\XML\LibXML Am I missing something obvious...
  2. markmorgan

    Help reading web page via Perl

    I am a Perl novice and am trying to get the following script to work # use strict; use warnings; use LWP::Simple qw(get); my $url = "http://www.a-valid-url.html"; my $page = get($url); exit unless $page; The get function appears to do something as it takes time to execute, but the result...
  3. markmorgan

    DB2 V8 Manuals now online

    http://www-3.ibm.com/cgi-bin/db2www/data/db2/udb/winos2unix/support/v8pubs.d2w/en_main
  4. markmorgan

    Nullable Unique Index

    CREATE UNIQUE WHERE NOT NULL INDEX ... The 'WHERE NOT NULL' syntax does not appear to be supported under DB2 UDB v7.2 for Windows, whereas it is under OS/390. Anyone know why? Anyone know if v8 will support it? Can anyone think of a way around it? My only option, at the moment, appears to...
  5. markmorgan

    DB2 UNIX Manuals Online?

    The OS/390 DB2 manuals can be found at http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/LIBRARY Does anyone know of a link to the UNIX flavour DB2 manuals? Mark.
  6. markmorgan

    Subselect in Select expression allowed?

    In DB2 are subselects allowed in a select expression e.g. select CourseCode, EventCode, (SELECT Count(*) FROM CrseApplic CA WHERE CA.CourseCode = CE.CourseCode AND CA.EventCode = CE.EventCode AND CA.CrsAppCancelledDt IS NULL) AS EventEnrolCount from CrseEvent CE where CourseCode = ? order...
  7. markmorgan

    COBOL LENGTH OF special register

    In the COBOL standards, when is/should the LENGTH OF verb (be) evaluated? At run-time or compile time? The reason I ask is that I am used to using IBM OS/390 and Microfocus COBOL which both evaluate this at run-time and give correct lengths for varying length group levels (OCCURS DEPENDING...

Part and Inventory Search

Back
Top