About 9,530,000 results
Open links in new tab
  1. How to get a view table query (code) in SQL Server 2008 …

    I have a view in SQL Server 2008 and would like to view it in Management Studio. Example: --is the underlying query for the view Example_1 select * from table_aView View name: …

  2. t sql - How to view the stored procedure code in SQL Server …

    I am new to SQL Server. I am logged into my database through SQL Server Management Studio. I have a list of stored procedures. How do I view the stored procedure code? Right clicking on …

  3. List the queries running on SQL Server - Stack Overflow

    Is there a way to list the queries that are currently running on MS SQL Server (either through the Enterprise Manager or SQL) and/or who's connected? I think I've got a very long running …

  4. sql - Create Table from View - Stack Overflow

    Jul 14, 2011 · See this answer will help you. script on this answer get you scripts for generate all tables in database. If you modify last where condition, you can get scripts for create table from …

  5. IF condition in view in SQL Server - Stack Overflow

    IF condition in view in SQL Server Asked 14 years, 6 months ago Modified 6 years, 8 months ago Viewed 84k times

  6. sql - When to use a View instead of a Table? - Stack Overflow

    It is just a stored SQL statement, i.e. a view on the underlying data. Some databases (e.g. Oracle, PostgreSQL) support materialized views, which store the "view" temporarily in another table …

  7. How to retrieve the SQL used to create a view in Oracle?

    Apr 25, 2014 · 4 I think as developer the interest of view is the "select" which make it valid and runnable, and the easiest way to edit a view is by using another application like pl/sql …

  8. How do I get the script to a database view - Stack Overflow

    Nov 5, 2010 · I lost the script for a view that I created. Can I retrieve / recreate the script from the database using management studio?

  9. Can we pass parameters to a view in SQL? - Stack Overflow

    Apr 7, 2017 · A view is a stored sql text of a select query. Parameters are out of the discussion. When your stored query returns the column where you want to filter with, you can do it in the …

  10. How do I view the SQL generated by the Entity Framework?

    To view the SQL that will be generated, simply call ToTraceString(). You can add it into your watch window and set a breakpoint to see what the query would be at any given point for any …