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

How to Connect to SQL Server When Nothing Else Works – DAC

By

It's 2 AM. Your phone is going off. Users can't connect to the application,...

Get a Range of Sequence Values: #SQLNewBlogger

By

I discovered a procedure recently that I wasn’t aware of: sp_sequence_get_range. This post looks...

The Agent Era: When “How do I…?” Replaces “Where do I click?”

By

After a year away getting to grips with AI and its application across the...

Read the latest Blogs

Forums

Hiring: Financial SQL Systems Administrator

By Tracy Rivers

Fisher Phillips is looking for a Financial Systems Administrator to help support and improve our financial...

Job Opening for ERP Systems Administrator - Hybrid

By rdr1

Employee owned company, been around for over 50 years. Hybrid opportunity, looking folks in Pacific...

data compare between 2 tables with same structure for any changes after etl run

By syam.tunuguntla

i have huge table with lot of data and is also wide. i took...

Visit the forum

Question of the Day

Creating a JSON Document II

I want to create a JSON document that contains data from this table:

TeamID TeamNameCity         YearEstablished
1      Cowboys  Dallas       1960
2      Eagles   Philadelphia 1933
3      Packers  Green Bay    1919
4      Chiefs   Kansas City  1960
If I run this code, what document(s) is/are returned?
SELECT json_objectagg( n.city : n.TeamName)
FROM dbo.NFLTeams;

See possible answers