User1711366110 posted
Hi Sathish,
According to this case, you can refer the following steps which may help you to resolve this issue :
1.Please make sure that the connection string was defined properly like below :
"Data Source=.\SQLEXPRESS;Initial Catalog=YourDataBaseName;Integrated Security=True;"
Click here to refer about SQL connection string syntax.
2.By default schema name is 'dbo' in sqlserver. If your schemaname is different then you can transfer into dbo like below :
ALTER SCHEMA dbo TRANSFER YourSchemaName.Yourtablename;
Click here to refer about Alter Schema syntax.
3.Or you can set yourschemaname as default schema in sqlserver like below :
ALTER USER yourUser WITH DEFAULT_SCHEMA = YourSchemaName;
Click here
to refer the above query was discussed/used in this thread.