I took a backup of a database in SQL Server 2008 R2 via SSMS backup utility and restored the same backup in SQL Server 2014 via SSMS backup utility and the database restore. It was successful but am not seeing any tables in SQL Server 2014 after restoring the database. Can someone help me to restore the SQL Server 2008 R2 database backup (.bak) in 2014?
0
votes
select * from sys.tables. What do you see? - Nick.McDermaidSELECT compatibility_level FROM sys.databases WHERE name = 'YourDB';- Nick.McDermaid