Difference between revisions of "SYSALERTS"

From Lianjapedia
Jump to: navigation, search
 
(One intermediate revision by one other user not shown)
Line 6: Line 6:
  
 
==Description==
 
==Description==
System Tables are system defined read-only tables. You can query these tables using the SELECT statement.
+
The sysperms table is stored in the system database and contains alert information for watched records.
  
{| class="wikitable" width=100%
+
{| class="wikitable" width="100%"
 
!Column||Data Type||Width||Description
 
!Column||Data Type||Width||Description
 
|-
 
|-
Line 25: Line 25:
 
==Example==
 
==Example==
 
<code lang="recital">
 
<code lang="recital">
SELECT * FROM sysalerts WHERE user = user()
+
SELECT * FROM system!sysalerts WHERE user = user()
 
</code>
 
</code>
  

Latest revision as of 06:05, 22 April 2020

Purpose

Alert records for watched records

See Also

CLEAR TIMELINE, DATA TYPES, LIST TIMELINE, ROLLBACK TIMELINE, SELECT, SET TIMELINE, SET TIMESTAMP, SYSTEM TABLES, SYSTIMELINE

Description

The sysperms table is stored in the system database and contains alert information for watched records.

Column Data Type Width Description
DATABASE C 30 Database name
Table C 30 Table name
RUID C 16 Record ID
USER C 20 Name of user to alert (watching)
LASTALERT I 11

Example

SELECT * FROM system!sysalerts WHERE user = user()