kumar_abhishek

Kumar Abhishek, a technology leader in the field of engineering, brings more than 11 years of valuable experience in software testing to the table. He is deeply passionate about nurturing world-class engineering teams characterized by high skill levels, motivation, and exceptional efficiency. Abhishek has successfully led engineering teams in the creation of innovative software test systems that are robust, scalable, sustainable, and aligned with business objectives. He brings expertise in live and on-demand video streaming, and internet-based content delivery networks (CDNs) which enables him to contribute significantly to the success of projects and initiatives. Throughout his career, he has consistently demonstrated his ability to establish, oversee, and guide exceptionally efficient engineering teams.

Abhishek is esteemed in the industry, acting as an expert judge for both the Globee Award for Technology and the Globee Award for Disruptor in 2024. Moreover, he secured the Gold award in Titan Business Award in 2024, under the category "Management - Best Quality Management Strategy". Abhishek's expertise extends to speaking engagements at various software conferences, and he holds the title of IEEE Senior member.

Abhishek has a proven track record of delivering high-quality products and solutions for various networking and streaming clients, such as Hotstar, Amazon Prime, Apple, and Netflix. I also have a strong background in product management, AI, and marketing, with credentials from BITS Pilani, IIIT Bangalore, and IIM Calcutta. I am passionate about AI and its applications in NLP.
  • Skills: AI, NLP, Software Testing

Blogs

From Couch-Potato to Triathlete – and What This Means for Your SQL Server

By

Do you know if your SQL Server is really running at its best? To...

Retro Data 2025 – Slidedeck

By

You can find the slides of my session on the €100 DWH in Azure...

The Book of Redgate: We Value Teams

By

This value is something that I still hear today: our best work is done...

Read the latest Blogs

Forums

Is there a way for SP to know who called it?

By water490

Hi everyone I am writing an SP where there is logic inside the SP...

Planning for tomorrow, today - database migrations

By John Martin

Comments posted to this topic are about the item Planning for tomorrow, today -...

Bottlenecks on SQL Server performance

By runarlan

We have a BI-application that connects to input tables on a SQL Server 2022...

Visit the forum

Question of the Day

The Tightly Linked View

I try to run this code on SQL Server 2022. All the objects exist in the database.

CREATE OR ALTER VIEW OrderShipping
AS
SELECT cl.CityNameID,
       cl.CityName,
       o.OrderID,
       o.Customer,
       o.OrderDate,
       o.CustomerID,
       o.cityId
 FROM dbo.CityList AS cl
 INNER JOIN dbo.[Order] AS o ON o.cityId = cl.CityNameID
GO
CREATE OR ALTER FUNCTION GetShipCityForOrder
(
    @OrderID INT
)
RETURNS VARCHAR(50)
WITH SCHEMABINDING
AS
BEGIN
    DECLARE @city VARCHAR(50);
    SELECT @city = os.CityName
    FROM dbo.OrderShipping AS os
    WHERE os.OrderID = @OrderID;
    RETURN @city;
END;
go
What is the result?

See possible answers