Arun Yadav

16+ years of experience in managing, Infrastructure technology operations, Cloud operations, IT service delivery, IT Infrastructure management, Oracle engineered systems, MSSQL Server.
  • Interests: MSSQL Server, Oracle, Sybase, Azure, Oracle Cloud, Google Cloud, T-SQL, AWS, Ansible, Automation, Exadata, EBS
  • Skills: MSSQL Server, Oracle, Sybase, Azure, Oracle Cloud, Google Cloud, T-SQL, Ansible, Exadata, EBS, Jenkins

Technical Article

5 (6)

You rated this post out of 5. Change rating

2022-02-22 (first published: )

7,677 reads

SQLServerCentral Article

Running SQL Server on Oracle and Google Cloud

In this article, we will analyze the various out-of-the-box deployment options Oracle Cloud Infrastructure and Google Cloud Platform offers to host a Microsoft SQL Server database. This information can prove to be handy while deciding on the best cloud provider to host a given application or database.

4.2 (5)

You rated this post out of 5. Change rating

2022-02-18

7,047 reads

Blogs

The PASS Summit on Tour in the Netherlands

By

The PASS Summit goes on tour this year, with the final date the first...

Azure SQL Managed Instance: Boost Performance with Read-Scale Out

By

The Business Critical tier of Azure SQL Managed Instance offers the read-scale out feature...

Free Cloud Environment Setup: A Beginner’s Guide

By

Cloud computing is essential for modern development, data storage, and scalable applications. Setting up...

Read the latest Blogs

Forums

How a Legacy Logic Choked SQL Server in a 30-Year-Old Factory

By Chandan Shukla

Comments posted to this topic are about the item How a Legacy Logic Choked...

Execution plan shows enormous number of records

By yerbabuena19

The problem was reported to us by a customer. They shared a graphic execution...

T-SQL to SELECT rows where 2 columns in TBL_A do not exist in TBL_B

By Express12

I have 2 tables: TBL_A and TBL_B each with the same 2 columns; ServerName...

Visit the forum

Question of the Day

The Updated Columns List

I have this table in SQL Server 2022:

CREATE TABLE CustomerLarge
  (CustomerID               INT NOT NULL IDENTITY(1, 1) CONSTRAINT CustomerLargePK PRIMARY KEY CLUSTERED
 , CustomerName             VARCHAR(20)
 , CustomerContactFirstName VARCHAR(40)
 , CustomerContactLastName  VARCHAR(40)
 , Address                  VARCHAR(20)
 , Address2                 VARCHAR(20)
 , City                     VARCHAR(20)
 , CountryCode              CHAR(3)
 , Postal                   VARCHAR(20)
)
GO
If I check the columns_updated() function return in a trigger, what is the data returned?

See possible answers