I like the MySQL syntax for multiple values, it is not as flexible as the multi table insert but more compact.
@hellohiavi5 жыл бұрын
Great approach
@halilyou19857 ай бұрын
Dear Connor, What would be your advice to use this method for inserting 300 millions of row. I have a large Ledger transaction table and I am using conventional insert into select * from ... approach with /*+ APPEND PARALLEL(T,32) */ hint and "ALTER SESSION ENABLE PARALLEL DML" settings. Thank you
@DatabaseDude7 ай бұрын
300 million rows is not a "lot", so if its taking a LONG time, then something else is holding it back. Try a 10046 trace to see where the time is being lost
@halilyou19857 ай бұрын
@@DatabaseDudeI see that, thank you for your feedback. 😊
@ravinbharathmaharaj92695 жыл бұрын
Hi Connor. Thank you for this tip. Please provide a link for the 'as_insert' function. I checked your blog and I having difficulty in finding it. Thank You
Am quite happy with your videos, but on thing that bother me is the sql plus colors, can you make your code/Examples explanation on any development tool such as sql developers or TOAD Thanks Mr. Connor
@DatabaseDude5 жыл бұрын
I'm a SQL Plus guy :-)
@DatabaseDude5 жыл бұрын
but feel free to suggest alternate colors
@osama2osama5 жыл бұрын
Connor McDonald i can say a white background with black font ink will do the job ,and will be very clear to read and follow. Thanks again for answering my concern
@haroon94455 жыл бұрын
Very Large Insert All Command May Consume PGA, Leading to ORA-4036 or ORA-700[over pga_aggregate_limit] (Doc ID 2273886.1)
@pushpakpattewar70983 жыл бұрын
Need help Our inserts are coming from application and inserted in only in one table . no issue of parsing as sql id is same help us with what parameters we can change at db or table level .??for faster insertion . db-Oracle 11g
@DatabaseDude3 жыл бұрын
check out this video which might be appropriate ... kzbin.info/www/bejne/m2LEkIiBpq2Ab7s But yeah...its time get off 11g
@a.useronly22664 ай бұрын
Great
@carlosmatos92164 жыл бұрын
How can I do this using Oracle Developer? I searched, but only found about SQL Server. Greetings from Brazil.
@DatabaseDude4 жыл бұрын
Just load the AS_INSERT procedure into your database and you'll be good to go. connor-mcdonald.com/2019/05/17/hacking-together-faster-inserts/ The /*insert*/ hint also works in SQL Developer but you need to run your SQL as a script (F5) not a command (F9)