GLOBAL TEMPORARY TABLE (GTT) IN ORACLE SQL WITH EXAMPLES

  Рет қаралды 24,607

Kishan Mashru

Kishan Mashru

Күн бұрын

Пікірлер: 35
@dibyapdp
@dibyapdp 3 жыл бұрын
Your explanation is so fantastic. Thank You so much for your best explanation....
@govindugovindu617
@govindugovindu617 5 жыл бұрын
I got good clarity by seeing your vedio thanks a lot Please upload some senirio based questions also
@sriramanbazhagan4394
@sriramanbazhagan4394 Жыл бұрын
Thak you for clear explanation
@rakeshv2020
@rakeshv2020 7 жыл бұрын
Well Explained. Can you Pls apply this GTT to a Performance issue and make a video ,So that everyone will be aware of Real usage of GTT ?
@BewithuNnk
@BewithuNnk 2 жыл бұрын
Hi Manu,.tq for sharing useful video,. Pls help me. How do i do If i want to pull data from existing tables through temp table inside procedure in Oracle.???
@ramchinthakayala2092
@ramchinthakayala2092 5 жыл бұрын
You have explained really Awesome!!! can you please explain about not logged [on rollback delete rows] also?
@sanjaykallakuri7010
@sanjaykallakuri7010 7 жыл бұрын
Thank You! I,couldn't hear your voice much louder. Do you have any other videos' to watch out about SQL?
@KishanMashru
@KishanMashru 7 жыл бұрын
Sure checkout the below playlists, hope you have subscribed to our channel :) kzbin.info/www/bejne/hIrai4Odo7R8oZY and another one kzbin.info/www/bejne/hZionn2qhLZqnsk
@gauravdutta5486
@gauravdutta5486 4 жыл бұрын
Hello Sir , Thanks for the explanation , I have a question If we associate a trigger in a GTT ( Transaction specific ) to replicate the same inserted data in another permanent table ! ON COMMIT the rows will be deleted in the GTT ! but what will happen to the data replicated into another table by that Trigger ? Also can we have check / not null / unique key constraints in a GTT ?
@nimnim1866
@nimnim1866 7 жыл бұрын
very nice. Thanks a lot for helping me understanding about GTT
@KishanMashru
@KishanMashru 7 жыл бұрын
Welcome Syed!!! Hope you have given the video a "thumbs up" and subscribed to our channel :)
@anjaneyulug4979
@anjaneyulug4979 7 жыл бұрын
Very nice and simple explanation kishan...
@KishanMashru
@KishanMashru 7 жыл бұрын
Thanks!!! I am glad you enjoyed it, hope you have give the video a "thumbs up" and have subscribed to our channel
@nageswararaoboya4670
@nageswararaoboya4670 6 жыл бұрын
Nice Explanation Good work!! Thank you
@anilk3417
@anilk3417 5 жыл бұрын
Simple and best explanation :)
@sprangyabehera4227
@sprangyabehera4227 5 жыл бұрын
Hi ,the video is very nice.But I have two questions on this . 1. On delete preserve :usually as it is a temporary table data will be present till session is active ,then why to use this statement. 2. Not logged on rollback :when generally we do rollback ,data goes off ,then why use this. Please clear my doubt.
@morsheddld
@morsheddld 5 жыл бұрын
Audio is not loud. Quiet louder is expected.
@cpunsb4150
@cpunsb4150 6 жыл бұрын
Sir have one doubt, in which case we use " On commit Delete" command...if possible then please explain,thank you Sir
@KishanMashru
@KishanMashru 6 жыл бұрын
When you do not want to store the data permanently into the table, use ON COMMIT DELETE. Say, you need to insert data into a table by selecting data from multiple tables and performing some complex transformations on them. So in such cases GTT will let you store any intermediate form of data, now you do not want the data in GTT after the insert is completed, in such cases an ON COMMIT DELETE will flush out the data from GTT after an INSERT is followed by a COMMIT. Also this will help you to bother less about the data in GTT and focus on actual functionality.
@ramchinthakayala2092
@ramchinthakayala2092 4 жыл бұрын
can we create GTT using dynamic SQL? If yes please explain.
@sreenivasborra9540
@sreenivasborra9540 2 жыл бұрын
Yes we can create
@KupoIsaiah
@KupoIsaiah 7 жыл бұрын
Can you insert a SQL statement into a temporary table? For example: INSERT INTO GTT_COUNTRY (select country_ID, country_name from country_table where rownum
@KishanMashru
@KishanMashru 7 жыл бұрын
ya Isaiah we can :) -- create gtt table create global temporary table test_gtt ( id number, name varchar2(50) ); -- create table create table test_insert (id number, name varchar2(50) ); -- insert record into table insert into test_insert values (100,'kishan'); -- commit commit; -- insert data into gtt with a insert into select insert into test_gtt select * from test_insert; -- query gtt table select * from test_gtt; -- 100 kishan Hope this helps!!! Subscribe and like, if you haven't done it yet :)
@saichopperla09
@saichopperla09 7 жыл бұрын
It is necessary to mention on commit delete and preserve while creating gtt
@albundy4221
@albundy4221 5 жыл бұрын
Great explanation of global temp tables. Can you speak up a little bit? Your volume was low on this video
@akashraaaaz
@akashraaaaz 7 жыл бұрын
Good Explanatin..
@KishanMashru
@KishanMashru 7 жыл бұрын
Thanks, man!!! :) Hope you have liked the video and subscribed to our channel for latest updates.
@ghulamabbas8503
@ghulamabbas8503 7 жыл бұрын
a very helpful vedio
@KishanMashru
@KishanMashru 7 жыл бұрын
Thanks, hope you have given the video a thumbs up and subscribed to our channel for all the latest updates!!!
@raju34567-d
@raju34567-d 6 жыл бұрын
Bro can u upload video on Oracle architecture
@ssss-uy6jh
@ssss-uy6jh 5 жыл бұрын
Nice
@rajeshranjan3325
@rajeshranjan3325 6 жыл бұрын
Explanation is good but could have spoken a bit louder.
@manojnibrad6635
@manojnibrad6635 7 жыл бұрын
Buddy, Video is good but while you speak that time breathing sound is coming and it is disturbing so remove this sound.
@raju34567-d
@raju34567-d 7 жыл бұрын
Nice bro please speak loud
@KishanMashru
@KishanMashru 7 жыл бұрын
Sure man!!! :) have taken care of it from my recent uploads.
REF CURSOR AND SYS_REFCURSOR IN ORACLE PL/SQL WITH EXAMPLE
25:07
Kishan Mashru
Рет қаралды 25 М.
ТЮРЕМЩИК В БОКСЕ! #shorts
00:58
HARD_MMA
Рет қаралды 1,3 МЛН
1, 2, 3, 4, 5, 6, 7, 8, 9 🙈⚽️
00:46
Celine Dept
Рет қаралды 85 МЛН
Ice Cream or Surprise Trip Around the World?
00:31
Hungry FAM
Рет қаралды 8 МЛН
Random Emoji Beatbox Challenge #beatbox #tiktok
00:47
BeatboxJCOP
Рет қаралды 61 МЛН
Analytical Functions in oracle explained with real examples
25:24
Temporary Table in SQL Server (Local & Global)
13:18
GetSet SQL
Рет қаралды 1,9 М.
Global Temporary Table (GTT) Actual Concept | Where we can use GTT
14:15
Index in SQL | Oracle SQL Tutorial Videos | Mr.Vijay Kumar
20:16
Naresh i Technologies
Рет қаралды 129 М.
DYNAMIC SQL WITH EXECUTE IMMEDIATE IN ORACLE PL/SQL WITH EXAMPLE
21:53
Oracle 18C New Feature Private Temporary Table
12:01
Siva Academy
Рет қаралды 25 М.
Indexing in Oracle :B-Tree,Bitmap Indexing
25:47
Tech Coach
Рет қаралды 90 М.
PLS-12: PL/SQL Bulk Collect and Bulk Bind
24:51
Oresoft LWC
Рет қаралды 105 М.
ТЮРЕМЩИК В БОКСЕ! #shorts
00:58
HARD_MMA
Рет қаралды 1,3 МЛН