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

Runing tSQLt Tests with Claude

By

Running tSQLt unit tests is great from Visual Studio but my development workflow...

Getting Your Data GenAI-Ready: The Next Stage of Data Maturity

By

I remember a meeting where a client’s CEO leaned in and asked me, “So,...

Learn Better: Pause to Review More

By

If you want to learn better, pause more in your learning to intentionally review.

Read the latest Blogs

Forums

Azure SQL DBA certification

By ashrukpm

Hello team Can anyone share popular azure SQL DBA certification exam code? and your...

Faster Data Engineering with Python Notebooks: The Fabric Modern Data Platform

By John Miner

Comments posted to this topic are about the item Faster Data Engineering with Python...

Which Result II

By Steve Jones - SSC Editor

Comments posted to this topic are about the item Which Result II

Visit the forum

Question of the Day

Which Result II

I have this code in SQL Server 2022:

CREATE SCHEMA etl;
GO
CREATE TABLE etl.product
(
    ProductID INT,
    ProductName VARCHAR(100)
);
GO
INSERT etl.product
VALUES
(2, 'Bee AI Wearable');
GO
CREATE TABLE dbo.product
(
    ProductID INT,
    ProductName VARCHAR(100)
);
GO
INSERT dbo.product
VALUES
(1, 'Spiral College-ruled Notebook');
GO
CREATE OR ALTER PROCEDURE etl.GettheProduct
AS
BEGIN
    exec('SELECT ProductName FROM product;')
END;
GO
exec etl.GettheProduct
When I execute this code as a user whose default schema is dbo and has rights to the tables and proc, what is returned?

See possible answers