Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TSQL: Add BULK INSERT support #3850

Open
SimeonStoykovQC opened this issue Nov 27, 2023 · 0 comments · May be fixed by #3861
Open

TSQL: Add BULK INSERT support #3850

SimeonStoykovQC opened this issue Nov 27, 2023 · 0 comments · May be fixed by #3861
Labels

Comments

@SimeonStoykovQC
Copy link

Following

https://learn.microsoft.com/en-us/sql/t-sql/statements/bulk-insert-transact-sql?view=sql-server-ver16#syntax

I have something like this in mind (todo: options):

dml_clause
    : merge_statement
    | delete_statement
    | insert_statement
    | select_statement_standalone
    | update_statement
    | bulk_insert_statement
    ;
...
bulk_insert_statement
    : BULK INSERT
    ddl_object
    FROM STRING
    ;

Let me know if there is something to consider. Happy to open a PR in the next few days.

@SimeonStoykovQC SimeonStoykovQC changed the title Add BULK INSERT support TSQL: Add BULK INSERT support Nov 27, 2023
@KvanTTT KvanTTT added the tsql label Nov 27, 2023
@JannikDeuschelQC JannikDeuschelQC linked a pull request Nov 29, 2023 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants