SQL Server OpenRowSet on Unknown Table

  • Thread starter Thread starter Pepper Mint
  • Start date Start date
  • Tags Tags
    Server Sql Table
Click For Summary
The discussion centers around the SQL query that retrieves information about computed columns in SQL Server, specifically focusing on the use of "TABLE SQLSRC." This reference pertains to a system table that stores the source code for stored procedures and other database objects. The user seeks clarification on the role of "TABLE SQLSRC" within the query, indicating a desire to understand how SQL Server manages and retrieves stored procedure source code. The provided link suggests that the SQLSRC table is integral to understanding where SQL Server keeps this information, although the user finds the reference complex. Overall, the conversation highlights the importance of comprehending SQL Server's internal structures for effective database management.
Pepper Mint
Messages
91
Reaction score
139
SQL:
SELECT c.object_id AS id,
        convert(smallint, c.column_id) AS number,
       s.colid, s.status,
        convert(varbinary(8000), s.text) AS ctext,
        convert(smallint, 2 + 4 * (s.status & 1)) AS texttype,
        convert(smallint, 0) AS language,     
       s.text
    FROM sys.computed_columns c CROSS APPLY OPENROWSET(TABLE SQLSRC, c.object_id, c.column_id) s

Would someone please help me explain what TABLE SQLSRC in the code means ? I am splitting hairs to just get a glimpse of it but still unable to figure it out.
 
Last edited by a moderator:
Technology news on Phys.org
Learn If you want to write code for Python Machine learning, AI Statistics/data analysis Scientific research Web application servers Some microcontrollers JavaScript/Node JS/TypeScript Web sites Web application servers C# Games (Unity) Consumer applications (Windows) Business applications C++ Games (Unreal Engine) Operating systems, device drivers Microcontrollers/embedded systems Consumer applications (Linux) Some more tips: Do not learn C++ (or any other dialect of C) as a...

Similar threads

  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 19 ·
Replies
19
Views
8K
  • · Replies 4 ·
Replies
4
Views
6K
  • · Replies 13 ·
Replies
13
Views
4K
Replies
128
Views
34K
  • · Replies 1 ·
Replies
1
Views
10K
  • · Replies 1 ·
Replies
1
Views
4K
  • Sticky
  • · Replies 2 ·
Replies
2
Views
503K
  • · Replies 7 ·
Replies
7
Views
3K