Home Blog Page 132

How to Untag a picture on Instagram

0

Instagram has been a staple social media website for fitness enthusiasts, hot divas and celebrities from all walks of life for quite sometime now. Business have provisioned their resources to advertise on Instagram and have benefited a lot. However, there are some essential features of Instagram that people still aren’t aware of. Their know-how is fundamental in maintaining a professional presence on the social media giant. I’m going to throw light on one of these important features in this article. 

Pagination using ROW_NUMBER with a CTE In SQL Server

Pagination In SQL Server-ROW_NUMBER with CTE

ROW_NUMBER with a CTE (Common Table Expression) is used for Pagination in query results. This was a go-to method with SQL Server 2008. Later, SQL Server 2012 introduced the OFFSET-FETCH option to simplify pagination using queries with improved performance. Pagination is a way to show results into a small number of rows and pages. Instead of showing the entire result set on one page, we can divide rows into different pages.

How To Refresh Intellisense Cache In SQL Server

EXCEPT and INTERSECT – SET Operator In SQL Server

Microsoft SQL Server software is bundled with exceptional features. Whenever we begin typing queries, SQL Server automatically starts suggesting you the schema names, table name and columns. Many more suggestions are offered to make developers’ work easy. All these suggestions and auto-completes are nothing but SQL Server’s Intelligence cache feature.

Beginner’s Guide To LIKE In SQL Server

Beginner’s Guide To LIKE In SQL Server

SQL Server LIKE operator is used for pattern and wildcard text search. Using LIKE with WHERE clause we can filter out rows by either matching partial text or using a wildcard as a placeholder for a character. We can use a single character or multiple character search.

Possible use of LIKE operator is when we don’t know the exact text to search but have partial words. Using partial text or subset of text we can find the rows which could match our input.

How To Use LEN and DATALENGTH Function In SQL Server

How To Use LEN and DATALENGTH Function In SQL Server

Counting the number of characters or size of a string in SQL Server is possible with LEN and DATALENGTH function. Both these functions are used interchangeably. While we need to be careful while using these functions in production code. Basically, both the function sounds similar although each has a distinct purpose.

How to Cancel Your Netflix Subscription in Easy Steps

3

Cancel Your Netflix Subscription without a hassle.

Netflix popularity is on the rise. The streaming service has garnered massive attention since its inception. From popular TV shows to self-produced movies, it has it all in its repertoire.

However, sometimes you just need a break from the incessant 24/7 Netflix and chill. Your work and studies need your attention as well. Many users have had their productivity register a fatal blow due to a concerning Netflix addiction.

How To Overcome Overheating Apple Laptop

0
overheating apple laptop

If on a daily basis you depend on a laptop, you would over the years, have constantly faced potentially problematic overheating issues that may have interfered with the performance of your work or leisure activities. These issues may have slightly soured laptop experience. These problems that finally resulted in your having to deal with them and constantly listen to the screaming cooling fans on your laptop. Here are some tips for overheating apple laptop.

How To Stop Auto Download On Gmail

0
Stop Auto Download On Gmail

The Gmail App on Android is automatically set to download attachments automatically for you. This, however, could be annoying for some of us. I personally hate it when that happens. I remember searching almost everywhere on my Gmail App hoping to see a stop button. I actually found one. Here’s how you can stop auto download on Gmail.

How To Share Photos From Google Photos

0
How To Share Photos From Google Photos

Google Photos is a photo sharing and storage service developed by Google. It was released in May 2015 and is now hugely popular worldwide. Google Photos stores your photos and videos in “the cloud” this is just tech-talk for online storage.

How To Edit Image On Google Photos

0
How To Edit Image On Google Photo

Google Photos has turned into a wonderful repository for every photo you take, and also works as a nice stand-in gallery replacement app on many phones. A gallery app isn’t just about holding photos though, it’s also about editing pictures before sharing them out anywhere you want.

How To Turn Off Desktop Mail Notifications On Gmail

0

Gmail is a free email service developed by Google. Users can access Gmail on the web and using third-party programs that synchronize email content through POP or IMAP protocols. At launch, Gmail had an initial storage capacity offer of one gigabyte per user, a significantly higher amount than competitors offered at the time.

How To Use Default Constraint In SQL Server

How To Enable Dark Theme In SQL Server

Constraints in SQL database maintains data integrity and accuracy. SQL Default Constraint is used to assign a default value to a column when no value is specified. Using Default constraint we can have a meaningful value instead of storing NULL or Empty value. It reduces the presence of NULLs when applicable by improving data consistency.