The backend version is not supported for developing database diagrams or tables.

I am trying to add a table to my newly created database through SQL Server Management Studio. However, I get an error message:

The backend version is not supported for developing charts or database tables.

To see my installed versions, I clicked on SSMS and this is what happened:

enter image description here

What is wrong here?

+119
sql database sql-server ssms
Aug 05 '14 at 19:08
source share
4 answers

This is usually reported as an error due to using the wrong version of SSMS (Sql Server Management Studio). Use the version designed for your version of the database. You can use the select @@version command to check which version of sql server you are actually using. This version is described in such a way that it is easier to interpret than shown in the SSMS Help.




Using a newer version of SSMS than your database is usually error-free, that is, backward compatible.

+175
Aug 05 '14 at 19:14
source share

I ran into this problem when the SQL Server 2014 standard was installed on a server where SQL Server Express was also installed. I opened SSMS from the desktop shortcut, not immediately realizing that it was SSMS for SQL Server Express, and not for 2014. SSMS for Express returned an error, but SQL Server 2014 did not.

+5
Mar 12 '15 at 1:18
source share

I had the same problem, although I solved it by creating a table using a script query instead of a graphical one. See below:

 USE [Database_Name] GO CREATE TABLE [dbo].[Table_Name]( [tableID] [int] IDENTITY(1,1) NOT NULL, [column_2] [datatype] NOT NULL, [column_3] [datatype] NOT NULL, CONSTRAINT [PK_Table_Name] PRIMARY KEY CLUSTERED ( [tableID] ASC ) ) 
0
Aug 30 '19 at
source share

You receive this message only if you are trying to use a constructor or diagrams. If you use t-SQL, it works fine:

 Select * into newdb.dbo.newtable from olddb.dbo.yourtable 

where olddb.dbo.yourtable was created in 2008 exactly the same way you want the table to be in 2012

-6
Feb 27 '15 at 15:50
source share



All Articles