在大表上增加 VARCHAR 列的大小时会出现任何问题

When increasing the size of VARCHAR column on a large table could there be any problems?(在大表上增加 VARCHAR 列的大小时会出现任何问题吗?)
本文介绍了在大表上增加 VARCHAR 列的大小时会出现任何问题吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用的是 SQL Server 2008,我需要在大约 500k 行的表上将 VARCHAR 字段设置得更大,从(200 到 1200).我需要知道的是是否有任何我没有考虑过的问题.

I'm using SQL Server 2008 and I need to make a VARCHAR field bigger, from (200 to 1200) on a table with about 500k rows. What I need to know is if there are any issues I have not considered.

我将使用这个 TSQL 语句:

I will be using this TSQL statement:

ALTER TABLE MyTable
ALTER COLUMN [MyColumn] VARCHAR(1200)

我已经在一份数据副本上尝试过,这个声明没有我能看到的不良影响.

I've already tried it on a copy of the data and this statement had no ill effects that I could see.

那么这样做是否有任何我可能没有考虑过的问题?

So are there any possible problems from doing this that I may not have considered?

顺便说一下,该列未编入索引.

By the way, the column is not indexed.

推荐答案

这只是元数据更改:它很快.

This is a metadata change only: it is quick.

观察:如果 SET ANSI_xx 设置之一不同,则明确指定 NULL 或 NOT NULL 以避免事故",例如出于某种原因在 osql 而非 SSMS 中运行

An observation: specify NULL or NOT NULL explicitly to avoid "accidents" if one of the SET ANSI_xx settings are different eg run in osql not SSMS for some reason

这篇关于在大表上增加 VARCHAR 列的大小时会出现任何问题吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Execute complex raw SQL query in EF6(在EF6中执行复杂的原始SQL查询)
SSIS: Model design issue causing duplications - can two fact tables be connected?(SSIS:模型设计问题导致重复-两个事实表可以连接吗?)
SQL Server Graph Database - shortest path using multiple edge types(SQL Server图形数据库-使用多种边类型的最短路径)
Invalid column name when using EF Core filtered includes(使用EF核心过滤包括时无效的列名)
How should make faster SQL Server filtering procedure with many parameters(如何让多参数的SQL Server过滤程序更快)
How can I generate an entity–relationship (ER) diagram of a database using Microsoft SQL Server Management Studio?(如何使用Microsoft SQL Server Management Studio生成数据库的实体关系(ER)图?)