I have a C# Windows application running with a virtual service account and a database is created in the user's profile folder.

enter image description here

The database connection string is,

<connectionStrings>
    <add name="PersonContext" 
         connectionString="Data Source=(localdb)\MSSQLLocalDB;Database=PersonDB;Integrated Security=True;MultipleActiveResultSets=True" 
         providerName="System.Data.SqlClient" />
</connectionStrings>

enter image description here

Now since database is tight with virtual service user and I want to view the database data.

I am trying to use SQL Server Management Studio and trying to user default Windows auth, but off course this won't show the database,

enter image description here

My question is:

  • Is this possible to view data using SSMS?
  • If not what are the options I can view/edit/delete data?

Thanks!

0

There are 0 best solutions below