Procedure for bulk insert : Insert Statement « Transact SQL « SQL Server / T-SQL Tutorial






4> CREATE PROC usp_BULKINSERT
5> AS
6> BULK INSERT Billings FROM "c:\NewClasses.txt"
7> GO
1>
2> EXEC usp_BULKINSERT
3> GO
1>








20.15.Insert Statement
20.15.1.Creation Script for the usp_EmployeeInsert Stored Procedure
20.15.2.use a stored procedure to insert data to a table
20.15.3.Pass value into a procedure and insert it to a table
20.15.4.Using the INSERT DEFAULT VALUES Statement
20.15.5.Procedure for bulk insert