Hi vivek
I guess tihs indicates that the SQL Server is unable to find the specified object, 'dbo.Customers', in your database. Let me drop you a few troubleshoot
Double-check the schema and table name in your query. Ensure that 'Customers' is indeed located in the 'dbo' schema. If the schema is different, make sure to qualify the table name appropriately in your query (e.g., 'myschema.Customers').
verrify that you're connected to the correct database in your SQL query session. Sometimes, users may unintentionally execute queries in the wrong database context, leading to object not found errors.
Make Ensure that the user executing the query has the necessary permissions to access the 'Customers' table. Check for any permission issues or role memberships that might be restricting access to the table.
If this helps kindly accept the answer thanks much