Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9133361
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T08:28:32+00:00 2026-06-17T08:28:32+00:00

Need to read CSV file information one by one. i.e. If the customer in

  • 0

Need to read CSV file information one by one. i.e. If the customer in the file is existing in Customer table insert into detail table otherwise insert into error table. So I can’t use bulk insert method.

How to read one by one record from CSV file? How to give the path?
Bulk insert method is not going to work here.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T08:28:33+00:00Added an answer on June 17, 2026 at 8:28 am

    One option is to use an INSTEAD OF INSERT trigger to selectively put the row in the correct table, and then use your normal BULK INSERT with the option FIRE_TRIGGERS.

    Something close to;

    CREATE TRIGGER bop ON MyTable INSTEAD OF INSERT AS
    BEGIN
        INSERT INTO MyTable
        SELECT inserted.id,inserted.name,inserted.otherfield FROM inserted
        WHERE inserted.id IN (SELECT id FROM customerTable);
    
        INSERT INTO ErrorTable
        SELECT inserted.id,inserted.name,inserted.otherfield FROM inserted
        WHERE inserted.id NOT IN (SELECT id FROM customerTable);
    END;
    
    BULK INSERT MyTable FROM 'c:\temp\test.sql' 
        WITH (FIELDTERMINATOR=',', FIRE_TRIGGERS);
    
    DROP TRIGGER bop;
    

    If you’re importing files regularly, you can create a table (ImportTable) with the same schema, set the trigger on that and do the imports to MyTable through bulk import to ImportTable. That way you can keep the trigger and as long as you’re importing to ImportTable, you don’t need to do any special setup/procedure for each import.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to read CSV file header from FTP. As these files can be
In my project I need to read a csv file and convert it into
I'm trying to read into R a csv file that contains information on political
I have a .csv file with chinese characters. I need to read in these
I've used streamreader to read in a .csv file, then i need to split
I need to read test.TXT file(tab delimited) into MATLAB. TXT file have form: Datum
I'm working on a project and I need to read a CSV file and
I have a flat CSV file which I need read from to end up
In my application I need to read a csv file and fill in rows
Easy question. I need to read a CSV file in .NET, and for that

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.