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.
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 |
String
Read/write
HRESULT GetDay?ShortName(BSTR* pRetVal);
HRESULT SetDay?ShortName(BSTR pRetVal);
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]