Тёмный

oracle interview question oracle index function based index 

Siva Academy
Подписаться 48 тыс.
Просмотров 48 тыс.
50% 1

Наука

Опубликовано:

 

30 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 52   
@monicabn3067
@monicabn3067 11 месяцев назад
Best 🎉
@kritikajain4774
@kritikajain4774 2 года назад
Hello sir , i have a doubt regarding index, for ex we have a query. Select *from emp where emp_grade ='A' and class_section ='B'; And we have created index on emp_grade , will index get called if there are more than one where condition?
@SivaAcademy
@SivaAcademy 2 года назад
Yes index will be used, however there are certain rules governing the same
@manojkumarrajaka5204
@manojkumarrajaka5204 2 года назад
sir can you please detail about performence tunning for indexes...
@SivaAcademy
@SivaAcademy 2 года назад
Sure bro, please stay tuned
@basti2k100
@basti2k100 2 года назад
You can also manipulate a unique data for a colomn with a unique-function based index. CREATE TABLE my_table ( data_col VARCHAR2(100) NOT NULL, deleted VARCHAR2(1) DEFAULT 'N' NOT NULL ); ALTER TABLE my_table ADD( CHECK (deleted IN ('N', 'Y') ENABLE VALIDATE); CREATE UNIQUE INDEX TEST_UK ON my_table (CASE "DELETED" WHEN 'N' THEN "data_col" END); The values in the data_col have to been unique if the deleted-column is "N" if the column is "Y" then the index doesn't see the value for the uniqueness.
@bharathipandian45
@bharathipandian45 2 года назад
Need UNix questions
@venkatamaddina196
@venkatamaddina196 5 лет назад
Below are some questions asked in an interview and need clarification. 1) Func and a Procedure with same in a package goes under overloading? 2) What all grants required to execute procedure with name schema.PROC1 having DML on schema1.tab1 from schema2.?
@SivaAcademy
@SivaAcademy 5 лет назад
@Vankata Maddina, Sure, will post these questions as part of upcoming videos. Please stay tuned...Thanks, Siva
@sagarjadhav299
@sagarjadhav299 5 лет назад
We are eagerly waiting sir for videos specific to performance tuning
@venkatamaddina196
@venkatamaddina196 5 лет назад
Me too
@SivaAcademy
@SivaAcademy 5 лет назад
@Venkat, sure,will start posting tuning videos soon, please stay tuned.
@SivaAcademy
@SivaAcademy 5 лет назад
@Sagar, sure,will start posting tuning videos soon, please stay tuned.
@venkatamaddina196
@venkatamaddina196 5 лет назад
Any videos related to packages and scenarios in real time
@venkatamaddina196
@venkatamaddina196 5 лет назад
@@@SivaAcademy Can you confirm suppose we opened and started working on cursor and in between some records were deleted by another user from the table then still are we able to see the selected all rows of that cursor ?
@mkr7345
@mkr7345 4 года назад
Cool stuff
@SivaAcademy
@SivaAcademy 4 года назад
Thank you
@deeptisardana4242
@deeptisardana4242 4 года назад
What if there exists an index on of the columns of the expression used in where condition?
@mohitkumar1854
@mohitkumar1854 9 месяцев назад
Thanks sir for wonderful video
@nagakeerthi6791
@nagakeerthi6791 4 года назад
Hi Sir, I am learning a lot from your videos and they are very very helpful. Could you please explain y index will be used though we use sum function in the select and not used when Upper function is used?
@SivaAcademy
@SivaAcademy 4 года назад
Thanks for your comments, sure will address the question in upcoming video, please stay tuned
@BhagawantKakade96k
@BhagawantKakade96k 2 года назад
Sir, You explained it very nicely 👍👍👍😍😍😍❤️❤️
@SivaAcademy
@SivaAcademy 2 года назад
Thank you bro
@rabinarayanpatri9140
@rabinarayanpatri9140 5 лет назад
Plz give one demo of function based index created on user defined function/packaged function...I mean deterministic one
@SivaAcademy
@SivaAcademy 5 лет назад
@Rabinatayan patri, sure, i will post on deterministic function soon. Please stay tuned.. Thanks, Siva
@kolapuri1
@kolapuri1 2 года назад
Hello Sir, I have a question, can we create function based indexes using user defined functions?
@SivaAcademy
@SivaAcademy 2 года назад
Yes praveen, we can use the user defined function to create the function based index as far as the function is DETERMINISTIC function. Will explain about DETERMINISTIC function in upcoming video please stay tuned.
@sajibnandi7172
@sajibnandi7172 4 года назад
Does index refresh itself before dml operation? Or we need to create it every time?
@SivaAcademy
@SivaAcademy 4 года назад
Index is maintained by oracle, and it will get automatically updated whenever any DML operation happens on the tables in which index is created
@kaishwarya8048
@kaishwarya8048 5 лет назад
Can we create function based index on date column?
@SivaAcademy
@SivaAcademy 5 лет назад
@Aishwarya, yes, you can create function based index on date column. eg create index test_idx on emp(trunc(hiredate));
@sabarmathi4636
@sabarmathi4636 3 года назад
What is the table name where the indexed data is stored ?
@aniketjagdale7765
@aniketjagdale7765 7 месяцев назад
User_indexes,user_ind_columns,user_ind_statistics and user_ind_expression table
@praveenkorru3828
@praveenkorru3828 5 лет назад
Can you please elaborate in detail about index for performance tuning
@SivaAcademy
@SivaAcademy 5 лет назад
@Praveen, These index related videos focus the concept of index, and its usage in general from performance tuning aspect. I will be starting videos specific to performance tuning videos., there i will cover in detail related to tuning aspect. Please stay tune. Thanks,Siva
@praveenkorru3828
@praveenkorru3828 5 лет назад
@@SivaAcademy thank you very much sir, we are eagerly waiting sir
@dheerajvarthi4657
@dheerajvarthi4657 2 года назад
Thanks on your detailed information about function based index
@SivaAcademy
@SivaAcademy 2 года назад
Welcome bro
@dheerajvarthi4657
@dheerajvarthi4657 2 года назад
@@SivaAcademy Can you please make a video on Namespaces ?? Yesterday I sent a mail requesting you to make a video on it ?
@SivaAcademy
@SivaAcademy 2 года назад
Sure bro, next upcoming video will be on namespace, kindly stay tuned
@sivaveeramallu3645
@sivaveeramallu3645 4 года назад
Excellent explaination of index concepts
@SivaAcademy
@SivaAcademy 4 года назад
🙏
@boopathirajagopalan3047
@boopathirajagopalan3047 4 года назад
First time seeing excellent tutorial
@SivaAcademy
@SivaAcademy 4 года назад
Welcome 🙏, its my pleasure
@tummalasudhir7918
@tummalasudhir7918 2 года назад
Good explanation on indexes
@SivaAcademy
@SivaAcademy 2 года назад
Thank you
@sujaa1000
@sujaa1000 4 года назад
Very Helpful, Thank you
@SivaAcademy
@SivaAcademy 4 года назад
Welcome 🙏
Далее
oracle interview question reverse key index
6:05
Просмотров 46 тыс.
OYUNCAK DİREKSİYON İLE ARABAYI SÜRDÜ 😱
00:16
Просмотров 2,7 млн
Functional Indexes in Oracle
11:42
Просмотров 6 тыс.
Indexing in Oracle :B-Tree,Bitmap Indexing
25:47
Просмотров 89 тыс.
Database Indexing for Dumb Developers
15:59
Просмотров 61 тыс.
Скучнее iPhone еще не было!
10:48
Просмотров 603 тыс.
iPhone vs Samsung
0:25
Просмотров 11 млн