Difference between revisions of "SET DELETED"

From Lianjapedia
Jump to: navigation, search
 
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
==Purpose==
 
==Purpose==
 
Determine whether or not records that are marked for deletion are hidden
 
Determine whether or not records that are marked for deletion are hidden
 
  
 
==Syntax==
 
==Syntax==
 
SET DELETED ON | OFF | (<expL>)
 
SET DELETED ON | OFF | (<expL>)
 
  
 
==See Also==
 
==See Also==
[[DELETE]], [[DELETED()]], [[Function Keys]], [[PACK]], [[RECALL]], [[SET FILTER]]
+
[[DELETE]], [[DELETED()]], [[PACK]], [[RECALL]], [[SET FILTER]]
 
+
  
 
==Description==
 
==Description==
If SET DELETED is ON, then records that have been marked for deletion are ’invisible’.  Records can be marked for deletion with the DELETE command or the DELETE key, and recalled with the RECALL command or the DELETE key.  Deleted records can be recalled until a PACK command is issued on the table. By default, DELETED is OFF in Recital Terminal Developer and ON in Recital Server products.
+
If SET DELETED is ON, then records that have been marked for deletion are ’invisible’.  Records can be marked for deletion with the DELETE command or the DELETE key, and recalled with the RECALL command or the DELETE key.  Deleted records can be recalled until a PACK command is issued on the table.  
 
+
  
 
==Example==
 
==Example==
 
<code lang="recital">
 
<code lang="recital">
set deleted on
+
set deleted off
use patrons</code>
+
recall all</code>
 
+
  
==Products==
 
Recital Server, Recital
 
 
[[Category:Documentation]]
 
[[Category:Documentation]]
 
[[Category:Commands]]
 
[[Category:Commands]]
 
[[Category:Set_Commands|DELETED]]
 
[[Category:Set_Commands|DELETED]]
[[Category:Environment]]
 
[[Category:Environment Set Commands]]
 

Latest revision as of 08:38, 7 December 2012

Purpose

Determine whether or not records that are marked for deletion are hidden

Syntax

SET DELETED ON | OFF | (<expL>)

See Also

DELETE, DELETED(), PACK, RECALL, SET FILTER

Description

If SET DELETED is ON, then records that have been marked for deletion are ’invisible’. Records can be marked for deletion with the DELETE command or the DELETE key, and recalled with the RECALL command or the DELETE key. Deleted records can be recalled until a PACK command is issued on the table.

Example

set deleted off
recall all