I met this issue on Oct 21st, 2009.
The Sql Server conplains
db.update:
[sql] Failed to execute: ALTER TABLE Green ALTER COLUMN Enabled nChar(1) not null DEFAULT 'Y'
BUILD FAILED
com.microsoft.sqlserver.jdbc.SQLServerException: Incorrect syntax near the keyword 'DEFAULT'.
The reason is because there are severl limitations on Sql Server when you issue ALTER COLUMN
You can't literally ALTER COLUMN in the following circumstances
1) currently, TEXT, IMAGE, NTEXT, TIMESTAMP type
2) it's a ROWGUIDCOL column
3) computed column or used by a computed column
4) replicated column
5) index used column
6) column used as info gathering
7) constraint used column --- including PK/FK, CHECK/UNIQUE, DEFAULT
分享到:
相关推荐
然而,开发者在使用ThinkPHP2.0进行MSSQL数据库操作时,可能会遇到“Incorrect syntax near the keyword 'AS'”的错误,尤其是在尝试读取MSSQL2000版本时。 该错误的出现主要因为ThinkPHP提供的MSSQL驱动是基于SQL...
问题代码如下: <?...class IndexAction extends Action{ public function index(){ /* $Model = new Model(); $test = $Model->query('select top 10 * from f_city');...出现的情况是使用 query 可以正确读取到...
在PowerBuilder 12.5(简称PB12.5)开发过程中,遇到“Line 130 Column 487 incorrect syntax”错误是一种常见的编程问题。这种错误通常出现在数据窗口(DataWindow,简称DW)对象的编译阶段,提示在指定的行号和列...
异常详细信息: EnterpriseDT.Net.Ftp.FTPException: plan/??_SV_201011121502.DNJH: The filename, directory name, or volume label syntax is incorrect
标题中的“windows下kafka_2.12-2.9.0.rar”指的是Apache Kafka的一个版本,这是在Windows环境下使用的。Kafka是一款开源的流处理平台,由LinkedIn开发并贡献给Apache软件基金会。它主要设计用于构建实时数据管道和...
Msg 102, Level 15, State 1, Line 3 Incorrect syntax near ‘+’. 当你尝试执行下面这段代码时,会得到如上这个错误提示。 代码如下: DECLARE @MyName NVARCHAR(100) DECLARE @FieldName SYSNAME = N’Name’ ...
Find the Bug A Book of Incorrect Programs.chm
The syntax for declaring a one-dimensional array in C is as follows: `int a[5];` This declares an array `a` of size 5, which can store 5 integer values. 二维数组 A two-dimensional array is an ...
在IT领域,尤其是在图像处理和开发中,"libpng warning: iCCP: known incorrect sRGB profile" 是一个常见的问题,特别是在使用Qt库进行图像操作时。这个问题涉及到颜色配置文件(iCCP)和标准红绿蓝(sRGB)色彩...
参考"解决问题:libpng warning: iCCP: known incorrect sRGB profile"[https://blog.csdn.net/WangJiankun_ls/article/details/79470739]文章,通过自己实践操作,得出结论,希望能帮助到你们
在IT行业中,我们经常遇到各种报错,其中“libpng warning: iccp: known incorrect sRGB profile”是一个常见的错误,特别是在处理PNG图像时。这个警告通常发生在使用图像处理库,如libpng,来读取或操作包含色彩...
错误解决 用cubesuite烧写器报下列错误: [Direct Error Cause] Incorrect ID Code.(C0602202)错误解决。 用cubesuite烧写器报下列错误: [Direct Error Cause] Incorrect ID Code.(C0602202) 瑞萨 [Direct Error ...
Inline EXEC now correctly handles parameters using the DEFAULT value Fix for incorrect indentation when using UNION Fix for missing space in ORDER BY between function call and DESC keyword Fix for ...
Linux中vsftpd 530 Login incorrect 解决方案 在 Linux 系统中,ftp 服务器是一种常用的文件传输协议服务器,而 vsftpd 是一个功能强大且广泛使用的 ftp 服务器软件。但是,在使用 vsftpd 的过程中,经常会遇到 530...
用cubesuite烧写器报下列错误: [Direct Error Cause] Incorrect ID Code.(C0602202)
Mac: the user's default shell is executed and environmental variables are set in the plugin Python environment Linux: Update X11 selection on clipboard every time selection changes Linux: Improved MOD...
然而,在处理某些PNG图像时,可能会遇到一个常见的错误提示:“libpng warning: iCCP: known incorrect sRGB profile”。这个错误是由于PNG图像的色彩配置文件(iCCP)与标准sRGB色彩空间不匹配导致的。在本文中,...
由于这个数据库服务器存放的数据库比较多且都是小数据库,所以最初的时候是运行在windows服务器上的。前一段时间由于机房服务器要做调整,于是我便在一个夜深人静的夜晚对数据库进行的迁移及前台应用程序进行了调整...
Added TFlexFileFormat.StreamSupport property (default True), which difines, is it necessary to open file stream or give the file name only. - FIX: If the TCustomProp.Assign method calls when the ...