Ravi Kumar SV

I am Ravi Kumar SV working as SQL Server Consultant for Hyderabad-based Healthcare Company. I started my IT career in 1998 with Microsoft Visual Basic 5.0. While working on Visual Basic 5 and 6 for five years, I was introduced to Microsoft SQL Server 6.5 there on I explored SQL Server technology. I have expertise in Microsoft SQL Server 6.5 to its latest form. I also worked with Pharma manufacturing Company, Jewellery manufacturing unit, and Healthcare Company as Sybase, SQL Server and Oracle consultant.

Blog Post

Rules of Thumb in Physical Database Design
I am starting my first post in my blog of tuning the physical database...

2012-03-17

Blogs

CHOOSE’ing a Beer: #SQLNewBlogger

By

We recently published an article on CHOOSE at SQL Server Central. I thought it...

Don’t Treat Your Data Catalog Like a Data Museum

By

Introduction Treating your data catalog like a “data museum”—a static collection where information quietly...

The trade-offs associated with low-code solutions

By

Low-code solutions often accelerate development and make tasks accessible to people who can’t or...

Read the latest Blogs

Forums

DbaTools With Powershell - Omit The Id Column on CSV Export?

By cajun_sql

I am learning DbaTools in Powershell, and my current project is exporting a CSV...

SSIS - ADO Source Datetime Issue

By RonMexico

I'm using an ADO Net Source to extract data and running into an issue...

Cummulative Total

By jagjitsingh

Hi I have below query and i want Cummulative Total . Total should be...

Visit the forum

Question of the Day

Replacing a Null

What is returned from this code in SQL Server 2022?

DECLARE @value INT = NULL;
SELECT ISNULL(@value, 100.5) AS Result;

See possible answers