TCS SQL/ PLSQL Real Interview BY TCS Team Interview Recording Simulation SQL TCS Ninja Interview

TCS SQL/ PLSQL Real Interview BY TCS Team Interview Recording Simulation SQL TCS Ninja Interview

CodiMinati

2 года назад

1,704,390 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

@ankushnaranje8905
@ankushnaranje8905 - 31.10.2023 22:21

PLSQL:-
1.
SQL is used in relational databases to execute various queries like create table, delete table, insert into table, etc.
PL/SQL is used to write program blocks, procedures, functions, cursors, triggers, and packages. SQL does not support data variables. PL/SQL provides support for variable constraints and data types.

2.
PL/SQL gives high productivity to programmers as it can query, transform, and update data in a database. PL/SQL saves time on design and debugging by strong features, such as exception handling, encapsulation, data hiding, and object-oriented data types. Applications written in PL/SQL are fully portable.

3.
PL/SQL allows you to create anonymous blocks (blocks of code that have no name) and named blocks, which may be packages, procedures, functions, triggers, or object types. A PL/SQL block has up to four different sections, only one of which is mandatory: Header. Used only for named blocks.

4.
Cursor:-A Cursor is a temporary memory that is allocated by the database server at the time of performing the Data Manipulation Language operations on a table.

The main function of the cursor is retrieval of rows from the result set one at a time (row by row).

5.exception:-An exception is a PL/SQL error that is raised during program execution, either implicitly by TimesTen or explicitly by your program.

6.
Implicit cursors are automatically created when select statements are executed. Explicit cursors needs to be defined explicitly by the user by providing a name.

7.
The main difference between procedure and a function is, a function must always return a value, and on the other hand a procedure may or may not return a value.

8.
PL/SQL functions can't able to return multiple values,it can return only one (single ) values using OUT parameters in their arguments. It is possible to obtain multiple values by creating procedures with multiple OUT parameters.

9.
SQL was initially developed by IBM.

Ответить
@ankushdhar3308
@ankushdhar3308 - 13.09.2023 10:21

ALTER is DDL

Ответить
@vinitdarne1348
@vinitdarne1348 - 06.09.2023 06:53

You can use varchar2(50) type datatype where it will only use needed space , suppose your name has 10 charector then it will automatically del 40 from size 50...

Ответить
@Tech-help4903
@Tech-help4903 - 29.08.2023 17:55

Alter update,,

Ответить
@souravbhowmickn762
@souravbhowmickn762 - 12.08.2023 20:32

Delete command is used to remove the rows from the table but it's not clear the table space.
For trunc it will also remove the rows from the table but it's clear the table space.
Drop command used for removing the entire table structure.

Ответить
@niranjanbhosale5101
@niranjanbhosale5101 - 17.07.2023 17:56

Print this info in your brains for DROP vs TRUNCATE vs DELETE

DROP: Deletes the entire table along with its structure

TRUNCATE: Deletes the entire table but not the structure

DELETE: Deletes the entire table but the changes are not saved until you perform COMMIT. So basically, if any DDL command like DROP or TRUNCATE is executed an auto COMMIT is performed but we have to explicitly run the COMMIT command to save the changes permanently after we have executed a DML command.

No other thing is required and interviewer will be satisfied. Thank you!

Ответить
@jayaghate1225
@jayaghate1225 - 16.07.2023 15:18

Thank u for this video..its very helpful to prepare for interview

Ответить
@rktechworld470
@rktechworld470 - 14.07.2023 10:25

Update
tablename
Set
Salary=1000
Where
catageroy=departmentname

Ответить
@manikandanr1682
@manikandanr1682 - 27.06.2023 18:35

How to apply TCS fresher Oracle developer job

Ответить
@ymaheshyedhoti8917
@ymaheshyedhoti8917 - 02.06.2023 23:11

good interview

Ответить
@huntepr1
@huntepr1 - 29.05.2023 18:53

I have been doing sql for years and sometimes I forget the actual definition of things, but I know how to use them. This is why for interviews I would just go over a DBMS cheat sheet.

Ответить
@sourjadhar9332
@sourjadhar9332 - 20.05.2023 22:10

Truncate basically drops the table and creates the structure back ..so it is ddl and dml both

Ответить
@sourjadhar9332
@sourjadhar9332 - 20.05.2023 22:07

We can use sp.rename to rename a column

Ответить
@saroj.mehta.
@saroj.mehta. - 08.05.2023 16:33

Can anyone help me for a sql unique project ?? It will be a great help

Ответить
@chandrashekarrebba
@chandrashekarrebba - 11.04.2023 08:31

alter command is ddl

Ответить
@bindu704
@bindu704 - 29.03.2023 18:39

Please tell me only oracle(sql/plsql)can we get the job

Ответить
@kanchuma1044
@kanchuma1044 - 28.03.2023 12:50

Useful..how much experience he hace?

Ответить
@anshuljain216
@anshuljain216 - 12.03.2023 13:05

Very nice interview questions 👌🏻

Ответить
@only_for_fun1234r
@only_for_fun1234r - 28.02.2023 08:13

Alter command is a DDL command
For editing column name using alter command only using Alter table tablename change column old_name new_name;

Ответить
@prabhur2334
@prabhur2334 - 12.01.2023 12:04

This interview for freshers or experienced?

Ответить
@MAHESHKUMAR-fp7cn
@MAHESHKUMAR-fp7cn - 28.12.2022 15:26

Sir I did my graduation art background can I learn SQL?

Ответить
@tech_boy_4166
@tech_boy_4166 - 26.12.2022 19:51

ALTER and CREATE is DDL command
INSERT,UPDATE AND DELETE are the DML command

Ответить
@entertainingshorts24
@entertainingshorts24 - 20.12.2022 16:14

Anyone please tell that can alone SQL lands you a job in any IT company.
Actually I want to join IT sector that's why.

Ответить
@bharatiya804
@bharatiya804 - 04.12.2022 06:16

Thanks

Ответить
@karrisateesh7938
@karrisateesh7938 - 06.11.2022 08:18

very good vedio helpful.

Ответить
@MK-tk4xt
@MK-tk4xt - 05.11.2022 01:48

Basically !!

Ответить
@khushirijhwani4995
@khushirijhwani4995 - 01.11.2022 19:38

insert Command is not in ddl

Ответить
@ArchnaVijay
@ArchnaVijay - 29.10.2022 18:43

basics should be brushed up well here ...

Ответить
@idriveridesharing6493
@idriveridesharing6493 - 28.10.2022 21:03

You can't ask scenarios in an interview that came across in your work

Ответить
@sunilrathod4839
@sunilrathod4839 - 19.10.2022 16:47

We have delete , truncate, drop command to delete data , table..

Ответить
@muthuvel6478
@muthuvel6478 - 10.10.2022 12:54

Rajesh gobinath ceo in tcs

Ответить
@muthuvel6478
@muthuvel6478 - 10.10.2022 12:18

Data recover from oracle database

Ответить
@muthuvel6478
@muthuvel6478 - 10.10.2022 12:17

Procedure is numerical method functions is varchar

Ответить
@muthuvel6478
@muthuvel6478 - 10.10.2022 12:15

Select from functions. Method

Ответить
@muthuvel6478
@muthuvel6478 - 10.10.2022 12:14

Complete table

Ответить
@muthuvel6478
@muthuvel6478 - 10.10.2022 12:08

Select. Update salary from employees;

Ответить
@VikashSharmaVS
@VikashSharmaVS - 09.10.2022 00:52

saale laudu type question kiyon poochte ho bey ? it’s ddl or dml really ? get a life

Ответить
@amarmarne542
@amarmarne542 - 07.10.2022 18:01

Alter table customer modify(address char(10),
Phone N(20));

Ответить
@abdulrashidkadri7563
@abdulrashidkadri7563 - 03.10.2022 22:51

UPDATE table_name
SET column_name1 = new_value,
column_name2 = new_value,
...
[WHERE Condition];

Ответить
@abdulrashidkadri7563
@abdulrashidkadri7563 - 03.10.2022 22:31

An SQL UPDATE statement changes the data of one or more records in a table. Either all the rows can be updated, or a subset may be chosen using a condition. The UPDATE statement has the following form: UPDATE table_name SET column_name = value [, column_name = value ...] [ WHERE condition]

Ответить
@abdulrashidkadri7563
@abdulrashidkadri7563 - 03.10.2022 22:28

Implicit cursors are automatically created when select statements are executed. Explicit cursors needs to be defined explicitly by the user by providing a name.

Ответить
@abdulrashidkadri7563
@abdulrashidkadri7563 - 03.10.2022 22:03

The DELETE statement removes rows one at a time and records an entry in the transaction log for each deleted row. TRUNCATE TABLE removes the data by deallocating the data pages used to store the table data and records only the page deallocations in the transaction log. DELETE command is slower than TRUNCATE command. TRUNCATE is faster than DELETE , as it doesn't scan every record before removing it.
TRUNCATE TABLE locks the whole table to remove data from a table;
thus, this command also uses less transaction space than DELETE

Ответить
@goldenorchid2453
@goldenorchid2453 - 25.09.2022 14:39

The interview is about basic sql command

Ответить
@geetikachauhan2587
@geetikachauhan2587 - 22.09.2022 18:24

package is 15 years old and questions are also of same era

Ответить
@SP_Investments
@SP_Investments - 22.09.2022 12:38

The alter table is DDL comand in sql

Ответить
@vishnudeshmukh4749
@vishnudeshmukh4749 - 19.09.2022 13:32

i want to ask a question that , fluent english is mandatory for interview bcoz sometime candidates has knowledge but they don't express front of interviewer bcoz he don't speak english fluently. bcoz i am one of them😊

Ответить