You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SELECT
definition,
uses_ansi_nulls,
uses_quoted_identifier,
is_schema_bound
FROM
sys.sql_modules
WHERE
object_id
= object_id(
'sales.daily_sales'
);
The Character between the 'select' and 'definition' in the output might not survive copy and paste. It appears to not do that when I pasted the result into OneNote.
The text was updated successfully, but these errors were encountered:
This is code from www.sqlservertutorial.net/sql-server-views/sql-server-get-view-information/
It allows us to view the code in a view.
SELECT
definition,
uses_ansi_nulls,
uses_quoted_identifier,
is_schema_bound
FROM
sys.sql_modules
WHERE
object_id
= object_id(
'sales.daily_sales'
);
The Character between the 'select' and 'definition' in the output might not survive copy and paste. It appears to not do that when I pasted the result into OneNote.
The text was updated successfully, but these errors were encountered: