Home Blog Page 128

How to Convert Your Excel Spreadsheets to Google Sheets

0
microsoft excel

Most people prefer working on the smooth interface of Google Sheets. It’s interactive and easily shareable with other users. Because of this users often feel the need to import their Excel files to Google Sheets and work on them there. In this tutorial, we will teach you how to convert your Excel spreadsheets to Google Sheets so that you can follow in their footsteps.

WAITFOR Statement To Delay Query Execution In SQL Server

WAITFOR Statement To Delay Query Execution In SQL Server

Sometimes, we need to pause the execution of a query to simulate different scenarios. Waiting for a desired amount of time or executing it at a specified clock time. Helpful to pause a query, batch or a stored procedure. WAITFOR statement can be used for delaying a query or execute a query at a specified time.

How to Hide Comments in Word [Remove Track Changes]

0

Word documents received after extensive treatment from an editor are riddled with track changes and markup areas. Learning how to hide comments in word enables you to restore the integrity of the document, making it squeaky clean. You can either delete all the comments in one go or remove them individually. In this tech-recipe, we’re going to show you how to do both.

How To Stop Windows 10 From Consuming Data

Unlike other previous Microsoft operating systems, Windows 10 comes with in-built auto updates that enable the computers to work efficiently. This version of Windows is a data monster, especially if you are tethering with limited bandwidth. But you don’t have to worry about running out of your data plans anymore. Our step by step guide will help you learn how to stop Windows 10 from eating up your data bundles while browsing or enjoying online games on your laptop. Although Windows 10 auto updates play a significant role in data consumption on your computer, applications are also highly involved. Thus, it is essential to understand the amount of data each app on your laptop is using.

EXCEPT and INTERSECT – SET Operator In SQL Server

SQL Server supports ANSI SET operators. Including UNION, UNION ALL, EXCEPT and INTERSECT. Generally, SET operators used to combine multiple query result sets into a single result set. In an early post on tech-recipes, we have learned the use of UNION and UNION ALL operators.

How to Calculate CAGR in Excel (Compound Annual Growth Rate Formula)

0

To calculate CAGR in Excel, there’s no preset Excel function. However, there’s an easy method with which you can input a custom Excel formula and calculate it.

How to Calculate Percentage in Excel [ Shortcut for % Change]

0

You can calculate percentage in Excel through many different methods. Some involve formatting cells and use of complex formulae, while others do not. Our main focus will be on the latter.

How to Calculate Standard Deviation in Excel [STDEV.S Formula]

0

If you’re someone who has to deal with a lot of numbers on a daily basis, you must familiarize yourself with a large array of Excel formulae. To perform basic mathematical operations, such as addition, multiplication, subtraction and Standard deviation (SD), you must learn how these formulae work.

How To Send Email Using Database Mail In SQL Server

How To Send Email Using Database Mail In SQL Server

Sending email is a routine task needed in any application. Emails used for sending an alert, message, query result, attachment or any other notification to users. SQL Server uses the Database Mail component to configure and send emails. Using this back end component rather than a frontend application for sending email is hassle-free. Giving more control to manage security and logging.

How To Schedule SQL Agent Job Using SSMS GUI

SQL Server agent job is a windows service based scheduler. Agent job is used to schedule and automate SQL scripts, administrative tasks, SSIS packages and various other tasks using SQL agent job tool. This component is integrated along with SSMS and available under Object explorer as SQL Server Agent.

How To Read Uncommitted Dirty Data In SQL Server

Dirty Read Problem - Read Uncommitted Isolation - SQL Server_Feature

Transaction is an essential part of the database. No database design is complete without handing transaction behaviour correctly. Transaction defines that all the set of operations has to succeed or fail as a unit. Partial success or failure results in the unexpected output. Transaction is needed to maintain integrity in the database.