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
Post a Comment