sql server invalid object name – but tables are listed in SSMS tables list

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 … Read more

What is the best way to auto-generate INSERT statements for a SQL Server table?

We are writing a new application, and while testing, we will need a bunch of dummy data. I’ve added that data by using MS Access to dump excel files into the relevant tables. Every so often, we want to “refresh” the relevant tables, which means dropping them all, re-creating them, and running a saved MS … Read more

Sql Server ‘Saving changes is not permitted’ error ► Prevent saving changes that require table re-creation

When I create a table in SQL Server and save it, if I try to edit the table design, like change a column type from int to real, I get this error: Saving changes is not permitted. The change you have made requires the following table to be dropped and re-created. You have either made … Read more