Suman
Suman

Reputation: 63

SQL Server 2012 Invalid object name

SQL Server error says Invalid object name what should I do now.Database name is Sample and table name is tblEmployee contains some column and id column is identity column

enter image description here

Upvotes: 0

Views: 746

Answers (1)

Anand
Anand

Reputation: 1123

Add:

use Sample;

Before your insert statement

Upvotes: 1

Related Questions