NumericRoundAbortEnabled 속성
NUMERIC_ROUNDABORT 데이터베이스 옵션이 활성 상태인지 여부를 지정하는 부울 속성 값을 가져오거나 설정합니다.
네임스페이스: Microsoft.SqlServer.Management.Smo
어셈블리: Microsoft.SqlServer.Smo(Microsoft.SqlServer.Smo.dll)
구문
‘선언
<SfcPropertyAttribute(SfcPropertyFlags.None Or SfcPropertyFlags.Standalone Or SfcPropertyFlags.SqlAzureDatabase Or SfcPropertyFlags.Design)> _
Public Property NumericRoundAbortEnabled As Boolean
Get
Set
‘사용 방법
Dim instance As Database
Dim value As Boolean
value = instance.NumericRoundAbortEnabled
instance.NumericRoundAbortEnabled = value
[SfcPropertyAttribute(SfcPropertyFlags.None|SfcPropertyFlags.Standalone|SfcPropertyFlags.SqlAzureDatabase|SfcPropertyFlags.Design)]
public bool NumericRoundAbortEnabled { get; set; }
[SfcPropertyAttribute(SfcPropertyFlags::None|SfcPropertyFlags::Standalone|SfcPropertyFlags::SqlAzureDatabase|SfcPropertyFlags::Design)]
public:
virtual property bool NumericRoundAbortEnabled {
bool get () sealed;
void set (bool value) sealed;
}
[<SfcPropertyAttribute(SfcPropertyFlags.None|SfcPropertyFlags.Standalone|SfcPropertyFlags.SqlAzureDatabase|SfcPropertyFlags.Design)>]
abstract NumericRoundAbortEnabled : bool with get, set
[<SfcPropertyAttribute(SfcPropertyFlags.None|SfcPropertyFlags.Standalone|SfcPropertyFlags.SqlAzureDatabase|SfcPropertyFlags.Design)>]
override NumericRoundAbortEnabled : bool with get, set
final function get NumericRoundAbortEnabled () : boolean
final function set NumericRoundAbortEnabled (value : boolean)
속성 값
유형: System. . :: . .Boolean
식에서 반올림하여 전체 자릿수 손실이 생길 때 오류가 발생하는지 여부를 지정하는 Boolean 값입니다. True이면 오류가 생성되고 결과가 반환되지 않습니다. False(기본값)이면 경고가 생성되고 NULL이 반환됩니다.
구현
주의
This option can also be changed by using the Transact-SQL ALTER DATABASE statement.