Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

You can see that the file-reference-id of an update will have a larger integer than the original delivered value.

Return to Top

How can I tell if my on-site instance is in sync with CLAIMS Direct?

Run the following query on your on-site instance:

Code Block
languagesql
SELECT max(modified_load_id) FROM xml.t_patent_document_values;

Compare the results with the Last loadid shown on the cdwi.ificlaims.com home page.

Image Added

The results do not need to be an exact match. Anything within approximately 100 load-ids is considered to be in-sync.

Another method is to query the System API and compare the completed_stamp member of the response.

Example:

Code Block
languagetext
wget -O- \
  --header 'x-user:x' \
  --header 'x-password:y' \
'http://cdws21.ificlaims.com/system/dwh/loading/info?load_id=618115'

Response JSON:

Code Block
languagetext
{
   "time" : "0.108006",
   "status" : "success",
   "load" : {
      "load_source" : "IFI-Cont",
      "completed_stamp" : "2022-04-13 04:33:21.378294",
      "load_id" : 618115,
      "running_status" : "complete",
      "completed_status" : "success",
      "entered_stamp" : "2022-04-13 04:33:04.767529",
      "client_load_process_id" : 232605,
      "url" : "http://alexandria.fairviewresearch.com/dwhpp/20220413/000000618115-IFI-Cont.tar.gz",
      "ndocs" : 1097
   }
}

Return to Top

Are updates received only for active patents or is it possible to receive an update for any patent?

...