First (1st) Normal Form A table or relation is said to be in first normal form (1NF) only when every attribute or column has only atomic data in them, which is every single attributes or column can have only one (1) data for every single tuple or row in the relation or table. Relational database tables, like the Sales table...
Standard Members
How to Keep Millennials at Your Company for More than a Year
Hello, this is Laura Lee Rose – author of the business and time management books TimePeace: Making peace with time – the The Book of Answers: 105 Career Critical Situations – and I am a business and efficiency coach that specializes in time management, project management and work-life balance strategies. A busy professional asks a question regarding employer/employee relationships. How...
SQL Server 2016 Transact-SQL Optimization Tips (Part 1)
SQL Server 2016 Transact-SQL Optimization Tips (Part 1) Consider using a new query hint NO_PERFORMANCE_SPOOL. This hint was first introduced in SQL Server 2016 and can prevent a spool operator from being added to query plans. This can improve performance when many concurrent queries are running with spool operations. Try to restrict the queries result set by using the WHERE...
Relational Database Management System (RDBMS) and Normalization Forms — Part 6
Notion of Multi Valued Dependency (MVD) The multi valued dependency (MVD) X → Y is supposed to hold for a table or relation R ( X, Y, Z ) if for a given group of data (group of data when X is having more than one (1) column or attribute) for columns or attributes X, there is a group of...
Innovative Tactics Beyond Cold Calling and Cold Emailing
Hello, this is Laura Lee Rose – author of the business and time management books TimePeace: Making peace with time – the The Book of Answers: 105 Career Critical Situations – and I am a business and efficiency coach that specializes in time management, project management and work-life balance strategies. A busy professional asks a question regarding client sales. Can...
How to identify missing SQL Server indexes
How to identify missing SQL Server indexes Microsoft SQL Server supports many useful stored procedures, functions and operators. Some actions you can perform without using these features, but usually using them provides more easy and effective way to accomplish the same goal. For example, in SQL Server 2005, Microsoft introduced Dynamic Management Views (DMVs). Of course the DMVs are supported...
Relational Database Management System (RDBMS) and Normalization Forms — Part 5
Multi – Valued Dependencies The multi valued dependency arises when more than one (1) multi valued attributes or columns are existing. Think through the subsequent relation or table which signifies an object EMPLOYEE which has one (1) multi valued column or attribute named as “Projects”. EMPLOYEE ( Emp_ID, Department, Projects, Salary) To this point of time the data or the...
How Do You Handle Customers Who Are Always Bargaining the Price?
Hello, this is Laura Lee Rose – author of the business and time management books TimePeace: Making peace with time – the The Book of Answers: 105 Career Critical Situations – and I am a business and efficiency coach that specializes in time management, project management and work-life balance strategies. A busy professional asks a question regarding client sales. How...
Tips for using SQL Server 2016 Integration Services (Part 3)
Tips for using SQL Server 2016 Integration Services (Part 3) Consider encrypting Integration Services packages. SQL Server 2016 Integration Services packages can be encrypted with various levels of encryption. By encrypting packages, you can protect sensitive data. If you need to modify column values, you can use the Data Conversion and Derived Column transformations. These transformations were first added in...
Relational Database Management System (RDBMS) and Normalization Forms – Part – 4
Relational Database Management System (RDBMS) and Normalization Forms – Part – 4 Irreducible Sets of Dependencies Let’s assume S 1 as well as S 2 be two (2) sets of practical dependencies if every single practical dependencies inferred by means of S 1 is inferred through S 2 which is when S 1 + is a subclass of S 2...