I have a C# Windows application running with a virtual service account and a database is created in the user's profile folder.
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>
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,
My question is:
- Is this possible to view data using SSMS?
- If not what are the options I can view/edit/delete data?
Thanks!