0

すべてのオブジェクトではなく、レコードの数のみを取得するためにクエリを実行したい。

している:

    """<?xml version="1.0" encoding="UTF-8"?>
    <SOAP-ENV:Envelope xmlns:ns0="http://www.service-now.com/incident" 
        xmlns:ns1="http://schemas.xmlsoap.org/soap/envelope/" 
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
        xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
    <SOAP-ENV:Header/>
        <ns1:Body>
            <ns0:getRecords>
                <ns0:__limit>100</ns0:__limit>
            </ns0:getRecords>
        </ns1:Body>
    </SOAP-ENV:Envelope>

しかし、100を制限するすべてのオブジェクトを返し、遅いままです。より良いパフォーマンスのために、レコードの数だけを返すと、より良くなると思います。

方法はありますか?

4

2 に答える 2

1

Aggregate Web Service と呼ばれるプラグインがあり、集計関数 (SUM、COUNT、AVG など) を使用してクエリを実行できます。詳細については、次のリンクを参照してください: http://wiki.servicenow.com/index.php?title=Direct_Web_Service_API_Functions#aggregate

以下は、COUNT 集約関数を使用したサンプル SOAP 要求です。

<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/encoding/"
   xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
   xmlns:m="http://www.service-now.com"
   xmlns:tns="http://www.service-now.com/map"
   xmlns:xsd="http://www.w3.org/2001/XMLSchema"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
    <SOAP-ENV:Body>
        <aggregate>
            <COUNT>number</COUNT>
            <active>true</active>
        </aggregate>
    </SOAP-ENV:Body>
</SOAP-ENV:Envelope>
于 2013-08-29T18:31:48.140 に答える
-1

また、クエリ フィルタを使用せずに getKeys メソッドを使用することもできます。このメソッドはすべてのレコードを返します。応答から count プロパティを取得するだけです。

于 2014-05-25T23:17:34.373 に答える