FT_NOVPURGE

FT_NOVPURGE()
 Purge all deleted files on a Novell server

 Syntax

    FT_NOVPURGE() -> lTemp

 Arguments

   None

 Returns

   .T. if successful, otherwise .F.

 Description

  This function is to purge those files that a workstation has
  previously deleted.  This function only works on a Novell network.

 Examples

  ERASE FILE foo.bar
  ERASE FILE foo2.bar
  ERASE FILE foo3.bar
  ? FT_NOVPURGE()

 Source: NOVPURGE.ASM

 Author: David Minter

 

FT_NOVDMP2

FT_NOVDMP2()
 Determine Novell server's dynamic memory area 2 availability

 Syntax

    FT_NOVDMP2() -> nDMP2

 Arguments

   None

 Returns

   The total available dynamic memory area 2 on current server, in bytes.

 Description

  This function is used primarily on Novell 2.15 TTS Servers.  Dynamic
  Memory area 2 is where the transaction tracking takes place.  This
  function allows you to query the ability of the server to handle any
  transactions you may wish to start.  (I personally don't let the area
  fall below 8K).  It is generally only useful in large batch situations
  and if you are using NETLIB's TTS capability.

 Examples

  t_trans(ON)       // Netlib function
  DO WHILE FT_NOVDMP2() > 8000 .AND. ! Eof()

     REPLACE foo WITH 'bar'
     SKIP

  ENDDO
  t_trans(OFF)

 Source: NOVDMP2.ASM

 Author: David Minter