Companywise Interview Questions
Cybage Interview Questions - 1
- SELECT 'a'+a SELECT '1'+1
- Can illustrate index accept 0 (zero)
- Explain indexed view
- There are three Stored procedures SP1, SP2, SP3.
All three procedures has transactions.
SP1 calling SP2, SP2 calling SP3
SP3 has error, then can SP1 execute sucessfully?
- Which is faster delete or truncate
- What is filtered index?
- What is clustered index?
- String “you, are, doing, great, work”
How to calculate each word length? Ex. length you=2, length are=3 etc
- Explain Union and union all? differences between them
- What is identity column?
Tab1 Tab2
Id1 Col2 Id2 Col2
1 A 3 P
2 B 5 Q
4 C 6 R
6 D 1 S
I want to Insert Tab2 data into Tab1, Both Id1 and Id2 columns are identity column. What will happen while inserting data?
- Difference between VARCHAR and NVARCHAR
- How to find second highest salary?
- I want to insert value in Col D by Dividing Column B/C.How to insert this without any error
Table
A B C D
1 5 0 NULL
2 6 0 NULL
3 7 2 NULL
4 8 3 NULL
- Which are stored procedures you developed in your project?
- Difference between temporary table, table variable and CTE
- Explain query Optimisation
- Explain performance tuning
- Explain error handling
- Explain different operators available in execution plan
- How to calculate table size?
- Explain additional features in SQL server 2016?
- How we can see temporary tables created in database?
Post a Comment
0 Comments