XML Reserved Characters

In XML, some characters are reserved for internal use and you must replace them by entity references when they are used in data.

Entity References

The following table shows the characters that must be replaced by their entity references in all application definition files (ADFs) and instance configuration files (ICFs).

Character Meaning Entity reference

>

Greater than

>

<

Less than

&lt;

&

Ampersand

&amp;

%

Percent

&#37;

The Notification Services XML vocabulary reserves the percent sign (%) for denoting parameters.

示例

The following example shows the use of an entity reference in place of a less-than symbol (<) in an Action element from an ADF:

<Action>
    INSERT INTO FlightNotifications(SubscriberId, DeviceName, 
        SubscriberLocale, Carrier, LeavingFrom, GoingTo, 
        Price, Conditions)
    SELECT S.SubscriberId, S.DeviceName, S.SubscriberLocale, 
        E.Carrier, E.LeavingFrom, E.GoingTo, E.Price, 
        E.Conditions
    FROM FlightEvents E, FlightSubscriptions S
    WHERE E.LeavingFrom = S.LeavingFrom
    AND E.GoingTo = S.GoingTo
    AND ( (E.Carrier = S.Airline) OR (S.Airline = '*') )
    AND E.Price &lt; S.Price
</Action>

请参阅

参考

Application Definition File Reference

概念

Instance Configuration File Reference

帮助和信息

获取 SQL Server 2005 帮助