"post-text" itemprop = "text">
This is an error message:
Message 208, Level 16, State 1, Line 1 Invalid object name 'ENG_PREP'.
I try the following question after doing this:
Enter ENG_PREP VALUES ('572012-01-1, 572012-01-2 , 572012-01-3,572013-01-1,572013-01-2 ',' ',' 500 ',' ',' A320p1-A ',' Removal of LH wing protection ropes', '', '', '', '0', '', 'A', '12 -00-00-081-001 ',' ',' ',' ',' ',' ',' ', '')
This means that it does not know what is ENG_PREP
.
You need to use the 'xxx'
(where xxx is the database name where ENG_PREP
life) first tell the command What database are you using, and after doing so, you have to make sure that ENG_PREP
exists in that database.
If you are using Net to connect, then you need to make sure that you specify the initial catalog so it knows which database to use, here Web.config
is an example excerpt:
& lt; Add name = "SqlConnection" connectionString = "data source = (local) \ SQLEXPRESS; initial catalog = your_db_name_here; integrated security = true" provider name = "System.Data.SqlClient" />
Comments
Post a Comment