GETDELETED ステートメント
GETDELETED クエリを発行して、指定した期間内にライブデータから削除されたすべてのレコードを取得できます。このクエリは、次の例に示すように、フィルタとしてdatetime 値を許容します。
GETDELETED FROM <table_name> WHERE <search_condition>
<search_condition> ::=
{
<expression> { = | < | <= | > | >= } [ <expression> ]
} [ { AND | OR } ... ]
<expression> ::=
| @ <parameter>
| ?
| <literal>
C#
String connectionString = "InitiateOAuth=GETANDREFRESH;OAuthClientId=MyClientId;OAuthClientSecret=MyClientSecret;User=MyUser;Password=MyPassword;Url=https://MyInstance12345.service-now.com/;"; using (ServiceNowConnection connection = new ServiceNowConnection(connectionString)) { ServiceNowCommand cmd = new ServiceNowCommand("GETDELETED FROM incident WHERE sys_updated_on >= '2013-01-01'", connection); ServiceNowDataReader rdr = cmd.ExecuteReader(); while (rdr.Read()) { Console.WriteLine(rdr["sys_id"].ToString()); } }
VB.NET
Dim connectionString As [String] = "InitiateOAuth=GETANDREFRESH;OAuthClientId=MyClientId;OAuthClientSecret=MyClientSecret;User=MyUser;Password=MyPassword;Url=https://MyInstance12345.service-now.com/;" Using connection As New ServiceNowConnection(connectionString) Dim cmd As New ServiceNowCommand("GETDELETED FROM incident WHERE sys_updated_on >= '2013-01-01'", connection) Dim rdr As ServiceNowDataReader = cmd.ExecuteReader() While rdr.Read() Console.WriteLine(rdr("sys_id").ToString()) End While End UsingNote:次の例に示すように、クエリの前にCACHE コマンドを入れてキャッシュを更新することで、データソースから削除されているすべての値をキャッシュから削除できます。
CACHE GETDELETED FROM [TableName] WHERE sys_updated_on >= '2013-01-01' AND sys_updated_on <= '2013-02-01'