Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Searching in SQL management Studio 1

Status
Not open for further replies.

Cpreston

MIS
Mar 4, 2015
972
GB
Hi

This may not be the right place to ask but does anyone know how to search for a View

I have a view called SELECT * from "vwOrderVolumeByDate"
If I run the Select statement I get rows back. I cannot locate it anywhere under the Views object explorer. I have even looked under stored procedures but cannot locate it.

Any ideas how I can find it as I need to look into its design

Thanks
 
Hi

I cannot load this on the server unfortunately.

Thanks
 
Hi

I loaded it locally and logged into the server via my local installation. brilliant tool thanks for the tip

 
You could also run this in each database to find out which one has the view.
Code:
SELECT *
FROM sys.objects
WHERE type = 'v'

-SQLBill

The following is part of my signature block and is only intended to be informational.
Posting advice: FAQ481-4875
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top