Jeremy Egbert


Blogs

Three Ways to Use Snowflake Data in Microsoft Fabric

By

Organizations increasingly want Snowflake and Microsoft Fabric to coexist without duplicating data or fragmenting...

Deploying an Updated Model with SQL Compare 16

By

In a previous post, I deployed a model to a database using SQL Compare...

Reality (And Limits) of Instant File Initialization for Transaction Logs in SQL Server 2022

By

Reality (And Limits) of Instant File Initialization for Transaction Logs in SQL Server 2022 ...

Read the latest Blogs

Forums

Create txt file in SSIS without NON UTF-8 characters

By Lord Slaagh

Hello SSC Community, I am running into and issue with SSIS creating a text...

Create txt file in SSIS without NON UTF-8 characters

By Lord Slaagh

Hello SSC Community, I am running into and issue with SSIS creating a text...

Create txt file in SSIS without NON UTF-8 characters

By Lord Slaagh

Hello SSC Community, I am running into and issue with SSIS creating a text...

Visit the forum

Question of the Day

Adding and Dropping Columns II

I have this table in my SQL Server 2022 database:

CREATE TABLE [dbo].[CityList]
(
[CityNameID] [int] NOT NULL IDENTITY(1, 1),
[CityName] [varchar] (30) ,
[Country2] [char] (3),
[stateprovince2] [char] (2),
[Country] [char] (3),
[stateprovince] [char]
) ON [PRIMARY]
GO
I decide to drop the stateprovince2 and country2 columns. What code should I use?

See possible answers