mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-03-10 12:01:39 -04:00
added a binding queue for oe to force one operation on a node at a time (#441)
* added a binding queue for oe to force one operation on a node at a time * setting node subtype to temporal for temporal tables * disposing oe service on shutdown
This commit is contained in:
@@ -240,6 +240,24 @@
|
||||
|
||||
|
||||
GO
|
||||
|
||||
CREATE TABLE [dbo].[tableWithAllDataTypes](
|
||||
[cDecimal] [decimal](18, 5) NULL,
|
||||
[cNumeric] [numeric](18, 2) NULL,
|
||||
[cBigint] [bigint] NULL,
|
||||
[cDate] [date] NULL,
|
||||
[cDatetime] [datetime] NULL,
|
||||
[cFloat] [float] NULL,
|
||||
[cSmalldatetime] [smalldatetime] NULL,
|
||||
[cDatetime2] [datetime2](7) NULL,
|
||||
[cDatetimeoffset] [datetimeoffset](7) NULL,
|
||||
[cTime] [time](7) NULL,
|
||||
[cBinary] [Binary] NULL,
|
||||
[cBit] [Bit] NULL,
|
||||
[cChar] [Char] NULL,
|
||||
[cMoney] [Money] NULL
|
||||
) ON [PRIMARY]
|
||||
GO
|
||||
ALTER TABLE [HumanResources].[Employee] ADD CONSTRAINT [DF_Employee_SalariedFlag] DEFAULT ((1)) FOR [SalariedFlag]
|
||||
GO
|
||||
ALTER TABLE [HumanResources].[Employee] ADD CONSTRAINT [DF_Employee_VacationHours] DEFAULT ((0)) FOR [VacationHours]
|
||||
|
||||
Reference in New Issue
Block a user