Arvind Toorpu

Hello, I’m Arvind Toorpu, an Oracle Certified Professional (OCP) currently working as a Cloud Ops DBA manager with over 13 years of diverse experience in architecting, implementing, and administering databases. My expertise spans across Oracle, SQL Server, MySQL, and PostgreSQL, among others, in both production and non-production environments. I have worked extensively with various operating systems, including Red Hat Linux, HP-UX, Sun Solaris, IBM AIX, and Windows Server.

As a passionate database professional, I specialize in performance tuning, database migrations, high availability architecture, and implementing disaster recovery solutions. Throughout my career, I have led major projects, including the migration of hundreds of databases to cloud platforms like AWS, Azure, and Oracle Cloud Infrastructure (OCI). My roles have ranged from hands-on database management to leading teams in cloud operations, where we’ve configured and optimized complex database environments to meet business needs. I have a strong background in capacity planning and resource allocation, ensuring that database resources are effectively utilized while managing costs through strategic cost management and cost optimization. My expertise in data modeling and query optimization enhances system performance, while my troubleshooting skills enable me to provide 24/7 support, ensuring operational excellence and reliability

I am committed to continuous learning and enjoy sharing my knowledge with the community. I regularly write about my experiences and insights on database management, cloud migrations, and best practices on this blog and in other tech forums. My goal is to help others navigate the evolving landscape of database technologies, leveraging my practical insights and deep technical expertise.
When I’m not managing databases, I’m exploring new technologies, enhancing my skills through certifications, and engaging with the tech community. I hold certifications in AWS Cloud Solutions Architecture, Oracle Autonomous Database, and other advanced database security practices.

Thank you for visiting my page! I hope you find the content helpful and informative
  • Interests: SQLServer, Oracle Database, PostgreSQL, Mysql, AWS Redshift, MongoDB, TimescaleDB, DynamoDB, DocumentDB
  • Blog: http://arvindasdba.blogspot.com/
  • Jobs: Cloud Ops DBA Manager
  • Skills: SQL, Database Administration, DR/HA Planing, Cloud DBA, Multi Cloud AWS/Azure/OCI

SQLServerCentral Article

Taming Resource Hogs: Using SQL Server Resource Governor to Restrict User Group Consumption

Taming Resource Hogs: Using SQL Server Resource Governor to Restrict User Group Consumption As a SQL Server professional, I've often encountered situations where a single, poorly written query or a resource-intensive application threatened to cripple the entire database server. Performance bottlenecks, unexpected slowdowns, and user complaints become the norm, making your life as a DBA […]

3 (2)

You rated this post out of 5. Change rating

2025-07-24

591 reads

SQLServerCentral Article

Unlocking Interoperability: A Guide to Foreign Data Wrappers in PostgreSQL and Aurora PostgreSQL AWS RDS

Unlocking Interoperability: A Guide to Foreign Data Wrappers in PostgreSQL and Aurora PostgreSQL AWS RDS As a database professional, I often encounter scenarios where data is fragmented across various systems. In today's distributed IT landscape, it's not uncommon for critical business information to reside in different databases, perhaps an on-premise PostgreSQL instance for legacy applications, […]

You rated this post out of 5. Change rating

2025-07-21

52 reads

SQLServerCentral Article

Cloning Master Admin User Permissions in Amazon RDS for SQL Server with Fine-Grained Control

This article explores how to securely clone the master user permissions in Amazon RDS for SQL Server using a custom stored procedure, usp_rds_clone_login. It outlines a step-by-step process to generate, review, and apply a script that replicates server- and database-level access from the master user to a new login without directly exposing elevated credentials. The guide emphasizes the principle of least privilege, supports named account management, and enables transparent, auditable permission handling for DBAs and applications. Designed for secure and scalable environments, this solution enhances operational security while maintaining administrative flexibility in Amazon RDS.

You rated this post out of 5. Change rating

2025-07-09

480 reads

SQLServerCentral Article

Creating a Linked Server in Amazon RDS for SQL Server: A Step-by-Step Guide

Linked servers in Amazon RDS for SQL Server allow seamless connectivity to remote databases for distributed queries and data integration. In this article, I guide you through the step-by-step process of creating a linked server using SQL commands, from setting up authentication to testing the connection. Learn best practices, advanced configurations, and essential considerations, including why you can't use SSMS for linked server setup in RDS. This professional guide is tailored for experienced database administrators looking to optimize cross-server operations.

You rated this post out of 5. Change rating

2025-01-29

1,450 reads

Blogs

The Book of Redgate: We Value Teams

By

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

Troubleshooting TempDB Log Full Errors When SSMS Won’t Connect

By

Have you ever received the dreaded error from SQL Server that the TempDB log...

Accelerating AI with Confidence: Why Microsoft Purview is Key to Responsible Innovation

By

Artificial intelligence is no longer a distant concept. It is here, embedded in the...

Read the latest Blogs

Forums

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...

Is there some good routines for updating SQL Server database objects with GitHub

By Rod at work

At work we've been getting better at writing what's known as GitHub Actions (workflows,...

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