Sanjeev Kumar

Sanjeev Kumar is a seasoned professional with over 20 years of extensive experience in software life cycle management, adept in both Waterfall and Agile methodologies. He has a deep expertise in architecting and developing multi-tier enterprise distributed applications, ensuring seamless project delivery from inception to deployment. Sanjeev has demonstrated proficiency in AWS architecture and solutions, designing robust public and private cloud infrastructures optimized for performance, security, and cost-efficiency. He also possesses advanced AWS security expertise, having implemented cutting-edge security measures across various cloud environments.
In addition to his AWS skills, Sanjeev is an expert in designing and implementing secure, scalable cloud solutions using Microsoft Azure and Azure AI. He has spearheaded the development and management of Single Sign-On (SSO) systems using PingFederate, and has automated various processes within WebLogic and Java environments using tools like Chef, Jenkins, and Docker. Sanjeev is also proficient in CI/CD pipeline configuration, containerization, shell scripting, and information security management.
Throughout his career, Sanjeev has managed complex IT projects for prominent companies, including Delta Dental Insurance, Verizon Wireless, and AT&T. His roles have spanned from Site Reliability Engineer to Lead Programmer Analyst and Technical Lead, where he played a critical role in cloud migration, infrastructure management, automation, and performance optimization. He has a strong background in application server management, particularly with BEA WebLogic and IBM WebSphere, and is well-versed in Java, database management, and middleware technologies.
Sanjeev holds an M.C.A. degree from Rajeev Gandhi Technical University, Bhopal (M.P.), obtained in 2001, and has attended multiple workshops and training programs to further hone his skills in areas like WebLogic Integration, ALSB training by BEA, and IBM Process Server.
  • Interests: Cloud
  • Skills: Designed and developed robust public and private cloud architectures utilizing AWS services, including VPC, IG, Network ACL, Route Tables, Availability Zones, Subnets, Security Groups, NAT Instances, NAT Gateway, EC2 Instances, SES, SNS, Autoscaling, CloudFormation Designer, DynamoDB, S3, Elastic Load Balancer, ElastiCache, Route 53, CloudFront Distributions, and AWSCLI. Demonstrated proficiency in optimizing cloud infrastructures for performance, security, and cost-efficiency.• Azure Architecture & Solutions: Expert in designing and implementing secure, scalable cloud solutions using Microsoft Azure. Specialized in cloud architecture, data storage, security, and business continuity planning, leveraging Azure's robust features to meet complex business needs• PingFederate Implementation: Spearheaded the development and management of Single Sign-On (SSO) systems using PingFederate versions 6.1 and 7.3, significantly enhancing authentication and identity management processes.

It seems we can’t find what you’re looking for. Perhaps searching can help.

Blogs

AI: Blog a Day – Day 4: Transformers – Encoder, Decoder, and Attention

By

Continuing from Day 3 where we covered LLM models open/closed and their parameters, Today...

Flyway Tips: Multiple Projects

By

One of the nice things about Flyway Desktop is that it helps you manage...

What DevOps Look Like in Microsoft Fabric

By

Microsoft Fabric (not to be confused with the more general term “fabric” in DevOps)...

Read the latest Blogs

Forums

Can an Azure App Service Managed Identity be used for SQL Login?

By jasona.work

I'm fairly certain I know the answer to this from digging into it yesterday,...

Azure Synapse database refresh

By Sreevathsa Mandli

Hi Team, I am trying to refresh the Azure Synapse Dedicated pool from production...

how to write this query?

By water490

hi everyone I am not sure how to write the query that will produce...

Visit the forum

Question of the Day

Fun with JSON I

I have some data in a table:

CREATE TABLE #test_data
(
    id INT PRIMARY KEY,
    name VARCHAR(100),
    birth_date DATE
);

-- Step 2: Insert rows  
INSERT INTO #test_data
VALUES
(1, 'Olivia', '2025-01-05'),
(2, 'Emma', '2025-03-02'),
(3, 'Liam', '2025-11-15'),
(4, 'Noah', '2025-12-22');
If I run this query, how many rows are returned?
SELECT *
FROM OPENJSON(
     (
         SELECT t.* FROM #test_data AS t FOR JSON PATH
     )
             ) t;

See possible answers