-
Notifications
You must be signed in to change notification settings - Fork 188
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Greg Taylor
committed
Aug 11, 2016
1 parent
fd4198f
commit d33329b
Showing
4 changed files
with
50 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
SqlBulkTools.IntegrationTests/Scripts/TestDataTypesTable.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
CREATE TABLE [dbo].[TestDataTypes] | ||
( | ||
FloatTest float(24), | ||
FloatTest2 float, | ||
DecimalTest decimal(14,2), | ||
MoneyTest money, | ||
SmallMoneyTest smallmoney, | ||
NumericTest numeric(30,2), | ||
RealTest real, | ||
DateTimeTest datetime, | ||
DateTime2Test datetime2, | ||
SmallDateTimeTest smalldatetime, | ||
DateTest date, | ||
TimeTest time, | ||
GuidTest uniqueidentifier, | ||
TextTest text, | ||
VarBinaryTest varbinary(20), | ||
BinaryTest binary(10), | ||
TinyIntTest tinyint, | ||
BigIntTest bigint | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters