I have a client side CSV file and I want to develop a C # application for mass data entry into a database table with minimal log output. I am confused if I use ADO.NET on the client side to call stored procedures on the database server. What code needs to be developed on the client side and what code needs to be implemented on the server side as stored procedures?
But I did not find any samples from Google. What are ready-to-use samples ?:-)
EDIT: Additional Information:
I have a lot of data on the client side and I want to import it into the database, but I do not need the overhead in all transaction logs. For security reasons, I want to create a stored procedure on the server side and make a call on the client side (ADO.NET). I want to know in order to achieve such a goal. What type of T-SQL needs to be developed in stored procedures on the server side and how to efficiently make calls / populate data on the client side?
If something else is unclear, please let me know.
source share