I am attempting to create a Stored Procedure for a newly created database. However the SSMS intellisense does not recognize more than half of the tables which have been created.
For example whilst in the left hand column under tables I have a table dbo.Room, when I type «dbo.» in the new query window, that table is not listed, in fact only 17 out of 37 tables are listed.
I can see no difference between the tables listed by intellisense and those not. If I manually type dbo.Room, it is underlined, with an error of
Invalid Object Name ‘dbo.Room’..
Have I missed something in setting up the tables?
UPDATE: I have tried refresh of the tables list (several times)
![]()
DineshDB
5,9426 gold badges32 silver badges47 bronze badges
asked Sep 1, 2009 at 13:36
1
Try:
Edit -> IntelliSense -> Refresh Local Cache
This should refresh the data cached by Intellisense to provide typeahead support and pre-execution error detection.
NOTE: Your cursor must be in the query editor for the IntelliSense menu to be visible.
ShadowFlame
2,8165 gold badges26 silver badges39 bronze badges
answered Sep 1, 2009 at 13:44
Adam RobinsonAdam Robinson
181k35 gold badges283 silver badges342 bronze badges
23
Make sure that the selected DB is the one where the table is. I was running the Script on Master. In my case, I had to switch to hr_db.

Rookie mistake but, could help someone.
answered Mar 16, 2018 at 6:17
1011010110
2,1031 gold badge18 silver badges32 bronze badges
5
Ctrl + Shift + R refreshes intellisense in management studio 2008 as well.
![]()
fedorqui
266k100 gold badges536 silver badges590 bronze badges
answered Oct 19, 2009 at 22:30
ZielynZielyn
9965 silver badges4 bronze badges
3
once you create a new SQL Server object, your newly created object does not get updated in the IntelliSence Local Cache and due to this, it shows red line underneath that object. So you just need to refresh SSMS IntelliSence Local Cache and once you refresh it, IntelliSence will automatically add newly created object in the cache and the red line will disappear. try this
Edit -> IntelliSense -> Refresh Local Cache or Ctrl + Shift + R

answered Mar 19, 2014 at 6:48
Nagaraj SNagaraj S
13.2k6 gold badges32 silver badges52 bronze badges
2
In my case, the IntelliSense cache was listing object information for an entirely different database. If I clicked the «New Query» button in SSMS, it would open a query to my default catalog on the server and that query editor would always only use that database. Refreshing the cache didn’t change anything. Restarting SSMS didn’t change anything. Changing the database didn’t change anything.
I ended up creating a query by right-clicking on the database I actually wanted to use and choosing «New Query» from that context menu. Now SSMS uses the correct objects for IntelliSense.
answered Jan 7, 2015 at 20:05
Bacon BitsBacon Bits
30k5 gold badges55 silver badges63 bronze badges
3
Are you certain that the table in question exists?
Have you refreshed the table view in the Object Explorer? This can be done by right clicking the «tables» folder and pressing the F5 key.
You may also need to reresh the Intellisense cache.
This can be done by following the menu route: Edit -> IntelliSense -> Refresh Local Cache
![]()
Himanshu
31.1k30 gold badges110 silver badges132 bronze badges
answered Sep 1, 2009 at 13:41
John SansomJohn Sansom
40.5k9 gold badges71 silver badges84 bronze badges
0
The solution is:
- Click menu Query,
- then click ‘Change Database’.
- Select your appropriate database name.
That’s it.
![]()
answered Apr 23, 2014 at 6:54
![]()
Tono FRLTono FRL
811 silver badge2 bronze badges
Same problem with me when I used this syntax problem solved.
Syntax:
Use [YourDatabaseName]
Your Query Here
answered Dec 8, 2016 at 8:45
Even after installing SP3 to SQL Server 2008 Enterprise this is still an «issue.» Ctrl+Shift+R like everyone has been saying solved this problem for me.
![]()
Himanshu
31.1k30 gold badges110 silver badges132 bronze badges
answered Nov 28, 2011 at 23:13
demmithdemmith
591 silver badge2 bronze badges
2
In azure data studio press «cmd+shift+p» and type «intellisense», then you will see an option to refresh intellisense cache.
answered Mar 5, 2020 at 23:52
pavel_orekhovpavel_orekhov
1,4322 gold badges14 silver badges33 bronze badges
did you try: right click the database, and click «refresh»
answered Sep 1, 2009 at 13:39
![]()
KM.KM.
100k33 gold badges177 silver badges210 bronze badges
1
I realize this question has already been answered, however, I had a different solution:
If you are writing a script where you drop the tables without recreating them, those tables will show as missing if you try to reference them later on.
Note: This isn’t going to happen with a script that is constantly ran, but sometimes it’s easier to have a script with queries to reerence than to type them everytime.
answered May 29, 2014 at 14:45
Troy LobergerTroy Loberger
3471 gold badge8 silver badges26 bronze badges
Solved for SSMS 2016.
Had a similar problem, but Intellisense was not in Edit menu.
What seemed to fix it was turning Intellisens on and off, right click on the SQL editor and click ‘Intellisense Enabled’. Right click again on ‘Intellisense Enabled’ to turn it back on again. Ctr Q, I also does this.
This solved the problem, and also I know get the Intellisense on the Edit menu.
answered Mar 30, 2017 at 9:23
Eric YeomanEric Yeoman
1,0361 gold badge14 silver badges31 bronze badges
I just had to close SMSS and reopen it. I tried Refresh Local Cache and that didn’t work.
answered Jun 23, 2017 at 16:21
stealthysnacksstealthysnacks
1,0911 gold badge12 silver badges16 bronze badges
I ran into the problem with :
ODBC and SQL-Server-Authentication in ODBC
and
Firedac-Connection
Solution :
I had to set the Param MetaDefSchema to sqlserver username :
FDConnection1.Params.AddPair(‘MetaDefSchema’, self.FDConnection1.Params.UserName);
The wikidoc sais :
MetaDefSchema=Default schema name. The Design time code >>excludes<< !! the schema name from the object SQL-Server-Authenticatoinname if it is equal to MetaDefSchema.
without setting, the automatic coder creates :
dbname.username.tablename -> invalid object name
With setting MetaDefSchema to sqlserver-username :
dbname.tablename -> works !
See also the embarcadero-doc at :
http://docwiki.embarcadero.com/RADStudio/Rio/en/Connect_to_Microsoft_SQL_Server_(FireDAC)
Hope, it helps someone else..
regards, Lutz
answered Oct 11, 2019 at 6:37
Don’t forget to create your migrations after writing the models
answered May 3, 2020 at 16:08
![]()
mgPePemgPePe
5,55712 gold badges51 silver badges81 bronze badges
For me I had rename from
[Database_LS].[schema].[TableView]
to
[Database_LS].[Database].[schema].[TableView]
answered Feb 3, 2021 at 17:24
![]()
Paul TotzkePaul Totzke
1,43017 silver badges31 bronze badges
I was working on Azure SQL Server. For storing the data I used table values param
like
DECLARE @INTERMEDIATE_TABLE3 TABLE {
x int;
}
I discovered the error in writing on the queries
SELECT
*
FROM
[@INTERMEDIATE_TABLE3]
WHERE
[@INTERMEDIATE_TABLE3].[ConsentDefinitionId] = 3
While querying the columns, it’s okay to wrap it with braces like [@INTERMEDIATE_TABLE3].[ConsentDefinitionId] but when referring to just the table valued param, there should be no params. So it should be used as @INTERMEDIATE_TABLE3
So the code now must be changed to
SELECT
*
FROM
@INTERMEDIATE_TABLE3
WHERE
[@INTERMEDIATE_TABLE3].[ConsentDefinitionId] = 3
marc_s
721k173 gold badges1320 silver badges1442 bronze badges
answered Feb 17, 2021 at 7:42
![]()
In my case, I was trying to alter a stored procedure that didn’t exist in the database, after creating it and refreshing local cache, it worked
answered Aug 10, 2021 at 15:15
![]()
The following error is returned, where object name is the name of the table you are attempting to update:
Invalid object name object name
This error message occurs under the following conditions:
-
A SQL Server stored procedure exists in one database that selects records from a table in a different database.
-
The resulting recordset is returned to an application or service.
-
That recordset is then passed out-of-process as a disconnected ADO (ActiveX Data Objects) recordset to another client application.
-
An attempt is made to update the disconnected recordset.
If the recordset is never marshaled out of process but is delivered directly to the process that is attempting to update it instead, the UPDATE statement succeeds.
Symptoms
The remoting portion of ADO (Msdaprst.dll) is inadvertently overwriting portions of the metadata contained in the recordset. When subsequently constructing the UPDATE statement, this metadata is not available and incorrect syntax is generated.
Examination of trace logs show that the correct database.owner.tablename syntax was used when selecting the records, but only the table name was used when constructing the UPDATE statement.
Because the Connection currently points to the database containing the stored procedure and the table does not exist in that database, «Invalid Object Name» errors are returned.
Cause
A supported fix is now available from Microsoft, but it is only intended to correct the problem that is described in this article. Apply it only to computers that are experiencing this specific problem. This fix may receive additional testing. Therefore, if you are not severely affected by this problem, Microsoft recommends that you wait for the next Microsoft Data Access service pack that contains this hotfix.
To resolve this problem immediately, contact Microsoft Product Support Services to obtain the fix. For a complete list of Microsoft Product Support Services phone numbers and information about support costs, visit the following Microsoft Web site:
http://support.microsoft.com/default.aspx?scid=fh;EN-US;CNTACTMSNOTE: In special cases, charges that are ordinarily incurred for support calls may be canceled if a Microsoft Support Professional determines that a specific update will resolve your problem. The typical support costs will apply to additional support questions and issues that do not qualify for the specific update in question.
The English version of this fix should have the following file attributes or later:
Date Version Size File name
——————————————————
7/22/99 2.10.4321 203KB msdaprst.dll
Resolution
Microsoft has confirmed that this is a problem in the Microsoft products that are listed at the beginning of this article.
This problem was corrected in MDAC 2.5.
For the latest version of Microsoft Data Access Components (MDAC), see the following Microsoft Web site:
http://msdn.microsoft.com/en-us/data/aa937729.aspx
Status
More Information
IMPORTANT!
It is not recommended that you install this hotfix on a machine that is currently running MDAC 2.1 SP2 (version 2.12.4202) or later. This hotfix should only be used with machines running MDAC 2.1 SP1 (version 2.10.3711) or earlier.
In order to alleviate memory fragmentation problems, significant code changes were made between MDAC 2.1 SP1 and MDAC 2.1 SP2. While it is not expected that any fatal errors occur if this hotfix is applied to MDAC 2.1 SP2, doing so is strongly discouraged.
A separate hotfix exists to address this problem in MDAC 2.1 SP2.
Please see the REFERENCES section of this article for more information.
Manual Installation
-
Close or stop any applications or services that are using Msdaprst.dll. This may include Internet Information Server (IIS), Microsoft Transaction Server (MTS), Microsoft Distributed Transaction Coordinator (DTC), and any ADO or OLE DB applications.
-
Download the hotfix version of Msdaprst.dll into a temporary folder.
-
Locate and rename the current version of Msdaprst.dll, which should be in the Program FilesCommon filesSystemmsadc folder.
-
Copy the hotfix version of Msdaprst.dll into the same location and restart your services and applications.
Important Notice for Microsoft Windows 95/98 Users
If you are installing this fix onto a computer running Windows 95 or a computer with the original release of Windows 98, you might need to install the Windows 98 Migration DLL included with this fix.
NOTE: Read the Migrate_qfe.txt file that is included in the Migration.exe file included with the download.
REFERENCES
For information about this hotfix as it applies to MDAC 2.1 SP2, please refer to the following article found in the Microsoft Knowledge Base:
238092 Invalid Object Name Errors When Updating Via Stored Procedure in Different Database
For more information on the memory fragmentation issue referenced above, please refer to the following article found in the Microsoft Knowledge Base::
230101 Data Queries Sporadically Return Empty Recordsets
Need more help?
I’m doing some maintenance programming on a fairly large project, which was started by someone who’s now left the company…
I’ve just backed up one of the company’s databases, and then reattached it to our test server. That much appears to be working okay.
I then go through the program’s usual login procedure, and that part also appears to work.
However, once I get to a point in the program where it needs to execute a stored procedure, I get back an error telling me Invalid object name 'Informix.dbo.customer'.
Running the same function on the original database works fine, and returns the data I expect to see.
Explanations for similar errors I’ve found seem to refer to Schemas, but that’s where things get a little odd. The original database doesn’t obviously have any Schemas; In its «Security» folder it just has a «Users» folder, containing dbo, and a «Roles» folder, containing the «Database Roles» folder, with the usual db_owner, etc. stuff, and an empty folder named «Application Roles».
The Security folder on the backed-up-and-restored database is full of all kinds of crap. Three users in addition to dbo, a «Schemas» folder, «Certificates» folder, two encryption key folders… I can’t delete any of these.
From my limited understanding of the SQL login system, the user I’m logging in as is getting non-dbo-permissions from this collection of random crap, and so is being denied access to the parts of the database owned by dbo.
For my own understanding, what is the core of the problem that’s throwing up these Invalid object name errors? And for practical matters, what can I do to rectify this situation and actually have the program I’m using work on the test database in the same way as it does on the live one?
I’m doing some maintenance programming on a fairly large project, which was started by someone who’s now left the company…
I’ve just backed up one of the company’s databases, and then reattached it to our test server. That much appears to be working okay.
I then go through the program’s usual login procedure, and that part also appears to work.
However, once I get to a point in the program where it needs to execute a stored procedure, I get back an error telling me Invalid object name 'Informix.dbo.customer'.
Running the same function on the original database works fine, and returns the data I expect to see.
Explanations for similar errors I’ve found seem to refer to Schemas, but that’s where things get a little odd. The original database doesn’t obviously have any Schemas; In its «Security» folder it just has a «Users» folder, containing dbo, and a «Roles» folder, containing the «Database Roles» folder, with the usual db_owner, etc. stuff, and an empty folder named «Application Roles».
The Security folder on the backed-up-and-restored database is full of all kinds of crap. Three users in addition to dbo, a «Schemas» folder, «Certificates» folder, two encryption key folders… I can’t delete any of these.
From my limited understanding of the SQL login system, the user I’m logging in as is getting non-dbo-permissions from this collection of random crap, and so is being denied access to the parts of the database owned by dbo.
For my own understanding, what is the core of the problem that’s throwing up these Invalid object name errors? And for practical matters, what can I do to rectify this situation and actually have the program I’m using work on the test database in the same way as it does on the live one?
Содержание
- MSSQLSERVER_208
- Details
- Explanation
- Possible Causes
- User Action
- MSSQLSERVER_208
- Сведения
- Объяснение
- Возможные причины
- Действие пользователя
- «208,»42S02″,[Microsoft][ODBC SQL Server Driver][SQL Server]Invalid object name ‘$ndo$usrproperty’» error message when you try to delete a table from the object designer in Microsoft Dynamics NAV 2009 Service Pack 1
- Symptoms
- Cause
- Resolution
- Hotfix information
- How to obtain the Microsoft Dynamics NAV hotfix or update files
- How to install a Microsoft Dynamics NAV hotfix or an update file
- Step 1: Replace the files in the Microsoft Dynamics NAV Classic Client installation
- Database.Guide
- Beginners
- Categories
- How to Fix “Invalid object name ‘OPENJSON’.” in SQL Server
- Example of Error
- Check the Compatibility Level of the Database
- Solution 1
- Solution 2
- Microsoft sql server error 208 invalid object name
- All replies
MSSQLSERVER_208
Applies to: SQL Server (all supported versions)
Details
| Attribute | Value |
|---|---|
| Product Name | SQL Server |
| Event ID | 208 |
| Event Source | MSSQLSERVER |
| Component | SQLEngine |
| Symbolic Name | SQ_BADOBJECT |
| Message Text | Invalid object name ‘%.*ls’. |
Explanation
The specified object cannot be found.
Possible Causes
This error can be caused by one of the following problems:
The object is not specified correctly.
The object does not exist in the current database or in the specified database.
The object exists, but could not be exposed to the user. For example, the user might not have permissions on the object or the object is created within an EXECUTE statement but accessed outside the scope of the EXECUTE statement.
User Action
Verify the following information and correct the statement as appropriate.
The object name is spelled correctly.
The current database context is correct. If a database name for the object is not specified, the object must exist in the current database. For more information about setting the database context, see USE (Transact-SQL).
The object exists in the system tables. To verify whether a table or other schema-scoped object exists, query the sys.objects catalog view. If the object is not in the system tables, the object has been deleted, or the user does not have permissions to view the object metadata. For more information about permissions to view object metadata, see Metadata Visibility Configuration.
The object is contained in the default schema of the user. If it is not, the object must be specified using the two-part format schema_name.object_name. Note that scalar-valued functions must always be invoked by using at least a two-part name.
The case sensitivity of the database collation.
When a database uses a case-sensitive collation, the object name must match the case of the object in the database. For example, when an object is specified as MyTable in a database with a case sensitive collation, queries that refer to the object as mytable or Mytable will cause error 208 to return because the object names do not match.
You can verify the database collation by running the following statement.
The abbreviation CS in the collation name indicates the collation is case sensitive. For example, Latin1_General_CS_AS is a case sensitive, accent sensitive collation. CI indicates a case insensitive collation.
The user has permission to access the object. To verify the permissions the user has on the object, use the Has_Perms_By_Name system function.
Источник
MSSQLSERVER_208
Применимо к: SQL Server (все поддерживаемые версии)
Сведения
| attribute | Значение |
|---|---|
| Название продукта | SQL Server |
| Идентификатор события | 208 |
| Источник события | MSSQLSERVER |
| Компонент | SQLEngine |
| Символическое имя | SQ_BADOBJECT |
| Текст сообщения | Недопустимое имя объекта «%.*ls». |
Объяснение
Не удается найти указанный объект.
Возможные причины
Возможны следующие причины возникновения этой ошибки.
Объект указан неверно.
Объект не существует в текущей базе данных или в указанной базе данных.
Объект существует, но пользователю не может быть предоставлен к нему доступ. Например, может оказаться так, что пользователь не имеет разрешений для доступа к объекту или объект создан в инструкции EXECUTE, но доступ к нему осуществляется вне области действия инструкции EXECUTE.
Действие пользователя
Проверьте следующую информацию и исправьте инструкцию соответствующим образом.
Имя объекта записано правильно.
Контекст текущей базы данных является правильным. Если не указано имя базы данных для объекта, то объект должен существовать в текущей базе данных. Дополнительные сведения о настройке контекста базы данных см. в разделе USE (Transact-SQL).
Объект существует в системных таблицах. Чтобы проверить существование таблицы или другого объекта на уровне схемы, отправьте запрос к представлению каталога sys.objects. Если объект отсутствует в системных таблицах, значит он был удален или у пользователя отсутствуют разрешения на просмотр метаданных объекта. Дополнительные сведения о разрешениях на просмотр метаданных объекта см. в статье Настройка видимости метаданных.
Объект содержится в применяемой по умолчанию схеме пользователя. Если его там нет, имя объекта нужно указывать в двухкомпонентном формате: имя_схемы.имя_объекта. Следует отметить, что скалярные функции должны всегда вызываться с использованием по меньшей мере двухкомпонентного имени.
Учет регистра в параметрах сортировки базы данных.
Если в базе данных используются параметры сортировки с учетом регистра, то имя объекта должно согласовываться по регистру с именем объекта в базе данных. Например, если определенный объект имеет имя MyTable в базе данных с параметрами сортировки с учетом регистра, запросы, в которых этот объект именуется как mytable или Mytable, будут возвращать ошибку 208, так как имена объектов не согласуются.
Параметры сортировки базы данных можно проверить, введя следующую инструкцию.
Аббревиатура CS в имени параметров сортировки указывает, что учитывается регистр символов. Например, значение Latin1_General_CS_AS определяет параметры сортировки с учетом регистра и с учетом диакритических знаков. Значение CI указывает, что в параметрах сортировки не учитывается регистр.
Пользователь имеет разрешение на получение доступа к объекту. Чтобы проверить, какие разрешения имеет пользователь для доступа к объекту, можно воспользоваться системной функцией Has_Perms_By_Name.
Источник
«208,»42S02″,[Microsoft][ODBC SQL Server Driver][SQL Server]Invalid object name ‘$ndo$usrproperty’» error message when you try to delete a table from the object designer in Microsoft Dynamics NAV 2009 Service Pack 1
This article applies to Microsoft Dynamics NAV for all countries and all language locales.
Symptoms
Assume that you use the standard security model in Microsoft Dynamics NAV 2009 Service Pack 1 (SP1). When you try to delete a table from the object designer and the LinkedObject property of the table is set to Yes, you receive an error message that resembles the following:
The following SQL Server error or errors occurred:
208,»42S02″,[Microsoft][ODBC SQL Server Driver][SQL Server]Invalid object name ‘$ndo$usrproperty’.
16945,»42000″,[Microsoft][ODBC SQL Server Driver][SQL Server]The cursor was not declared.
SQL:
SELECT [sid] FROM [$ndo$usrproperty]
Cause
This problem occurs because the $ndo$usrproperty table only exists when you use the enhanced security model.
Resolution
Hotfix information
A supported hotfix is available from Microsoft. There is a «Hotfix download available» section at the top of this Knowledge Base article. If you are encountering an issue downloading, installing this hotfix, or have other technical support questions, contact your partner or, if enrolled in a support plan directly with Microsoft, you can contact technical support for Microsoft Dynamics and create a new support request. To do this, visit the following Microsoft Web site:
https://mbs.microsoft.com/support/newstart.aspx You can also contact technical support for Microsoft Dynamics by phone using these links for country specific phone numbers. To do this, visit one of the following Microsoft Web sites:
https://mbs.microsoft.com/customersource/support/information/SupportInformation/global_support_contacts_eng.htmIn special cases, charges that are ordinarily incurred for support calls may be canceled if a Technical Support Professional for Microsoft Dynamics and related products determines that a specific update will resolve your problem. The usual support costs will apply to any additional support questions and issues that do not qualify for the specific update in question.
How to obtain the Microsoft Dynamics NAV hotfix or update files
After you request a Microsoft Dynamics NAV hotfix, a hyperlink will be sent to you in an e-mail.
The e-mail will contain a hyperlink and a password. You can use the hyperlink to download the Microsoft Dynamics NAV hotfix or the update files. When you click the hyperlink, the File Download – Security Warning dialog box opens. Then, you are prompted to run, to save, or to cancel the download.
If you click Run, the files start the download and the extraction process. You must specify a folder for the new files, and then provide the password.
If you click Save, you must specify a path for saving the compressed file. When you open the file that you saved, you are prompted to specify a path for the files. Then, you must provide the password provided in the e-mail.
If you click Cancel, the download process stops.
How to install a Microsoft Dynamics NAV hotfix or an update file
The Microsoft Dynamics NAV platform hotfixes and updates are made available as single files. To install a Microsoft Dynamics NAV hotfix or an update, you must replace the existing Microsoft Dynamics NAV installation files with the hotfix or the update files. To do this, follow these steps.
Step 1: Replace the files in the Microsoft Dynamics NAV Classic Client installation
In the Microsoft Dynamics NAV Classic Client installation, replace the following files by using the hotfix or the update file.
Источник
Database.Guide
Beginners
Categories
- Azure SQL Edge (16)
- Database Concepts (48)
- Database Tools (70)
- DBMS (8)
- MariaDB (420)
- Microsoft Access (17)
- MongoDB (265)
- MySQL (375)
- NoSQL (7)
- Oracle (296)
- PostgreSQL (255)
- Redis (185)
- SQL (588)
- SQL Server (888)
- SQLite (235)
How to Fix “Invalid object name ‘OPENJSON’.” in SQL Server
If you encounter error Msg 208, Level 16 “Invalid object name ‘OPENJSON’.”, you are probably trying to use the OPENJSON() function on a database with a compatibility level of less than 130.
OPENJSON() is only available under compatibility level 130 or higher.
To fix this, either increase the compatibility level of your database to 130 or higher, or change to a database that already has the appropriate compatibility level.
Example of Error
Here’s an example of some basic code that will cause this error.
When your database compatibility level is lower than 130, SQL Server can’t find and run the OPENJSON() function.
In my case, the database I was trying to run this on had a compatibility level of 120.
Check the Compatibility Level of the Database
You can query sys.databases to check the compatibility level of the database (or all databases if you prefer).
As suspected, this database has a compatibility level of less than 130.
Solution 1
The most obvious solution is to increase the compatibility level of the database for which you’re trying to run OPENJSON() against.
Running that code will increase the database’s compatibility level to 150, which is more than high enough to support the OPENJSON() function.
If we check the compatibility level again, we can see that it’s increased to 150.
Now we can run the original code without error.
Solution 2
If for some reason you can’t, or don’t want to, change the compatibility level of the database, you could switch to a database that already has the appropriate compatibility level.
Obviously, this may or may not be suitable, depending on whether you need to insert your parsed JSON into the database or not.
Anyway, to do this, you could query sys.databases for a suitable database.
Fortunately in this case, all other databases are 130 or higher. So we could switch to any one of them.
Источник
Microsoft sql server error 208 invalid object name


I had created the distribution database in SQL server 2012 successfully.
I want to configure the publication and distribution on the same instance.
i tried creating the publication , right click on publication—> next—> Invalid object name ‘IHpublications’. Could not use view or function ‘dbo.syspublications’ because of binding errors (Microsoft SQL Server, Error: 208)
Kindly hep on this.?


I had created the distribution database in SQL server 2012 successfully.
I want to configure the publication and distribution on the same instance.
i tried creating the publication , right click on publication—> next—> Invalid object name ‘IHpublications’. Could not use view or function ‘dbo.syspublications’ because of binding errors (Microsoft SQL Server, Error: 208)
Kindly help on this.


any help on this??


If «IHpublication» is view then check underlying tables/views/functions is not renamed or dropped.
check with running sp_depends ‘IHpublication’ that all related obejects there.


You post the same question two times. Please avoid this practice on Forum, I have merged the related thread into this thread.
According to your description, we need to verify if your database was previously used in other replication, or you upgraded this database from the lower version of SQL Server , I recommend you use sp_removedbreplication before starting the publication. Or you can recreate new database in SQL Server 2012 and reconfigure replication via the New Publication Wizard and check if it can run well.
Regards,
Sofiya Li
Sofiya Li
TechNet Community Support



Have you tried what I suggested. Error 208 cause only when there is bad dependency i.e. dependent objects missing/deleted.
Run the command sp_depends ‘IHpublication’ and find the missing , and recreate them.
Источник
I connect database with Visual Studio 2017. When I am trying to execute a query then it shows the following error:

The connection string I am using is:
SqlConnection con = new SqlConnection("Data Source=ANUPAM-DESKTOPANUPAM;Integrated Security=True;Connect Timeout=30;Encrypt=False;TrustServerCertificate=True;ApplicationIntent=ReadWrite;MultiSubnetFailover=False");
My code:
public void exicuteDatabaseQuery(String query)
{
con.Open();
SqlDataAdapter sda = new SqlDataAdapter(query, con);
sda.SelectCommand.ExecuteNonQuery();
con.Close();
MessageBox.Show("Successfull");
}
private void Button_Click(object sender, RoutedEventArgs e)
{
int id = Convert.ToInt32(___Id_.Text);
int number = Convert.ToInt32(___Number_.Text);
String InsertQuery = "INSERT INTO Member (id, number)
values('"+id+"','"+number+"')";
exicuteDatabaseQuery(InsertQuery);
}
Database explorer image:

![]()
MDCCL
8,3403 gold badges29 silver badges59 bronze badges
asked Mar 14, 2018 at 19:04
![]()
0
I’d guess the problem is your SQL Server login does not have it’s «default database» properly set.
This will show you what your «default database» is set to:
SELECT sp.name
, sp.default_database_name
FROM sys.server_principals sp
WHERE sp.name = SUSER_SNAME();
You can either change the default database of your login, or you can specify the database in the connection string.
This will modify your default database:
ALTER LOGIN <login_name> WITH DEFAULT_DATABASE = [testDB];
If you want to specify the database in the connection string, make your connection string:
SqlConnection con = new SqlConnection("Data Source=ANUPAM-DESKTOP\ANUPAM;Integrated Security=True;Connect Timeout=30;Encrypt=False;TrustServerCertificate=True;ApplicationIntent=ReadWrite;MultiSubnetFailover=False;Initial Catalog=testDB");
answered Mar 14, 2018 at 19:46
Hannah Vernon♦Hannah Vernon
68.3k22 gold badges164 silver badges303 bronze badges
0
- Remove From My Forums
-
Question
-
When I run a SQL select from my app or a Java SQL client application I receive an ‘Invalid object name’ even though I did an ‘ALTER USER ‘me’ WITH DEFAULT_SCHEMA = PM’ to set the default schema. If i qualify the table name with the schema name it works.
I have this working with other MS SQL server databases so I think this is related to «security» and permissions granted to my user. I am not the DBA, how do I explain what permission should be granted to my user to allow SQL server to search the correct schema?
Below are the commands I am using with comments on the results.ALTER USER my_user WITH DEFAULT_SCHEMA = PM; -- Command was executed successfully SELECT * FROM table_name; -- Invalid object name 'table_name'. SELECT * FROM SCH.table_name; -- Command was executed successfully SELECT @@Version; -- Microsoft SQL Server 2005 - 9.00.4035.00 (Intel X86) -- Nov 24 2008 13:01:59 -- Copyright (c) 1988-2005 Microsoft Corporation -- Enterprise Edition on Windows NT 5.2 (Build 3790: Service Pack 2)
Answers
-
-
Marked as answer by
Friday, January 13, 2012 7:37 AM
-
Marked as answer by
- Remove From My Forums
Error: «Invalid Object Name ‘TableName'» — But the tables exist in the database
-
Question
-
I recently started getting an error in the SQL Code that I am writing. I am creating a table using a maketable query (ie SELECT ……. Into Table1…..etc)
I call this table in another query later on in the code however, Intellisense underlines Table1 and says that this is an Invalid Object Name….When I run the query I get an error telling me of invalid column names. I look in the list of tables in SSMS and
this table exists…..If I manually try and create another table with teh same name I get an error saying the table already exists in the database……………….Any thoughts?Thanks
Answers
-
-
Proposed as answer by
Wednesday, February 1, 2012 11:26 PM
-
Marked as answer by
Kalman Toth
Thursday, December 27, 2012 10:39 PM
-
Proposed as answer by
|
Skeever 0 / 0 / 0 Регистрация: 17.11.2019 Сообщений: 227 |
||||
|
1 |
||||
|
08.08.2020, 17:37. Показов 3930. Ответов 2 Метки sql (Все метки)
Доброго времени суток. Я новичок в sql, многого не понимаю. Все имена подсвечиваются красным, но сам запрос работает корректно. Подскажите, пожалуйста, как это исправить?
__________________
0 |
|
3 / 3 / 0 Регистрация: 23.10.2018 Сообщений: 201 |
|
|
10.08.2020, 00:21 |
2 |
|
d8veloper, попробуй убрать скобки в условии
0 |
|
4716 / 3924 / 994 Регистрация: 29.08.2013 Сообщений: 25,175 Записей в блоге: 3 |
|
|
10.08.2020, 12:01 |
3 |
|
нажми CTRL+SHIFT+R BoyToy, чем это поможет?
0 |
Error Description:
- When we try to explore any database, we usually, go via the route of SQL Server Management Studio. When we try to access any object via any valid T-SQL command, often we end up with the following error.
Solution 1:
Edit -> IntelliSense -> Refresh Local Cache
- This should refresh the data cached by Intellisense to provide typeahead support and pre-execution error detection.
Solution 2:
- This error happens primarily due to database context mismatching. When we open SSMS, we usually do not notice that our default database context is set to master in the most of the cases. We just have to change the database context to whatever database our current object is and everything will start working.
Solution 3:
- Click menu Query,
- Then click ‘Change Database’.
- Select your appropriate database name.
Solution 4:
- Turn Intellisens on and off, right click on the SQL editor and click ‘Intellisense Enabled’. Right click again on ‘Intellisense Enabled’ to turn it back on again.