Versions Compared

Key

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

...

Anchor
colnote5
colnote5
5 These URLs should point to the complete URL for the script at the site, including the trailing '?' used to start the list of parameters to the script. An example for a traceroute server is: http://www.slac.stanford.edu/cgi-bin/traceroute.pl?Image Removed and for pingserver is http://www.slac.stanford.edu/cgi-bin/traceroute.pl?function=pingImage Removed

If the script is not installed at the site or the service is not available (i.e. the site is not a PingER monitoring host), set the field to NOT-SET.

...

Code Block
sql
sql
insert into country (country_id, country, continent, tld)
values (country_seq.nextval, 'Bermuda', 'Latin America', 'bm');
commit;
exit;

The COUNTRY table is not used except by the list of values in the UI. Note that if a country name needs to be changed or if a country was placed in the wrong region, it must be updated on all the nodes in the NODEDETAILS table as well as on the COUNTRY table.

...

Code Block
sql
sql
update nodedetails set country = 'Democratic Republic of Congo' 
where country = 'Democratic Repulic of Congo';

...