Skip to content

vikreinok/tools

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

tools

Useful executables and scripts

SqlInsertIntoGrouper.java

Solves the problem when You have thousands of isert statment and execution is slow. The script batches them into bathes of 1+ insers.

INSERT INTO table_name (column) VALUES (value_1),
INSERT INTO table_name (column) VALUES (value_2),

-- TO 

INSERT INTO table_name (column)
VALUES
    (value_1),
    (value_2),

About

Useful programs and scripts

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages