Databases

Ace your homework & exams now with Quizwiz!

19. What is the SELECT statement?

SELECT operator in SQL is used to select data from a database. The data returned is stored in a result table, called the result-set.SELECT * FROM myDB.students;

Q4: What are the advantages of NoSQL over traditional RDBMS? What are the advantages of NoSQL over traditional RDBMS?

14 NoSQL Interview Questions NoSQL 14 JuniorAnswerNoSQL is better than RDBMS because of the following reasons/properities of NoSQL:It supports semi-structured data and volatile dataIt does not have schemaRead/Write throughput is very highHorizontal scalability can be achieved easilyWill support Bigdata in volumes of Terra Bytes & Peta BytesProvides good support for Analytic tools on top of BigdataCan be hosted in cheaper hardware machinesIn-memory caching option is available to increase the performance of queriesFaster development life cycles for developersStill, RDBMS is better than NoSQL for the following reasons/properties of RDBMS:Transactions with ACID properties - Atomicity, Consistency, Isolation & DurabilityAdherence to Strong Schema of data being written/readReal time query management ( in case of data size < 10 Tera bytes )Execution of complex queries involving join & group by clausesInterview Coming Up? Check 14 NoSQL Interview Questionslinkstackoverflow.comSee All 14 NoSQL Q&A

Q2: What are NoSQL databases? What are the different types of NoSQL databases? What are NoSQL databases? What are the different types of NoSQL databases?

14 NoSQL Interview Questions NoSQL 14 EntryAnswerA NoSQL database provides a mechanism for storage and retrieval of data that is modeled in means other than the tabular relations used in relational databases (like SQL, Oracle, etc.).Types of NoSQL databases:Document OrientedKey ValueGraphColumn OrientedInterview Coming Up? Check 14 NoSQL Interview Questionslinkinterviewbubble.com

10. What is a Foreign Key?

A FOREIGN KEY comprises of single or collection of fields in a table that essentially refer to the PRIMARY KEY in another table. Foreign key constraint ensures referential integrity in the relation between two tables.The table with the foreign key constraint is labelled as the child table, and the table containing the candidate key is labelled as the referenced or parent table.CREATE TABLE Students ( /* Create table with foreign key - Way 1 */ ID INT NOT NULL Name VARCHAR(255) LibraryID INT PRIMARY KEY (ID) FOREIGN KEY (Library_ID) REFERENCES Library(LibraryID));CREATE TABLE Students ( /* Create table with foreign key - Way 2 */ ID INT NOT NULL PRIMARY KEY Name VARCHAR(255) LibraryID INT FOREIGN KEY (Library_ID) REFERENCES Library(LibraryID));ALTER TABLE Students /* Add a new foreign key */ADD FOREIGN KEY (LibraryID)REFERENCES Library (LibraryID);Q => What type of integrity constraint does the foreign key ensure?Q => Write a SQL statement to add a FOREIGN KEY 'col_fk' that references 'col_pk' in 'table_x'.

14. What is an Index? Explain its different types.

A database index is a data structure that provides quick lookup of data in a column or columns of a table. It enhances the speed of operations accessing data from a database table at the cost of additional writes and memory to maintain the index data structure.CREATE INDEX index_name /* Create Index */ON table_name (column_1, column_2);DROP INDEX index_name; /* Drop Index */There are different types of indexes that can be created for different purposes:Unique and Non-Unique Index:Unique indexes are indexes that help maintain data integrity by ensuring that no two rows of data in a table have identical key values. Once a unique index has been defined for a table, uniqueness is enforced whenever keys are added or changed within the index.CREATE UNIQUE INDEX myIndexON students (enroll_no);Non-unique indexes, on the other hand, are not used to enforce constraints on the tables with which they are associated. Instead, non-unique indexes are used solely to improve query performance by maintaining a sorted order of data values that are used frequently.Clustered and Non-Clustered Index:Clustered indexes are indexes whose order of the rows in the database correspond to the order of the rows in the index. This is why only one clustered index can exist in a given table, whereas, multiple non-clustered indexes can exist in the table.The only difference between clustered and non-clustered indexes is that the database manager attempts to keep the data in the database in the same order as the corresponding keys appear in the clustered index.Clustering index can improve the performance of most query operations because they provide a linear-access path to data stored in the database.Q => Write a SQL statement to create a UNIQUE INDEX "my_index" on "my_table" for fields "column_1" & "column_2".

38. What is a Stored Procedure?

A stored procedure is a subroutine available to applications that access a relational database management system (RDBMS). Such procedures are stored in the database data dictionary. The sole disadvantage of stored procedure is that it can be executed nowhere except in the database and occupies more memory in the database server. It also provides a sense of security and functionality as users who can't access the data directly can be granted access via stored procedures.DELIMITER $$CREATE PROCEDURE FetchAllStudents()BEGINSELECT * FROM myDB.students;END $$DELIMITER ;

25. What is an Alias in SQL?

An alias is a feature of SQL that is supported by most, if not all, RDBMSs. It is a temporary name assigned to the table or table column for the purpose of a particular SQL query. In addition, aliasing can be employed as an obfuscation technique to secure the real names of database fields. A table alias is also called a correlation name .An alias is represented explicitly by the AS keyword but in some cases the same can be performed without it as well. Nevertheless, using the AS keyword is always a good practice.SELECT A.emp_name AS "Employee" /* Alias using AS keyword */B.emp_name AS "Supervisor"FROM employee A, employee B /* Alias without AS keyword */WHERE A.emp_sup = B.emp_id;Q => Write an SQL statement to select all from table "Limited" with alias "Ltd".

33. What are Aggregate and Scalar functions?

An aggregate function performs operations on a collection of values to return a single scalar value. Aggregate functions are often used with the GROUP BY and HAVING clauses of the SELECT statement. Following are the widely used SQL aggregate functions:AVG() - Calculates the mean of a collection of values.COUNT() - Counts the total number of records in a specific table or view.MIN() - Calculates the minimum of a collection of values.MAX() - Calculates the maximum of a collection of values.SUM() - Calculates the sum of a collection of values.FIRST() - Fetches the first element in a collection of values.LAST() - Fetches the last element in a collection of values.Note: All aggregate functions described above ignore NULL values except for the COUNT function.A scalar function returns a single value based on the input value. Following are the widely used SQL scalar functions:LEN() - Calculates the total length of the given field (column).UCASE() - Converts a collection of string values to uppercase characters.LCASE() - Converts a collection of string values to lowercase characters.MID() - Extracts substrings from a collection of string values in a table.CONCAT() - Concatenates two or more strings.RAND() - Generates a random collection of numbers of given length.ROUND() - Calculates the round off integer value for a numeric field (or decimal point values).NOW() - Returns the current data & time.FORMAT() - Sets the format to display a collection of values.

15. What is the difference between Clustered and Non-clustered index?

As explained above, the differences can be broken down into three small factors -Clustered index modifies the way records are stored in a database based on the indexed column. Non-clustered index creates a separate entity within the table which references the original table.Clustered index is used for easy and speedy retrieval of data from the database, whereas, fetching records from the non-clustered index is relatively slower.In SQL, a table can have a single clustered index whereas it can have multiple non-clustered indexes.

2. What is DBMS?

DBMS stands for Database Management System. DBMS is a system software responsible for the creation, retrieval, updation and management of the database. It ensures that our data is consistent, organized and is easily accessible by serving as an interface between the database and its end users or application softwares.

16. What is Data Integrity?

Data Integrity is the assurance of accuracy and consistency of data over its entire life-cycle, and is a critical aspect to the design, implementation and usage of any system which stores, processes, or retrieves data. It also defines integrity constraints to enforce business rules on the data when it is entered into an application or a database.

27. What is Normalization?

Normalization represents the way of organizing structured data in the database efficiently. It includes creation of tables, establishing relationships between them, and defining rules for those relationships. Inconsistency and redundancy can be kept in check based on these rules, hence, adding flexibility to the database.

24. List the different types of relationships in SQL.

One-to-One - This can be defined as the relationship between two tables where each record in one table is associated with the maximum of one record in the other table.One-to-Many & Many-to-One - This is the most commonly used relationship where a record in a table is associated with multiple records in the other table.Many-to-Many - This is used in cases when multiple instances on both sides are needed for defining a relationship.Self Referencing Relationships - This is used when a table needs to define a relationship with itself.

3. What is RDBMS? How is it different from DBMS?

RDBMS stands for Relational Database Management System. The key difference here, compared to DBMS, is that RDBMS stores data in the form of a collection of tables and relations can be defined between the common fields of these tables. Most modern database management systems like MySQL, Microsoft SQL Server, Oracle, IBM DB2 and Amazon Redshift are based on RDBMS.

32. What is the difference between DELETE and TRUNCATE statements?

The TRUNCATE command is used to delete all the rows from the table and free the space containing the table.The DELETE command deletes only the rows from the table based on the condition given in the where clause or deletes all the rows from the table if no condition is specified. But it does not free the space containing the table.

Q20: How do you track record relations in NoSQL? How do you track record relations in NoSQL?

14 NoSQL Interview Questions NoSQL 14 SeniorAnswerJoin FSC to see Answer to this Interview Question...Join To Unlock Answer

Q24: Where does MongoDB stand in the CAP theorem? Where does MongoDB stand in the CAP theorem?

82 MongoDB Interview Questions MongoDB 82 ExpertAnswerShare this post to Unlock Answer to Expert Interview Question...Share This Post To Unlock Expert Answers!

31. What is the difference between DROP and TRUNCATE statements?

If a table is dropped, all things associated with the tables are dropped as well. This includes - the relationships defined on the table with other tables, the integrity checks and constraints, access privileges and other grants that the table has. To create and use the table again in its original form, all these relations, checks, constraints, privileges and relationships need to be redefined. However, if a table is truncated, none of the above problems exist and the table retains its original structure.

5. What is the difference between SQL and MySQL?

SQL is a standard language for retrieving and manipulating structured databases. On the contrary, MySQL is a relational database management system, like SQL Server, Oracle or IBM DB2, that is used to manage SQL databases.

11. What is a Join? List its different types.

The SQL Join clause is used to combine records (rows) from two or more tables in a SQL database based on a related column between the two.There are four different types of JOINs in SQL:(INNER) JOIN: Retrieves records that have matching values in both tables involved in the join. This is the widely used join for queries.SELECT *FROM Table_AJOIN Table_B;SELECT *FROM Table_AINNER JOIN Table_B;LEFT (OUTER) JOIN: Retrieves all the records/rows from the left and the matched records/rows from the right table.SELECT *FROM Table_A ALEFT JOIN Table_B BON A.col = B.col;RIGHT (OUTER) JOIN: Retrieves all the records/rows from the right and the matched records/rows from the left table.SELECT *FROM Table_A ARIGHT JOIN Table_B BON A.col = B.col;FULL (OUTER) JOIN: Retrieves all the records where there is a match in either the left or right table.SELECT *FROM Table_A AFULL JOIN Table_B BON A.col = B.col;

Q25: Explain the differences in conceptual data design with NoSQL databases? Explain the differences in conceptual data design with NoSQL databases?

14 NoSQL Interview Questions NoSQL 14 ExpertDetailsWhat's easier, what's harder, what can't be done at all?AnswerShare this post to Unlock Answer to Expert Interview Question...

Q22: Explain how would you keep document change history in NoSQL DB? Explain how would you keep document change history in NoSQL DB?

14 NoSQL Interview Questions NoSQL 14 SeniorAnswerJoin FSC to see Answer to this Interview Question...Join To Unlock Answer See All 14 NoSQL Q&A

9. What is a UNIQUE constraint?

A UNIQUE constraint ensures that all values in a column are different. This provides uniqueness for the column(s) and helps identify each row uniquely. Unlike primary key, there can be multiple unique constraints defined per table. The code syntax for UNIQUE is quite similar to that of PRIMARY KEY and can be used interchangeably.CREATE TABLE Students ( /* Create table with a single field as unique */ ID INT NOT NULL UNIQUE Name VARCHAR(255));CREATE TABLE Students ( /* Create table with multiple fields as unique */ ID INT NOT NULL LastName VARCHAR(255) FirstName VARCHAR(255) NOT NULL CONSTRAINT PK_Student UNIQUE (ID, FirstName));ALTER TABLE Students /* Set a column as unique */ADD UNIQUE (ID);ALTER TABLE Students /* Set multiple columns as unique */ADD CONSTRAINT PK_Student /* Naming a unique constraint */UNIQUE (ID, FirstName);

1. What is Database?

A database is an organized collection of data, stored and retrieved digitally from a remote or local computer system. Databases can be vast and complex, and such databases are developed using fixed design and modeling approaches.

17. What is a Query?

A query is a request for data or information from a database table or combination of tables. A database query can be either a select query or an action query.SELECT fname, lname /* select query */FROM myDb.studentsWHERE student_id = 1;UPDATE myDB.students /* action query */SET fname = 'Captain', lname = 'America'WHERE student_id = 1;

7. What are Constraints in SQL?

Constraints are used to specify the rules concerning data in the table. It can be applied for single or multiple fields in an SQL table during creation of table or after creationg using the ALTER TABLE command. The constraints are:NOT NULL - Restricts NULL value from being inserted into a column.CHECK - Verifies that all values in a field satisfy a condition.DEFAULT - Automatically assigns a default value if no value has been specified for the field.UNIQUE - Ensures unique values to be inserted into the field.INDEX - Indexes a field providing faster retrieval of records.PRIMARY KEY - Uniquely identifies each record in a table.FOREIGN KEY - Ensures referential integrity for a record in another table.

28. What is Denormalization?

Denormalization is the inverse process of normalization, where the normalized schema is converted into a schema which has redundant information. The performance is improved by using redundancy and keeping the redundant data consistent. The reason for performing denormalization is the overheads produced in query processor by an over-normalized structure.

29. What are the various forms of Normalization?

Normal Forms are used to eliminate or reduce redundancy in database tables. The different forms are as follows:First Normal FormA relation is in first normal form if every attribute in that relation is a single-valued attribute. If a relation contains composite or multi-valued attribute, it violates the first normal form. Let's consider the following students table. Each student in the table, has a name, his/her address and the books they issued from the public library -Students TableSaraAnshSaraAnshAs we can observe, the Books Issued field has more than one values per record and to convert it into 1NF, this has to be resolved into separate individual records for each book issued. Check the following table in 1NF form -Students Table (1st Normal Form)StudentSaraSaraAnshAnshSaraSaraAnshSecond Normal FormA relation is in second normal form if it satisfies the conditions for first normal form and does not contain any partial dependency. A relation in 2NF has no partial dependency, i.e., it has no non-prime attribute that depends on any proper subset of any candidate key of the table. Often, specifying a single column Primary Key is the solution to the problem. Examples -Example 1 - Consider the above example. As we can observe, Students Table in 1NF form has a candidate key in the form of [Student, Address] that can uniquely identify all records in the table. The field Books Issued (non-prime attribute) depends partially on the Student field. Hence, the table is not in 2NF. To convert it into 2nd Normal Form, we will partition the tables into two while specifying a new Primary Key attribute to identify the individual records in the Students table. The Foreign Key constraint will be set on the other table to ensure referential integrity.Students Table (2nd Normal Form)Student_ID1234Books Table (2nd Normal Form)Student_ID1122334Example 2 - Consider the following dependencies in relation R(W,X,Y,Z) WX -> Y [W and X together determine Y] XY -> Z [X and Y together determine Z] Here, WX is the only candidate key and there is no partial dependency, i.e., any proper subset of WX doesnt determine any non-prime attribute in the relation.Third Normal FormA relation is said to be in the third normal form, if it satisfies the conditions for second normal form and there is no transitive dependency between the non-prime attributes, i.e.,all non-prime attributes are determined only by the candidate keys of the relation and not by any other non-prime attribute.Example 1 - Consider the Students Table in the above example. As we can observe, Students Table in 2NF form has a single candidate key Student_ID (primary key) that can uniquely identify all records in the table. The field Salutation (non-prime attribute), however, depends on the Student Field rather than the candidate key. Hence, the table is not in 3NF. To convert it into 3rd Normal Form, we will once again partition the tables into two while specifying a new Foreign Key constraint to identify the salutations for individual records in the Students table. The Primary Key constraint for the same will be set on the Salutations table to identify each record uniquely.Students Table (3rd Normal Form)Student_ID1234Books Table (3rd Normal Form)Student_ID1122334Salutations Table (3rd Normal Form)Salutation_ID123Example 2 - Consider the following dependencies in relation R(P,Q,R,S,T) P -> QR [P together determine C] RS -> T [B and C together determine D] Q -> S T -> P For the above relation to exist in 3NF, all possible candidate keys in above relation should be {P, RS, QR, T}.Boyce-Codd Normal FormA relation is in Boyce-Codd Normal Form if satisfies the conditions for third normal form and for every functional dependency, Left-Hand-Side is super key. In other words, a relation in BCNF has non-trivial functional dependencies in the form X > Y, such that X is always a super key. For example - In the above example, Student_ID serves as the sole unique identifier for the Students Table and Salutation_ID for the Salutations Table, thus these tables exist in BCNF. Same cannot be said for the Books Table and there can be several books with common Book Names and same Student_ID.

23. What are Entities and Relationships?

Entity: An entity can be a real-world object, either tangible or intangible, that can be easily identifiable. For example, in a college database, students, professors, workers, departments, and projects can be referred to as entities. Each entity has some associated properties that provide it an identity.Relationships: Relations or links between entities that have something to do with each other. For example - The employees table in a company's database can be associated with the salary table in the same database.

Q1: What do you understand by NoSQL databases? Explain. What do you understand by NoSQL databases? Explain.

14 NoSQL Interview Questions NoSQL 14 EntryAnswerAt the present time, the internet is loaded with big data, big users, big complexity etc. and also becoming more complex day by day. NoSQL is answer of all these problems; It is not a traditional database management system, not even a relational database management system (RDBMS). NoSQL stands for Not Only SQL. NoSQL is a type of database that can handle and sort all type of unstructured, messy and complicated data. It is just a new way to think about the database.Interview Coming Up? Check 14 NoSQL Interview Questionslinkmedium.com/@hub4tech

Q21: Explain eventual consistency in context of NoSQL Explain eventual consistency in context of NoSQL

14 NoSQL Interview Questions NoSQL 14 SeniorAnswerJoin FSC to see Answer to this Interview Question...Join To Unlock Answer 22 Important JavaScript/ES6/ES2015 Interview Questions22 Important JavaScript/ES6/ES2015 Interview Questions#JavaScript 56 SQL Interview Questions SQL 56 164 React Interview Questions React 164 60 ASP.NET Interview Questions ASP.NET 60 112 C# Interview Questions C# 112 68 Flutter Interview Questions Flutter 68 68 Kotlin Interview Questions Kotlin 68 120 Angular Interview Questions Angular 120 34 Microservices Interview Questions Microservices 34 66 SOA & REST API Interview Questions SOA & REST API 66 25 Redis Interview Questions Redis 25 51 .NET Core Interview Questions .NET Core 51 41 XML & XSLT Interview Questions XML & XSLT 41 16 MSMQ Interview Questions MSMQ 16

Q5: Explain difference between scaling horizontally and vertically for databases Explain difference between scaling horizontally and vertically for databases

14 NoSQL Interview Questions NoSQL 14 JuniorAnswerHorizontal scaling means that you scale by adding more machines into your pool of resources whereasVertical scaling means that you scale by adding more power (CPU, RAM) to an existing machine.In a database world horizontal-scaling is often based on the partitioning of the data i.e. each node contains only part of the data, in vertical-scaling the data resides on a single node and scaling is done through multi-core i.e. spreading the load between the CPU and RAM resources of that machine.Good examples of horizontal scaling are Cassandra, MongoDB, Google Cloud Spanner. and a good example of vertical scaling is MySQL - Amazon RDS (The cloud version of MySQL).Interview Coming Up? Check 14 NoSQL Interview Questionslinkstackoverflow.com33 ADO.NET Interview Questions ADO.NET 33 41 Vue.js Interview Questions Vue.js 41 26 Software Testing Interview Questions Software Testing 26 25 Redis Interview Questions Redis 25 51 jQuery Interview Questions jQuery 51 57 Entity Framework Interview Questions Entity Framework 57 46 WPF Interview Questions WPF 46 39 Questions to Ask Interview Questions Questions to Ask 39 62 AngularJS Interview Questions AngularJS 62 27 Reactive Programming Interview Questions Reactive Programming 27 72 React Native Interview Questions React Native 72 41 XML & XSLT Interview Questions XML & XSLT 41

Q12: What does Document-oriented vs. Key-Value mean in context of NoSQL? What does Document-oriented vs. Key-Value mean in context of NoSQL?

14 NoSQL Interview Questions NoSQL 14 MidAnswerA key-value store provides the simplest possible data model and is exactly what the name suggests: it's a storage system that stores values indexed by a key. You're limited to query by key and the values are opaque, the store doesn't know anything about them. This allows very fast read and write operations (a simple disk access) and I see this model as a kind of non volatile cache (i.e. well suited if you need fast accesses by key to long-lived data).A document-oriented database extends the previous model and values are stored in a structured format (a document, hence the name) that the database can understand. For example, a document could be a blog post and the comments and the tags stored in a denormalized way. Since the data are transparent, the store can do more work (like indexing fields of the document) and you're not limited to query by key. As I hinted, such databases allows to fetch an entire page's data with a single query and are well suited for content oriented applications (which is why big sites like Facebook or Amazon like them).Other kinds of NoSQL databases include column-oriented stores, graph databases and even object databases.Interview Coming Up? Check 14 NoSQL Interview Questionslinkstackoverflow.com

Q14: When would you use NoSQL? When would you use NoSQL?

14 NoSQL Interview Questions NoSQL 14 MidAnswerIt depends from some general points:NoSQL is typically good for unstructured/"schemaless" data - usually, you don't need to explicitly define your schema up front and can just include new fields without any ceremonyNoSQL typically favours a denormalised schema due to no support for JOINs per the RDBMS world. So you would usually have a flattened, denormalized representation of your data.Using NoSQL doesn't mean you could lose data. Different DBs have different strategies. e.g. MongoDB - you can essentially choose what level to trade off performance vs potential for data loss - best performance = greater scope for data loss.It's often very easy to scale out NoSQL solutions. Adding more nodes to replicate data to is one way to a) offer more scalability and b) offer more protection against data loss if one node goes down. But again, depends on the NoSQL DB/configuration. NoSQL does not necessarily mean "data loss" like you infer.IMHO, complex/dynamic queries/reporting are best served from an RDBMS. Often the query functionality for a NoSQL DB is limited.It doesn't have to be a 1 or the other choice. My experience has been using RDBMS in conjunction with NoSQL for certain use cases.NoSQL DBs often lack the ability to perform atomic operations across multiple "tables".Interview Coming Up? Check 14 NoSQL Interview Questionslinkstackoverflow.com

Q13: When should I use a NoSQL database instead of a relational database? When should I use a NoSQL database instead of a relational database?

14 NoSQL Interview Questions NoSQL 14 MidAnswerRelational databases enforces ACID. So, you will have schema based transaction oriented data stores. It's proven and suitable for 99% of the real world applications. You can practically do anything with relational databases.But, there are limitations on speed and scaling when it comes to massive high availability data stores. For example, Google and Amazon have terabytes of data stored in big data centers. Querying and inserting is not performant in these scenarios because of the blocking/schema/transaction nature of the RDBMs. That's the reason they have implemented their own databases (actually, key-value stores) for massive performance gain and scalability.If you need a NoSQL db you usually know about it, possible reasons are:client wants 99.999% availability on a high traffic site.your data makes no sense in SQL, you find yourself doing multiple JOIN queries for accessing some piece of information.you are breaking the relational model, you have CLOBs that store denormalized data and you generate external indexes to search that data.Interview Coming Up? Check 14 NoSQL Interview Questionslinkstackoverflow.comSee All 14 NoSQL Q&A30 Redux Interview Questions Redux 30 62 AngularJS Interview Questions AngularJS 62 41 XML & XSLT Interview Questions XML & XSLT 41 25 Redis Interview Questions Redis 25 22 PWA Interview Questions PWA 22 42 Blockchain Interview Questions Blockchain 42 15 JSON Interview Questions JSON 15 66 SOA & REST API Interview Questions SOA & REST API 66 45 Design Patterns Interview Questions Design Patterns 45 33 ASP.NET Web API Interview Questions ASP.NET Web API 33 82 PHP Interview Questions PHP 82 112 Behavioral Interview Questions Behavioral 112 112 C# Interview Questions C# 112

Q11: How does column-oriented NoSQL differ from document-oriented? How does column-oriented NoSQL differ from document-oriented?

14 NoSQL Interview Questions NoSQL 14 MidAnswerThe main difference is that document stores (e.g. MongoDB and CouchDB) allow arbitrarily complex documents, i.e. subdocuments within subdocuments, lists with documents, etc. whereas column stores (e.g. Cassandra and HBase) only allow a fixed format, e.g. strict one-level or two-level dictionaries.For example a document-oriented database (like MongoDB) inserts whole documents (typically JSON), whereas in Cassandra (column-oriented db) you can address individual columns or supercolumns, and update these individually, i.e. they work at a different level of granularity. Each column has its own separate timestamp/version (used to reconcile updates across the distributed cluster).The Cassandra column values are just bytes, but can be typed as ASCII, UTF8 text, numbers, dates etc. You could use Cassandra as a primitive document store by inserting columns containing JSON - but you wouldn't get all the features of a real document-oriented store.Interview Coming Up? Check 14 NoSQL Interview Questionslinkstackoverflow.com16 JSON Interview Questions You Must Be Prepared For16 JSON Interview Questions You Must Be Prepared For#JSON #JavaScript 113 Android Interview Questions Android 113 84 Ruby Interview Questions Ruby 84 57 Entity Framework Interview Questions Entity Framework 57 50 CSS Interview Questions CSS 50 82 MongoDB Interview Questions MongoDB 82 36 T-SQL Interview Questions T-SQL 36 95 Node.js Interview Questions Node.js 95 24 GraphQL Interview Questions GraphQL 24 30 Data Structures Interview Questions Data Structures 30 55 Docker Interview Questions Docker 55 164 React Interview Questions React 164 41 Laravel Interview Questions Laravel 41 39 Questions to Ask Interview Questions Questions to Ask 39 72 Ruby on Rails Interview Questions Ruby on Rails 72

Q23: Explain BASE terminology in a context of NoSQL Explain BASE terminology in a context of NoSQL

14 NoSQL Interview Questions NoSQL 14 SeniorAnswerJoin FSC to see Answer to this Interview Question...Join To Unlock Answer 26 Code Problems Interview Questions Code Problems 26 39 DevOps Interview Questions DevOps 39 95 Node.js Interview Questions Node.js 95 113 Android Interview Questions Android 113 24 GraphQL Interview Questions GraphQL 24 57 Entity Framework Interview Questions Entity Framework 57 50 CSS Interview Questions CSS 50 72 Ruby on Rails Interview Questions Ruby on Rails 72 72 React Native Interview Questions React Native 72 116 JavaScript Interview Questions JavaScript 116 83 Xamarin Interview Questions Xamarin 83 33 ASP.NET MVC Interview Questions ASP.NET MVC 33 24 WebSockets Interview Questions WebSockets 24

Q19: Explain use of transactions in NoSQL Explain use of transactions in NoSQL

14 NoSQL Interview Questions NoSQL 14 SeniorAnswerJoin FSC to see Answer to this Interview Question...Join To Unlock Answer See All 14 NoSQL Q&A33 WCF Interview Questions WCF 33 36 T-SQL Interview Questions T-SQL 36 116 JavaScript Interview Questions JavaScript 116 33 ADO.NET Interview Questions ADO.NET 33 51 .NET Core Interview Questions .NET Core 51 95 Node.js Interview Questions Node.js 95 42 Blockchain Interview Questions Blockchain 42 26 Code Problems Interview Questions Code Problems 26 39 DevOps Interview Questions DevOps 39 26 Software Testing Interview Questions Software Testing 26 113 Android Interview Questions Android 113 68 Kotlin Interview Questions Kotlin 68 46 Software Architecture Interview Questions Software Architecture 46

Q16: Define ACID Properties Define ACID Properties

56 SQL Interview Questions SQL 56 MidAnswerAtomicity: It ensures all-or-none rule for database modifications.Consistency: Data values are consistent across the database.Isolation: Two transactions are said to be independent of one another.Durability: Data is not lost even at the time of server failure.Interview Coming Up? Check 56 SQL Interview Questionslinkgithub.com/chetansomaniSee All 56 SQL Q&A23 PowerShell Interview Questions DevOps Engineers Must Master23 PowerShell Interview Questions DevOps Engineers Must Master#PowerShell

Q15: What is Denormalization? What is Denormalization?

56 SQL Interview Questions SQL 56 MidAnswerIt is the process of improving the performance of the database by adding redundant data.Interview Coming Up? Check 56 SQL Interview Questionslinkgithub.com/dhaval140668 Flutter Interview Questions Flutter 68 35 LINQ Interview Questions LINQ 35 41 XML & XSLT Interview Questions XML & XSLT 41 22 PWA Interview Questions PWA 22 30 Data Structures Interview Questions Data Structures 30 55 HTML5 Interview Questions HTML5 55 14 NoSQL Interview Questions NoSQL 14 53 OOP Interview Questions OOP 53 84 Ruby Interview Questions Ruby 84 45 Design Patterns Interview Questions Design Patterns 45 33 ASP.NET Web API Interview Questions ASP.NET Web API 33 41 Laravel Interview Questions Laravel 41

Q3: When should we embed one document within another in MongoDB? When should we embed one document within another in MongoDB?

82 MongoDB Interview Questions MongoDB 82 JuniorAnswerYou should consider embedding documents for:contains relationships between entitiesOne-to-many relationshipsPerformance reasonsInterview Coming Up? Check 82 MongoDB Interview Questionslinktutorialspoint.com164 React Interview Questions React 164 55 HTML5 Interview Questions HTML5 55 39 TypeScript Interview Questions TypeScript 39 26 Software Testing Interview Questions Software Testing 26 41 Laravel Interview Questions Laravel 41 95 Node.js Interview Questions Node.js 95 25 Redis Interview Questions Redis 25 68 Flutter Interview Questions Flutter 68 66 SOA & REST API Interview Questions SOA & REST API 66 24 GraphQL Interview Questions GraphQL 24 58 Web Security Interview Questions Web Security 58 41 Vue.js Interview Questions Vue.js 41

Q9: Does MongoDB support ACID transaction management and locking functionalities? Does MongoDB support ACID transaction management and locking functionalities?

82 MongoDB Interview Questions MongoDB 82 MidAnswerACID stands that any update is:Atomic: it either fully completes or it does notConsistent: no reader will see a "partially applied" updateIsolated: no reader will see a "dirty" readDurable: (with the appropriate write concern)Historically MongoDB does not support default multi-document ACID transactions (multiple-document updates that can be rolled back and are ACID-compliant). However, MongoDB provides atomic operation on a single document. MongoDB 4.0 will add support for multi-document transactions, making it the only database to combine the speed, flexibility, and power of the document model with ACID data integrity guarantees.Interview Coming Up? Check 82 MongoDB Interview Questionslinktutorialspoint.com72 React Native Interview Questions React Native 72 68 Flutter Interview Questions Flutter 68 84 Ruby Interview Questions Ruby 84 58 Web Security Interview Questions Web Security 58 87 Spring Interview Questions Spring 87 112 C# Interview Questions C# 112 60 ASP.NET Interview Questions ASP.NET 60 33 ADO.NET Interview Questions ADO.NET 33 46 WPF Interview Questions WPF 46 24 GraphQL Interview Questions GraphQL 24 56 SQL Interview Questions SQL 56 29 Ionic Interview Questions Ionic 29

Q10: Explain advantages of BSON over JSON in MongoDB? Explain advantages of BSON over JSON in MongoDB?

82 MongoDB Interview Questions MongoDB 82 MidAnswerBSON is designed to be efficient in space, but in some cases is not much more efficient than JSON. In some cases BSON uses even more space than JSON. The reason for this is another of the BSON design goals: traversability. BSON adds some "extra" information to documents, like length of strings and subobjects. This makes traversal faster.BSON is also designed to be fast to encode and decode. For example, integers are stored as 32 (or 64) bit integers, so they don't need to be parsed to and from text. This uses more space than JSON for small integers, but is much faster to parse.In addition to compactness, BSON adds additional data types unavailable in JSON, notably the BinData and Date data types.Interview Coming Up? Check 82 MongoDB Interview Questionslinkstackoverflow.comSee All 82 MongoDB Q&A

Q6: How can you achieve primary key - foreign key relationships in MongoDB? How can you achieve primary key - foreign key relationships in MongoDB?

82 MongoDB Interview Questions MongoDB 82 MidAnswerBy default MongoDB does not support such primary key - foreign key relationships. However, we can achieve this concept by embedding one document inside another (aka subdocuments). Foe e.g. an address document can be embedded inside customer document.Interview Coming Up? Check 82 MongoDB Interview Questionslinktutorialspoint.com29+ Advanced XML Interview Questions (ANSWERED) Web Devs Must Know in 2020 29+ Advanced XML Interview Questions (ANSWERED) Web Devs Must Know in 2020#XML & XSLT

Q8: How do I perform the SQL JOIN equivalent in MongoDB? How do I perform the SQL JOIN equivalent in MongoDB?

82 MongoDB Interview Questions MongoDB 82 MidAnswerMongo is not a relational database, and the devs are being careful to recommend specific use cases for $lookup, but at least as of 3.2 doing join is now possible with MongoDB. The new $lookup operator added to the aggregation pipeline is essentially identical to a left outer join:{ $lookup: { from: <collection to join>, localField: <field from the input documents>, foreignField: <field from the documents of the "from" collection>, as: <output array field> }}Interview Coming Up? Check 82 MongoDB Interview Questionslinkstackoverflow.com

Q7: What is Sharding in MongoDB? Explain. What is Sharding in MongoDB? Explain.

82 MongoDB Interview Questions MongoDB 82 MidAnswerSharding is a method for storing data across multiple machines. MongoDB uses sharding to support deployments with very large data sets and high throughput operations.Interview Coming Up? Check 82 MongoDB Interview Questionslinktutorialspoint.comSee All 82 MongoDB Q&A44 AWS Interview Questions AWS 44 36 T-SQL Interview Questions T-SQL 36 26 Software Testing Interview Questions Software Testing 26 56 SQL Interview Questions SQL 56 55 HTML5 Interview Questions HTML5 55 38 Bootstrap Interview Questions Bootstrap 38 112 C# Interview Questions C# 112 25 Redis Interview Questions Redis 25 66 SOA & REST API Interview Questions SOA & REST API 66 112 Behavioral Interview Questions Behavioral 112 87 Spring Interview Questions Spring 87 57 Entity Framework Interview Questions Entity Framework 57 36 Git Interview Questions Git 36

Q17: How does MongoDB ensure high availability? How does MongoDB ensure high availability?

82 MongoDB Interview Questions MongoDB 82 SeniorAnswerJoin FSC to see Answer to this Interview Question...Join To Unlock Answer 56 SQL Interview Questions SQL 56 82 PHP Interview Questions PHP 82 164 React Interview Questions React 164 62 AngularJS Interview Questions AngularJS 62 53 OOP Interview Questions OOP 53 22 PWA Interview Questions PWA 22 39 DevOps Interview Questions DevOps 39 55 HTML5 Interview Questions HTML5 55 14 NoSQL Interview Questions NoSQL 14 95 Node.js Interview Questions Node.js 95 60 ASP.NET Interview Questions ASP.NET 60 39 TypeScript Interview Questions TypeScript 39

Q18: MongoDB relationships. What to use - embed or reference? MongoDB relationships. What to use - embed or reference?

82 MongoDB Interview Questions MongoDB 82 SeniorDetailsI want to design a question structure with some comments, but I don't know which relationship to use for comments: embed or reference? Explain me pros and cons of both solutions?AnswerJoin FSC to see Answer to this Interview Question...Join To Unlock Answer

22. What is Cursor? How to use a Cursor?

A database cursor is a control structure that allows for traversal of records in a database. Cursors, in addition, facilitates processing after traversal, such as retrieval, addition and deletion of database records. They can be viewed as a pointer to one row in a set of rows.Working with SQL CursorDECLARE a cursor after any variable declaration. The cursor declaration must always be associated with a SELECT Statement.Open cursor to initialize the result set. The OPEN statement must be called before fetching rows from the result set.FETCH statement to retrieve and move to the next row in the result set.Call the CLOSE statement to deactivate the cursor.Finally use the DEALLOCATE statement to delete the cursor definition and release the associated resources.DECLARE @name VARCHAR(50) /* Declare All Required Variables */DECLARE db_cursor CURSOR FOR /* Declare Cursor Name*/SELECT nameFROM myDB.studentsWHERE parent_name IN ('Sara', 'Ansh')OPEN db_cursor /* Open cursor and Fetch data into @name */ FETCH nextFROM db_cursorINTO @nameCLOSE db_cursor /* Close the cursor and deallocate the resources */DEALLOCATE db_cursor

12. What is a Self-Join?

A self JOIN is a case of regular join where a table is joined to itself based on some relation between its own column(s). Self-join uses the INNER JOIN or LEFT JOIN clause and a table alias is used to assign different names to the table within the query.SELECT A.emp_id AS "Emp_ID",A.emp_name AS "Employee",B.emp_id AS "Sup_ID",B.emp_name AS "Supervisor"FROM employee A, employee BWHERE A.emp_sup = B.emp_id;

39. What is a Recursive Stored Procedure?

A stored procedure which calls itself until a boundary condition is reached, is called a recursive stored procedure. This recursive function helps the programmers to deploy the same set of code several times as and when required. Some SQL programming languages limit the recursion depth to prevent an infinite loop of procedure calls from causing a stack overflow, which slows down the system and may lead to system crashes.DELIMITER $$ /* Set a new delimiter => $$ */CREATE PROCEDURE calctotal( /* Create the procedure */ IN number INT, /* Set Input and Ouput variables */ OUT total INT) BEGINDECLARE score INT DEFAULT NULL; /* Set the default value => "score" */SELECT awards FROM achievements /* Update "score" via SELECT query */WHERE id = number INTO score;IF score IS NULL THEN SET total = 0; /* Termination condition */ELSECALL calctotal(number+1); /* Recursive call */SET total = total + score; /* Action after recursion */END IF;END $$ /* End of procedure */DELIMITER ; /* Reset the delimiter */

18. What is a Subquery? What are its types?

A subquery is a query within another query, also known as nested query or inner query . It is used to restrict or enhance the data to be queried by the main query, thus restricting or enhancing the output of the main query respectively. For example, here we fetch the contact information for students who have enrolled for the maths subject:SELECT name, email, mob, addressFROM myDb.contactsWHERE roll_no IN ( SELECT roll_no FROM myDb.students WHERE subject = 'Maths');There are two types of subquery - Correlated and Non-Correlated.A correlated subquery cannot be considered as an independent query, but it can refer the column in a table listed in the FROM of the main query.A non-correlated subquery can be considered as an independent query and the output of subquery is substituted in the main query.Q => Write a SQL query to update the field "status" in table "applications" from 0 to 1.Q => Write a SQL query to select the field "app_id" in table "applications" less than 1000.Q => Write a SQL query to fetch the field "app_name" from "apps" where "apps.id" is equal to the above collection of "app_id".

6. What are Tables and Fields?

A table is an organized collection of data stored in the form of rows and columns. Columns can be categorized as vertical and rows as horizontal. The columns in a table are called fields while the rows can be referred to as records.

26. What is a View?

A view in SQL is a virtual table based on the result-set of an SQL statement. A view contains rows and columns, just like a real table. The fields in a view are fields from one or more real tables in the database.

37. What is Collation? What are the different types of Collation Sensitivity?

Collation refers to a set of rules that determine how data is sorted and compared. Rules defining the correct character sequence are used to sort the character data. It incorporates options for specifying case-sensitivity, accent marks, kana character types and character width. Below are the different types of collation sensitivity:Case sensitivity: A and a are treated differently.Accent sensitivity: a and á are treated differently.Kana sensitivity: Japanese kana characters Hiragana and Katakana are treated differently.Width sensitivity: Same character represented in single-byte (half-width) and double-byte (full-width) are treated differently.

40. How to create empty tables with the same structure as another table?

Creating empty tables with the same structure can be done smartly by fetching the records of one table into a new table using the INTO operator while fixing a WHERE clause to be false for all records. Hence, SQL prepares the new table with a duplicate structure to accept the fetched records but since no records get fetched due to the WHERE clause in action, nothing is inserted into the new table.SELECT * INTO Students_copyFROM Students WHERE 1 = 2;

13. What is a Cross-Join?

Cross join can be defined as a cartesian product of the two tables included in the join. The table after join contains the same number of rows as in the cross-product of number of rows in the two tables. If a WHERE clause is used in cross join then the query will work like an INNER JOIN.SELECT stu.name, sub.subject FROM students AS stuCROSS JOIN subjects AS sub;Q => Write a SQL statement to CROSS JOIN 'table_1' with 'table_2' and fetch 'col_1' from table_1 & 'col_2' from table_2 respectively. Do not use alias.Q => Write a SQL statement to perform SELF JOIN for 'Table_X' with alias 'Table_1' and 'Table_2', on columns 'Col_1' and 'Col_2' respectively.

30. What are the TRUNCATE, DELETE and DROP statements?

DELETE statement is used to delete rows from a table.DELETE FROM CandidatesWHERE CandidateId > 1000;TRUNCATE command is used to delete all the rows from the table and free the space containing the table.TRUNCATE TABLE Candidates;DROP command is used to remove an object from the database. If you drop a table, all the rows in the table is deleted and the table structure is removed from the database.DROP TABLE Candidates;Q => Write a SQL statement to wipe a table 'Temporary' from memory.Q => Write a SQL query to remove first 1000 records from table 'Temporary' based on 'id'.Q => Write a SQL statement to delete the table 'Temporary' while keeping its relations intact.

35. What is OLTP?

OLTP stands for Online Transaction Processing, is a class of software applications capable of supporting transaction-oriented programs. An essential attribute of an OLTP system is its ability to maintain concurrency. To avoid single points of failure, OLTP systems are often decentralized. These systems are usually designed for a large number of users who conduct short transactions. Database queries are usually simple, require sub-second response times and return relatively few records. Here is an insight into the working of an OLTP system [ Note - The figure is not important for interviews ] -

36. What are the differences between OLTP and OLAP?

OLTP stands for Online Transaction Processing, is a class of software applications capable of supporting transaction-oriented programs. An important attribute of an OLTP system is its ability to maintain concurrency. OLTP systems often follow a decentralized architecture to avoid single points of failure. These systems are generally designed for a large audience of end users who conduct short transactions. Queries involved in such databases are generally simple, need fast response times and return relatively few records. Number of transactions per second acts as an effective measure for such systems.OLAP stands for Online Analytical Processing, a class of software programs which are characterized by relatively low frequency of online transactions. Queries are often too complex and involve a bunch of aggregations. For OLAP systems, the effectiveness measure relies highly on response time. Such systems are widely used for data mining or maintaining aggregated, historical data, usually in multi-dimensional schemas.

41. What is Pattern Matching in SQL?

SQL pattern matching provides for pattern search in data if you have no clue as to what that word should be. This kind of SQL query uses wildcards to match a string pattern, rather than writing the exact word. The LIKE operator is used in conjunction with SQL Wildcards to fetch the required information.Using the % wildcard to perform a simple searchThe % wildcard matches zero or more characters of any type and can be used to define wildcards both before and after the pattern. Search a student in your database with first name beginning with the letter K:SELECT *FROM studentsWHERE first_name LIKE 'K%'Omitting the patterns using the NOT keywordUse the NOT keyword to select records that don't match the pattern. This query returns all students whose first name does not begin with K.SELECT *FROM studentsWHERE first_name NOT LIKE 'K%'Matching a pattern anywhere using the % wildcard twiceSearch for a student in the database where he/she has a K in his/her first name.SELECT *FROM studentsWHERE first_name LIKE '%Q%'Using the _ wildcard to match pattern at a specific positionThe _ wildcard matches exactly one character of any type. It can be used in conjunction with % wildcard. This query fetches all students with letter K at the third position in their first name.SELECT *FROM studentsWHERE first_name LIKE '__K%'Matching patterns for specific lengthThe _ wildcard plays an important role as a limitation when it matches exactly one character. It limits the length and position of the matched results. For example -SELECT * /* Matches first names with three or more letters */FROM studentsWHERE first_name LIKE '___%'SELECT * /* Matches first names with exactly four characters */FROM studentsWHERE first_name LIKE '____'

4. What is SQL?

SQL stands for Structured Query Language. It is the standard language for relational database management systems. It is especially useful in handling organized data comprised of entities (variables) and relations between different entities of the data.

20. What are some common clauses used with SELECT query in SQL?

Some common SQL clauses used in conjuction with a SELECT query are as follows:WHERE clause in SQL is used to filter records that are necessary, based on specific conditions.ORDER BY clause in SQL is used to sort the records based on some field(s) in ascending (ASC) or descending order (DESC).SELECT *FROM myDB.studentsWHERE graduation_year = 2019ORDER BY studentID DESC;GROUP BY clause in SQL is used to group records with identical data and can be used in conjuction with some aggregation functions to produce summarized results from the database.HAVING clause in SQL is used to filter records in combination with the GROUP BY clause. It is different from WHERE, since WHERE clause cannot filter aggregated records.SELECT COUNT(studentId), countryFROM myDB.studentsWHERE country != "INDIA"GROUP BY countryHAVING COUNT(studentID) > 5;

8. What is a Primary Key?

The PRIMARY KEY constraint uniquely identifies each row in a table. It must contain UNIQUE values and has an implicit NOT NULL constraint.A table in SQL is strictly restricted to have one and only one primary key, which is comprised of single or multiple fields (columns).CREATE TABLE Students ( /* Create table with a single field as primary key */ ID INT NOT NULL Name VARCHAR(255) PRIMARY KEY (ID));CREATE TABLE Students ( /* Create table with multiple fields as primary key */ ID INT NOT NULL LastName VARCHAR(255) FirstName VARCHAR(255) NOT NULL, CONSTRAINT PK_Student PRIMARY KEY (ID, FirstName));ALTER TABLE Students /* Set a column as primary key */ADD PRIMARY KEY (ID);ALTER TABLE Students /* Set multiple columns as primary key */ADD CONSTRAINT PK_Student /*Naming a Primary Key*/PRIMARY KEY (ID, FirstName);Q => Write a SQL statement to add PRIMARY KEY 't_id' to the table 'teachers'.Q => Write a SQL statement to add primary key constraint 'pk_a' for table 'table_a' and fields 'col_b, col_c'.

21. What are UNION, MINUS and INTERSECT commands?

The UNION operator combines and returns the result-set retrieved by two or more SELECT statements.The MINUS operator in SQL is used to remove duplicates from the result-set obtained by the second SELECT query from the result-set obtained by the first SELECT query and then return the filtered results from the first.The INTERSECT clause in SQL combines the result-set fetched by the two SELECT statements where records from one match the other and then returns this intersection of result-sets.Certain conditions need to be met before executing either of the above statements in SQL -Each SELECT statement within the clause must have the same number of columnsThe columns must also have similar data typesThe columns in each SELECT statement should necessarily have the same orderSELECT name FROM Students /* Fetch the union of queries */UNIONSELECT name FROM Contacts;SELECT name FROM Students /* Fetch the union of queries with duplicates*/UNION ALLSELECT name FROM Contacts;SELECT name FROM Students /* Fetch names from students */MINUS /* that aren't present in contacts */SELECT name FROM Contacts;SELECT name FROM Students /* Fetch names from students */INTERSECT /* that are present in contacts as well */SELECT name FROM Contacts;Q => Write a SQL query to fetch "names" that are present in either table "accounts" or in table "registry".Q => Write a SQL query to fetch "names" that are present in "accounts" but not in table "registry".Q => Write a SQL query to fetch "names" from table "contacts" that are neither present in "accounts.name" nor in "registry.name".

34. What is User-defined function? What are its various types?

The user-defined functions in SQL are like functions in any other programming language that accept parameters, perform complex calculations, and return a value. They are written to use the logic repetitively whenever required. There are two types of SQL user-defined functions:Scalar Function: As explained earlier, user-defined scalar functions return a single scalar value.Table Valued Functions: User-defined table-valued functions return a table as output.Inline: returns a table data type based on a single SELECT statement.Multi-statement: returns a tabular result-set but, unlike inline, multiple SELECT statements can be used inside the function body.


Related study sets

BLW 302 (Exam 1-2-3-4-5) Study Guide

View Set

Moudle 15-16 Cryptographic Services

View Set

Final Exam - Extra Credit (1 hr)

View Set

Chapter 6-Foundations of Business Intelligence: Databases and Information Management

View Set

Resource Prices and Utilization: SmartBook

View Set

Maternal Newborn Success - Intrapartum

View Set

Ball State CIS 410 Hua Exam 1, Test 1 ch 1-4 cis 410

View Set