SlideShare ist ein Scribd-Unternehmen logo
1 von 3
Downloaden Sie, um offline zu lesen
SQL Server - Common Interview Questions and Answers Page 2




                                                                                                                                                                    Search




       Aptitude ?      Reasoning ?       Verbal Ability       GK      Puzzles     Programming ?   Engineering   Medical ?   Interview   Online Test

                                                                                                                                             Ads by Google
        SQL Server - Common Interview Questions and Answers
                                                                                                                                             SQL Server
       @ : Home > Technical Interview > SQL Server Common Questions > Interview Questions
                                                                                                                                             Monitoring SQL
        Register for Cognos Forum Las Vegas October 21-25, 2012 Save $400 Off Registration www.ironsidegroup.com
                                                                                                                                             SQL Server Manager
        SQL Server Training Access Videos, Articles and More. Join the SSWUG.ORG Community Today! www.sswug.org

        Export SharePoint to SQL Live export of SharePoint lists to normalised SQL Server tables www.axioworks.com/SQList
                                                                                                                                             Multilingual
        JDE Reporting Made Easy Simplify JDE Reporting! Try for Free Today www.reportsnow.com
                                                                                                                                             WebCenter
                                                                                                                                             Translate Content
                                                                                                                                             Inside WebCenter
        7. What is difference between DELETE and TRUNCATE commands?                                                                          Lingotek Collaborative
                                                                                                                                             Translation
                                                                                                                                             lingotek.com/oracle
             Delete command removes the rows from a table based on the condition that we provide with a WHERE clause.
             Truncate will actually remove all the rows from a table and there will be no data in the table after we run the                 Web based OLAP
             truncate command.                                                                                                               Client
                                                                                                                                             for Microsoft Analysis
                 1.   TRUNCATE:                                                                                                              Services download
                                                                                                                                             Free Evaluation
                          1.   TRUNCATE is faster and uses fewer system and transaction log resources than DELETE.                           www.ReportPortal.com

                          2.   TRUNCATE removes the data by deallocating the data pages used to store the table's data, and
                               only the page deallocations are recorded in the transaction log.                                              Business Analytics
                                                                                                                                             MS
                          3.   TRUNCATE removes all rows from a table, but the table structure, its columns, constraints, indexes            One Year Degree
                               and so on, remains. The counter used by an identity for new rows is reset to the seed for the                 University of Texas
                                                                                                                                             www.mccombs.utexas.edu/…
                               column.

                          4.   You cannot use TRUNCATE TABLE on a table referenced by a FOREIGN KEY constraint. Because                      Oracle Free Real-
                               TRUNCATE TABLE is not logged, it cannot activate a trigger.                                                   Time
                                                                                                                                             monitoring with
                          5.   TRUNCATE cannot be rolled back.                                                                               Lab128 - for DBA and
                                                                                                                                             advanced DB
                          6.   TRUNCATE is DDL Command.                                                                                      developers
                                                                                                                                             www.lab128.com
                          7.   TRUNCATE Resets identity of the table

                 2.   DELETE:
                          1.   DELETE removes rows one at a time and records an entry in the transaction log for each deleted
                               row.

                          2.   If you want to retain the identity counter, use DELETE instead. If you want to remove table
                               definition and its data, use the DROP TABLE statement.

                          3.   DELETE Can be used with or without a WHERE clause

                          4.   DELETE Activates Triggers.

                          5.   DELETE can be rolled back.

                          6.   DELETE is DML Command.

                          7.   DELETE does not reset identity of the table.


              Note: DELETE and TRUNCATE both can be rolled back when surrounded by TRANSACTION if the current session is
              not closed. If TRUNCATE is written in Query Editor surrounded by TRANSACTION and if session is closed, it can not
              be rolled back but DELETE can be rolled back.



        8. When is the use of UPDATE_STATISTICS command?


              This command is basically used when a large processing of data has occurred. If a large amount of deletions any
              modification or Bulk Copy into the tables has occurred, it has to update the indexes to take these changes into
              account. UPDATE_STATISTICS updates the indexes on these tables accordingly.



        9. What is the difference between a HAVING CLAUSE and a WHERE CLAUSE?




http://www.indiabix.com/technical/sql-server-common-questions/2[08/29/2012 4:09:30 PM]
SQL Server - Common Interview Questions and Answers Page 2

             They specify a search condition for a group or an aggregate. But the difference is that HAVING can be used only
             with the SELECT statement. HAVING is typically used in a GROUP BY clause. When GROUP BY is not used, HAVING
             behaves like a WHERE clause. Having Clause is basically used only with the GROUP BY function in a query whereas
             WHERE Clause is applied to each row before they are part of the GROUP BY function in a query.



        10. What are the properties and different Types of Sub-Queries?


                 1.    Properties of Sub-Query
                           1.   A sub-query must be enclosed in the parenthesis.

                           2.   A sub-query must be put in the right hand of the comparison operator, and

                           3.   A sub-query cannot contain an ORDER-BY clause.

                           4.   A query can contain more than one sub-query.

                 2.    Types of Sub-Query
                           1.   Single-row sub-query, where the sub-query returns only one row.

                           2.   Multiple-row sub-query, where the sub-query returns multiple rows,. and

                           3.   Multiple column sub-query, where the sub-query returns multiple columns




        11. What is SQL Profiler?


              SQL Profiler is a graphical tool that allows system administrators to monitor events in an instance of Microsoft SQL
              Server. You can capture and save data about each event to a file or SQL Server table to analyze later. For example,
              you can monitor a production environment to see which stored procedures are hampering performances by
              executing too slowly.

              Use SQL Profiler to monitor only the events in which you are interested. If traces are becoming too large, you can
              filter them based on the information you want, so that only a subset of the event data is collected. Monitoring too
              many events adds overhead to the server and the monitoring process and can cause the trace file or trace table to
              grow very large, especially when the monitoring process takes place over a long period of time.



        12. What are the authentication modes in SQL Server? How can it be changed?


              Windows mode and Mixed Mode - SQL and Windows. To change authentication mode in SQL Server click Start,
              Programs, Microsoft SQL Server and click SQL Enterprise Manager to run SQL Enterprise Manager from the
              Microsoft SQL Server program group. Select the server then from the Tools menu select SQL Server Configuration
              Properties, and choose the Security page.


        < Prev 1       2   3    4   5    6   Next >




                           Direct_Oracle_Access
                      High performance component set for
                            Delphi and C++Builder
                         www.allroundautomations.com




                                        © 2008-2012 by IndiaBIX™ Technologies. All Rights Reserved | Copyright | Terms of Use & Privacy Policy




http://www.indiabix.com/technical/sql-server-common-questions/2[08/29/2012 4:09:30 PM]
SQL Server - Common Interview Questions and Answers Page 2

                                                              Contact us: info@indiabix.com   Follow us on twitter!


                                                                            Bookmark to:




http://www.indiabix.com/technical/sql-server-common-questions/2[08/29/2012 4:09:30 PM]

Weitere ähnliche Inhalte

Was ist angesagt?

Concepts of NonStop SQL/MX: Part 2 - Introduction to catalogs and other objects
Concepts of NonStop SQL/MX: Part 2 - Introduction to catalogs and other objectsConcepts of NonStop SQL/MX: Part 2 - Introduction to catalogs and other objects
Concepts of NonStop SQL/MX: Part 2 - Introduction to catalogs and other objectsFrans Jongma
 
Concepts of NonStop SQL/MX: Part 3 - Introduction to Metadata
Concepts of NonStop SQL/MX: Part 3 - Introduction to MetadataConcepts of NonStop SQL/MX: Part 3 - Introduction to Metadata
Concepts of NonStop SQL/MX: Part 3 - Introduction to MetadataFrans Jongma
 
Oracle database 12c sql worshop 2 student guide vol 1
Oracle database 12c sql worshop 2 student guide vol 1Oracle database 12c sql worshop 2 student guide vol 1
Oracle database 12c sql worshop 2 student guide vol 1Otto Paiz
 
Parnassus data recovery manager for oracle database user guide v0.3
Parnassus data recovery manager for oracle database user guide v0.3Parnassus data recovery manager for oracle database user guide v0.3
Parnassus data recovery manager for oracle database user guide v0.3maclean liu
 
Oracle database 12c sql worshop 2 student guide vol 2
Oracle database 12c sql worshop 2 student guide vol 2Oracle database 12c sql worshop 2 student guide vol 2
Oracle database 12c sql worshop 2 student guide vol 2Otto Paiz
 
Native tables in NonStop SQL/MX
Native tables in NonStop SQL/MXNative tables in NonStop SQL/MX
Native tables in NonStop SQL/MXFrans Jongma
 
SQL/MX 3.6 Select for update feature
SQL/MX 3.6 Select for update featureSQL/MX 3.6 Select for update feature
SQL/MX 3.6 Select for update featureFrans Jongma
 
48742447 11g-sql-fundamentals-ii-additional-practices-and-solutions
48742447 11g-sql-fundamentals-ii-additional-practices-and-solutions48742447 11g-sql-fundamentals-ii-additional-practices-and-solutions
48742447 11g-sql-fundamentals-ii-additional-practices-and-solutionsAshwin Kumar
 
Pl sql student guide v 1
Pl sql student guide v 1Pl sql student guide v 1
Pl sql student guide v 1Nexus
 
Oracle database 12c sql worshop 1 student guide vol 2
Oracle database 12c sql worshop 1 student guide vol 2Oracle database 12c sql worshop 1 student guide vol 2
Oracle database 12c sql worshop 1 student guide vol 2Otto Paiz
 

Was ist angesagt? (11)

Concepts of NonStop SQL/MX: Part 2 - Introduction to catalogs and other objects
Concepts of NonStop SQL/MX: Part 2 - Introduction to catalogs and other objectsConcepts of NonStop SQL/MX: Part 2 - Introduction to catalogs and other objects
Concepts of NonStop SQL/MX: Part 2 - Introduction to catalogs and other objects
 
Dba 3+ exp qus
Dba 3+ exp qusDba 3+ exp qus
Dba 3+ exp qus
 
Concepts of NonStop SQL/MX: Part 3 - Introduction to Metadata
Concepts of NonStop SQL/MX: Part 3 - Introduction to MetadataConcepts of NonStop SQL/MX: Part 3 - Introduction to Metadata
Concepts of NonStop SQL/MX: Part 3 - Introduction to Metadata
 
Oracle database 12c sql worshop 2 student guide vol 1
Oracle database 12c sql worshop 2 student guide vol 1Oracle database 12c sql worshop 2 student guide vol 1
Oracle database 12c sql worshop 2 student guide vol 1
 
Parnassus data recovery manager for oracle database user guide v0.3
Parnassus data recovery manager for oracle database user guide v0.3Parnassus data recovery manager for oracle database user guide v0.3
Parnassus data recovery manager for oracle database user guide v0.3
 
Oracle database 12c sql worshop 2 student guide vol 2
Oracle database 12c sql worshop 2 student guide vol 2Oracle database 12c sql worshop 2 student guide vol 2
Oracle database 12c sql worshop 2 student guide vol 2
 
Native tables in NonStop SQL/MX
Native tables in NonStop SQL/MXNative tables in NonStop SQL/MX
Native tables in NonStop SQL/MX
 
SQL/MX 3.6 Select for update feature
SQL/MX 3.6 Select for update featureSQL/MX 3.6 Select for update feature
SQL/MX 3.6 Select for update feature
 
48742447 11g-sql-fundamentals-ii-additional-practices-and-solutions
48742447 11g-sql-fundamentals-ii-additional-practices-and-solutions48742447 11g-sql-fundamentals-ii-additional-practices-and-solutions
48742447 11g-sql-fundamentals-ii-additional-practices-and-solutions
 
Pl sql student guide v 1
Pl sql student guide v 1Pl sql student guide v 1
Pl sql student guide v 1
 
Oracle database 12c sql worshop 1 student guide vol 2
Oracle database 12c sql worshop 1 student guide vol 2Oracle database 12c sql worshop 1 student guide vol 2
Oracle database 12c sql worshop 1 student guide vol 2
 

Andere mochten auch

Мария Щекотовская «Про собеседования»
Мария Щекотовская «Про собеседования»Мария Щекотовская «Про собеседования»
Мария Щекотовская «Про собеседования»e-Legion
 
Teoria DE LA PENA
Teoria DE LA PENATeoria DE LA PENA
Teoria DE LA PENAciroZZ
 
Profile-Srinivasy-Sr-Manager-IT
Profile-Srinivasy-Sr-Manager-ITProfile-Srinivasy-Sr-Manager-IT
Profile-Srinivasy-Sr-Manager-ITSrinivas Y
 
Jadi bro skripsi pedoman
Jadi bro skripsi pedomanJadi bro skripsi pedoman
Jadi bro skripsi pedomanbadarudinma
 
The Money Mob - Lean Startup Machine
The Money Mob - Lean Startup MachineThe Money Mob - Lean Startup Machine
The Money Mob - Lean Startup Machineabhumbla
 
Ipm first presentation
Ipm first presentationIpm first presentation
Ipm first presentationArian Siddiqi
 
Taxonomia de bloom
Taxonomia de bloomTaxonomia de bloom
Taxonomia de bloomjimenez_88
 
Alejandra h aprendizaje_autónomo
Alejandra h aprendizaje_autónomoAlejandra h aprendizaje_autónomo
Alejandra h aprendizaje_autónomoAlejandra Hernandez
 
Model-med_catalogue_2010 copy 2
Model-med_catalogue_2010 copy 2Model-med_catalogue_2010 copy 2
Model-med_catalogue_2010 copy 2Bridget Hart
 
Чи легко взяти кредит в банку - погляд фермера.
Чи легко взяти кредит в банку - погляд фермера.Чи легко взяти кредит в банку - погляд фермера.
Чи легко взяти кредит в банку - погляд фермера.Strategia e Sviluppo Consultants
 
Invasões Francesas em Portugal
Invasões Francesas em PortugalInvasões Francesas em Portugal
Invasões Francesas em Portugalbecresforte
 

Andere mochten auch (19)

Norton Paint System - Broschyr
Norton Paint System - BroschyrNorton Paint System - Broschyr
Norton Paint System - Broschyr
 
Magia creativitatii
Magia creativitatiiMagia creativitatii
Magia creativitatii
 
Seminario: Dinámica de la evolución de la disciplina de Dirección Estratégica
Seminario: Dinámica de la evolución de la disciplina de Dirección EstratégicaSeminario: Dinámica de la evolución de la disciplina de Dirección Estratégica
Seminario: Dinámica de la evolución de la disciplina de Dirección Estratégica
 
Universidad, escuela de emprendedores
Universidad, escuela de emprendedoresUniversidad, escuela de emprendedores
Universidad, escuela de emprendedores
 
Мария Щекотовская «Про собеседования»
Мария Щекотовская «Про собеседования»Мария Щекотовская «Про собеседования»
Мария Щекотовская «Про собеседования»
 
Seminario: Internacionalización de la Empresa Española
Seminario: Internacionalización de la Empresa EspañolaSeminario: Internacionalización de la Empresa Española
Seminario: Internacionalización de la Empresa Española
 
Teoria DE LA PENA
Teoria DE LA PENATeoria DE LA PENA
Teoria DE LA PENA
 
Profile-Srinivasy-Sr-Manager-IT
Profile-Srinivasy-Sr-Manager-ITProfile-Srinivasy-Sr-Manager-IT
Profile-Srinivasy-Sr-Manager-IT
 
Jadi bro skripsi pedoman
Jadi bro skripsi pedomanJadi bro skripsi pedoman
Jadi bro skripsi pedoman
 
The Money Mob - Lean Startup Machine
The Money Mob - Lean Startup MachineThe Money Mob - Lean Startup Machine
The Money Mob - Lean Startup Machine
 
Ipm first presentation
Ipm first presentationIpm first presentation
Ipm first presentation
 
Sken
SkenSken
Sken
 
Taxonomia de bloom
Taxonomia de bloomTaxonomia de bloom
Taxonomia de bloom
 
Alejandra h aprendizaje_autónomo
Alejandra h aprendizaje_autónomoAlejandra h aprendizaje_autónomo
Alejandra h aprendizaje_autónomo
 
Model-med_catalogue_2010 copy 2
Model-med_catalogue_2010 copy 2Model-med_catalogue_2010 copy 2
Model-med_catalogue_2010 copy 2
 
ICAP 2014
ICAP 2014ICAP 2014
ICAP 2014
 
Чи легко взяти кредит в банку - погляд фермера.
Чи легко взяти кредит в банку - погляд фермера.Чи легко взяти кредит в банку - погляд фермера.
Чи легко взяти кредит в банку - погляд фермера.
 
Invasoes francesas
Invasoes francesasInvasoes francesas
Invasoes francesas
 
Invasões Francesas em Portugal
Invasões Francesas em PortugalInvasões Francesas em Portugal
Invasões Francesas em Portugal
 

Ähnlich wie Sql server common interview questions and answers page 2

Sql interview question part 3
Sql interview question part 3Sql interview question part 3
Sql interview question part 3kaashiv1
 
Remote DBA Experts 11g Features
Remote DBA Experts 11g FeaturesRemote DBA Experts 11g Features
Remote DBA Experts 11g FeaturesRemote DBA Experts
 
Building scalable application with sql server
Building scalable application with sql serverBuilding scalable application with sql server
Building scalable application with sql serverChris Adkin
 
Sql interview question part 6
Sql interview question part 6Sql interview question part 6
Sql interview question part 6kaashiv1
 
Sql interview-question-part-6
Sql interview-question-part-6Sql interview-question-part-6
Sql interview-question-part-6kaashiv1
 
Sql interview-question-part-6
Sql interview-question-part-6Sql interview-question-part-6
Sql interview-question-part-6kaashiv1
 
Sql interview question part 8
Sql interview question part 8Sql interview question part 8
Sql interview question part 8kaashiv1
 
DB Optimizer Datasheet - Automated SQL Profiling & Tuning for Optimized Perfo...
DB Optimizer Datasheet - Automated SQL Profiling & Tuning for Optimized Perfo...DB Optimizer Datasheet - Automated SQL Profiling & Tuning for Optimized Perfo...
DB Optimizer Datasheet - Automated SQL Profiling & Tuning for Optimized Perfo...Embarcadero Technologies
 
Kaashiv SQL Server Interview Questions Presentation
Kaashiv SQL Server Interview Questions PresentationKaashiv SQL Server Interview Questions Presentation
Kaashiv SQL Server Interview Questions Presentationkaashiv1
 
What do You Mean by Oracle Performance Tuning.pdf
What do You Mean by Oracle Performance Tuning.pdfWhat do You Mean by Oracle Performance Tuning.pdf
What do You Mean by Oracle Performance Tuning.pdfTosska Technology
 
Ebs performance tune_con9030_pdf_9030_0001
Ebs performance tune_con9030_pdf_9030_0001Ebs performance tune_con9030_pdf_9030_0001
Ebs performance tune_con9030_pdf_9030_0001jucaab
 
Ebs performance tune2_con9030_pdf_9030_0002
Ebs performance tune2_con9030_pdf_9030_0002Ebs performance tune2_con9030_pdf_9030_0002
Ebs performance tune2_con9030_pdf_9030_0002jucaab
 
Sql interview question part 5
Sql interview question part 5Sql interview question part 5
Sql interview question part 5kaashiv1
 
Rapid SQL Datasheet - The Intelligent IDE for SQL Development
Rapid SQL Datasheet - The Intelligent IDE for SQL DevelopmentRapid SQL Datasheet - The Intelligent IDE for SQL Development
Rapid SQL Datasheet - The Intelligent IDE for SQL DevelopmentEmbarcadero Technologies
 
Sql interview question part 4
Sql interview question part 4Sql interview question part 4
Sql interview question part 4kaashiv1
 

Ähnlich wie Sql server common interview questions and answers page 2 (20)

Ebook3
Ebook3Ebook3
Ebook3
 
Sql interview question part 3
Sql interview question part 3Sql interview question part 3
Sql interview question part 3
 
Remote DBA Experts 11g Features
Remote DBA Experts 11g FeaturesRemote DBA Experts 11g Features
Remote DBA Experts 11g Features
 
Building scalable application with sql server
Building scalable application with sql serverBuilding scalable application with sql server
Building scalable application with sql server
 
Ebook6
Ebook6Ebook6
Ebook6
 
Sql interview question part 6
Sql interview question part 6Sql interview question part 6
Sql interview question part 6
 
Ebook6
Ebook6Ebook6
Ebook6
 
Sql interview-question-part-6
Sql interview-question-part-6Sql interview-question-part-6
Sql interview-question-part-6
 
Sql interview-question-part-6
Sql interview-question-part-6Sql interview-question-part-6
Sql interview-question-part-6
 
Sql interview question part 8
Sql interview question part 8Sql interview question part 8
Sql interview question part 8
 
Ebook8
Ebook8Ebook8
Ebook8
 
DB Optimizer Datasheet - Automated SQL Profiling & Tuning for Optimized Perfo...
DB Optimizer Datasheet - Automated SQL Profiling & Tuning for Optimized Perfo...DB Optimizer Datasheet - Automated SQL Profiling & Tuning for Optimized Perfo...
DB Optimizer Datasheet - Automated SQL Profiling & Tuning for Optimized Perfo...
 
Kaashiv SQL Server Interview Questions Presentation
Kaashiv SQL Server Interview Questions PresentationKaashiv SQL Server Interview Questions Presentation
Kaashiv SQL Server Interview Questions Presentation
 
What do You Mean by Oracle Performance Tuning.pdf
What do You Mean by Oracle Performance Tuning.pdfWhat do You Mean by Oracle Performance Tuning.pdf
What do You Mean by Oracle Performance Tuning.pdf
 
Ebs performance tune_con9030_pdf_9030_0001
Ebs performance tune_con9030_pdf_9030_0001Ebs performance tune_con9030_pdf_9030_0001
Ebs performance tune_con9030_pdf_9030_0001
 
Ebs performance tune2_con9030_pdf_9030_0002
Ebs performance tune2_con9030_pdf_9030_0002Ebs performance tune2_con9030_pdf_9030_0002
Ebs performance tune2_con9030_pdf_9030_0002
 
Ebook5
Ebook5Ebook5
Ebook5
 
Sql interview question part 5
Sql interview question part 5Sql interview question part 5
Sql interview question part 5
 
Rapid SQL Datasheet - The Intelligent IDE for SQL Development
Rapid SQL Datasheet - The Intelligent IDE for SQL DevelopmentRapid SQL Datasheet - The Intelligent IDE for SQL Development
Rapid SQL Datasheet - The Intelligent IDE for SQL Development
 
Sql interview question part 4
Sql interview question part 4Sql interview question part 4
Sql interview question part 4
 

Mehr von Kaing Menglieng

What is your sql server backup strategy tech_republic
What is your sql server backup strategy    tech_republicWhat is your sql server backup strategy    tech_republic
What is your sql server backup strategy tech_republicKaing Menglieng
 
Using sql server 2008's merge statement tech republic
Using sql server 2008's merge statement   tech republicUsing sql server 2008's merge statement   tech republic
Using sql server 2008's merge statement tech republicKaing Menglieng
 
Using object dependencies in sql server 2008 tech republic
Using object dependencies in sql server 2008   tech republicUsing object dependencies in sql server 2008   tech republic
Using object dependencies in sql server 2008 tech republicKaing Menglieng
 
Using hash fields in sql server tech republic
Using hash fields in sql server   tech republicUsing hash fields in sql server   tech republic
Using hash fields in sql server tech republicKaing Menglieng
 
Using grouping sets in sql server 2008 tech republic
Using grouping sets in sql server 2008   tech republicUsing grouping sets in sql server 2008   tech republic
Using grouping sets in sql server 2008 tech republicKaing Menglieng
 
Understand when to use user defined functions in sql server tech-republic
Understand when to use user defined functions in sql server   tech-republicUnderstand when to use user defined functions in sql server   tech-republic
Understand when to use user defined functions in sql server tech-republicKaing Menglieng
 
Sql server indexed views speed up your select queries part 1 - code-projec
Sql server indexed views   speed up your select queries  part 1 - code-projecSql server indexed views   speed up your select queries  part 1 - code-projec
Sql server indexed views speed up your select queries part 1 - code-projecKaing Menglieng
 
Sql server – query optimization – remove bookmark lookup – remove rid lookup
Sql server – query optimization – remove bookmark lookup – remove rid lookupSql server – query optimization – remove bookmark lookup – remove rid lookup
Sql server – query optimization – remove bookmark lookup – remove rid lookupKaing Menglieng
 
Sql server common interview questions and answers
Sql server   common interview questions and answersSql server   common interview questions and answers
Sql server common interview questions and answersKaing Menglieng
 
Sql server common interview questions and answers page 6
Sql server   common interview questions and answers page 6Sql server   common interview questions and answers page 6
Sql server common interview questions and answers page 6Kaing Menglieng
 
Sql server common interview questions and answers page 5
Sql server   common interview questions and answers page 5Sql server   common interview questions and answers page 5
Sql server common interview questions and answers page 5Kaing Menglieng
 
Sql server common interview questions and answers page 4
Sql server   common interview questions and answers page 4Sql server   common interview questions and answers page 4
Sql server common interview questions and answers page 4Kaing Menglieng
 
Sql server – 2008 – hardware and software requirements for installing sql se
Sql server – 2008 – hardware and software requirements for installing sql seSql server – 2008 – hardware and software requirements for installing sql se
Sql server – 2008 – hardware and software requirements for installing sql seKaing Menglieng
 
Speeding up queries with semi joins and anti-joins
Speeding up queries with semi joins and anti-joinsSpeeding up queries with semi joins and anti-joins
Speeding up queries with semi joins and anti-joinsKaing Menglieng
 
Speed up sql server apps - visual studio magazine
Speed up sql server apps  - visual studio magazineSpeed up sql server apps  - visual studio magazine
Speed up sql server apps - visual studio magazineKaing Menglieng
 
See sql server graphical execution plans in action tech republic
See sql server graphical execution plans in action   tech republicSee sql server graphical execution plans in action   tech republic
See sql server graphical execution plans in action tech republicKaing Menglieng
 
Reviewing sql server permissions tech republic
Reviewing sql server permissions   tech republicReviewing sql server permissions   tech republic
Reviewing sql server permissions tech republicKaing Menglieng
 
Query optimization how to search millions of record in sql table faster -
Query optimization   how to search millions of record in sql table faster  -Query optimization   how to search millions of record in sql table faster  -
Query optimization how to search millions of record in sql table faster -Kaing Menglieng
 
Optimize sql server queries with these advanced tuning techniques tech repu
Optimize sql server queries with these advanced tuning techniques   tech repuOptimize sql server queries with these advanced tuning techniques   tech repu
Optimize sql server queries with these advanced tuning techniques tech repuKaing Menglieng
 

Mehr von Kaing Menglieng (20)

What is your sql server backup strategy tech_republic
What is your sql server backup strategy    tech_republicWhat is your sql server backup strategy    tech_republic
What is your sql server backup strategy tech_republic
 
Using sql server 2008's merge statement tech republic
Using sql server 2008's merge statement   tech republicUsing sql server 2008's merge statement   tech republic
Using sql server 2008's merge statement tech republic
 
Using object dependencies in sql server 2008 tech republic
Using object dependencies in sql server 2008   tech republicUsing object dependencies in sql server 2008   tech republic
Using object dependencies in sql server 2008 tech republic
 
Using hash fields in sql server tech republic
Using hash fields in sql server   tech republicUsing hash fields in sql server   tech republic
Using hash fields in sql server tech republic
 
Using grouping sets in sql server 2008 tech republic
Using grouping sets in sql server 2008   tech republicUsing grouping sets in sql server 2008   tech republic
Using grouping sets in sql server 2008 tech republic
 
Understand when to use user defined functions in sql server tech-republic
Understand when to use user defined functions in sql server   tech-republicUnderstand when to use user defined functions in sql server   tech-republic
Understand when to use user defined functions in sql server tech-republic
 
Sql server indexed views speed up your select queries part 1 - code-projec
Sql server indexed views   speed up your select queries  part 1 - code-projecSql server indexed views   speed up your select queries  part 1 - code-projec
Sql server indexed views speed up your select queries part 1 - code-projec
 
Sql server – query optimization – remove bookmark lookup – remove rid lookup
Sql server – query optimization – remove bookmark lookup – remove rid lookupSql server – query optimization – remove bookmark lookup – remove rid lookup
Sql server – query optimization – remove bookmark lookup – remove rid lookup
 
Sql server common interview questions and answers
Sql server   common interview questions and answersSql server   common interview questions and answers
Sql server common interview questions and answers
 
Sql server common interview questions and answers page 6
Sql server   common interview questions and answers page 6Sql server   common interview questions and answers page 6
Sql server common interview questions and answers page 6
 
Sql server common interview questions and answers page 5
Sql server   common interview questions and answers page 5Sql server   common interview questions and answers page 5
Sql server common interview questions and answers page 5
 
Sql server common interview questions and answers page 4
Sql server   common interview questions and answers page 4Sql server   common interview questions and answers page 4
Sql server common interview questions and answers page 4
 
Sql server – 2008 – hardware and software requirements for installing sql se
Sql server – 2008 – hardware and software requirements for installing sql seSql server – 2008 – hardware and software requirements for installing sql se
Sql server – 2008 – hardware and software requirements for installing sql se
 
Speeding up queries with semi joins and anti-joins
Speeding up queries with semi joins and anti-joinsSpeeding up queries with semi joins and anti-joins
Speeding up queries with semi joins and anti-joins
 
Speed up sql
Speed up sqlSpeed up sql
Speed up sql
 
Speed up sql server apps - visual studio magazine
Speed up sql server apps  - visual studio magazineSpeed up sql server apps  - visual studio magazine
Speed up sql server apps - visual studio magazine
 
See sql server graphical execution plans in action tech republic
See sql server graphical execution plans in action   tech republicSee sql server graphical execution plans in action   tech republic
See sql server graphical execution plans in action tech republic
 
Reviewing sql server permissions tech republic
Reviewing sql server permissions   tech republicReviewing sql server permissions   tech republic
Reviewing sql server permissions tech republic
 
Query optimization how to search millions of record in sql table faster -
Query optimization   how to search millions of record in sql table faster  -Query optimization   how to search millions of record in sql table faster  -
Query optimization how to search millions of record in sql table faster -
 
Optimize sql server queries with these advanced tuning techniques tech repu
Optimize sql server queries with these advanced tuning techniques   tech repuOptimize sql server queries with these advanced tuning techniques   tech repu
Optimize sql server queries with these advanced tuning techniques tech repu
 

Sql server common interview questions and answers page 2

  • 1. SQL Server - Common Interview Questions and Answers Page 2 Search Aptitude ? Reasoning ? Verbal Ability GK Puzzles Programming ? Engineering Medical ? Interview Online Test Ads by Google SQL Server - Common Interview Questions and Answers SQL Server @ : Home > Technical Interview > SQL Server Common Questions > Interview Questions Monitoring SQL Register for Cognos Forum Las Vegas October 21-25, 2012 Save $400 Off Registration www.ironsidegroup.com SQL Server Manager SQL Server Training Access Videos, Articles and More. Join the SSWUG.ORG Community Today! www.sswug.org Export SharePoint to SQL Live export of SharePoint lists to normalised SQL Server tables www.axioworks.com/SQList Multilingual JDE Reporting Made Easy Simplify JDE Reporting! Try for Free Today www.reportsnow.com WebCenter Translate Content Inside WebCenter 7. What is difference between DELETE and TRUNCATE commands? Lingotek Collaborative Translation lingotek.com/oracle Delete command removes the rows from a table based on the condition that we provide with a WHERE clause. Truncate will actually remove all the rows from a table and there will be no data in the table after we run the Web based OLAP truncate command. Client for Microsoft Analysis 1. TRUNCATE: Services download Free Evaluation 1. TRUNCATE is faster and uses fewer system and transaction log resources than DELETE. www.ReportPortal.com 2. TRUNCATE removes the data by deallocating the data pages used to store the table's data, and only the page deallocations are recorded in the transaction log. Business Analytics MS 3. TRUNCATE removes all rows from a table, but the table structure, its columns, constraints, indexes One Year Degree and so on, remains. The counter used by an identity for new rows is reset to the seed for the University of Texas www.mccombs.utexas.edu/… column. 4. You cannot use TRUNCATE TABLE on a table referenced by a FOREIGN KEY constraint. Because Oracle Free Real- TRUNCATE TABLE is not logged, it cannot activate a trigger. Time monitoring with 5. TRUNCATE cannot be rolled back. Lab128 - for DBA and advanced DB 6. TRUNCATE is DDL Command. developers www.lab128.com 7. TRUNCATE Resets identity of the table 2. DELETE: 1. DELETE removes rows one at a time and records an entry in the transaction log for each deleted row. 2. If you want to retain the identity counter, use DELETE instead. If you want to remove table definition and its data, use the DROP TABLE statement. 3. DELETE Can be used with or without a WHERE clause 4. DELETE Activates Triggers. 5. DELETE can be rolled back. 6. DELETE is DML Command. 7. DELETE does not reset identity of the table. Note: DELETE and TRUNCATE both can be rolled back when surrounded by TRANSACTION if the current session is not closed. If TRUNCATE is written in Query Editor surrounded by TRANSACTION and if session is closed, it can not be rolled back but DELETE can be rolled back. 8. When is the use of UPDATE_STATISTICS command? This command is basically used when a large processing of data has occurred. If a large amount of deletions any modification or Bulk Copy into the tables has occurred, it has to update the indexes to take these changes into account. UPDATE_STATISTICS updates the indexes on these tables accordingly. 9. What is the difference between a HAVING CLAUSE and a WHERE CLAUSE? http://www.indiabix.com/technical/sql-server-common-questions/2[08/29/2012 4:09:30 PM]
  • 2. SQL Server - Common Interview Questions and Answers Page 2 They specify a search condition for a group or an aggregate. But the difference is that HAVING can be used only with the SELECT statement. HAVING is typically used in a GROUP BY clause. When GROUP BY is not used, HAVING behaves like a WHERE clause. Having Clause is basically used only with the GROUP BY function in a query whereas WHERE Clause is applied to each row before they are part of the GROUP BY function in a query. 10. What are the properties and different Types of Sub-Queries? 1. Properties of Sub-Query 1. A sub-query must be enclosed in the parenthesis. 2. A sub-query must be put in the right hand of the comparison operator, and 3. A sub-query cannot contain an ORDER-BY clause. 4. A query can contain more than one sub-query. 2. Types of Sub-Query 1. Single-row sub-query, where the sub-query returns only one row. 2. Multiple-row sub-query, where the sub-query returns multiple rows,. and 3. Multiple column sub-query, where the sub-query returns multiple columns 11. What is SQL Profiler? SQL Profiler is a graphical tool that allows system administrators to monitor events in an instance of Microsoft SQL Server. You can capture and save data about each event to a file or SQL Server table to analyze later. For example, you can monitor a production environment to see which stored procedures are hampering performances by executing too slowly. Use SQL Profiler to monitor only the events in which you are interested. If traces are becoming too large, you can filter them based on the information you want, so that only a subset of the event data is collected. Monitoring too many events adds overhead to the server and the monitoring process and can cause the trace file or trace table to grow very large, especially when the monitoring process takes place over a long period of time. 12. What are the authentication modes in SQL Server? How can it be changed? Windows mode and Mixed Mode - SQL and Windows. To change authentication mode in SQL Server click Start, Programs, Microsoft SQL Server and click SQL Enterprise Manager to run SQL Enterprise Manager from the Microsoft SQL Server program group. Select the server then from the Tools menu select SQL Server Configuration Properties, and choose the Security page. < Prev 1 2 3 4 5 6 Next > Direct_Oracle_Access High performance component set for Delphi and C++Builder www.allroundautomations.com © 2008-2012 by IndiaBIX™ Technologies. All Rights Reserved | Copyright | Terms of Use & Privacy Policy http://www.indiabix.com/technical/sql-server-common-questions/2[08/29/2012 4:09:30 PM]
  • 3. SQL Server - Common Interview Questions and Answers Page 2 Contact us: info@indiabix.com Follow us on twitter! Bookmark to: http://www.indiabix.com/technical/sql-server-common-questions/2[08/29/2012 4:09:30 PM]