作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是返回的错误消息:
Msg 208, Level 16, State 1, Line 1 Invalid object name 'ENG_PREP'.
insert into ENG_PREP VALUES('572012-01-1,572012-01-2,572012-01-3,572013-01-1,572013-01-2',
'',
'500',
'',
'A320 P.001-A',
'Removal of the LH Wing Safety Rope',
'',
'',
'',
'0',
'',
'AF',
'12-00-00-081-001',
'',
'',
'',
'',
'',
'',
'' )
最佳答案
这意味着它不知道ENG_PREP
是什么。
首先需要使用'use xxx'
(其中xxx是ENG_PREP
所在的数据库名称)命令来告诉它您正在使用哪个数据库。然后,您需要确保该数据库中存在ENG_PREP
。
如果使用.Net进行连接,则需要确保指定初始目录,以便它知道要使用的数据库,这是web.config
的示例摘录:
<add name="SqlConnection" connectionString="Data Source=(local)\SQLEXPRESS;Initial Catalog=your_db_name_here;Integrated Security=True"
providerName="System.Data.SqlClient" />
关于sql - 如何在SQL Server中解决 'invalid object name'?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3069356/
我是一名优秀的程序员,十分优秀!