mirror of
https://github.com/Microsoft/sql-server-samples.git
synced 2025-12-08 14:58:54 +00:00
10 lines
182 B
Transact-SQL
10 lines
182 B
Transact-SQL
USE taxidata;
|
|
GO
|
|
|
|
|
|
BULK INSERT taxidata.dbo.nyctaxi_features
|
|
FROM 'C:\Implementing Predictive Analytics\nyctaxi_features.bcp'
|
|
WITH (
|
|
DATAFILETYPE = 'native'
|
|
);
|
|
GO |