|
Group: StrataFrame Developers
Posts: 3K,
Visits: 2.5K
|
Whatever database is set as the initial catalog (in this case "InjuryCostTracking") should contain the table/view/stored procedure "Items", if it doesn't then there's your problem. It might also be that "Initial Catalog" is a 2000+ term, and you might replace it with "Database" making your connection string this:
workstation id=ILPMMURPHY;packet size=4096;user id=sa;data source=web;persist security info=True;Database=InjuryCostTracking;
For some reason, the SQL client cannot see the table "Items" when connecting with the connection string you've provided.
|