1

Topic: SQL Server Management Studio

How do I open to view content of R6 tables in Management Studio. Databases > NBNData > Tables lists the tables but how do I open to see contents of a particular table?

Bob Marsh
Doncaster LRC
Coleoptera recorder for YNU

2

Re: SQL Server Management Studio

Right click on the table and choose select top 1000 rows.  This will give you just the top 1000 rows. You will see the sql  which generated this and can remove 'TOP 1000' and click execute to see the whole table or change the SQL to pick up specific records, by adding a 'Where' clause.

Alternatively  click on 'Views' (Below Tables) and right click on New View. This gives you a window which enables you to create queries. Drag the table you want into this and select the fields required.

.

Mike Weideli

3

Re: SQL Server Management Studio

Many thanks Mike - very useful...........

Bob Marsh
Doncaster LRC
Coleoptera recorder for YNU