From 695727b617c54eddc46b623c65801449763904f1 Mon Sep 17 00:00:00 2001 From: Simone Bizzotto Date: Sun, 3 Nov 2024 06:14:05 +0100 Subject: [PATCH] Import-DbaCsv, work with numeric, too (#9534) --- public/Import-DbaCsv.ps1 | 1 + 1 file changed, 1 insertion(+) diff --git a/public/Import-DbaCsv.ps1 b/public/Import-DbaCsv.ps1 index accda838f9..52c706ab92 100644 --- a/public/Import-DbaCsv.ps1 +++ b/public/Import-DbaCsv.ps1 @@ -410,6 +410,7 @@ function Import-DbaCsv { 'Time' { return [System.DateTime] } 'DateTime2' { return [System.DateTime] } 'Decimal' { return [System.Decimal] } + 'Numeric' { return [System.Decimal] } 'Money' { return [System.Decimal] } 'SmallMoney' { return [System.Decimal] } 'Float' { return [System.Double] }