InputName Element (ADF)
Specifies the view or table that contains input data for the condition action.
Sintassi
<ConditionAction>
...
<InputName>
Element Characteristics
Characteristic | Description |
---|---|
Data type |
string, between 1 and 128 characters in length. |
Default value |
None. |
Occurrence |
Optional once per ConditionAction element. If you do not specify the input schema, the input must be in the dbo schema. |
Updates |
You can modify, add, or delete this element when updating the application. |
Element Relationships
Relationship | Elements |
---|---|
Parent element |
|
Child elements |
None. |
Osservazioni
When you use a condition action, you must specify which view or table contains the event data. The fields from the view or table are used to build a new view for the event or scheduled rule. The condition action selects data from the event or scheduled rule view.
Typically, the InputName value is the name of an event view or event chronicle:
- If the condition action is in an event rule, the input is typically an event view, which has the same name as an event class.
- If the condition action is for a scheduled rule, the input is typically an event chronicle.
For more information about condition actions, see Definizione di azioni condizionali.
Esempio
The following example shows how to define a condition action. The query in the Transact-SQL expression selects data from the MyAppSchema.WeatherEventRule view, which contains data from the subscription class and from the MyAppSchema.WeatherEvents event view.
<ConditionAction>
<SqlLogin>[MyLowPrivLogin]</SqlLogin>
<SqlUser>[MyLowPrivUser]</SqlUser>
<InputName>WeatherEvents</InputName>
<InputSchema>MyAppSchema</InputSchema>
<SqlExpression>
INSERT INTO MyAppSchema.WeatherNotifications(SubscriberId,
DeviceName, SubscriberLocale, City, Forecast)
SELECT [Subscription.SubscriberId], [Subscription.DeviceName],
[Subscription.SubscriberLocale], [Input.City],
[Input.Forecast]
FROM MyAppSchema.WeatherEventRule;
</SqlExpression>
</ConditionAction>
Vedere anche
Riferimento
Application Definition File Reference
Concetti
Instance Configuration File Reference
Altre risorse
Definizione di azioni condizionali
Definizione delle regole di sottoscrizione