Alter table

SQLServerCentral Article

Implementing Reporting Application Enhancements with No Downtime

  • Article

The purpose of this article is to detail steps that would help implement an enhancement to reporting application that uses SQL Server Database (or any other database) in backend without causing downtime to reporting application.

4.25 (4)

You rated this post out of 5. Change rating

2020-04-09

69,000 reads

Technical Article

Create a view to Alter a Table and Add three Columns

  • Script

I am teaching a database class at Queens College. The project entails the truncation of all of the data and loading new data into the  existing database "BIClass" from a single of the flattened data. One of the tasks of the project was to add these three additional columns to each of the tables (AlterTableAddColumnsUserAuthorizationKeyAndTwoTimeStamps): […]

3 (3)

You rated this post out of 5. Change rating

2019-11-18 (first published: )

975 reads

Blogs

Migrate datetime data to datetimeoffset with AT TIME ZONE

By

I recently reviewed, worked on, and added a similar example to the DATETIMEOFFSET Microsoft...

The Comprehensive Guide to Mastering Your SQL DBA Skills

By

Database administrators (DBAs) are the backbone of data-driven organizations. If you're looking to break...

Friday Basics: Authentication vs. Authorization

By

Another security fundamentals topic is authentication versus authorization. For those who have a clear...

Read the latest Blogs

Forums

What isTapaday 200mg?

By fixerox921

Tapaday 200 mg Tablet is an opioid medication for the treatment of acute pain...

Thesis help services

By rawiyafarran

Thesis help services offer expert guidance and topic selection to final submission. They provide...

Take Care

By Grant Fritchey

Comments posted to this topic are about the item Take Care

Visit the forum

Question of the Day

Two Table Hints

What happens when I run this code:

SELECT
  p.ProductName
, p.ProductCategory
FROM dbo.Product AS p WITH (NOLOCK, TABLOCK);

See possible answers