DTS Programming
Day?ShortName Property
The Day?ShortName property specifies or returns the string to be used for the short (3-character abbreviation) name of the indicated day of the week. ? is a number from 1 through 7 that indicates the number of the week.
Applies To
| DataPumpTransformDateTimeString Object |
Syntax
object.Day?ShortName [= name]
| Part | Description |
|---|---|
| object | Expression that evaluates to a DataPumpTransformDateTimeString object |
| ? | Day of week number from 1 through 7 |
| name | Short (3-character abbreviation) name of the specified day of week |
Data Type
String
Modifiable
Read/write
Prototype (C/C++)
HRESULT GetDay?ShortName(BSTR* pRetVal);
HRESULT SetDay?ShortName(BSTR pRetVal);
Remarks
The default value is the English abbreviation for the day of the week.
The property also can be referenced through the TransformServerProperties collection with the following code:
Set transprops = transform.TransformServerProperties
transprops("Day?ShortName") [= name]