Windows Azure Service Dashboard – Checkout the health of Azure Services
Windows Azure Service Dashboard is an excellent way to know the health/availability of your Windows Azure Services.
You might always want...
2013-09-13
1,312 reads
Windows Azure Service Dashboard is an excellent way to know the health/availability of your Windows Azure Services.
You might always want...
2013-09-13
1,312 reads
Windows Azure Virtual Machines is a real game changer as it gives us ability to spin up VMs in no...
2013-09-09
1,357 reads
Care about RPO’s and RTO’s? Then you should be backing up your Windows AzureSQL Databases(Formerly SQLAzure).
Windows Azure SQL Database is...
2013-08-19
1,533 reads
I like to clean up things after I’m done with my testing and this morning I decided to clean up...
2013-07-11
1,974 reads
Starting SQL 2014 monitoring memory usage of the memory optimized objects is super important to ensure that your instance don’t...
2013-07-01
1,477 reads
You must be really busy spinning up VMs to test SQL Server 2014 CTP1 and Windows Server 2012 R2 preview.
If...
2013-06-26
1,606 reads
Great news !!! SQL Server 2014 CTP1 is out and the wait is over. Drop everything(Except the databases !) and download your...
2013-06-25
2,956 reads
Cloud is the future and moving there is now as easy as few mouse clicks.
Today we will see how an...
2013-06-21
1,437 reads
Lets start discussing about this subject by closely looking at the term Redundancy. What is redundancy all about ?
Wikipedia defines redundancy as “In engineering, redundancy is the...
2013-06-13 (first published: 2013-05-24)
2,284 reads
One of the most exciting news which got announced yesterday was related to Windows Azure. When Scott Guthrie mentioned that billing...
2013-06-04
690 reads
By Daniel Janik
The circle cylinder of life Maybe you’ve noticed all the twenty somethings tight rolling...
By Chris Yates
In today’s data-driven economy, organizations are no longer asking if they should invest in...
By Rohit Garg
PostgreSQL, often referred to as Postgres, is a powerful, open-source object-relational database system that...
Comments posted to this topic are about the item How a Legacy Logic Choked...
Comments posted to this topic are about the item When INCLUDE Columns Quietly Inflate...
Comments posted to this topic are about the item Databases and Disasters
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) ) GOIf I check the columns_updated() function return in a trigger, what is the data returned? See possible answers