Show table data upon attaching MDF file to SQL Server Mgmt Studio -


i have mdf file , attached sql server mgmt studio , find database's tables , columns no data @ !

how can retrieve data each table , browsing through rows , columns ?

browse top 1000

as suggested @paqogomez right click on table name "tblxyz" , select "select top 1000 rows. opens query editor , displays query code @ top , result set @ bottom of screen.

select top 1000         col1,         col2,         col3 tblxyz 

simple select statement

you modify above query code remove "top 1000" rows table.

select col1,        col2,        col3 tblxyz 

repeat same right click "edit top 200" rows editing.


Comments

Popular posts from this blog

apache - Remove .php and add trailing slash in url using htaccess not loading css -

javascript - jQuery show full size image on click -