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

    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: Example_1 How to g...

  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 the sto...

  3. 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 views. The …

  4. sql - How to view query that was used to create a table ... - Stack ...

    Apr 4, 2015 · I create about 15 tables and create relationships and constraints among them using Wizard in SQL Server 2012 express Now i want to see the query that is used to create those tables …

  5. Is there a way to retrieve the view definition from a SQL Server using ...

    So far, so good. The main interaction with the above tables happens using multiple views; while OpenSchema() is able to return the column definitions for the view in the same way that it returns …

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

    For instance, we have a view that creates the raw data needed for all financial reporting. By having all reports use this view, everyone is working from the same data set, rather than one report using one …

  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 Developer or by TOAD. …

  8. 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 LINQ query.

  9. what is the use of view in sql server? - Stack Overflow

    May 31, 2010 · Please, have an eye out this View (database) Wikipedia article. In short, a View can be used with more than SQL Server, it is a SQL Standard. A VIEW is generally used: To present the …

  10. 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?