惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

J
Java Code Geeks
Engineering at Meta
Engineering at Meta
GbyAI
GbyAI
MongoDB | Blog
MongoDB | Blog
Blog — PlanetScale
Blog — PlanetScale
腾讯CDC
U
Unit 42
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Apple Machine Learning Research
Apple Machine Learning Research
M
MIT News - Artificial intelligence
人人都是产品经理
人人都是产品经理
Hugging Face - Blog
Hugging Face - Blog
MyScale Blog
MyScale Blog
小众软件
小众软件
博客园 - 三生石上(FineUI控件)
N
Netflix TechBlog - Medium
阮一峰的网络日志
阮一峰的网络日志
博客园 - Franky
Recent Announcements
Recent Announcements
A
About on SuperTechFans
Stack Overflow Blog
Stack Overflow Blog
The GitHub Blog
The GitHub Blog
D
Docker
H
Hackread – Cybersecurity News, Data Breaches, AI and More

博客园 - Jacky Xu

Office Excel Add-ins installation for AX 2012 and Dynamics AX 2012 clients reinstalltion Develop a Dynamics AX2012 Report by Visual Studio 2010 Codes Permission Management in AX 2012 Publish AX reports in AX2012 + SQL2008 Create a security policy in Dynamics AX2012 How to use a shared configuration file& Security configuration example in Dynamics AX 2012 Security management in Dynamics AX 2012 Dynamics AX2012 Installation& AOS (Cluster) configuration on Windows 7 Office 2007 Re-installed issue Delete printer sessions on Terminal server for users Launch AX2012 Virtual Machine Change Tracking -- SQL Server 2008 new feature FILESTREAM -- SQL Server2008 New Feature Reports development in Axapta 3 记忆一些SQL语句 终端服务器许可问题 Can't access maintenance plan because Agent XPs component is turned off as part of the security configuration on sql2005 SQL Error log/Event ID(17890): A significant part of sql server process memory has been paged out. This may result.... command命令大全(转自http://blog.dhedu.gov.cn/u/72/archives/2009/14290.html)
Don't use SQL keyword as your feild name of a table
Jacky Xu · 2010-11-11 · via 博客园 - Jacky Xu

It will report error when you save a table if you use SQL keyword as your feild name of a table

SQL error description: [Microsoft][ODBC SQL Server Driver][SQL Server]Incorrect syntax near the keyword 'SET'.

SQL statement: CREATE TABLE X50709X  (PRODUCTID VARCHAR(20) NOT NULL DEFAULT '' ,LINENUM INT NOT NULL DEFAULT 0 ,ITEMID VARCHAR(20) NOT NULL DEFAULT '' ,UNITID VARCHAR(10) NOT NULL DEFAULT '' ,QTY NUMERIC(28,12) NOT NULL DEFAULT 0 ,USEFORMULA INT NOT NULL DEFAULT 0 ,FORMULA VARCHAR(50) NOT NULL DEFAULT '' ,SCRAPVAR NUMERIC(28,12) NOT NULL DEFAULT 0 ,SCRAPCONST NUMERIC(28,12) NOT NULL DEFAULT 0 ,COLORMATCHING INT NOT NULL DEFAULT 0 ,SET VARCHAR(10) NOT NULL DEFAULT '' ,DATAAREAID VARCHAR(3) NOT NULL DEFAULT 'dat' ,RECVERSION INT NOT NULL DEFAULT 1 ,RECID INT NOT NULL CHECK (RECID <> 0) )