Skip to content

Latest commit

 

History

History
51 lines (43 loc) · 3.23 KB

sys-external-streams.md

File metadata and controls

51 lines (43 loc) · 3.23 KB
titledescriptionauthorms.authorms.datems.servicems.topickeywords
sys.external_streams (Transact-SQL) - Azure SQL Edge
sys.external_streams returns a row for each external stream object created within the scope of the database.
rwestMSFT
randolphwest
09/21/2024
azure-sql-edge
reference
sys.external_streams
SQL Edge

sys.external_streams (Transact-SQL)

[!INCLUDE retirement-notice]

Note

Azure SQL Edge no longer supports the ARM64 platform.

Returns a row for each external stream object created within the scope of the database.

Column nameData typeDescription
namesysnameName of the stream. Is unique within the database.
object_idintobject identification number for the stream object. Is unique within the database.
principal_idintID of the principal that owns this assembly.
schema_idintID of the schema that contains the object.
parent_object_ididobject identification number for the parent object for this stream. In the current implementation, this value is always null.
typechar(2)Object type. For stream objects, the type is always 'ES'.
type_descnvarchar(60)Description of the object type. For stream objects, the type is always 'EXTERNAL_STREAM'.
create_datedatetimeDate the object was created.
modify_datedatetimeDate the object was last modified by using an ALTER statement.
is_ms_shippedbitObject created by an internal component.
is_publishedbitObject is published.
is_schema_publishedbitOnly the schema of the object is published.
max_column_id_usedbitThis column is used for internal purposes and will be removed in future.
uses_ansi_nullsbitStream object was created with the SET ANSI_NULLS database option ON.
data_source_idintThe object ID for the external data source represented by the stream object.
file_format_idintThe object ID for the external file format used by the stream object. The external file format is required to specify the actual layout of the data referenced by an external stream.
locationvarchar(max)The target for the external stream object. For more information, see Create External Stream.
input_optionvarchar(max)The input options used during the creation of the external stream. For more information, see Create External Stream.
output_optionvarchar(max)The output options used during the creation of the external stream. For more information, see Create External Stream.

Permissions

The visibility of the metadata in catalog views is limited to securables that a user either owns, or on which the user has been granted some permission. For more information, see Metadata Visibility Configuration.

Related content

close